Вы используете устаревший браузер. Этот и другие сайты могут отображаться в нём некорректно. Вам необходимо обновить браузер или попробовать использовать другой.
Я чаще всего использую onServerMessage(color,text)
Lua:
local sampev = require('lib.samp.events')
function sampev.onServerMessage(color, text)
if text:find('Привет') then
local ttext = text:gsub('Привет', 'Hello')
return{color, ttext}
end
end
Я чаще всего использую onServerMessage(color,text)
Lua:
local sampev = require('lib.samp.events')
function sampev.onServerMessage(color, text)
if text:find('Привет') then
local ttext = text:gsub('Привет', 'Hello')
return{color, ttext}
end
end