liftrock.lua 445 B

12345678910111213141516171819202122
  1. --[[
  2. Script Name : SpawnScripts/Antonica/liftrock.lua
  3. Script Author : Dorbin
  4. Script Date : 2022.05.15 02:05:10
  5. Script Purpose :
  6. :
  7. --]]
  8. local Ages = 5550
  9. function spawn(NPC)
  10. SetRequiredQuest(NPC, Ages, 5)
  11. end
  12. function casted_on(NPC, Spawn, SpellName)
  13. if SpellName == 'Look Under Rock' then
  14. SetStepComplete(Spawn, Ages, 5)
  15. end
  16. end
  17. function respawn(NPC)
  18. spawn(NPC)
  19. end