Advertisement
Guest User

Untitled

a guest
Aug 3rd, 2015
149
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. function(event, ...)
  2. if event == "ENCOUNTER_START" then
  3. local encounterID, encounterName, difficultyID, raidSize = ...
  4.  
  5. print("GOT ENC START")
  6. print("ENC START: EID[" .. encounterID .. "] eName[" .. encounterName .. "]")
  7.  
  8. if encounterID == 1783 then
  9. print("Found gorefiend encounter ** STARTING **")
  10. return true
  11. end
  12. end
  13. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement