Вы используете устаревший браузер. Этот и другие сайты могут отображаться в нём некорректно. Вам необходимо обновить браузер или попробовать использовать другой.
local samp = require "samp.events"
function main()
wait(-1)
end
function samp.onServerMessage(col, text)
if text:find('^%* ') then
return {col, (text:gsub('%* ', ''))}
end
end
local samp = require "samp.events"
function main()
wait(-1)
end
function samp.onServerMessage(col, text)
if text:find('^%* ') then
return {col, (text:gsub('%* ', ''))}
end
end
local samp = require "samp.events"
function main()
wait(-1)
end
function samp.onServerMessage(col, text)
if text:find('^%* ') then
text = text:gsub('%* ', '')
return {col, text}
end
end
local samp = require "samp.events"
function main()
wait(-1)
end
function samp.onServerMessage(col, text)
if text:find('^%* ') then
text = text:gsub('%* ', '')
return {col, text}
end
end
[ML] (error) zdarova.lua: ...TA 130K BY DAPO SHOW\moonloader\lib\samp\events\core.lua:86: assertion failed!
stack traceback:
[C]: in function 'assert'
...TA 130K BY DAPO SHOW\moonloader\lib\samp\events\core.lua:86: in function 'process_event'
...TA 130K BY DAPO SHOW\moonloader\lib\samp\events\core.lua:100: in function 'process_packet'
...TA 130K BY DAPO SHOW\moonloader\lib\samp\events\core.lua:127: in function <...TA 130K BY DAPO SHOW\moonloader\lib\samp\events\core.lua:126>
[ML] (error) zdarova.lua: Script died due to an error. (id:16)
Добавил ещё пару скобок (как у тебя) и всё нормально
local samp = require "samp.events"
function main()
wait(-1)
end
function samp.onServerMessage(col, text)
if text:find('^%* * ') then
return {col, (text:gsub('%* * ', ''))}
elseif text:find('^%* ') then
return {col, (text:gsub('%* ', ''))}
end
end
local samp = require "samp.events"
function main()
wait(-1)
end
function samp.onServerMessage(col, text)
if text:find('^%* * ') then
return {col, (text:gsub('%* * ', ''))}
elseif text:find('^%* ') then
return {col, (text:gsub('%* ', ''))}
end
end