D
deleted-user-311312
Гость
Автор темы
AutoHotKey:
global file_update := A_C: "Amazing Games\Amazing Russia\amazing\chatlog.txt";
SetTimer, update, 100
return
update:
FileRead, chatlog, % file_update
FileDelete, % file_update
if(RegExMatch(chatlog, "123")) {
;; SendInput, {F6}/job{Enter}
}
return