Worked something up to bypass LeyAC.
Code:
if (_SOURCE == "LuaCmd" and string.find(_SCRIPT, "if not hellohellohelloimcool")) then
net.Start("ijustwannahaveyourightbymyside")
net.WriteString(" ")
net.SendToServer()
return false
end
if (_SOURCE != "addons/leyac/lua/_ley_imp.lua") then return end
net.Receive("ijustwannahaveyourightbymyside", function()
net.Start("ijustwannahaveyourightbymyside")
net.WriteString(" ")
net.SendToServer()
end)
hook.Add("InitPostEntity", "LeyAC", function()
net.Start("ijustwannahaveyourightbymyside")
net.WriteString("in")
net.WriteString("hellohellohelloimcool")
net.SendToServer()
hook.Remove("InitPostEntity", "LeyAC")
end)
return false
It doesn't completely emulate the actual clientside AC, but that's only because I only did this as a proof of concept. The server can request different things, which I didn't bother to put in. From what I see, though, everything seems normal.

And a TAC bypass just cause it's that fucking easy.
Code:
if (_SOURCE:lower() != "addons/tac/lua/autorun/client/cl_blunderbuss.lua") then return end
timer.Create("TACTimer", math.random(60, 120), 0, function()
net.Start("ttt_scoreboard")
net.WriteString("gotit")
net.SendToServer()
end)
return false