Advertisement
Guest User

Untitled

a guest
Jan 22nd, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 KB | None | 0 0
  1. function(event, timestamp, e, hideCaster, sourceGUID, sourceName, sourceFlags, sourceRaidFlags, destGUID, destName, destFlags, destRaidFlags, spellID, spellName, spellSchool, extraspellID)
  2.  
  3. if event == "ENCOUNTER_START" then
  4. aura_env.phase = 1
  5. aura_env.start = GetTime()
  6. end
  7.  
  8. if e == "SPELL_AURA_REMOVED" and spellID == 244894 and aura_env.phase == 1 then
  9. aura_env.phase = 2
  10. aura_env.start = GetTime()
  11. end
  12.  
  13. if e == "SPELL_AURA_REMOVED" and spellID == 244894 and aura_env.phase == 2 then
  14. aura_env.phase = 3
  15. aura_env.start = GetTime()
  16. end
  17. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement