questheritagedwbstoutkeg.lua 569 B

1234567891011121314151617181920212223
  1. --[[
  2. Script Name : SpawnScripts/Blackburrow/questheritagedwbstoutkeg.lua
  3. Script Author : Premierio015
  4. Script Date : 2023.04.21 08:04:22
  5. Script Purpose :
  6. :
  7. --]]
  8. local TheseBootsWereMadeFor = 5805 -- These Boots Were Made For QUEST ID
  9. function spawn(NPC)
  10. SetRequiredQuest(NPC, TheseBootsWereMadeFor, 8)
  11. end
  12. function casted_on(NPC, Spawn, Spell)
  13. if Spell == 'pour some Blackburrow Stout for Hwal' then
  14. SetStepComplete(Spawn, TheseBootsWereMadeFor, 8)
  15. end
  16. end
  17. function respawn(NPC)
  18. spawn(NPC)
  19. end