kendecray
New Member
- Joined
- Mar 30, 2010
- Messages
- 102
- Reaction score
- 2
Open CombatBot.cs with any text editor located in your Honorbuddy/bots folder.
Find the following line:
and change the text to say:
It also helps to disable any movement your CC might have..
I use this when running heroics or raids as it disable any unwanted movement
Find the following line:
Code:
private Composite _root;
public override Composite Root
{
get
{
return _root ?? (_root =
new PrioritySelector(
CreateCombatBehavior(),
CreateFollowBehavior()
)
);
}
}
and change the text to say:
Code:
private Composite _root;
public override Composite Root
{
get
{
return _root ?? (_root =
new PrioritySelector(
CreateCombatBehavior()
// CreateFollowBehavior()
)
);
}
}
It also helps to disable any movement your CC might have..
I use this when running heroics or raids as it disable any unwanted movement
Last edited: