Advertisement
Guest User

Jaina Sender

a guest
Mar 25th, 2019
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.43 KB | None | 0 0
  1. aura_env.start = {}
  2. aura_env.phase = 1
  3. aura_env.active = {}
  4. aura_env.start[1] = 0
  5. aura_env.total = 2
  6.  
  7. -- [phase number] = {eventname, spellID}
  8. aura_env.trigger ={
  9. [2] = {"SPELL_CAST_SUCCESS", 288199},
  10. [3] = {"SPELL_INTERRUPT", 288199},
  11. [4] = {"SPELL_CAST_START", 288719},
  12. [5] = {"SPELL_INTERRUPT", 290001},
  13. }
  14.  
  15.  
  16.  
  17. --{time, duration, text, display duration, name}
  18. -- time being seconds after phae start, duration of how long its being displayed, display duration is either true or false. True will show the remaining duration of this text in the receiver. Name is optional to send a text to a specific person rather than the entire raid
  19. aura_env.content = {
  20. [1] = {
  21. },
  22.  
  23. [2] = {
  24. },
  25.  
  26. [3] = {
  27. {0, 9, "Bait + Broadsides", false},
  28. {10, 6, "Tanks Avalanche zusammen", false},
  29. {17, 7, "Kill Barrel", true},
  30. {41, 7, "Bait + Siegebreaker", false},
  31. {68, 10, "Kill Barrel", true},
  32. {80, 7, "Bait", false},
  33. {90, 10, "Avalanche mit Nactax", false},
  34. {122, 12, "Kill Barrel", true},
  35. },
  36. [4] = {
  37. {25, 5, "CANCEL LUST", false},
  38. },
  39. [5] = {
  40. {10, 11, "Orb Soak + Broadsides", false},
  41. {58, 10, "Siegebreaker Suicide", false},
  42. },
  43.  
  44.  
  45. }
  46.  
  47.  
  48. for i=1,#aura_env.content do
  49. aura_env.active[i] = {}
  50. for j=1,#aura_env.content[i] do
  51. aura_env.active[i][j] = false
  52. end
  53. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement