and i have another question
first picture is team status display on, second is off. then how can i using second when i team status display on?
if it's impossible, how can i turn off bg colors in first pic?
https://imgur.com/a/CkMN7xk
https://imgur.com/a/tKGmo76
To edit the panel on the first screenshot you need to edit HudRoundCounter.res file
About your question on how to use such timers with team status display ON, I can only give you one advice. In some of your HUD files you might see stuff like this (example from my hud):
"ServerTimeLimitLabel"
{
"ControlName" "CExLabel"
"fieldName" "ServerTimeLimitLabel"
"xpos" "c-40"
"ypos" "30"
"zpos" "-1"
"wide" "80"
"tall" "20"
"visible" "1"
"enabled" "1"
"labelText" "%servertimeleft%"
"textAlignment" "center"
"font" "Medium9"
"fgcolor" "White"
if_match
{
"ypos" "39"
}
}
The if_match condition works if you use the team status display ON (tf_use_match_hud 1 option). So here with tf_use_match_hud 1 the 'ypos' for this ServerTimeLimitLabel object will be 39, and with tf_use_match_hud 0 it will be 30. So to use such fonts/backgrounds for the timers like on ur 2nd screenshot, you need to include those "font" and "bgcolor" lines under if_match {...} condition. Hopefully you'll get what I wanted to say! If not, contact me on steam and I'll help you out.