local sampev = require 'lib.samp.events'
function sampev.onServerMessage(color, text)
if text:match("Викторина для умных... Сколько будет (.+) ?") then
lua_thread.create(function()
local i1, i2 = text:match("Викторина для умных... Сколько будет (%d+) %+ (%d+) ?")
wait(100)
sampSendChat(i1+i2)
end)
end
end