What's new
  • Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Visit Resources
  • Visit Downloads
  • Visit Portal

Delay after TP

Tumzie

Member
Joined
Feb 16, 2013
Messages
341
Reaction score
3
Hey there,

As no one ever answers my question when I ask why the hell the bot waits with attacking after entering a TP I figured I'd ask here.

Profile A: Waits 3 seconds after entering a tp before realizing wtf it should be doing. (While getting stomped by Razorclaw the entire 3 seconds.)
Profile B: Instantly starts doing wtf he's supposed to do.

Where does this happen? How can I make profile A act like profile B?

Thanks in advance and kind regards,

Tumzie


Edit: To the staff of thebuddyforum: please consider getting a live chatbox up on this forum. would be in everybody's best interest.
 
look for the waitimer in the profile, if there is one after TP. remove it
 
look for the waitimer in the profile, if there is one after TP. remove it

<If condition="CurrentLevelAreaId == 197101">
<ToggleTargeting questId="1" combat="True" looting="True" lootRadius="50" killRadius="20" />
<UsePower questId="1" powerId="80049" /> <!--Call of the Ancients-->
<WaitTimer questId="3" waitTime="300" />
<UsePower questId="1" powerId="81612" /> <!--War Cry-->
<WaitTimer questId="3" waitTime="300" />
<UsePower questId="1" powerId="79076" /> <!--Battle Rage-->
<WaitTimer questId="3" waitTime="300" />
<!--UsePower questId="1" powerId="79607" /--> <!--Wrath or the Berserker-->
<LogMessage questId="113910" stepId="56" output="Using portal to Razorclaw" />
<TakeTownPortal questId="113910" stepId="56" />
</If>

<If condition="CurrentLevelAreaId == 109516">
<!--WaitTimer questId="113910" stepId="54" waitTime="5000" /-->
<TrinityTownPortal questId="113910" stepId="54"/>


Take your pick :p Which one?
 
<If condition="CurrentLevelAreaId == 197101">
<ToggleTargeting questId="1" combat="True" looting="True" lootRadius="50" killRadius="20" />
<UsePower questId="1" powerId="80049" /> <!--Call of the Ancients-->
<WaitTimer questId="3" waitTime="300" />
<UsePower questId="1" powerId="81612" /> <!--War Cry-->
<WaitTimer questId="3" waitTime="300" />
<UsePower questId="1" powerId="79076" /> <!--Battle Rage-->
<WaitTimer questId="3" waitTime="300" />
<!--UsePower questId="1" powerId="79607" /--> <!--Wrath or the Berserker-->
<LogMessage questId="113910" stepId="56" output="Using portal to Razorclaw" />
<TakeTownPortal questId="113910" stepId="56" />
</If>

<If condition="CurrentLevelAreaId == 109516">
<!--WaitTimer questId="113910" stepId="54" waitTime="5000" /-->
<TrinityTownPortal questId="113910" stepId="54"/>


Take your pick :p Which one?
seems to be in order, not sure if the (nodelay="true") will work on the (<TakeTownPortal questId="113910" stepId="56" />) but you can try

<TakeTownPortal questId="113910" stepId="56" nodelay="true" />
 
not sure if that is even the right spot, what profile is this?
 
seems to be in order, not sure if the (nodelay="true") will work on the (<TakeTownPortal questId="113910" stepId="56" />) but you can try

<TakeTownPortal questId="113910" stepId="56" nodelay="true" />

Afraid that didn't help... thanks though.

On another note: can I just change stuff in the .xml whilst running it and next time it reads that line it'll read my edited line?
 
Afraid that didn't help... thanks though.

On another note: can I just change stuff in the .xml whilst running it and next time it reads that line it'll read my edited line?

no, but it will on the next run. no need to load it each time
 
no, but it will on the next run. no need to load it each time

Still didn't work :(

This .xml is also WAY shorter and less complex than others... but does everything perfectly except the waiting time after tp.
 
i wonder if you make it in the same "IF" tag as the above one.
like this

<If condition="CurrentLevelAreaId == 197101">
<ToggleTargeting questId="1" combat="True" looting="True" lootRadius="50" killRadius="20" />
<UsePower questId="1" powerId="80049" /> <!--Call of the Ancients-->
<WaitTimer questId="3" waitTime="300" />
<UsePower questId="1" powerId="81612" /> <!--War Cry-->
<WaitTimer questId="3" waitTime="300" />
<UsePower questId="1" powerId="79076" /> <!--Battle Rage-->
<WaitTimer questId="3" waitTime="300" />
<!--UsePower questId="1" powerId="79607" /--> <!--Wrath or the Berserker-->
<LogMessage questId="113910" stepId="56" output="Using portal to Razorclaw" />
<TakeTownPortal questId="113910" stepId="56" />


<If condition="CurrentLevelAreaId == 109516">
<!--WaitTimer questId="113910" stepId="54" waitTime="5000" /-->
<TrinityTownPortal questId="113910" stepId="54"/>
</If>
</If>
 
Just did that. Results in him not entering tp at all but instead making new games and leaving them :þ
 
hmm, i'm still learning myself so i'm not much help. The info is very limited and outdated, with not much hope of ever being updated. Makes it very hard for people (the community) to start making profiles unfortunately.
 
Back
Top