#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
#Include ../inc/samp.ahk
Loop{
Sleep, 30
GTP := getTargetPed() ; Получаем таргет, если его нет то 0
if GetKeyState("LALT", "P") && GetKeyState("Z", "P") && GTP != 0 ; проверка нажатия ALT + Z + есть ли таргет
{
PlayerID := getIdByPed(GTP) ; получение id игрока
SendMessage, 0x50,, 0x4090409,, A ; англ. расскладка
SendInput, {f6}/sms %PlayerID% ; вводим в чат инфу
}
}