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

How to disable movement in CombatBot for healing in heroics/raids

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:
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:
Thanks alot, if i did this would it stop the movement when i use IB or not?
 
Thanks alot, if i did this would it stop the movement when i use IB or not?

No, as CombatBot is not related to IB, they're two seperate Bots. You shouldn't be healing in IB anyways, that's why I posted this.
 
No, as CombatBot is not related to IB, they're two seperate Bots. You shouldn't be healing in IB anyways, that's why I posted this.
Method used by many end game raiders for doing 10/25/40 man raids as both Healers and DPS:

Combat / Heal Bot will work fine for 5-mans, but there is an issue with the way the tank is selected in groups with multiple tanks. If your CC cares who is identified as the tank it is supposed to shield when healing or which tank to /assist when dps-ing during raid encounters and you want control over selecting it, use the link above.
 
Last edited:
Method used by many end game raiders for doing 10/25/40 man raids as both Healers and DPS:

Combat / Heal Bot will work fine for 5-mans, but there is an issue with the way the tank is selected in groups with multiple tanks. If your CC cares who is identified as the tank it is supposed to shield when healing or which tank to /assist when dps-ing during raid encounters and you want control over selecting it, use the link above.

I looked into Mr.AutoFight but I thought it wasn't updated and I had to find the thread in the trash, so I assumed it was no longer working. Correct me if I am wrong
 
This doesn't work at all for me. :( not sure why, but the combat bot doesn't even come up if I comment that line. :( am I doing something wrong?

Also, if I attempt it anyways, it doesn't respond to anything, at all. just sits there.
 
This doesn't work at all for me. :( not sure why, but the combat bot doesn't even come up if I comment that line. :( am I doing something wrong?

Also, if I attempt it anyways, it doesn't respond to anything, at all. just sits there.

I'm going to ask you to post a log of this. I believe I know why its not compiling for you, but to be sure please submit a log so I can take a look
 
You have to remove the comma
Code:
CreateCombatBehavior(),

Or it tries to evaluate the next statement, which does not exist... throwing a 'arguement expected'. At least that's what happened to me when I did this initially. I also commented out the whole raf targeting section, as it seems to make your toon switch targets like a madman if you are tanking an instance.
 
Back
Top