不过楼主我看你骨骼精奇,分享一套扣脚洪给你把 Monk_Macro_LoopInterval = 10 function OnEvent(event, arg, family) if (event == "MOUSE_BUTTON_RELEASED" and arg == 3) then Monk_Macro_FullyAuto() end end function Monk_Macro_FullyAuto() if IsKeyLockOn("capslock") then PressAndReleaseKey("2") PressKey("4") PressKey("3") PressKey("1") PressMouseButton(3) Alt_Pressed = false Times_Key_2 = 0 end while IsKeyLockOn("capslock") do Sleep(Monk_Macro_LoopInterval) Times_Key_2 = Times_Key_2 + 1 if ((Times_Key_2*Monk_Macro_LoopInterval) == 2000) then if not (Alt_Pressed) then PressAndReleaseKey("2") end Times_Key_2 = 0 end if (IsModifierPressed("lalt")) then if not (Alt_Pressed) then ReleaseMouseButton(3) Alt_Pressed = true end else if (Alt_Pressed) then PressMouseButton(3) Alt_Pressed = false end end end ReleaseMouseButton(3) ReleaseKey("4") ReleaseKey("3") ReleaseKey("1") end