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.

Swapping pets

Featured Replies

Is it possible to set somewhere in bot to swap pet if at/below certain %? Or make it a new feature in a future bot update in the profile setting window?

 

From pet battles feature, this is only what bothers me. Have made my own profiles to grind pet levels but swapping them would increase the speed of leveling them instead of having them die.

 

Thanks!

 

  • 1 month later...
  • 3 weeks later...

how does the '' automatically order pets by level '' works?

 

btw: 

the *revive even if only 1 pet is dead* stopped working

  • 1 month later...
  • 4 weeks later...

Hi,

 

How explain I have added possibility to use lua script.

 

Use this script for change pet when health is smaller at 30 % (you can change this value):

local minHealthPercent = 30;

local PetAlly = 1;
local PetEnemy = 2;

local activePetEnemy = C_PetBattles.GetActivePet(PetEnemy);
local typePetEnemy = C_PetBattles.GetPetType(PetEnemy, activePetEnemy);
local activePetAlly = C_PetBattles.GetActivePet(PetAlly);
local typePetAlly = C_PetBattles.GetPetType(PetAlly, activePetAlly);

if C_PetBattles.GetHealth(PetAlly, activePetAlly) * 100 / C_PetBattles.GetMaxHealth(PetAlly, activePetAlly) <= minHealthPercent then
	for i = 1, NUM_BATTLE_PETS_IN_BATTLE do
		if C_PetBattles.GetHealth(PetAlly, i) * 100 / C_PetBattles.GetMaxHealth(PetAlly, i) > minHealthPercent and not  (i == activePetAlly) then
				C_PetBattles.ChangePet(i); 
				break;
		end
	end
end
  • 2 months later...
  • 5 months later...
  • 7 months later...

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.