HasPetUI

From Warcraft Wiki
Jump to navigation Jump to search
Flavors
Links
Info
Added in 1.0.0 / 1.13.2

Returns true if the player currently has an active (hunter) pet out.

hasUI, isHunterPet = HasPetUI()

Returns

hasUI
boolean - True if the player has a pet User Interface, False if he does not.
isHunterPet
boolean - True if the pet is a hunter pet, False if it is not.

Example

local hasUI, isHunterPet = HasPetUI();
if hasUI then
  if isHunterPet then
    DoHunterPetStuff(); -- For hunters
  else
    DoMinionStuff(); -- For Warlock minions
  end
end