Вы используете устаревший браузер. Этот и другие сайты могут отображаться в нём некорректно. Вам необходимо обновить браузер или попробовать использовать другой.
local sampev = require('lib.samp.events')
function sampev.onServerMessage(color, text)
if text:find('Твой текст') then
sampProcessChatInput('Твой отправляющийся текст')
end
end
local sampev = require('lib.samp.events')
function sampev.onServerMessage(color, text)
if text:find('Твой текст') then
sampProcessChatInput('Твой отправляющийся текст')
end
end
local e = require('lib.samp.events')
function e.onServerMessage(col, text)
if text:find('Your text') and not text:find('Твой текст') then
sampSendChat('/command')
end
end