MarauderKindolus.lua 994 B

12345678910111213141516171819202122232425262728
  1. --[[
  2. Script Name : SpawnScripts/SouthFreeport/MarauderKindolus.lua
  3. Script Purpose : Marauder Kindolus
  4. Script Author : Dorbin
  5. Script Date : 2022.05.04
  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. RandomGreeting(NPC, Spawn)
  15. end
  16. function RandomGreeting(NPC, Spawn)
  17. local choice = MakeRandomInt(1,2)
  18. if choice == 1 then
  19. PlayFlavor(NPC, "", "Well, it seems you've been deemed worthy of trade in our organization. My congratulations to you and your crew. You need to speak to Corsair G`Kex over there. You can't miss him -- he'll be the one standing upon the deck of a large vessel in port. Good hunting! Until we meet again, friend...", "", 0, 0, Spawn, 0)
  20. elseif choice == 2 then
  21. PlayFlavor(NPC, "", "What filth is this before me? I've a schedule to keep and no time to associate with common trash.", "", 0, 0, Spawn, 0)
  22. end
  23. end