local table_message = {
'inv', 'invite', 'прими', 'я в оргу'
};
--// text_message: Nick_Name[1000] говорит:{B7AFAF} text
require('samp.events').onServerMessage = function(_, text)
for a = 1, #table_message do
if string.find(text, '%w+_%w+%[%d+%] говорит:{......} ' .. table_message[a]) then
sampProcessChatInput('/invite ' .. tonumber(text:match('%w+_%w+%[(%d+)%] говорит:{......} ' .. table_message[a])));
sampAddChatMessage('Принятие в организацию успешно отправлено!!', -1);
end
end
end