Вы используете устаревший браузер. Этот и другие сайты могут отображаться в нём некорректно. Вам необходимо обновить браузер или попробовать использовать другой.
require('addon')
local samp = require('samp.events')
local state = true
newTask(function()
while state do
wait(1000)
sendInput('/cmd')
end
end)
function samp.onServerMessage(_, text)
if text:find('your text') then
state = false
end
end
require('addon')
local samp = require('samp.events')
local state = true
newTask(function()
while state do
wait(1000)
sendInput('/cmd')
end
end)
function samp.onServerMessage(_, text)
if text:find('your text') then
state = false
end
end