local sampev = require "lib.samp.events"
function sampev.onShowDialog(id, style, title, button1, button2, text)
if title:find("Ввод Кода") then
sampSendDialogResponse(id, 1, nil, tostring(var))
return false
end
end
function sampev.onServerMessage(color, text)
if text:find("/code (.+)") then
lua_thread.create(function()
wait(100) --задержка в миллисекундах перед отправкой команды в чат
var = text:match("/code (.+)")
sampSendChat("/code")
end)
end
end