@byxiaoxie11月前

05/15
01:13
Home

Shatterline(破碎线) B-HOP

-- Www.ByXiaoXie.Com
-- Shatterline Auto B-HOP Logitech Lua

local Start = false

function OnEvent(event, arg)
	if (IsMouseButtonPressed(5)) then
		if (Start == false) then
			PressKey("lctrl")
			Sleep(100)
			ReleaseKey("lctrl")
			for i = 0, 40 do
				PressAndReleaseKey("spacebar")
				MoveMouseRelative(100, 0)
				Sleep(1)
			end
			for i = 0, 40 do
				PressAndReleaseKey("spacebar")
				MoveMouseRelative(-100, 0)
				Sleep(1)
			end
			Start = true
		end
		repeat
			if (Start) then
				PressAndReleaseKey("spacebar")
				Sleep(20)
			end
		until not IsMouseButtonPressed(5)
		Start = false
	end
end

鼠标按键说明:按住鼠标侧键上(前进键)

BHOP使用方法:跑起来后按住鼠标侧键上(前进键) 马上松开W即可自动连跳

Shatterline(破碎线) B-HOP

加载中……