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

Battle Horn

niksoon

New Member
Joined
Jul 3, 2014
Messages
2
Reaction score
0
Now im farming Deathchargers Reins but every time im stuck in slaughter square because bot cant pull all mobs->im stuck.what i must add in profile for using Battle Horn (ItemID=86565)?
 
Almost every profile that runs this dungeon has issues in that area because the abomination spawns are so... 'random.'
However, we can use a simple condition code to make the bot 'seek and kill' them.
PHP:
<While Condition="Object(10417, o => o.ToUnit().IsAlive) != null || Object(10416, o2 => o2.ToUnit().IsAlive) != null ">
	<CustomBehavior File="InteractWith" WaitForNpcs="false" MobState="Alive" MobId1="10417" MobId2="10416" Range="1" />
	<CustomBehavior File="WaitTimer" WaitTime="1000" />
</While>


In order to tell the bot to use spells or items manually 'in a profile,' you can just simply cast it by using:
PHP:
<CustomBehavior File="RunMacro" Macro="/use Battle Horn" />
Of course you'll need to repeat this code at any point in the profile as to where you'd want it casted at.

There's alternative methods to cast the item by ID, but you shouldn't need that unless you plan on publicizing your profile.
 
Last edited:
Back
Top