KalrilNightstalker.lua 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. --[[
  2. Script Name : SpawnScripts/Freeport/KalrilNightstalker.lua
  3. Script Author : Premierio015
  4. Script Date : 2020.07.22 09:07:13
  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, 8)
  13. if choice == 1 then
  14. PlayFlavor(NPC, "", "I'm a dual-breed, not a half-elf. If you call me half-elf again, I'll cut YOU in half!", "cutthroat", 1689589577, 4560189, Spawn)
  15. elseif choice == 2 then
  16. PlayFlavor(NPC, "", "I bet you've got some amazing tales laced with backstabbing and evil cunning.", "nod", 1689589577, 4560189, Spawn)
  17. elseif choice == 3 then
  18. PlayFlavor(NPC, "", "I don't know. Now that the flotsam and jetsam have been removed from the city, it just doesn't feel like home for me.", "shrug", 1689589577, 4560189, Spawn)
  19. elseif choice == 4 then
  20. PlayFlavor(NPC, "", "I gotta get into the Militia. Then I could legally beat up people.", "ponder", 1689589577, 4560189, Spawn)
  21. elseif choice == 5 then
  22. PlayFlavor(NPC, "", "Those that go where the wind takes them can wind up lost at sea. You seem like you've got both hands on the captain's wheel.", "agree", 1689589577, 4560189, Spawn)
  23. elseif choice == 6 then
  24. PlayFlavor(NPC, "", "Hot day, isn't it?", "", 1689589577, 4560189, Spawn)
  25. elseif choice == 7 then
  26. PlayFlavor(NPC, "", "Don't look to me to be your next travel mate!", "no", 1689589577, 4560189, Spawn)
  27. else
  28. PlayFlavor(NPC, "", "I can't wait until I'm back out at sea. It's odd to have solid ground under my feet.", "chuckle", 1689589577, 4560189, Spawn)
  29. end
  30. end
  31. function respawn(NPC)
  32. end