我实际上是在玩AutoHotkey
:我阅读了本教程并创建了我的第一个脚本。
它应该让我的角色每 1 秒按一次空格键跳跃:
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
#Warn ; Recommended for catching common errors.
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
#ifWinActive World of Warcraft
{
Loop
{
Send {Space}
Sleep 1000
}
}
return
它不起作用:当我在游戏中时,什么也没有发生;当我退出游戏时(如在记事本中),它工作正常。
那有什么问题?
编辑:解决了。如果您使用的是 Windows 7,则必须以管理员权限运行脚本。
请版主:删除这个问题,谢谢。