BlungoHow can i make a gray line under my health and ammo? Also trying to move where the numbers of when i pick up health will show up. And even more trying to change my killstreak counter to remove the border from the stock killstreak in the original hud of tf2, and move it over to the health. Like in this video https://www.youtube.com/watch?v=2nBZpZ5qHs8.
Thx after this I can completely release woolens hud, thx!
Copy & paste this in HudPlayerClass.res (or HudPlayerHealth.res doesn't matter). Mess around with the xpos/ypos and tall/wide till it suits you.
For ammo use the same thing but paste it in "HudAmmoWeapons.res". Do the same thing with position and size. (If you're familiar with color coding then edit whatever color you want in "fillcolor")
"UnderLine"
{
"ControlName" "ImagePanel"
"fieldName" "UnderLine"
"xpos" "25"
"ypos" "25"
"zpos" "2"
"wide" "10"
"tall" "10"
"autoResize" "0"
"pinCorner" "0"
"visible" "1"
"enabled" "1"
"fillcolor" "128 128 128 255"
}
The numbers for health pickup should be in "hudlayout.res" inside it search for "CHealthAccountPanel" Mess with the xpos/ypos, hurt yourself, grab a medpack, see where it is and repeat till it's where you want it.
There's also a file called "HudHealthAccount.res" in the ui you can mess with the "delta_item_start_y" and "delta_item_end_y" if you want it to go up or down or stand still.
And for the killstreak (hopefully what you're looking for is the background) it's in "HudItemEffectMeter_Killstreak.res" inside look for "ItemEffectMeterBG" set the visible and enabled to 0.
For positioning mess with the xpos/ypos that's "HudItemEffectMeter" that's above the "ItemEffectMeterBG".
Reply if there's anything else you need.