act 3 bounty "crazy climber" - Printable Version +- Bot Exploit (http://www.botexploit.com/en/forum) +-- Forum: Bot Exploit Forum (/Forum-Bot-Exploit-Forum) +--- Forum: Support (/Forum-Support) +--- Thread: act 3 bounty "crazy climber" (/Thread-act-3-bounty-crazy-climber) |
act 3 bounty "crazy climber" - Botfrenszy - 10-04-2015 02:20 PM when actor 153419 spawns in front of the staircase, bot doesn't talk to the said actor. i replaced line 14-30 with following code and it (hopefully) fixes the problem. <If condition="ActorExistsAt(153419, Me.Position.X, Me.Position.Y, Me.Position.Z, 120)"> <then> <TalkTo actorId="153419"/> <!-- questID = 153424, stepID = 4 --> <移到 x="2610.92" y="556.5083" z="0.6030777"/> <WaitTimer waitTime="1500"/> <移到 x="2542.51" y="548.2523" z="25.25037"/> <WaitTimer waitTime="1500"/> <移到 x="2523.659" y="589.2476" z="38.25476"/> <WaitTimer waitTime="1500"/> <MoveTo x="2477.161" y="589.3975" z="38.41434"/> <WaitTimer waitTime="1500"/> <移到 x="2479.237" y="532.5097" z="63.15082"/> <WaitTimer waitTime="1500"/> <While condition="IsActiveQuestStep(153424, 4)" max="20"> <WaitTimer waitTime="500"/> </While> <移到 x="2542.61" y="514.377" z="87.60001"/> RE: act 3 bounty "crazy climber" - Titanium - 10-04-2015 03:35 PM Thanks for your effort! is that you only change <If condition="ActorExistsAt(102008, Me.Position.X, Me.Position.Y, Me.Position.Z, 120)"> to <If condition="ActorExistsAt(153419, Me.Position.X, Me.Position.Y, Me.Position.Z, 120)"> Because we loop missions for several days but still cannot find one encounter of crazy climber bounty. We can't correct it. RE: act 3 bounty "crazy climber" - Botfrenszy - 10-04-2015 07:16 PM (10-04-2015 03:35 PM)Titanium Wrote: Thanks for your effort! Yes I changed the actorid in that line, and added <MoveTo x="2477.161" y="589.3975" z="38.41434"/> <WaitTimer waitTime="1500"/> between movetos below it, it was necessary to wait for monster spawns there. |