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
Posts: 8 Joined: 30 Mar 2012, 12:51
Noob?: Yes
#1
Post
by c0d3 » 13 Apr 2012, 16:59
hey there..here the code
the problem is... when the bot run, i have to type " talk resp # " to complete it...
but,, after type that, the bot dint stop looping...when i type again "talk resp #" it says no such response..
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.
SkylorD
Moderators
Posts: 1196 Joined: 16 Dec 2011, 02:53
Noob?: No
Location: Brazil
#2
Post
by SkylorD » 13 Apr 2012, 19:28
The macros was triggered 300 times before the conversation appear.
You can configure a timeout. Try this.
Learn rules
conan11
Noob
Posts: 10 Joined: 09 Apr 2012, 12:50
Noob?: Yes
#3
Post
by conan11 » 13 Apr 2012, 23:04
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
Posts: 8 Joined: 30 Mar 2012, 12:51
Noob?: Yes
#4
Post
by c0d3 » 14 Apr 2012, 00:45
The macros was triggered 300 times before the conversation appear.
You can configure a timeout. Try this.
it worked~ tq~