qstburningeyes.lua 709 B

12345678910111213141516171819202122232425262728293031323334
  1. --[[
  2. Script Name : SpawnScripts/Caves/qstburningeyes.lua
  3. Script Author : Shatou
  4. Script Date : 2020.01.05 02:01:54
  5. Script Purpose :
  6. :
  7. --]]
  8. local HIGH_SHAMAN_OF_THE_ROCKPAW_QUEST_ID = 495
  9. local STAFF_OF_SUMMONING_ID = 13583
  10. function spawn(NPC)
  11. end
  12. function casted_on(NPC, Spawn, Message)
  13. if HasQuest(Spawn, HIGH_SHAMAN_OF_THE_ROCKPAW_QUEST_ID) then
  14. if HasItem(Spawn, STAFF_OF_SUMMONING_ID) then
  15. if Message == "Place Staff of Summoning" then
  16. AddStepProgress(Spawn, HIGH_SHAMAN_OF_THE_ROCKPAW_QUEST_ID, 1, 1)
  17. end
  18. end
  19. end
  20. end
  21. function hailed(NPC, Spawn)
  22. FaceTarget(NPC, Spawn)
  23. end
  24. function respawn(NPC)
  25. end