BarBackdoor.lua 481 B

12345678910111213141516171819202122
  1. --[[
  2. Script Name : SpawnScripts/The Estate of Unrest/BarBackdoor.lua
  3. Script Author : neatz09
  4. Script Date : 2021.01.03 08:01:24
  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 outside is locked tight. There is a small keyhole just beneath the handle.", "white")
  13. end
  14. OpenDoor(NPC)
  15. end
  16. function respawn(NPC)
  17. end