#NoEnv
#include sampUDF.ahk
F1::
addChatMessageEx(0xFFFF00, "[AHK Support]: {ffffff}Скрипт включен!")
check_AFK:
settimer, check_AFK, 2000
AFK := IsInAFK() ; (1 - AFK, 0 - не AFK, -1 - Игра закрыта)
if (timer >= 300) {
process, close, gta_sa.exe
MsgBox, Игра закрыта, скрипт выключен
ExitApp
}
if (AFK = -1) {
MsgBox, Игра закрыта, скрипт выключен.
ExitApp
} else if (AFK = 1) {
timer += 1
} else if (AFK = 0) {
timer := 0
} else {
MsgBox, Ошибка.
ExitApp
}
return