MarinerKajiz.lua 984 B

123456789101112131415161718192021222324252627
  1. --[[
  2. Script Name : SpawnScripts/QeynosHarbor/MarinerKajiz.lua
  3. Script Author : Dorbin
  4. Script Date : 2022.06.15 08:06:06
  5. Script Purpose :
  6. :
  7. --]]
  8. function spawn(NPC)
  9. end
  10. function respawn(NPC)
  11. spawn(NPC)
  12. end
  13. function hailed(NPC, Spawn)
  14. RandomGreeting(NPC, Spawn)
  15. end
  16. function RandomGreeting(NPC, Spawn)
  17. local choice = MakeRandomInt(1,2)
  18. if choice == 1 then
  19. PlayFlavor(NPC, "voiceover/english/kerran_eco_farsea_1/ft/service/guard/kerran_guard_service_farsea_1_hail_gm_1d37e9de.mp3", "I may be a hired hand of the Far Sea Trading Company, but I take pride in my work.", "threaten", 1219327636, 870968867, Spawn, 0)
  20. elseif choice == 2 then
  21. PlayFlavor(NPC, "voiceover/english/kerran_eco_farsea_1/ft/service/guard/kerran_guard_service_farsea_1_hail_gm_6d23f0d1.mp3", "Get out of my face, scum! You don't need to talk to me, buy your stuff and move on.", "cutthroat", 2628548540, 4046692194, Spawn, 0)
  22. end
  23. end