0

我实际上是在玩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,则必须以管理员权限运行脚本。

请版主:删除这个问题,谢谢。

4

1 回答 1

1

不要成为一个湿毯子,但就WoW的用户条款而言,这种事情违反了TOS,也就是他们的机器人偏执狂,这确实给其他人搞砸了游戏。

于 2012-12-21T07:45:27.267 回答