<?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>
</waypoints>
