IndisSurion.lua 848 B

123456789101112131415161718192021222324252627282930
  1. --[[
  2. Script Name : SpawnScripts/SouthQeynos/IndisSurion.lua
  3. Script Purpose : Indis Surion <Sage>
  4. Script Author : Dorbin
  5. Script Date : 2023.06.21
  6. Script Notes : Auto-Generated Conversation from PacketParser Data
  7. --]]
  8. require "SpawnScripts/Generic/DialogModule"
  9. function spawn(NPC)
  10. end
  11. function respawn(NPC)
  12. spawn(NPC)
  13. end
  14. function hailed(NPC, Spawn)
  15. if HasQuest(Spawn,5766) and GetQuestStepProgress(Spawn,5766,3) == 0 then --WELCOME TO QEYNOS,CITIZEN
  16. SetStepComplete(Spawn,5766,3)
  17. end
  18. Dialog1(NPC, Spawn)
  19. end
  20. function Dialog1(NPC, Spawn)
  21. FaceTarget(NPC, Spawn)
  22. Dialog.New(NPC, Spawn)
  23. Dialog.AddDialog("Search for the relics of the past Age of Turmoil. Their discovery will gain you great power and prestige!")
  24. Dialog.AddOption("Thanks for the information, I just might do that.")
  25. Dialog.Start()
  26. end