你这分真难赚啊!我在网吧!还要自己先去下一个按键!累~~~不加分我K人哈!
你打开按键精灵,点新建,然后点源文件,把下面的全部复制上去就行了
Delay 3000
KeyPress 49,1
Delay 3000
KeyPress 50,1
Delay 3000
KeyPress 51,1
Delay 3000
KeyPress 52,1
Delay 3000
KeyPress 53,1
Delay 3000
KeyPress 54,1
Delay 3000
KeyPress 55,1
Delay 3000
KeyPress 56,1
Delay 3000
KeyPress 57,1
Plugin hwnd = Window.GetKeyFocusWnd()
先使游戏处于可操作状态,再用这句得到当前窗口句柄(就是窗口的唯一特征)
Plugin Window.SendKeyPress(hwnd,49)
。。。 。。。
可参考我的类似回答:
http://zhidao.baidu.com/question/118177219.html
2楼大哥啊,分有不难赚的吗,-_-!
脚本如下:
Import "Window.dll"
hwnd = Window.GetKeyFocusWnd() ' 得到当前可以发送信息窗口的句柄
//需要确认把指定窗口放在前台运行
Rem start
x=49
While x<58
Plugin Bkgnd.KeyPress(hwnd,x) ' 后台按1-9键,隔3秒
Delay 3000
x=x+1
EndWhile
Goto start
启动后就可以后台了,我写的是无限循环的,如果不想循环可以删掉Goto start;