我正在尝试创建一个将运行并自动点击一段时间的脚本,然后将其停止几分钟然后重复。我希望这是一个切换,但我在切换时遇到问题。这是我现在拥有的。
当我再次按下键时,它不会中止。
我该怎样才能做到这一点。从未使用过lua。
function OnEvent(event, arg)
if(event == "G_PRESSED" and arg == 4) then
clickTime = 100;
waitTime = 1000;
toggle = not toggle
if toggle then
while true do
PlayMacro("AutoClicker");
Sleep(clickTime);
AbortMacro();
Sleep(waitTime);
end
else
AbortMacro();
end
end
end