ShadowsKiss.lua 365 B

123456789101112131415161718192021
  1. --[[
  2. Script Name : <script-name>
  3. Script Purpose : <purpose>
  4. Script Author : <author-name>
  5. Script Date : <date>
  6. Script Notes : <special-instructions>
  7. --]]
  8. -- Quest ID's
  9. local A_LESSON_TO_LEARN = 336
  10. function spawn(NPC)
  11. SetRequiredQuest(NPC, A_LESSON_TO_LEARN, 1)
  12. end
  13. function hailed(NPC, Spawn)
  14. end
  15. function respawn(NPC)
  16. spawn(NPC)
  17. end