BalconyDoor.lua 420 B

12345678910111213141516171819
  1. --[[
  2. Script Name : SpawnScripts/Nektropos1/BalconyDoor.lua
  3. Script Author : smash
  4. Script Date : 2016.02.06 02:02:31
  5. Script Purpose :
  6. :
  7. --]]
  8. function spawn(NPC)
  9. end
  10. function can_use_command(NPC, Spawn, Message)
  11. if not HasCompletedQuest(Spawn, 173) then
  12. SendMessage(Spawn, "This door seems magically barred", "yellow")
  13. return false
  14. end
  15. return true
  16. end