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.

WRobot didnt loot Vanilla

Featured Replies

Hello have the problem that afther a fight the bot will click on the dead mob open the loot window but didnt loot.

The server have "Auto loot" (Quick loot) without pressing Shift + Mouse 

is it possible that the bot didnt use quickloot i think the problem ist if the server have quickloot and the bot use it too that he didnt loot.

 

i just need to know how can i change the bot from quick loot to normal loot

 

Hello, try this plugin :

using wManager.Wow.Enums;
using wManager.Wow.Helpers;
using wManager.Wow.ObjectManager;

public class Main : wManager.Plugin.IPlugin
{
    public void Initialize()
    {
        var stopWatch = new System.Diagnostics.Stopwatch();
        wManager.Events.InteractEvents.OnInteractPulse += (target, cancelable) =>
        {
            if (stopWatch.ElapsedMilliseconds < 1000
                && stopWatch.IsRunning)
            {
                return;
            }

            var obj = ObjectManager.GetObjectByGuid(target);
            if (obj.IsValid &&
                (obj.Type == WoWObjectType.Unit || obj.Type == WoWObjectType.GameObject))
            {
                var isLootable = false;
                if (obj.Type == WoWObjectType.Unit)
                {
                    var unit = new WoWUnit(obj.GetBaseAddress);
                    isLootable = unit.IsLootable;
                }
                else if (obj.Type == WoWObjectType.GameObject)
                {
                    isLootable = true;
                }

                if (isLootable)
                {
                    stopWatch.Restart();
                    Interact.InteractGameObject(obj.GetBaseAddress);
                    cancelable.Cancel = true;
                }
            }
        };
    }

    public void Dispose()
    {
    }

    public void Settings()
    {
    }
}



 

Main.cs

  • Author

Thanks i try it in 1 hour If im at Home, 

 

The next Problem is they didnt use Skills. They only Run to the target and Meele Auto Attack in the log would be the skills. Log say using Skil XY (XY= Any skill Name) and ingame the only Auto Attack If we can Solve this too im rly fine ☺️💪

  • Author
9 hours ago, Droidz said:

Hello, try this plugin :

using wManager.Wow.Enums;
using wManager.Wow.Helpers;
using wManager.Wow.ObjectManager;

public class Main : wManager.Plugin.IPlugin
{
    public void Initialize()
    {
        var stopWatch = new System.Diagnostics.Stopwatch();
        wManager.Events.InteractEvents.OnInteractPulse += (target, cancelable) =>
        {
            if (stopWatch.ElapsedMilliseconds < 1000
                && stopWatch.IsRunning)
            {
                return;
            }

            var obj = ObjectManager.GetObjectByGuid(target);
            if (obj.IsValid &&
                (obj.Type == WoWObjectType.Unit || obj.Type == WoWObjectType.GameObject))
            {
                var isLootable = false;
                if (obj.Type == WoWObjectType.Unit)
                {
                    var unit = new WoWUnit(obj.GetBaseAddress);
                    isLootable = unit.IsLootable;
                }
                else if (obj.Type == WoWObjectType.GameObject)
                {
                    isLootable = true;
                }

                if (isLootable)
                {
                    stopWatch.Restart();
                    Interact.InteractGameObject(obj.GetBaseAddress);
                    cancelable.Cancel = true;
                }
            }
        };
    }

    public void Dispose()
    {
    }

    public void Settings()
    {
    }
}



 

Main.cs 1.4 kB · 0 downloads

WoW you are a HERO !

that works they loot all items ❤️ love you 😄 and if you can solve the skill problem you would be insane 🙂

 

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.