crushedstone.lua 497 B

1234567891011121314151617181920212223
  1. --[[
  2. Script Name : SpawnScripts/MizansCellar/crushedstone.lua
  3. Script Author : Dorbin
  4. Script Date : 2022.09.22 06:09:00
  5. Script Purpose :
  6. :
  7. --]]
  8. function spawn(NPC)
  9. SetRequiredQuest(NPC,5749,6,1,0,1)
  10. end
  11. function casted_on(NPC, Spawn, Message)
  12. if Message == "Mining" then
  13. if QuestStepIsComplete(Spawn,5749,6)== false then
  14. SetStepComplete(Spawn,5749,6)
  15. end
  16. end
  17. end
  18. function respawn(NPC)
  19. spawn(NPC)
  20. end