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!

Possible to do this? run like hell from some mobs.

Njodax2

New Member
Joined
Aug 24, 2015
Messages
128
Is it possible to make my gb2 run like from some specific mobs? and ignore mines/herbs in a certain area it has to go trough ?

and how do i put a repair in? :o
 
Last edited:
i dont know how to do this in GB, but this is for questing (maybe this will get you in the right direction).

With the following code you will run past anything, and ignore obstacles, so make sure you make a route around it:
Code:
<CustomBehavior File="MyCTM" X="1" Y="1" Z="1" />

For selling at a specific place in your profile:
Code:
<CustomBehavior File="ForceSetVendor" DoSell="true" DoRepair="true" DoMail="true" />

For a repair when at certain durability:
Code:
<Vendor Name="Aaron Hollman" Id="19662" Type="Repair" Nav="Run" X="1" Y="1" Z="1" />


now for the blackspots (blackspots parts your toon should try to avoid)
The blackspots can be generated in honorbuddy under development tools, right next to hotspot.
you should put this in the top of your profile, under:
<MailPurple>true/false</MailPurple>
Code:
	<Blackspots>
		<Blackspot Name="Zabra'jin 8" X="282.902" Y="7964.03" Z="21.35439" Radius="14.87263" Height="100" />
	</Blackspots>

For elites you can try the following:
Code:
 <TargetElites>false</TargetElites>

and to avoid mobs you can do the following:
Code:
<AvoidMobs>
		<Mob Name="Deathskitter" Id="18647" />
</AvoidMobs>

This is for a questing profile, just trying to help you in the right direction.
 
Back
Top