Advertisement
Guest User

/krog/ pet macros

a guest
Jul 21st, 2016
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.05 KB | None | 0 0
  1. Warlock
  2.  
  3. Attack + Use 1st ability ie Fireball, Torment, Lash, Devour Magic
  4. /script if GetUnitName("target")==nil then TargetNearestEnemy() end
  5. /script CastPetAction(2);
  6. /script CastPetAction(10);
  7. /script PetAttack(target);
  8. /script CastPetAction(4);
  9.  
  10. Follow
  11. /script PetFollow("CharacterName")
  12. /script CastPetAction(10);
  13.  
  14. Hunter
  15.  
  16. Attack
  17. /script if GetUnitName("target")==nil then TargetNearestEnemy() end
  18. /script CastPetAction(2);
  19. /script CastPetAction(10);
  20. /script PetAttack(target)
  21. /cast Charge
  22. /cast Dash
  23.  
  24. Follow
  25. /script PetFollow("CharacterName")
  26. /script CastPetAction(10);
  27.  
  28. Scatter
  29. /script if GetUnitName("target")==nil then TargetNearestEnemy() end
  30. /script if UnitExists("pettarget") and UnitIsUnit("target", "pettarget") then PetPassiveMode(); else end
  31. /cast Scatter Shot
  32.  
  33. Maintenance
  34. /run local c=CastSpellByName if UnitExists("pet") then if UnitHealth("pet")==0 then c("Revive Pet") elseif GetPetHappiness()~=nil and GetPetHappiness()~=3 then c("Feed Pet") PickupContainerItem(3, 1) else c("Dismiss Pet") end else c("Call Pet") end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement