SendMode Input SetWorkingDir %A_ScriptDir% SetTitleMatchMode, 2 CoordMode, Mouse, Screen toggle := false ; Początkowy stan skryptu (wyłączony) F1:: toggle := !toggle ; Zmienia stan toggle na przeciwny if (toggle) { ; Skrypt włączony SetTimer, RunScript, 100 ; Ustaw timer na uruchomienie skryptu co 100ms } else { ; Skrypt wyłączony SetTimer, RunScript, Off ; Wyłącz timer } return RunScript: if (toggle) { Send {1} Sleep 100 Send {LButton Down} Sleep 1800000 ; // CO 30M NAPRAWIA KILOFIK Send {LButton Up} MouseMove, 600, 0, 10, R ;// TU PRZESTAWIC ABY OBRACALO WAM NA KOWADLO Sleep 200 Send {RButton} Sleep 500 Send {Shift Down} Sleep 500 MouseClick, Left, 815, 655 Sleep 1000 MouseClick, Left, 850, 656 Sleep 500 Send {Shift Up} Sleep 1000 MouseClick, Left, 1065, 469 Sleep 1000 MouseClick, Left, 815, 655 Sleep 1000 MouseClick, Left, 951,471 Sleep 1000 MouseClick, Left, 850, 656 Sleep 500 Send {Escape} Sleep 100 MouseMove, -600, 0, 10, R ;// TU PRZESTAWIC ABY OBRACALO WAM NA STOWNIARKE Sleep 200 Send {3} Sleep 200 Send {RButton} Sleep 1000 Send {RButton} Sleep 1000 } return