Hey guys,
I've got this neat macro on my hunter:
/run local c=CastSpellByName if UnitExists("pet")then if UnitHealth("pet")==0 then c("Revive Pet")else if IsShiftKeyDown() then c("Dismiss Pet") else c("Mend Pet") end end else c("Call Pet") end
It revives my pet if dead or mend pet or call pet and dismiss if shiftkey down. This macro works great ingame.
Now i'm playing a macro and tried to make above macro work for warlock pet:
/run local c=CastSpellByName if UnitExists("pet")then if UnitHealth("pet")==0 then c("Summon Voidwalker")else if IsShiftKeyDown() then c("Dismiss Pet") else c("Health Funnel") end end
I want it to Summon voidwalker if dead else health funnel if shiftkey down dismiss.
But it's not working
Any one have a working macro for this?
Much apreciated.