local r = gui.Reference("misc", "general", "bypass")
local main_switch = gui.Checkbox(r, "", "Anti server crasher", 0)
local fullupdate_key = gui.Keybox(r, "", "FULL UPDATE", 0)
callbacks.Register(
"Draw",
function()
if main_switch:GetValue() then
client.Command("cl_timeout -1", true)
end
if fullupdate_key:GetValue() ~= 0 and input.IsButtonDown(fullupdate_key:GetValue()) then
client.Command("cl_fullupdate 1", true)
end
end
)