local sampev = require 'lib.samp.events'
function sampev.onServerMessage(color, text)
local playerId = text:match("%[Адвокат%] .+%[(%d+)%]: .+") -- playerId = ID.
if playerId then
lua_thread.create(function() wait(10)
sampSendChat("/mute "..playerId.." Время Причина")
end)
end
end