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

Dismount after stunned

Angelus

Member
Joined
Jan 15, 2010
Messages
848
Reaction score
6
Hello, my druids keep dismounting after getting stunned by mobs. I have combat disabled so I guess it is not the CR that is causing it? But some behavior. I am pretty sure it wasn't doing it when I was still using DKs, which was around the first banwave.

Maybe you see something strange?
Log 1 - Travel form: [00:33:52.845 D] Stop and dismount. Reason: Stuck
Log 2 - Normal mount: [00:35:00.159 D] Stop and dismount. Reason: Stuck
 

Attachments

Hey Tony,

I use plugin with:

Code:
        private void disableCombat(){
            LevelBot.BehaviorFlags &= ~BehaviorFlags.Combat;
            Logging.Write(System.Windows.Media.Colors.Green, "Disabled");
        }

to disable combat and the following if conditions to trigger it:


Code:
if (!Me.Combat && (LevelBot.BehaviorFlags & BehaviorFlags.Combat) != 0){
                Logging.Write(System.Windows.Media.Colors.Green, "Disabling combat because we are out of combat!");
                disableCombat();
                return;
            }

I'll try tonight with my plugin disabled too see what it does when stunned by mob if combat enabled while on mount.

Thank you.
 
Back
Top