Pet Attack
Addon Support Statement
NEWS: I'm back in WoW. I'll try to update addons after catching up, especially if they are bugging out.
Addon Description
Pet Attack shows a message on the screen, warning you if your pet isn't attacking while you're in combat. Useful if you like me run with your pet on passive and forget to tell it to attack. Currently the addon will only function for Hunters, Warlocks, Unholy Death Knights and Frost Mages. It will also show the warning if your pet is dead since a dead pet by definition isn't attacking anything.
This version is incorrect - correct version is on WOW Interface.
Good to hear you're back to WoW dhedbor! any chance you will update for WoD? thanks :)
not working here~
This is highly needed by me since I have Basklisk,Crocolisk and a few cats that don't attack, no matter if they're on passive or not
it would be nice if you could move the alert window, also having an option for audio alert for dead pet would be of tremendous help. i also notice this addon prompts a pet is not attacking alert when i dont have a pet summoned
Hello,
I have a Problem with this addon.
Everythings works fine, but when I switch my Pet e.g. from Felguard to Felhunter the addon don´t work anymore. My Felhuner don`t attack but the addon does not give the "Pet is not attacking" warning.
Is it possible to fix it?
function mod:HasPermaPet()
local _,class = UnitClass("player")
if class == "WARLOCK" or class == "HUNTER" then
return true
elseif class == "MAGE" then
return not not GetSpellBookItemInfo("31687")
elseif class == "DEATHKNIGHT" then
return not not GetSpellBookItemInfo("Scourge Strike")
end
return false
end
CHANGED TO :
function mod:HasPermaPet()
local _,class = UnitClass("player")
if class == "WARLOCK" or class == "MAGE" then
return true
elseif class == "DEATHKNIGHT" then
return not not GetSpellBookItemInfo("Scourge Strike")
end
return false
end
Now that's work with mage pet.
Thanks.