Feerrott.lua 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. --[[
  2. Script Name : ZoneScripts/Feerrott.lua
  3. Script Purpose :
  4. Script Author : Neatz09
  5. Script Date : 2/24/2019
  6. Script Notes :
  7. --]]
  8. function init_zone_script(zone)
  9. SetLocationProximityFunction(zone, -119, -16.93, 549.2, 10, "StableMasters", "Leave") -- Alliz Evol
  10. SetLocationProximityFunction(zone, 11.47, 3.68, -27.91, 10, "StableMasters", "Leave") -- Drowning Causeway
  11. SetLocationProximityFunction(zone, -198.16, -7.66, 818.5, 10, "StableMasters", "Leave") -- Greenblood River
  12. SetLocationProximityFunction(zone, -561.2, -15.27, 792.09, 10, "StableMasters", "Leave") -- Tae Ew
  13. SetLocationProximityFunction(zone, -1883.67, -21.52, 839.08, 10, "StableMasters", "Leave") -- Dread basin
  14. SetLocationProximityFunction(zone, -1022.97, -4.75, 434.48, 10, "StableMasters", "Leave") -- Tower of Vul
  15. SetLocationProximityFunction(zone, -1189.48, -5.49, 765.77, 10, "StableMasters", "Leave") -- Alliz Tae
  16. end
  17. function StableMasters(zone, Spawn)
  18. if IsPlayer(Spawn) and IsOnAutoMount(Spawn) then
  19. EndAutoMount(Spawn)
  20. end
  21. end
  22. function player_entry(zone, player)
  23. end
  24. function enter_location(zone, spawn, grid)
  25. end
  26. function leave_location(zone, spawn, grid)
  27. end
  28. function dawn(zone)
  29. end
  30. function dusk(zone)
  31. end