BasementExit.lua 580 B

123456789101112131415161718192021
  1. --[[
  2. Script Name : SpawnScripts/Stormhold/BasementExit.lua
  3. Script Author : neatz09
  4. Script Date : 2022.03.14
  5. Script Purpose :
  6. :
  7. --]]
  8. function spawn(NPC)
  9. end
  10. function casted_on(NPC, Spawn, Message)
  11. if Message == "inspect" then
  12. SendMessage(Spawn, "Through the grate of what looks like a small cell you think you can see a crack large enough to squeeze through.", "white")
  13. end
  14. if Message == "use" then
  15. SendMessage(Spawn, "ports to -33.27 22.51 49.08 357.38 0.00 0.00 in stormhold.", "White")
  16. end
  17. end