Advertisement
Guest User

Untitled

a guest
Dec 22nd, 2014
162
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.40 KB | None | 0 0
  1. local _, Sequences = ... -- Don't touch this
  2. ---Hunter---
  3. ---Marksman---
  4. ---By c0ldfyr3---
  5. --///////////////////////////////////////////////////////////////--
  6. Sequences['MarksST'] = {
  7.     StepFunction = [[
  8.         limit = limit or 1
  9.         if step == limit then
  10.             limit = limit % #macros + 1
  11.             step = 1
  12.         else
  13.             step = step % #macros + 1
  14.         end
  15.     ]],
  16.     PreMacro = [[
  17. /targetenemy [noharm][dead]
  18. /cast [@focus,help][help][@pet,exists] Misdirection
  19. /cast Rapid Fire
  20. /cast Blood Fury
  21.     ]],
  22.     '/cast [nochanneling] Kill Shot',
  23.     '/cast [nochanneling] Barrage',
  24.     '/cast [nochanneling] Chimaera Shot',  
  25.     '/cast [nochanneling] A Murder of Crows',
  26.     '/cast [nochanneling] Aimed Shot',
  27.     '/cast [nochanneling] Aimed Shot',
  28.     '/cast [nochanneling] Steady Shot',
  29.     '/cast [nochanneling] Steady Shot',
  30.     '/cast [nochanneling] Kill Shot',
  31.  
  32.     PostMacro = [[
  33. /startattack
  34. /script UIErrorsFrame:Clear()
  35.     ]],
  36. }
  37.  
  38. Sequences['MarksAOE'] = {
  39. StepFunction = [[
  40.         limit = limit or 1
  41.         if step == limit then
  42.             limit = limit % #macros + 1
  43.             step = 1
  44.         else
  45.             step = step % #macros + 1
  46.         end
  47.     ]],
  48. PreMacro = [[
  49. /targetenemy [noharm][dead]
  50. /cast [@focus,help][help][@pet,exists] Misdirection
  51. /cast [combat] Rapid Fire
  52. ]],
  53.     '/cast Kill Shot',
  54.     '/cast barrage',
  55.     '/cast Chimaera Shot', 
  56.     '/cast A Murder of Crows',
  57.     '/cast Glaive Toss',
  58.     '/cast Multi-Shot',
  59.     '/cast Multi-Shot',
  60.     '/cast Steady Shot',
  61.     '/cast Steady Shot',
  62. PostMacro = [[
  63. /startattack
  64. /petattack
  65. /script UIErrorsFrame:Clear()
  66. ]],
  67. }
  68. --/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////--
  69. --Shaman--
  70. --Elemental--
  71. --/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////--
  72. Sequences['EleST'] = {
  73. StepFunction = [[
  74.         limit = limit or 1
  75.         if step == limit then
  76.             limit = limit % #macros + 1
  77.             step = 1
  78.         else
  79.             step = step % #macros + 1
  80.         end
  81.     ]],
  82. PreMacro = [[
  83. /targetenemy [noharm][dead]
  84. ]],
  85.  
  86.     '/cast [nochanneling] Lava Burst',
  87.     '/cast [nochanneling] Lava Burst',
  88.     '/cast Searing Totem',
  89.     '/cast Flame Shock',
  90.     '/cast Unleash Flame',
  91.     '/cast [nochanneling] Lava Burst',
  92.     '/cast [nochanneling] Elemental Blast',
  93.     '/cast Earth Shock',
  94.     '/cast [nochanneling] Lightning Bolt',
  95.     '/cast [nochanneling] Lightning Bolt',
  96.  
  97. PostMacro = [[
  98. /startattack
  99. ]],
  100. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement