Jump to content

how to disable anti stuck ?


Vo1k

Recommended Posts

how to disable anti stuck ?  

game master stop my character (sleep - Freezing. etc)  for anti stuck check 

it's serious danger to get banned(

Link to comment
Share on other sites

Hello,

Trust me, you will get more problems if you disable antistuck. If an GM start to freeze your character it is already too late.

But if you have spell (buff) IDs used by GM to freeze/sleep you share it I can make plugin to stop bot

Link to comment
Share on other sites

You use recent version? because in recent version? normally the antistuck does not start if the person and stun or freeze.

using System.ComponentModel;
using wManager.Plugin;

public class Main : IPlugin
{
    private bool _isLaunched;

    public void Initialize()
    {
        wManager.Events.MovementEvents.OnPulseStuckResolver += delegate(CancelEventArgs cancelable)
        {
            cancelable.Cancel = true;
            // Products.ProductStop();
        };
    }

    public void Dispose()
    {
        _isLaunched = false;
    }

    public void Settings()
    {
    }
}

 

Link to comment
Share on other sites

this plugin not working !

maybe detect this mesages and stop bot ?

[N]  - [MovementManager] Think we are stuck      [N]  - [MovementManager] Waypoint timed out

possible this decides GM freeze/sleep problem  and teleport for bot stucks 

it's serious danger to get banned(   I no't want get  ban  !

 

 

Link to comment
Share on other sites

I made   plugin  -  Working  !!

using System.ComponentModel;
using wManager.Plugin;

public class Main : IPlugin
{
    private bool _isLaunched;

    public void Initialize()
    {
robotManager.Events.LoggingEvents.OnAddLog += delegate(robotManager.Helpful.Logging.Log log)
        {
            if (log != null)
            {
                if (log.Text.Contains("[MovementManager] Think we are stuck"))
                    robotManager.Products.Products.ProductStop();
            }
        }; 
    }

    public void Dispose()
    {
        _isLaunched = false;
    }

    public void Settings()
    {
    }
}

 

 

Link to comment
Share on other sites

@Droidz can we just ban this guy? he is using a crack copy, and its not worth all the lame stupid post about a cracked copy that doesnt hardly work because of detection.

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...