смотрите столкнулся с такой проблемой, когда эти два кода вместе, второй из них работает а первый не работает, в чем проблемка может быть?
Lua:
local samp = require('samp.events')
function samp.onServerMessage(color, text)
if text:find('text') then
lua_thread.create(function()
wait(1000)
ctm = false
sampAddChatMessage('text', -1)
end)
end
end
local samp = require('samp.events')
function samp.onServerMessage(color, text)
if text:find('text') then
lua_thread.create(function()
wait(1000)
ctm = false
sampAddChatMessage('text', -1)
end)
end
end