dockbarrel1.lua 507 B

123456789101112131415161718192021222324252627
  1. --[[
  2. Script Name : SpawnScripts/ForestRuins/dockbarrel1.lua
  3. Script Author : Dorbin
  4. Script Date : 2022.02.11 03:02:01
  5. Script Purpose : Quest Clearing Remmy's Name
  6. :
  7. --]]
  8. local Barrel = 533
  9. function spawn(NPC)
  10. SetRequiredQuest(NPC, Barrel, 1)
  11. end
  12. function casted_on(NPC, Spawn, SpellName)
  13. if SpellName == 'inspect' then
  14. SetStepComplete(Spawn, Barrel, 1)
  15. end
  16. end
  17. function spawn(NPC)
  18. end
  19. function respawn(NPC)
  20. spawn(NPC)
  21. end