金币14078
积分7474
注册时间2018-11-17
最后登录2025-1-31
|
玩得开心!
不是最好的,这是代码
- _auto := true
-
- ~LButton::autofire()
- Numlock::_auto := ! _auto
- F1::ExitApp
-
- autofire()
- {
- global _auto
- if _auto
- {
- Loop
- {
- if GetKeyState("LButton", "P")
- {
- SendInput {LButton DownTemp}
- Sleep 30
- mouseXY(0, 1)
- SendInput {LButton Up}
- Sleep 25
- }
- else
- break
- } ;; loop
- } ;; if
- } ;; autofire()
-
- mouseXY(x,y)
- {
- DllCall("mouse_event",uint,1,int,x,int,y,uint,0,int,0)
- }
复制代码
|
|