Starcrest.lua 705 B

1234567891011121314151617181920212223
  1. --[[
  2. Script Name : ZoneScripts/Starcrest.lua
  3. Script Author : Dorbin
  4. Script Date : 2022.06.30 03:06:27
  5. Script Purpose :
  6. :
  7. --]]
  8. function init_zone_script(Zone)
  9. SetLocationProximityFunction(Zone, 771.06, -18.49, 281.01, 15, "DeepReflection","LeaveLocation")
  10. end
  11. function player_entry(Zone, Player)
  12. SendPopUpMessage(Player, "Starcrest Commune", 230, 230, 230)
  13. end
  14. function DeepReflection(Zone,Player)
  15. SendPopUpMessage(Player, "The Fountain of Deep Reflection", 255, 255, 0)
  16. end
  17. function enter_location(zone, spawn, grid)
  18. SetLocationProximityFunction(Zone, 771.06, -18.49, 281.01, 10, "DeepReflection","LeaveLocation")
  19. end