LockedDoors.lua 479 B

12345678910111213141516171819202122232425
  1. --[[
  2. Script Name : SpawnScripts/TempleStreet2/LockedDoors.lua
  3. Script Author : Premierio015
  4. Script Date : 2020.08.18 08:08:46
  5. Script Purpose :
  6. :
  7. --]]
  8. function spawn(NPC)
  9. end
  10. function casted_on(NPC, Spawn, SpellName)
  11. if SpellName == "use" then
  12. SendMessage(Spawn, "This door is securely locked!", "yellow")
  13. end
  14. end
  15. function respawn(NPC)
  16. end