furlinedglovesdownhay.lua 582 B

12345678910111213141516171819202122
  1. --[[
  2. Script Name : SpawnScripts/Antonica/furlinedglovesdownhay.lua
  3. Script Author : Dorbin
  4. Script Date : 2023.05.14 06:05:42
  5. Script Purpose : Fur Lined Gloves update
  6. :
  7. --]]
  8. function spawn(NPC)
  9. SetRequiredQuest(NPC, 5815, 3)
  10. end
  11. function casted_on(NPC, Spawn,SpellName)
  12. if SpellName == 'Search Hay' and GetQuestStep( Spawn, 5815)==3 then
  13. SendMessage(Spawn,"You find some down griffon feathers within the bound hay!")
  14. SetStepComplete(Spawn,5815,3)
  15. end
  16. end
  17. function respawn(NPC)
  18. spawn(NPC)
  19. end