SamwellBrighton.lua 931 B

12345678910111213141516171819202122232425262728
  1. --[[
  2. Script Name : SpawnScripts/QeynosHarbor/SamwellBrighton.lua
  3. Script Author : Dorbin
  4. Script Date : 2022.06.10 12:06:17
  5. Script Purpose : Fabricated, yet relevant to 'The Leaky Drake' survivor story.
  6. :
  7. --]]
  8. function spawn(NPC)
  9. end
  10. function hailed(NPC, Spawn)
  11. local Choice = MakeRandomInt(1,3)
  12. if Choice == 1 then
  13. PlayFlavor(NPC,"","Please, leave me to my drink. I'm trying to wash away these visions... my crew mates, dashed out to sea. Gone.","",0,0,Spawn)
  14. elseif Choice == 2 then
  15. PlayFlavor(NPC,"","Can't you see I'm drink'n?! To the lost crew of the Leaky Drake. May she rest in the deeps.","",0,0,Spawn)
  16. elseif Choice == 3 then
  17. PlayFlavor(NPC,"","Our ship had seen many voyages for the Far Seas Trading company, but Captain James... the crew... gone.","",0,0,Spawn)
  18. end
  19. end
  20. function respawn(NPC)
  21. spawn(NPC)
  22. end