Go to Eden Group

International

Moderator: Moderators

username1
Noob
Noob
Posts: 4
Joined: 08 Jun 2011, 02:23
Noob?: Yes

Go to Eden Group

#1 Post by username1 »

Hi, I'm a complete noob but I want openkore to talk to the Eden Teleport Officer, select "Move to Eden Group", then talk to Primo'd Buffer (for status increase) and go back. I have tried the following doCommand blocks, but I can't get it right...

Code: Select all

doCommand move 70 161 moc_ruins {
	timeout 1900
	whenStatusInactive Immortal Stew
}
This works ...

But the following not, I think ...:

Code: Select all

doCommand talknpc 68 164 c c r0 n {
	timeout 2000
	whenStatusInactive Immortal Stew
	inMap moc_ruins
}
That's the main problem, openkore trys to talk to the npc directly when I enter the map...

I already tried it with the additional lines:

Code: Select all

notOnAction move
notOnAction route
inMap moc_ruins 68 164
inMap 68 164 moc_ruins
Each sepperately of course...

The rest is as follows:

Code: Select all

doCommand move 30 13 moc_para01 {
	inMap moc_para01
	timeout 2000
}

doCommand talknpc 26 15 c n {
	inMap moc_para01
	timeout 2000
	notOnAction route
}

doCommand move 0 {
	whenStatusActive Immortal Stew
	inMap moc_para01
	timeout 2000
}
Can you help me please?

Thanks for your answers!!!
EternalHarvest
Developers
Developers
Posts: 1798
Joined: 05 Dec 2008, 05:42
Noob?: Yes

Re: Go to Eden Group

#2 Post by EternalHarvest »

Code: Select all

doCommand move 70 161 moc_ruins ;; talknpc 68 164 c c r0 n {
	timeout 1900
	whenStatusInactive Immortal Stew
}
username1
Noob
Noob
Posts: 4
Joined: 08 Jun 2011, 02:23
Noob?: Yes

Re: Go to Eden Group

#3 Post by username1 »

Hi again,

the lines

Code: Select all

doCommand move 70 161 moc_ruins ; talknpc 68 164 c c r0 n {
   timeout 1900
   whenStatusInactive Immortal Stew
}
have the same result like my two do Commands and

Code: Select all

doCommand move 70 161 moc_ruins ;; talknpc 68 164 c c r0 n {
   timeout 1900
   whenStatusInactive Immortal Stew
}
dosen't work...

so do i need to learn how to write makros for that?