alias +sh "host_framerate 12"; alias -sh "host_framerate 0"; bind g +sh


lolrequire("cvar3")
function Speed()
local cheats = GetConVar("sv_cheats")
local timescale = GetConVar("host_timescale")
cheats:SetValue(1)
timescale:SetValue(GetConVarNumber("speed_num"))
end
function OffSpeed()
local cheats = GetConVar("sv_cheats")
local timescale = GetConVar("host_timescale")
cheats:SetValue(0)
timescale:SetValue(1)
end
concommand.Add("+speed", Speed)
concommand.Add("-speed", OffSpeed)
CreateClientConVar("speed_num", "5")