Jump to content
  • Character moving/rotating while Sapped


    ScripterQQ
    • Version: All Product: WRobot General Type: Bug Status: Fixed

    When the character is Sapped, it randomly moves, or let's say better: it rotates a little bit in some direction, when it should be stuck in place. I think it's something related to the wrobot "unstuck", in fact if you have "Dismount when stuck" feature checked, it will dismount if you are sapped. So in few words: the robot thinks Sap is a stuck situation, and forces some movements in order to unstuck (at least this is what it seems to me). It should just stop everything unless in the class fight there is something that can remove sap (medallion, bubble, and so on).

    This is a small bug of course, but I'm testing some profiles in Battlegrounds and I see this happening a lot, it looks very weird, and may be even being classified as "hack" if reported with video proof (kinda like the hack that allows you to move while cycloned, or rooted, same concept I think).

    Thanks for reading



    User Feedback

    Recommended Comments

    Hello, I have taken note.

    To wait you can try this plugin Main.cs (not tested):

    using wManager.Wow.ObjectManager;
    
    public class Main : wManager.Plugin.IPlugin
    {
        public void Initialize()
        {
            wManager.Events.MovementEvents.OnPulseStuckResolver += MovementEvents_OnPulseStuckResolver;
        }
    
        public void Dispose()
        {
        }
    
        public void Settings()
        {
        }
    
        WoWLocalPlayer m { get { return ObjectManager.Me; } }
    
        private void MovementEvents_OnPulseStuckResolver(System.ComponentModel.CancelEventArgs cancelable)
        {
            try
            {
                if (m.IsStunned || m.Rooted || m.Confused || m.HaveBuff("Concussive Shot")) // complete list ...
                    cancelable.Cancel = true;
            }
            catch { }
        }
    }

     

    Link to comment
    Share on other sites



    Create an account or sign in to comment

    You need to be a member in order to leave a comment

    Create an account

    Sign up for a new account in our community. It's easy!

    Register a new account

    Sign in

    Already have an account? Sign in here.

    Sign In Now

×
×
  • Create New...