Anyone have any idea how to add the totaltime to the scoreboard? I can find some info on the web but its all for custom scoreboard addons.
Edit:
Got it working with this:
hook.Add( "TTTScoreboardColumns", "SetHourInScoreboard", function( pnl )
pnl:AddColumn( "Hours", function(ply) return math.Round(ply:GetUTimeTotalTime()/3600) end )
end );