gnollboat.lua 766 B

12345678910111213141516171819202122232425262728
  1. --[[
  2. Script Name : SpawnScripts/Antonica/gnollboat.lua
  3. Script Purpose : Support for quest Suspicious Activity from Tyllia Navar
  4. Script Author : Emagi
  5. Script Date : 5/14/2020
  6. Script Notes :
  7. --]]
  8. local QUEST_ID = 3000
  9. function spawn(NPC)
  10. end
  11. function respawn(NPC)
  12. spawn(NPC)
  13. end
  14. function casted_on(NPC, Spawn, Message)
  15. if Message == "inspect" then
  16. Dialog1(NPC, Spawn)
  17. end
  18. end
  19. function Dialog1(NPC, Spawn)
  20. local conversation = CreateConversation()
  21. StartDialogConversation(conversation, 1, NPC, Spawn, "The boat is empty. Its hull is wet suggesting recent use. There are scratches and claw marks over the entirety of the boat. It has not been properly taken care of, but it looks like it would still float.")
  22. SetStepComplete(Spawn, QUEST_ID, 3)
  23. end