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 1.12.1 BG que messes up

Featured Replies

When I start the battleground bot it will talk to the battle masters and que but it always ques for Warsong Gulch (1) instead of "First Available".

This causes problems and I will sit in que forever waiting on a game but it will never pop. 

Is there a way to make Wrobot que for "First available" instead of queing for specific instances such as Warsong Gulch (1)

I have all addons turned off as well.

This is on client 1.12.1

yes, My client is 1.12.1 too.

And i found wManager.Wow.Helpers.ItemsManager.IsEquippableItem not work on vanilla. it says IsEquippableItem is not in ItemsManager.

 

 

var bagItems = wManager.Wow.Helpers.Bag.GetBagItem();

foreach (WoWItem item in bagItems) {
 
			if (item.IsEquippableItem) {  // here IsEquippableItem is not Exist in vanilla, The Wrobot version is 2.8.0
              
              

 

  • 1 year later...
On 3/8/2023 at 3:03 PM, libai said:

yes, My client is 1.12.1 too.

And i found wManager.Wow.Helpers.ItemsManager.IsEquippableItem not work on vanilla. it says IsEquippableItem is not in ItemsManager.

 

 

var bagItems = wManager.Wow.Helpers.Bag.GetBagItem();

foreach (WoWItem item in bagItems) {
 
			if (item.IsEquippableItem) {  // here IsEquippableItem is not Exist in vanilla, The Wrobot version is 2.8.0
              
              

 

mabye use like this(not tested):

foreach (wManager.Wow.ObjectManager.WoWItem item in bagItems) {
            if (Lua.LuaDoString<bool>("return IsEquippableItem(" + item.Entry + ")")) {
                if ((item.GetItemInfo.ItemRarity==0 && ButlerSettings.CurrentSetting.EquipGray)
                    || (item.GetItemInfo.ItemRarity==1 && ButlerSettings.CurrentSetting.EquipWhite)
                    || (item.GetItemInfo.ItemRarity==2 && ButlerSettings.CurrentSetting.EquipGreen)
                    || (item.GetItemInfo.ItemRarity==3 && ButlerSettings.CurrentSetting.EquipBlue)
                    || (item.GetItemInfo.ItemRarity==4 && ButlerSettings.CurrentSetting.EquipEpic)
                    || (item.GetItemInfo.ItemRarity==5 && ButlerSettings.CurrentSetting.EquipLegendary)) {
                    checkThisItem(item);
                    Thread.Sleep(shortDelay);
                }
            }
        }

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.