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

Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

Blank Profile w/ Flight Master's Whistle use ?

oglol

New Member
Joined
May 13, 2016
Messages
25
As title states I am wondering what that specific code is within the world quests helper for instance when at the end of something it uses that.

thank you if you can help! :)
 
I'm not sure how they do it, but here's a way you can use it.

Code:
<If Condition="HasItem(141605) &amp;&amp; Me.BagItems.FirstOrDefault(h =&gt; h.Entry == 141605).CooldownTimeLeft.TotalMilliseconds == 0">
  <CustomBehavior File="UseItem" ItemId="141605" WaitTime="10100" /> <!-- Use and wait 10 seconds -->
</If>
 
I'm not sure how they do it, but here's a way you can use it.

Code:
<If Condition="HasItem(141605) && Me.BagItems.FirstOrDefault(h => h.Entry == 141605).CooldownTimeLeft.TotalMilliseconds == 0">
  <CustomBehavior File="UseItem" ItemId="141605" WaitTime="10100" /> <!-- Use and wait 10 seconds -->
</If>

how would that look in a .xml profile speshulk ?

could you put that into a text and make it flow so that when you start questing botbase or whatever need be to use it you just load the profile only containing this so bot uses it if it's not on cooldown and then stops
 
no it wasn't

<HBProfile>
<QuestOrder>
<If Condition="HasItem(141605) &amp;&amp; Me.BagItems.FirstOrDefault(h =&gt; h.Entry == 141605).CooldownTimeLeft.TotalMilliseconds == 0" >
<CustomBehavior File="UseItem" ItemId="141605" WaitTime="2000" />
</If>
</QuestOrder>
</HBProfile>

to get it to work,
few minor modifications copied the exact code from a world quest in the wquest svn folder i have that was essentially same as what you gave me but changed variable and had to make it a <questorder>
 
thanks for helping me though speshulk :)

enjoy for anyone that wants bots to go to a different location every once in a while you see bot train happening or bots are too close to eachother for comfort :)
 

Attachments

Well yeah, assumed you went to the "Getting started" thread first to see how to set one up. Once you see the getting started stuff, the rest is just filling in the blanks.
 
Well yeah, assumed you went to the "Getting started" thread first to see how to set one up. Once you see the getting started stuff, the rest is just filling in the blanks.

yeah i just thought you linked something that worked for me to copy/paste and it go as i don't really make any profiles and have seen you release a decent amount but i have a common knowledge of it now so it was a quick solve.

thank you as mentioned :)
 
Back
Top