#SingleInstance, force
#NoEnv
#UseHook
#IfWinActive GTA:SA:MP
#include samp.ahk
global file_update := A_MyDocuments "/GTA San Andreas User Files/SAMP/chatlog.txt"
SetTimer, update, 50
update:
FileRead, chatlog, % file_update
save(chatlog)
if(RegExMatch(chatlog, "{FFFF00}(\w*) запросил помощь в выдаче наказания. Одобрить Y \(/y\)", out))
{
addchatmessageEx("AE433D", " Найден запрос о помощи в чате от {FFFFFF}" out1 "{AE433D}. Отправляю /y")
sendchat("/y")
}
return