- 1
- 0
Есть скрипт мне нужно чтоб он нажимал попеременно клавиши A и D каждую по 5с
AutoHotKey:
Pause RCtrl::Reload SendA: Send {vk41 Down} return SendB: Send {vk44 Down} return LCtrl:: pause off timers := 0 Settimer, Stopwatch, 970 Stopwatch: timers += 1 if(timers > 0) SetTimer, SendA, 10 if(timers > 10) { SetTimer, SendA, Off Send {vk41 Up} Sleep 10 SetTimer, SendB, 30 } if(timers > 20) { SetTimer, SendB, Off Send {vk44 Up} Sleep 10 Settimer, Stopwatch, Off timers := 0 Gosub, LCtrl }
Последнее редактирование модератором: