LeftFoyerDoor.lua 459 B

1234567891011121314151617181920212223
  1. --[[
  2. Script Name : SpawnScripts/The Estate of Unrest/LeftFoyerDoor.lua
  3. Script Author : neatz09
  4. Script Date : 2021.01.02 12:01:33
  5. Script Purpose :
  6. :
  7. --]]
  8. function spawn(NPC)
  9. end
  10. function usedoor(NPC, Spawn, IsOpen)
  11. if IsOpen == false then
  12. SendMessage(Spawn, "The door to the foyer is barred by a strong locking mechanism.", "white")
  13. end
  14. OpenDoor(NPC)
  15. end
  16. function respawn(NPC)
  17. end