aHaoaeranturf-hunter.lua 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. --[[
  2. Script Name : SpawnScripts/TimorousDeep/aHaoaeranturf-hunter.lua
  3. Script Purpose : a Haoaeran turf-hunter
  4. Script Author : John Adams
  5. Script Date : 2009.02.26
  6. Script Notes : Auto-Generated Conversation from PacketParser Data
  7. --]]
  8. function spawn(NPC)
  9. end
  10. function respawn(NPC)
  11. spawn(NPC)
  12. end
  13. function hailed(NPC, Spawn)
  14. end
  15. function death(NPC, Spawn)
  16. choice = math.random(1, 100)
  17. if choice <= 35 then
  18. PlayFlavor(NPC, "voiceover/english/rok_combat_vo/a_spiroc/ft/_exp04/aviak/spiroc_death_2f7345b4.mp3", "Mayday... mayday...", "", 2109502278, 2212415108, Spawn)
  19. end
  20. end
  21. function killed(NPC, Spawn)
  22. choice = math.random(1, 100)
  23. if choice <= 35 then
  24. PlayFlavor(NPC, "voiceover/english/rok_combat_vo/a_spiroc/ft/_exp04/aviak/spiroc_victory_9f0466af.mp3", "Score one for the spiroc!", "", 2170775157, 841438160, Spawn)
  25. end
  26. end
  27. function aggro(NPC, Spawn)
  28. choice = math.random(1, 100)
  29. if choice <= 35 then
  30. PlayFlavor(NPC, "voiceover/english/rok_combat_vo/a_spiroc/ft/_exp04/aviak/spiroc_aggro_ef272489.mp3", "Hostile at twelve o'clock!", "", 1038256671, 3948487543, Spawn)
  31. end
  32. end