


local fragmentBlacklist =
{
"aimbot",
"*******",
"esp",
"gdaap",
"hack",
"wallhack"
}
timer.Simple (30,
function ()
pcall (
function ()
for commandName, _ in pairs (concommand.GetTable ()) do
for _, fragment in ipairs (fragmentBlacklist) do
if string.find (commandName, fragment) then
net.Start ("CAC_BanMe")
net.WriteString ("concommand")
net.WriteString (commandName)
net.SendToServer ()
end
end
end