TomeWardenKNarn.lua 525 B

12345678910111213141516171819202122232425
  1. --[[
  2. Script Name : SpawnScripts/Freeport/TomeWardenKNarn.lua
  3. Script Author : Premierio015
  4. Script Date : 2021.05.31 07:05:23
  5. Script Purpose : A Tour of the Commonlands dialogue needed
  6. :
  7. --]]
  8. local ATouroftheCommonlands = 5248
  9. function spawn(NPC)
  10. end
  11. function hailed(NPC, Spawn)
  12. FaceTarget(NPC, Spawn)
  13. if GetQuestStep(Spawn, ATouroftheCommonlands) == 16 then
  14. SetStepComplete(Spawn, ATouroftheCommonlands)
  15. end
  16. end
  17. function respawn(NPC)
  18. spawn(NPC)
  19. end