local se = require('lib.samp.events')
local prefix = '{FF5656}[ArenaFarmer] {ffffff}'
function main()
repeat wait(0) until isSampAvailable()
msg('Загружен Разработчик DekZer !')
while true do wait(0) end
end
function se.onServerMessage(color, text)
if string.lower(text):find('cchas') then
wait(ТУТ КОЛ-ВО МИЛИСЕКУНД ПЕРЕД ОТПРАВКОЙ)
sampSendChat('/cchas')
end
if text:lower():find('[cC][oO][dD][eE]%s') then
cod = text:match('/code%s(%S+)')
if cod then
wait(ТУТ КОЛ-ВО МИЛИСЕКУНД ПЕРЕД ОТПРАВКОЙ)
sampSendChat('/code ' .. cod)
end
end
if string.lower(text):find('code') then
cod = text:match('%s[cC][oO][dD][eE]%s(%S+)')
if cod then
wait(ТУТ КОЛ-ВО МИЛИСЕКУНД ПЕРЕД ОТПРАВКОЙ)
sampSendChat('/code ' .. cod)
end
end
end
function msg(text)
sampAddChatMessage(prefix .. text, -1)
end