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.

Move without fighting

Featured Replies

Hey, is it possible to ignore all mobs that are attacking the bot until the bot reachs a specific location? So I guess I just need to turn off fighting in the plugin but how?

Hello, i made a method in my custom grinder that looks like this:

    public void DoNotDisturb(bool s)
    {
        log("DoNotDisturb: "+s);
        wManagerSetting.CurrentSetting.LootMobs = !s;
        Conditions.ForceIgnoreIsAttacked = s;
        wManagerSetting.CurrentSetting.DontStartFighting = s;

        if (s)
        {
            Fight.StopFight();
            Interact.InteractGameObject(ObjectManager.Me.GetBaseAddress);
            Blacklist.AllHostileNpc(30, 10000);
        }
        //if on the way to vendor stop regen
        /*if (s && wManagerSetting.CurrentSetting.FoodPercent != 1)
        {
            //log("Save percent setting: " + wManagerSetting.CurrentSetting.FoodPercent);
            FoodPercent = wManagerSetting.CurrentSetting.FoodPercent;
            DrinkPercent = wManagerSetting.CurrentSetting.DrinkPercent;
            wManagerSetting.CurrentSetting.FoodPercent = 1;
            wManagerSetting.CurrentSetting.DrinkPercent = 1;
        }
        else if (!s)
        {
            //log("restore percent setting" + FoodPercent);
            wManagerSetting.CurrentSetting.FoodPercent = FoodPercent;
            wManagerSetting.CurrentSetting.DrinkPercent = DrinkPercent;
        }*/
    }

You can uncomment the consumable stuff if you want to use it.

 

if you wanna check the position of your destination of your path (good to use in a movement event) then this would help you:

            if (MovementManager.CurrentPath.LastOrDefault().DistanceTo(YOURPOSITION) < 5)
            {
                DoNotDisturb(true);
            }
            else
            {
                DoNotDisturb(false);
            }

otherwise this would fit better:

            if (ObjectManager.Me.Position.DistanceTo(YOURPOSITION) > 5)
            {
                DoNotDisturb(true);
            }
            else
            {
                DoNotDisturb(false);
            }

 

Edit:

I remember that you need the food percent block because the bot will try to regen in combat

  • 9 months later...
On 09.05.2017 at 6:18 PM, reapler said:

Hello, i made a method in my custom grinder that looks like this:


    public void DoNotDisturb(bool s)
    {
        log("DoNotDisturb: "+s);
        wManagerSetting.CurrentSetting.LootMobs = !s;
        Conditions.ForceIgnoreIsAttacked = s;
        wManagerSetting.CurrentSetting.DontStartFighting = s;

        if (s)
        {
            Fight.StopFight();
            Interact.InteractGameObject(ObjectManager.Me.GetBaseAddress);
            Blacklist.AllHostileNpc(30, 10000);
        }
        //if on the way to vendor stop regen
        /*if (s && wManagerSetting.CurrentSetting.FoodPercent != 1)
        {
            //log("Save percent setting: " + wManagerSetting.CurrentSetting.FoodPercent);
            FoodPercent = wManagerSetting.CurrentSetting.FoodPercent;
            DrinkPercent = wManagerSetting.CurrentSetting.DrinkPercent;
            wManagerSetting.CurrentSetting.FoodPercent = 1;
            wManagerSetting.CurrentSetting.DrinkPercent = 1;
        }
        else if (!s)
        {
            //log("restore percent setting" + FoodPercent);
            wManagerSetting.CurrentSetting.FoodPercent = FoodPercent;
            wManagerSetting.CurrentSetting.DrinkPercent = DrinkPercent;
        }*/
    }

You can uncomment the consumable stuff if you want to use it.

 

if you wanna check the position of your destination of your path (good to use in a movement event) then this would help you:


            if (MovementManager.CurrentPath.LastOrDefault().DistanceTo(YOURPOSITION) < 5)
            {
                DoNotDisturb(true);
            }
            else
            {
                DoNotDisturb(false);
            }

otherwise this would fit better:


            if (ObjectManager.Me.Position.DistanceTo(YOURPOSITION) > 5)
            {
                DoNotDisturb(true);
            }
            else
            {
                DoNotDisturb(false);
            }

 

Edit:

I remember that you need the food percent block because the bot will try to regen in combat

how can i add this to profile i want my character stay and mob come to me,

got monk; killing balsilisk and mining [Empyrium], lava do damage 

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.