local sampev = require "lib.samp.events" -- где то в начале скрипта
----------------------------
function sampev.onServerMessage(color, text) -- где то в конце скрипта
local txcode = ''
if text:find('.*: /code.*') then
txcode = string.match(text, '.*/code(%S+)')
sampSendChat('/code '.. txcode)
end
end