asuspectedrenegade.lua 1.1 KB

1234567891011121314151617181920212223242526272829
  1. --[[
  2. Script Name : SpawnScripts/Freeport/asuspectedrenegade.lua
  3. Script Author : Premierio015
  4. Script Date : 2020.08.04 06:08:48
  5. Script Purpose :
  6. :
  7. --]]
  8. function spawn(NPC)
  9. end
  10. function hailed(NPC, Spawn)
  11. FaceTarget(NPC, Spawn)
  12. if GetRace(NPC) == 1 and GetGender(NPC) == 2 then
  13. local choice = math.random(1, 3)
  14. if choice == 1 then
  15. PlayFlavor(NPC, "voiceover/english/darkelf_eco_race_evil/ft/eco/evil/darkelf_eco_race_evil_hail_gm_eb5fa2b6.mp3", "One day, our lot will improve here.", "sigh", 1462094560, 868024293, Spawn)
  16. elseif choice == 2 then
  17. PlayFlavor(NPC, "voiceover/english/darkelf_eco_race_evil/ft/eco/evil/darkelf_eco_race_evil_darkelf_gm_2fb22326.mp3", "We'll rise again, and then nothing will stop us.", "threaten", 1301346574, 4276784701, Spawn)
  18. else
  19. PlayFlavor(NPC, "voiceover/english/darkelf_eco_race_evil/ft/eco/evil/darkelf_eco_race_evil_darkelf_gm_54a02968.mp3", "What a foul, dirty place this is compared to Neriak.", "sigh", 580466389, 3679414511, Spawn)
  20. end
  21. end
  22. end
  23. function respawn(NPC)
  24. end