qstreadingtree.lua 454 B

123456789101112131415161718192021
  1. --[[
  2. Script Name : SpawnScripts/SouthQeynos/qstreadingtree.lua
  3. Script Author : Dorbin
  4. Script Date : 2022.04.29 11:04:15
  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, "An old tree that provides enough shade for reading outdoors.", "white")
  13. end
  14. end
  15. function respawn(NPC)
  16. spawn(NPC)
  17. end