怎么才能让按键精灵9在最小化游戏后还能运行?求大神编个代码 10
我的游戏要一直挂机具体的要每7秒一次按F键和每30秒一次按R键无限循环求大神给编个代码在线等啊急用!!!!!!...
我的游戏要一直挂机 具体的要每7秒一次按F键和每30秒一次按R键 无限循环 求大神给编个代码 在线等啊 急用!!!!!!
展开
2个回答
展开全部
7秒F和30秒R逐步执行代码如下:
Dim hwndhwnd=Plugin.Window.MousePoint()
Do
Delay 4200
call Plugin.Bkgnd.KeyPress(hwnd,70)
Delay 18000
call Plugin.Bkgnd.KeyPress(hwnd,82)
Loop
7秒F和30秒R同时执行代码如下:
Dim hwndhwnd=Plugin.Window.MousePoint()
Do
Delay 4200
call Plugin.Bkgnd.KeyPress(hwnd,70)
Delay 13800
call Plugin.Bkgnd.KeyPress(hwnd,82)
Loop
启动脚本的时候,用鼠标停在游戏窗口上。
Dim hwndhwnd=Plugin.Window.MousePoint()
Do
Delay 4200
call Plugin.Bkgnd.KeyPress(hwnd,70)
Delay 18000
call Plugin.Bkgnd.KeyPress(hwnd,82)
Loop
7秒F和30秒R同时执行代码如下:
Dim hwndhwnd=Plugin.Window.MousePoint()
Do
Delay 4200
call Plugin.Bkgnd.KeyPress(hwnd,70)
Delay 13800
call Plugin.Bkgnd.KeyPress(hwnd,82)
Loop
启动脚本的时候,用鼠标停在游戏窗口上。
更多追问追答
追问
运行错误
追答
7秒F和30秒R逐步执行代码如下:
Dim hwnd
hwnd=Plugin.Window.MousePoint()
Do
Delay 4200
Call Plugin.Bkgnd.KeyPress(hwnd,70)
Delay 18000
Call Plugin.Bkgnd.KeyPress(hwnd,82)
Loop
7秒F和30秒R同时执行代码如下:
Dim hwnd
hwnd=Plugin.Window.MousePoint()
Do
Delay 4200
Call Plugin.Bkgnd.KeyPress(hwnd,70)
Delay 13800
Call Plugin.Bkgnd.KeyPress(hwnd,82)
Loop
启动脚本的时候,用鼠标停在游戏窗口上。
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询