local function TS2MOTDBypass(player,command,args)
if(TS.MOTD) then
RunConsoleCommand("rp_closemotd", "")
timer.Create("ts2chartimercodename",1,1, function()
TS.FancyGayIntro = false
HorseyMapView = false
MOTD:Remove()
HideMouse()
end)
end
end
concommand.Add("FuckTheMOTD",TS2MOTDBypass)
Steve said:Workarounds are for Kool Kids and he hasn't even defined the problem yet.
local function CreateMOTD(ply, cmd, args)
RunConsoleCommand("rp_closemotd", "");
timer.Simple(2, function()
TS.FancyGayIntro = false;
TS.HorseyMapView = false;
end);
end
usermessage.Hook("MOTD", CreateMOTD);