1234567891011121314151617181920 |
- --[[
- Script Name : SpawnScripts/Stormhold/QstGlobe.lua
- Script Author : neatz09
- Script Date : 2022.03.14
- Script Purpose :
- :
- --]]
- function spawn(NPC)
- end
- function casted_on(NPC, Spawn, Message)
- if Message == "Open" then
- Say(NPC, "Need to add a delay")
- SendMessage(Spawn, "The globe doesn't spin anymore.", "white")
- end
- end
|