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

Get Rid of Agro while Gathering

nishalp

Member
Joined
Sep 13, 2014
Messages
177
Reaction score
4
So I know Mastahq is going to add a tag to allow you to move when you get agro gathering but I wanted to see if I could find some way to do it now while I am leveling. So I did manage to get something working and it seems to be working good.

Rather than running in stealth, I put a While Condition in the Order. Then I put a while="not Core.Player.InCombat" into the Gather Tag. So when you get agro, the InCombat turns true and it stops gathering. Then finally I put a Move To TAg with a XYZ that I know will get rid of the agro. Once it reaches the spot and the agro is gone, it will resume gathering.

Gonna see if I can put some Code execution that will be smarter than actually specifying a location...

Hope this help others.

Code:
<Profile>
   <Name>Dravanian Spring Water</Name>
   <KillRadius>100</KillRadius>
   <Order>
	<While Condition="True">
	        <TeleportTo Name="Tailfeather" AetheryteId="76" />
		<Gather while="not Core.Player.InCombat">
        		<GatherObject>Mineral Deposit</GatherObject>
	        	<HotSpots>
      				<Hotspot Radius="200" XYZ="156.5321, -122.8785, 500.831"  />
	      			<Hotspot Radius="200" XYZ="260.0817, -114.999, 448.9835"  />
      				<Hotspot Radius="200" XYZ="260.0817, -114.999, 448.9835"  />
			</HotSpots>
			<ItemNames>
		        	<ItemName>Dravanian Spring Water</ItemName>
			</ItemNames>
			<GatheringSkillOrder>
			</GatheringSkillOrder>
		</Gather>
		<MoveTo XYZ="283.4615, -101.9497, 336.8608" />
	</While>
   </Order>
</Profile>
 
Back
Top