Sprawl.lua 1001 B

1234567891011121314151617181920212223242526272829
  1. --[[
  2. Script Name : ZoneScripts/Sprawl.lua
  3. Script Purpose : Attempt to manage changes to the zone between client version
  4. Script Author : Jabantiz
  5. Script Date : 6/18/2018
  6. Script Notes : Screwed up and put the scaleyard script here, so nuked the contents here and leaving an empty shell
  7. Script Notes II : Added the proxy to the pois. Not sure if this is how they will work?
  8. --]]
  9. function init_zone_script(zone)
  10. SetLocationProximityFunction(zone, -87.04, -4.24, 15.54, 15, "DervishSlums", "Leave") -- Dervish Slums
  11. SetLocationProximityFunction(zone, 50.41, -2.67, -26.54, 15, "DreadnaughtStompingGroundsr", "Leave") -- Dreadnaught Stomping Grounds
  12. SetLocationProximityFunction(zone, 41.45, 4.99, 84.67, 15, "BlackMagiEnclave", "Leave") -- Black Magi Enclave
  13. end
  14. function player_entry(zone, player)
  15. end
  16. function enter_location(zone, spawn, grid)
  17. end
  18. function leave_location(zone, spawn, grid)
  19. end
  20. function dawn(zone)
  21. end
  22. function dusk(zone)
  23. end