Advertisement
Whiteaxe

Prot Pally Gnome Sequencer macro 6.03

Dec 15th, 2014
380
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.36 KB | None | 0 0
  1. Sequences['ProtST'] = {
  2. StepFunction = [[
  3. limit = limit or 1
  4. if step == limit then
  5. limit = limit % #macros + 1
  6. step = 1
  7. else
  8. step = step % #macros + 1
  9. end
  10. ]],
  11. PreMacro = [[
  12. /console Sound_EnableSFX 0
  13. /targetenemy [noharm][dead]
  14. ]],
  15. '/castsequence reset=20 Sacred Shield,Crusader Strike,Crusader Strike,Crusader Strike,Crusader Strike,Crusader Strike,Crusader Strike',
  16. '/cast Judgment',
  17. '/cast Holy Wrath',
  18. "/cast Avenger's Shield",
  19. '/cast Execution Sentence',
  20. '/cast Hammer of Wrath',
  21. '/cast Consecration',
  22. PostMacro = [[
  23. /cast Shield of the Righteous
  24. /startattack
  25. /script UIErrorsFrame:Hide();
  26. /console Sound_EnableSFX 1
  27. ]],
  28. }
  29.  
  30. Sequences['ProtAoE'] = {
  31. StepFunction = [[
  32. limit = limit or 1
  33. if step == limit then
  34. limit = limit % #macros + 1
  35. step = 1
  36. else
  37. step = step % #macros + 1
  38. end
  39. ]],
  40. PreMacro = [[
  41. /console Sound_EnableSFX 0
  42. /targetenemy [noharm][dead]
  43. ]],
  44. '/castsequence reset=20 Sacred Shield,Hammer of the Righteous,Hammer of the Righteous,Hammer of the Righteous,Hammer of the Righteous,Hammer of the Righteous',
  45. '/cast Judgment',
  46. '/cast Consecration',
  47. '/cast Holy Wrath',
  48. "/cast Avenger's Shield",
  49. '/cast Execution Sentence',
  50. '/cast Hammer of Wrath',
  51. '/cast Consecration',
  52. PostMacro = [[
  53. /cast Shield of the Righteous
  54. /startattack
  55. /script UIErrorsFrame:Hide();
  56. /console Sound_EnableSFX 1
  57. ]],
  58. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement