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