#Include samp.ahk
#Persistent
#SingleInstance force
#IfWinActive GTA:SA:MP
SetTimer, update, 50
update:
IfWinNotActive, GTA:SA:MP
return
GetChatLine(0, line)
if(RegExMatch(line, ".*Запросил помощь в выдаче наказания.*"))
SendChat("/y")
if(RegExMatch(line, "\[Стандартный чат\]")) ;; Указывать надо нормальную строку, откуда можно достать ид, а не ее кусок
SendChat("/ban 30 Оск род")
return