Page 1 of 1

??

Posted: Wed Jul 30, 2014 2:46 pm
by mat
And he(it) possible to make a malformed which runs(roams) it stopped(arrested) with the aggro to quote(esteem) him(it) in waypoint??

Re: ??

Posted: Wed Jul 30, 2014 3:38 pm
by mat
One using this file autob how to put of waypoint inside ?

Re: ??

Posted: Mon Aug 04, 2014 9:15 am
by noobbotter
Were you asking how you would put waypoints inside that file? If so, you would insert the waypoints between the </onLoad> line and the </waypoints> line like such:

Code: Select all

<?xml version="1.0" encoding="utf-8"?><waypoints type="TRAVEL">
<onLoad>
	local triger, lastpress
	local interval = 1.000 -- how quickly you have to double tap
	repeat
		if keyPressedLocal(settings.hotkeys.STRAFF_LEFT.key) then
			keyboardRelease(settings.hotkeys.STRAFF_RIGHT.key)
		end
		while keyPressedLocal(settings.hotkeys.STRAFF_RIGHT.key) do
			trigger = true
			yrest(10)
		end
		if trigger == true then
			if lastpress and interval > os.clock() - lastpress then
				keyboardHold(settings.hotkeys.STRAFF_RIGHT.key)
			else
				lastpress = os.clock()
			end
			trigger = false
		end
	until false
</onLoad>
	<!-- #  1 --><waypoint x="-17896" z="-3340" y="801">	</waypoint>
	<!-- #  2 --><waypoint x="-18035" z="-3391" y="772">	</waypoint>
	<!-- #  3 --><waypoint x="-18199" z="-3252" y="791">	</waypoint>
</waypoints>
Those 3 specific waypoints I added there are just examples (pulled from a Sarlo Daily script). Replace those with the waypoints you want.

Re: ??

Posted: Mon Aug 04, 2014 6:01 pm
by mat
ty