Advertisement
Guest User

Untitled

a guest
Jul 18th, 2019
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.26 KB | None | 0 0
  1. #showtooltip Whirlwind
  2. /startattack
  3.  
  4. /run if IsUsableSpell("Victory Rush") then CastSpellByName("Victory Rush") end
  5.  
  6. /run if (UnitChannelInfo("target")~=nil or UnitCastingInfo("target")~=nil) then CastSpellByName("Pummel") end
  7.  
  8. /run if GetInventoryItemCooldown(13)==0 then UseInventoryItem(13) end
  9. /run if GetInventoryItemCooldown(14)==0 then UseInventoryItem(14) end
  10. /run if (GetSpellCooldown("Blood Fury") == 0) then CastSpellByName("Blood Fury") end
  11.  
  12. /run if not UnitBuff("player", "Battle Shout") then CastSpellByName("Battle Shout") end
  13.  
  14. /run if UnitPower("player") < 15 then CastSpellByName("Bloodrage") end
  15.  
  16. /run if UnitPower("player") > 25 and IsSpellInRange("Whirlwind",'target')~=1 and (GetSpellCooldown("Whirlwind") == 0) then CastSpellByName("Whirlwind") end
  17.  
  18. /run if UnitPower("player") > 30 then CastSpellByName("Cleave") end
  19.  
  20. /run if (UnitHealth('target')/UnitHealthMax('target')>0.20) and UnitPower("player") > 20 and (GetSpellCooldown("Bloodthirst") == 0) then CastSpellByName("Bloodthirst") end
  21.  
  22. /run if UnitBuff("player", "Slam!") and UnitPower("player") > 25 then CastSpellByName("Slam") end
  23.  
  24. /run if (UnitHealth('target')/UnitHealthMax('target')<0.20) then CastSpellByName("Execute") end
  25.  
  26. /run StaticPopup_Hide("MACRO_ACTION_FORBIDDEN");
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement