Routing between mosk_dun02 and mosk_dun03

Forum closed. All further discussion to be discussed at https://github.com/OpenKore/

Moderators: Moderators, Developers

Message
Author
sofax222
Developers
Developers
Posts: 214
Joined: 24 Nov 2010, 03:08
Noob?: Yes

Re: Routing between mosk_dun02 and mosk_dun03

#31 Post by sofax222 »

iMikeLance wrote: That's right, you can't left-click the NPC ingame and you can't start talking with it by the usual way. The npc automatically starts talking with you when you get near the specified area, and this "specified area" isn't always a walkable path near the NPC, sometimes it's far from it.

EDIT: Just found out that talknpc supports a=<string>, where <string> is a console command. But even with that talknpc requires kore to start the talk sequence, where in this case it should be started by the NPC when entering the area.
Sorry, I don't got it !!!
But any way in my this case, you mean I could change the "NPC portals" with macro into a only "NPC portals", even the talking is started by NPC.
Such as:

Code: Select all

moscovia 136 48 mosk_fild01 95 93 0 a="uneq 火忍西怒畢的腰帶" w1 a="eq 古斯里琴" w1 c c r0 c c n
If this is true !
I have another question !
In this "NPC portals", the actione is switch some specificed equipment.
This "NPC portals" should be put in to portals.txt file, right !
But my portals.txt file is shared by 5 roles.
And how to make the "specificed equipment" to be a variable ?

sofax222
Developers
Developers
Posts: 214
Joined: 24 Nov 2010, 03:08
Noob?: Yes

Re: Routing between mosk_dun02 and mosk_dun03

#32 Post by sofax222 »

It allmost successes !
But the distance !
The distance to the "NPC" is not near enough to enable the automatic talking !
I try a make a fake NPC, but the kore can not route to the fake NPC !!
Do I need edit the field to meet the fake NPC ?
So any other solution for the problem of the distance ?

iMikeLance
Moderators
Moderators
Posts: 208
Joined: 01 Feb 2010, 17:37
Noob?: No
Location: Brazil - MG
Contact:

Re: Routing between mosk_dun02 and mosk_dun03

#33 Post by iMikeLance »

Maybe the equip and unequip part should be implemented as a plugin activated by this particular NPC talk sequence. I'll see what I can do about it when i get home.

Or I think that you can do it by using kore's native function of default equipments to re-equip the accessory. But I still think that using a plugin to equip the required accessory and then re-equip the previous accessory is the best way.

http://openkore.com/index.php/AttackEquip_topHead

EternalHarvest
Developers
Developers
Posts: 1798
Joined: 05 Dec 2008, 05:42
Noob?: Yes

Re: Routing between mosk_dun02 and mosk_dun03

#34 Post by EternalHarvest »

I think portals.txt needs more features, to support such stuff without additional macro or plugins. There was a list of stuff portals.txt/routing misses (like these NPCs, portals with dialogs, airship* etc) in bug tracker, but then, it 404'd.

Well, it can be solved with a simple macro like the one sofax222 uses.

* Airship works, actually, but there is no easy way to specify triggers other than a macro, too.

Nicodareus
Noob
Noob
Posts: 17
Joined: 12 Feb 2012, 17:56
Noob?: Yes

Re: Routing between mosk_dun02 and mosk_dun03

#35 Post by Nicodareus »

sofax222 wrote:I use a macro with the setting in the portals.txt.
In the portals.txt:

Code: Select all

moscovia 136 48 mosk_fild01 95 93
mosk_fild01 86 104 mosk_fild02 204 54 0 c c r2 c c c r1 c n
mosk_fild02 190 257 mosk_dun01 189 45
mosk_dun01 207 276 mosk_dun02 165 30 0 c c r0
I did that + added another simple macro to get from mosk_dun01 -> 02. Unfortunately it doesn't work as i thought it might. Interestingly enough, it does work when I use it in a console command: "talknpc 207 276 r0". Suggestions??

Code: Select all

#moscovia > mosk_fild01
automacro MoscoviaToMoskFld1 {
	location moscovia 136 50 140 46
	run-once 1
	call {
		pause 2
		do talk resp 0
		pause 1
		release all
	}
}
#mosk_dun01 > mosk_dun02
automacro MoskDun01ToMoskDun02 {
	location mosk_dun01 207 276 165 30
	run-once 1
	call {
		pause 2
		do talk resp c c r0
		pause 1
		release all
	}
}
Also, random sidenote: Noticed that there isn't any Sightless Mind config on the forums...i made one using monsterSkill if anyone is interested. Pretty simple really, but it might answer a future question. ;)

sofax222
Developers
Developers
Posts: 214
Joined: 24 Nov 2010, 03:08
Noob?: Yes

Re: Routing between mosk_dun02 and mosk_dun03

#36 Post by sofax222 »

Nicodareus wrote:

Code: Select all

#mosk_dun01 > mosk_dun02
automacro MoskDun01ToMoskDun02 {
	location mosk_dun01 207 276 165 30
	run-once 1
	call {
		pause 2
		do talk resp c c r0
		pause 1
		release all
	}
}
It should be "do talknpc 207 276 c c r0".

Nicodareus
Noob
Noob
Posts: 17
Joined: 12 Feb 2012, 17:56
Noob?: Yes

Re: Routing between mosk_dun02 and mosk_dun03

#37 Post by Nicodareus »

sofax222 wrote:It should be "do talknpc 207 276 c c r0".
Ohhhhh. Okay i get it. The <do talk resp> was because there isn't an actual npc to interact with at moscovia docks and it initiates a conversation with you to which you have to RESPOND, whereas <do talknpc> in mosk_dun01 because there is a npc that you have to TALK to. Fairly new to this, so thanks for correcting my elementary mistake :P ^-^

gabriellafaete
Noob
Noob
Posts: 1
Joined: 12 May 2012, 11:03
Noob?: Yes

Re: Routing between mosk_dun02 and mosk_dun03

#38 Post by gabriellafaete »

Nicodareus,can you post the right macro moscovia?

kay
Human
Human
Posts: 20
Joined: 13 Jan 2013, 20:16
Noob?: Yes

Re: Routing between mosk_dun02 and mosk_dun03

#39 Post by kay »

Can someone post the right fld / dist files too?

sofax222
Developers
Developers
Posts: 214
Joined: 24 Nov 2010, 03:08
Noob?: Yes

Re: Routing between mosk_dun02 and mosk_dun03

#40 Post by sofax222 »

kay wrote:Can someone post the right fld / dist files too?
You could use "ROFE" to edit the .fld files, making them correct.
After editing the .fld files, to delete the relative .dist files.
The OP will re-generates the .dist files, automaticly !

Locked