ThaumaturgePulo.lua 1.7 KB

1234567891011121314151617181920212223242526272829303132
  1. --[[
  2. Script Name : SpawnScripts/Freeport/ThaumaturgePulo.lua
  3. Script Author : Premierio015
  4. Script Date : 2020.07.15 06:07:26
  5. Script Purpose :
  6. :
  7. --]]
  8. function spawn(NPC)
  9. end
  10. function hailed(NPC, Spawn)
  11. FaceTarget(NPC, Spawn)
  12. local choice = math.random(1, 5)
  13. if choice == 1 then
  14. PlayFlavor(NPC, "voiceover/english/human_eco_evil_dismalrage/ft/eco/evil/human_male_eco_evil_dismalrage_hail_gm_c41a9599.mp3", "I've never seen any group that's as undisciplined as the Freeport Militia.", "", 2881733735, 1430887225, Spawn)
  15. elseif choice == 2 then
  16. PlayFlavor(NPC, "voiceover/english/human_eco_evil_dismalrage/ft/eco/evil/human_male_eco_evil_dismalrage_hail_gm_ccbccf16.mp3", "I only hope the Arcane Scientists put as much dedication into serving our city as to their work.", "", 1096698116, 2189886869, Spawn)
  17. elseif choice == 3 then
  18. PlayFlavor(NPC, "voiceover/english/human_eco_evil_dismalrage/ft/eco/evil/human_male_eco_evil_dismalrage_hail_gm_83d81c66.mp3", "The Seafury Buccaneers are a corrupted bunch that can not be trusted to do anything.", "", 1054918218, 3551861508, Spawn)
  19. elseif choice == 4 then
  20. PlayFlavor(NPC, "voiceover/english/human_eco_evil_dismalrage/ft/eco/evil/human_male_eco_evil_dismalrage_hail_gm_777548f0.mp3", "You just can't trust the Coalition of Tradesfolke to do any business for you.", "", 329084664, 879226036, Spawn)
  21. else
  22. PlayFlavor(NPC, "voiceover/english/human_eco_evil_dismalrage/ft/eco/evil/human_male_eco_evil_dismalrage_hail_gm_70f99cef.mp3", "The arcane power of Dismal Rage is what gives spiritual strength to us all.", "", 4234456471, 4189553847, Spawn)
  23. end
  24. end
  25. function respawn(NPC)
  26. end