<?xml version="1.0" encoding="utf-8"?><waypoints type="RUN">
<onLoad>
	settings.profile.friends={"Plains Mosto", "Plains Galidun"}
	settings.profile.options.ANTI_KS = false

	function waitForEventStart()
		EventMonitorStart("eojstart", "CHAT_MSG_SYSTEM")
		local EventStarted = false
		repeat
			yrest(10000) -- check every 10 seconds
			repeat
				local time, moreToCome, msg = EventMonitorCheck("eojstart", "1")
				if msg and string.find(msg,"Regional event now restarting!") then
					EventStarted = true
					break
				end
			until moreToCome == false
			if EventStarted then break end
		until false
	end

	if oldOnLeaveCombat == nil then oldOnLeaveCombat = settings.profile.events.onLeaveCombat end
	function settings.profile.events.onLeaveCombat()
		oldOnLeaveCombat()

		if StartFights and player.Fights >= StartFights + 4 then
			__WPL:setForcedWaypointType("RUN")
			__WPL:setWaypointIndex(__WPL:findWaypointTag("Home Base"));
		end
	end

</onLoad>

	<!-- #  1 --><waypoint x="-26870" z="29521" y="-141" tag="Home Base">
		waitForEventStart()
		StartFights = player.Fights
		__WPL:setForcedWaypointType("NORMAL")
	</waypoint>
	<!-- #  2 --><waypoint x="-26928" z="29308" y="-156" tag="loop">	</waypoint>
	<!-- #  3 --><waypoint x="-27078" z="29371" y="-139">	</waypoint>
	<!-- #  4 --><waypoint x="-27145" z="29487" y="-138">
		__WPL:setWaypointIndex(__WPL:findWaypointTag("loop"));
	</waypoint>
</waypoints>
