desertroots.lua 523 B

12345678910111213141516171819202122232425
  1. --[[
  2. Script Name : SpawnScripts/Commonlands/desertroots.lua
  3. Script Author : Premierio015
  4. Script Date : 2021.06.01 09:06:43
  5. Script Purpose :
  6. :
  7. --]]
  8. local LionManeHelm = 5249
  9. function spawn(NPC)
  10. end
  11. function casted_on(NPC, Spawn, SpellName)
  12. if SpellName == 'Gather' then
  13. if GetQuestStep(Spawn, LionManeHelm) == 2 then
  14. AddStepProgress(Spawn, LionManeHelm, 2, 1)
  15. end
  16. end
  17. end
  18. function respawn(NPC)
  19. spawn(NPC)
  20. end