classic_caves.lua 539 B

12345678910111213141516171819
  1. --[[
  2. Script Name : ZoneScripts/classic_caves.lua
  3. Script Author : LordPazuzu
  4. Script Date : 2022.09.01 02:09:55
  5. Script Purpose :
  6. :
  7. --]]
  8. function init_zone_script(Zone)
  9. SetLocationProximityFunction(Zone,50.47, 1.65, -47.31, 8, "LostMiners","LeaveLocation")
  10. end
  11. function player_entry(Zone, Player)
  12. SendPopUpMessage(Player, "The Caves", 255, 255, 255)
  13. end
  14. function LostMiners(Zone,Player)
  15. SendPopUpMessage(Player, "The Cavern of Lost Miners", 255, 255, 0)
  16. end