有一个命令叫多线程 启动 线程ID=BeginThread(线程名) 停止 StopThread(线程ID)
按下F9之后先启动多线程,按122222然后再用 f9 = WaitKey() 读取用户按键,最后再判断是否是F9,用StopThread停用线程ID就好了
大概的代码就是这样
While 1=1
f9 = WaitKey()//先判断,如果是就启动,这个要加循环判断
If f9 = "120" Then
线程ID=BeginThread(脚本)
f9 = WaitKey()//再判断,如果是就停用 这个要加循环判断
If f9 = "120" Then
StopThread 线程ID
End If
End If
Wend
Sub 脚本
游戏12222222脚本
End Sub
你这个功能能实现,但是不是用热键的方法实现。要在代码里面实现,热键不要用F9,用其他的即可,先启动脚本。代码如下:
Private Declare Function GetAsyncKeyState Lib "user32" (ByVal vKey As Long) As Integer
Dim ID
ID = 0
While True
If GetAsyncKeyState(120) < 0 Then
While GetAsyncKeyState(120) < 0
Delay 50
Wend
If ID = 0 Then
ID = BeginThread(MyFunction)
Else
StopThread ID
ID = 0
End If
End If
Delay 50
Wend
Sub MyFunction
KeyPress 49, 1
While True
KeyPress 50, 1
Wend
End Sub