<?xml version="1.0" encoding="utf-8"?><waypoints>
<onLoad>
	startGMDetect()
		changeProfileOption("EGGPET_ENABLE_ASSIST", "false")
		changeProfileSkill("SCOUT_AUTOSHOT", "AutoUse", true);
		changeProfileOption("AUTO_ELITE_FACTOR", 100000)
	while true do
		local tower = player:findNearestNameOrId(106770)
		if tower and 200 > distance(tower.X, tower.Z, player.X, player.Z) then
			player:target(tower.Address)	        
			player:cast("SCOUT_COMBO_SHOT");
			player:cast("SCOUT_WIND_ARROWS");
			player:cast("SCOUT_AUTOSHOT");
			player:cast("SCOUT_WIND_ARROWS");
			player:cast("SCOUT_SHOT");
		end
	end
</onLoad>
</waypoints>