QstGlobe.lua 397 B

1234567891011121314151617181920
  1. --[[
  2. Script Name : SpawnScripts/Stormhold/QstGlobe.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 == "Open" then
  12. Say(NPC, "Need to add a delay")
  13. SendMessage(Spawn, "The globe doesn't spin anymore.", "white")
  14. end
  15. end