questsubclasszonetosewersubzone.lua 492 B

1234567891011121314151617181920212223
  1. --[[
  2. Script Name : SpawnScripts/SerpentSewer/questsubclasszonetosewersubzone.lua
  3. Script Author : Premierio015
  4. Script Date : 2021.07.04 04:07:09
  5. Script Purpose :
  6. :
  7. --]]
  8. function spawn(NPC)
  9. end
  10. function casted_on(NPC, Spawn, SpellName)
  11. if SpellName == 'Door to a storage room' then
  12. SendMessage(Spawn, "The door seems to have a non-regulation lock placed on it.")
  13. end
  14. end
  15. function respawn(NPC)
  16. spawn(NPC)
  17. end