Jump to content

Recommended Posts

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

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()
    {
    }
}

 

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  !

 

 

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()
    {
    }
}

 

 

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