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.

Stuck while opening chest

  • Product: WRobot General
  • Type: Bug
  • Status: Unconfirmed

I got a code for a chest opening (because it's not working by default). This code was tested like 1000-2000 times and it was working 100% of the times. About 4-6 month ago it suddenly have stoped to work. Bot is opening chest, loot it, but then just stays endlesly at the same position. I was not using that function long ago but now i need it again and after t he 6 month it is still broken. Whole profile is not working.

My code is checking in a loop is there a chest spawned. And while there is a chest he is trying to loot it. So my guess, when he loots the chest, for some reason, bot continue to think that the chest it is still there, and are not going any further.


Here is a code example:

{
            WoWGameObject chest = wManager.Wow.ObjectManager.ObjectManager.GetObjectWoWGameObject().FirstOrDefault(i => i.Entry == chestID);
            while (chest != null && chest.Position.DistanceTo(new Vector3(a, b, c)) < 5 && chest.Position.DistanceTo(ObjectManager.Me.Position) <= 15)
            {
                         if (chest.Position.DistanceTo(ObjectManager.Me.Position) >= 5)
                         {
                                  wManager.Wow.Bot.Tasks.GoToTask.ToPosition(new Vector3(a, b, c));
                                  Thread.Sleep(800);
                         }

                          wManager.Wow.Helpers.Interact.InteractGameObjectAutoLoot(chest.GetBaseAddress, true, false);
                         Thread.Sleep(1000);
             }
}

Have tested it at 3 different realms, where it was working before, same problem at each of them.

User Feedback

Recommended Comments

There are no comments to display.

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.