Skip to content
View in the app

A better way to browse. Learn more.

WRobot

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

how to disable anti stuck ?

Featured Replies

how to disable anti stuck ?  

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

it's serious danger to get banned(

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

 

  • Author

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  !

 

 

  • Author

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

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.