3::
Send {3}
Sleep, 55
Send {4}
Sleep, 64
Send {5}
Return
目标:按 3 = 按 345
奖金:随机睡眠时间
这是我的第一个 AHK 脚本。我的问题是脚本的输出只有 45(而不是 345)。我猜脚本在给出 3 时会重新启动?
还希望能得到关于如何随机分配睡眠者的指点。
答案1
$3:: ; The $ prefix forces the keyboard hook to be used
Send 3
Sleep, % rnd(20,60) ; make a random delay between two values
Send 4
Sleep, % rnd(60,80)
Send 5
Return
rnd(min,max){
Random, myVar,% min,% max
return myVar
}