Help~ Macro Auto Talk NPC

All resolved question will be found here. It is recommended that you browse / search through this section first and see if your question has been answered before

Moderators: Moderators, Documentation Writers

c0d3
Noob
Noob
Posts: 8
Joined: 30 Mar 2012, 12:51
Noob?: Yes

Help~ Macro Auto Talk NPC

#1 Post by c0d3 »

hey there..here the code



the problem is... when the bot run, i have to type " talk resp # " to complete it...

Image



but,, after type that, the bot dint stop looping...when i type again "talk resp #" it says no such response..
Image

now i want to make the bot auto talk to npc without typing..
here more info what im try to do...
Last edited by c0d3 on 19 Apr 2012, 04:18, edited 2 times in total.
User avatar
SkylorD
Moderators
Moderators
Posts: 1196
Joined: 16 Dec 2011, 02:53
Noob?: No
Location: Brazil

Re: Help~ Macro Auto Talk NPC

#2 Post by SkylorD »

The macros was triggered 300 times before the conversation appear.
You can configure a timeout. Try this.
Learn rules
conan11
Noob
Noob
Posts: 10
Joined: 09 Apr 2012, 12:50
Noob?: Yes

Re: Help~ Macro Auto Talk NPC

#3 Post by conan11 »

Code: Select all

 automacro talking {
call npc
timeout 15

}
macro npc{   
   do talk @npc (59 243)
   pause 2
   do talk @npc (59 243)
   pause 2
   talk resp 0
   
} 
put timeout and remove "release talking" ? and shouldn't it be triggered by a condition or something. well anyways that should work fine.
c0d3
Noob
Noob
Posts: 8
Joined: 30 Mar 2012, 12:51
Noob?: Yes

Re: Help~ Macro Auto Talk NPC

#4 Post by c0d3 »

The macros was triggered 300 times before the conversation appear.
You can configure a timeout. Try this.
it worked~ tq~