Advertisement
Guest User

Untitled

a guest
Aug 17th, 2017
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.34 KB | None | 0 0
  1. (ActionButton 32)
  2. "Stealth"
  3.  
  4.  
  5. (ActionButton 34)
  6. /script if IsCurrentAction(35) then UseAction(35) end;
  7.  
  8.  
  9. (ActionButton 35)
  10. "Attack"
  11.  
  12.  
  13. (ActionButton 36)
  14.  
  15. /script if not IsCurrentAction(35) then UseAction(35) end;
  16. /script if UnitHealth("target")==0 and UnitExists("target") then ClearTarget(); end
  17. /run if GetUnitName("target")==nil then TargetNearestEnemy() end;
  18.  
  19.  
  20.  
  21. put this as your Sinister Strike
  22.  
  23. /script if buffed("Stealth", 'player') then UseAction(34); else UseAction(36); end
  24. /script if not IsCurrentAction(32) then UseAction(32); end
  25. /cast Sinister Strike
  26. /cast Riposte
  27. /cast Ghostly Strike
  28. /cast Sinister Strike
  29.  
  30.  
  31.  
  32. put this as your eviscerate
  33.  
  34. /cast Eviscerate
  35. /cast Riposte
  36. /cast Eviscerate
  37. /script if not buffed("Gouge", 'target') then UseAction(36); end
  38. /cast Eviscerate
  39.  
  40.  
  41.  
  42. put this on your Backstab button
  43.  
  44. /script if not IsCurrentAction(32) then UseAction(32); end
  45. /script EquipSet("Dagger")
  46. /cast Backstab
  47. /script if not buffed("Gouge", 'target') then UseAction(36); end
  48. /cast Riposte
  49.  
  50.  
  51. put this on your Ambush button
  52.  
  53. /script if (UnitMana("player") > 59) then CastSpellByName("Ambush"); end
  54. /script if buffed("Stealth", 'player') then UseAction(34); else UseAction(36); end
  55. /script EquipSet("Dagger")
  56.  
  57.  
  58. put this as your stealth button
  59.  
  60. /script if not IsCurrentAction(32) then UseAction(32) end;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement