/r/TF2HUDS

Photograph via snooOG

This subreddit is for discussions, fixes, improvements, your own HUDs, or mostly anything about HUDS from Team Fortress 2.


Submission guidelines:

  1. Include labeled screenshots where relevant, but do not submit links directly unless submitting a hud.
  2. Update your post tag when your post is answered.

Read the Rules

Submit a HUD

Ask a question

Get help

  • HUDs
  • Guides
  • Filter
  • Related Subreddits
    • Request scripts and find original scripts and configs
  • /r/TF2Scripthelp
    • Get help with script ideas and find existing scripts
  • /r/TF2TechSupport
    • For help when TF2 breaks
  • /r/Sprays+TF2Sprays
    • Find or request sprays
  • /r/MannWorkshop
    • Maps, models and skins
  • /r/TF2Developers
    • External tools for TF2
  • /r/TF2Files
    • Sprays, hitsounds, skins

    /r/TF2HUDS

    1,266 Subscribers

    5

    `hoodie` is markup language that compiles into Valve KeyValues and simplifies developing huds

    https://github.com/telephrag/hoodie

    Hoodie's main purpose is to reduce amount of repeating code by adding inheritance in face of reusable code blocks called traits. To start using hoodie take a look at README.md and look through files inside example/

    It's called hoodie because initially I though of making it primarily for making TF2 huds but r/SourceEngine showed a lot of interest in this as well. It's more of a pre-release as, I only can sorta-guarantee that it'll work if you write code correctly and yet to write tests to make sure it produces correct output in all error-cases.

    You can report bugs or make suggestions through Reddit or add me on https://steamcommunity.com/id/trofchik/

    Example:

    trait T {
        T_k T_v
        k   v1
    }
    
    B T {
        B_k   B_v
        k$tag v  
        k     v2
    }

    Will compile into:

    "B"
    {
        "T_k" "T_v"
        "B_k" "B_v"
        "k"   "v [$tag]
        "k"   "v2
    }
    2 Comments
    2024/10/31
    14:26 UTC

    2

    Does anyone know what this HUD is?

    Basically i used this hud alot back at a toaster desktop before the desktop crashed and broken. A year later i got a somewhat alright pc as i do not really play much anymore and use it for academic purposes. Wanted to tryout TF2 on the pc that i got to test it out as the previous one gives me 12-50 fps maximum. Thanks and much help would be appreciated :))

    https://preview.redd.it/4noqmpnsluxd1.png?width=1204&format=png&auto=webp&s=16978dfd44ebffc59a80aa46f62e8b38d68fbb60

    1 Comment
    2024/10/30
    07:44 UTC

    2

    How to create a HUD

    I would like to know how I can create my own HUD without using Toonhud. Please, if anyone knows about the subject, can you please explain it to me?

    1 Comment
    2024/10/28
    18:10 UTC

    18

    NEW HUD CONCEPT!

    1 Comment
    2024/10/26
    05:13 UTC

    2

    Item background fix

    So I want to remove the colored backgrounds of my items and turn them into the default, gray backgrounds (like for stock weapons) while still retaining the colored text. Does anyone know how to possibly do this?

    https://preview.redd.it/escywbv8o0xd1.jpg?width=1920&format=pjpg&auto=webp&s=84eb70e86f1ee99a394b915943f0a4866e26311e

    https://preview.redd.it/5of34z79o0xd1.jpg?width=1920&format=pjpg&auto=webp&s=45d4d25808d1d56dcb569b2b09d82c28d429693b

    For context, I am using HypnotizeHud v1.7

    0 Comments
    2024/10/26
    03:04 UTC

    2

    Is it possible to have teams status (health, classes etc.) with "tf_use_match_hud 0"?

    My intent is to have both old pre MYM round timer along with team status.

    From what I understood team status bar is defined in hudmatchstatus.res in blocks TeamStatus, BlueTeamPanel, RedTeampanel. These I put into hudlayout.res into seperate block but, the game just refuses to draw it. I suspect that related information (team composition, players' health etc.) is hard coded not to be passed to whatever responsible for rendering hud. I've tried to look up how tf_use_match_hud convar is handled in source code but search gave no result.

    Any bit of explanation of what I encountered would be welcome even if you won't respond with exhaustive solution to my problem.

    2 Comments
    2024/10/16
    16:25 UTC

    1

    BiscottiHUD

    My personal favourite hud, wanted to know if I was the only one who loves this hud to the day I die.

    0 Comments
    2024/10/16
    09:41 UTC

    1

    Does anybody know the name of this hud?

    It was featured in solarlights newest video

    3 Comments
    2024/10/15
    12:12 UTC

    1

    GCFScape not extracting .res files

    Trying to extract script and resource folders from tf2_misc_dir.vpk, folders are being extracted but .res files are not, how to fix this?

    0 Comments
    2024/10/15
    00:59 UTC

    10

    How can I get this idle class icon on my hud?

    Is there a way to have this idle class icon on any hud? It just has and idle animation and reacts to when you swap weapons and etc.?

    2 Comments
    2024/09/24
    07:58 UTC

    2

    Difficulties with huddemomanpipes.res (The Shield Charge Meter)

    I'm new to messing around with HUDs, and I get the feeling this ask is going to be silly, but...

    I've finally come across a custom HUD I liked, but decided I wanted to run some personal tweaks on it.
    Notably give centered meters some small backgrounds (I know it's technically worse for visibility or w/e, but I'm not looking to optimize every last pixel out of TF2. I don't like floating numbers/meters).

    However, I've found that The Shield Charge Meter is... stubborn.

    I've been able to give it a background successfully, as seen here...

    https://preview.redd.it/cidq2vlog2pd1.png?width=595&format=png&auto=webp&s=8321f90858504fc429e7369b07260817dc0732db

    ...the problem is when the Sticky Launcher is equipped instead.

    https://preview.redd.it/8i3kyr2rg2pd1.png?width=511&format=png&auto=webp&s=09d04703db64c46c5b21ef4eb9eade2d7e067a5d

    I just cannot get this thing to disappear with the meter.
    I've tried nesting the background's parameters within the meter's or the label's, but to no avail. It decides to not show up period when I try that...
    ...even though this HUD seems to add its own nested BG graphics to the counter for stickies on the field just fine.

    I do not get it. Bizarre to me.
    I've tried looking up tutorials and whatnot, but whatever I sift through never illuminates me on this specific matter.

    (Here's what I've tried doing)

    "ChargeLabel"
      {
      "ControlName"  "CExLabel"
      "fieldName"    "ChargeLabel"
      "xpos"         "c-57"
      "ypos"         "c38"
      "zpos"         "3"
      "wide"         "50"
      "tall"         "10"
      "autoResize"   "1"
      "pinCorner"    "2"
      "visible"      "1"
      "enabled"      "0"
      "tabPosition"  "0"
      "labelText"    "#TF_Charge"
      "textAlignment""center"
      "dulltext"     "0"
      "brighttext"   "0"
      "font"         "TF2Default"
      "disabledfgcolor2_override" "AdditionalValue"
    
      "ShieldBG"
      {
        "ControlName"   "CTFImagePanel"
        "fieldName"     "ShieldBG"
        "xpos"          "c-56"
        "ypos"          "c30"
        "zpos"          "0"
        "wide"          "112"
        "tall"          "18"
        "visible"       "1"
        "enabled"       "1"
        "image"         "replay/thumbnails/uber_red"
        "scaleImage"    "0"
        "teambg_2"      "replay/thumbnails/uber_red"
        "teambg_3"      "replay/thumbnails/uber_blue"
      }
    
      "ShieldBGShadow"
      {
        "ControlName"  "CTFImagePanel"
        "fieldName"    "ShieldBGShadow"
        "pin_to_sibling"        "ShieldBG"
        "pin_corner_to_sibling" "PIN_TOPLEFT"
        "pin_to_sibling_corner" "PIN_TOPLEFT"
        "xpos"         "-2"
        "ypos"         "-2"
        "zpos"         "-1"
        "wide"         "112"
        "tall"         "18"
        "visible"      "1"
        "enabled"      "1"
        "image"        "replay/thumbnails/uber_shadow"
        "scaleImage"   "0"
      }
    }
    2 Comments
    2024/09/16
    00:42 UTC

    2

    Does anyone know a hud like this one?

    https://modworkshop.net/mod/13010?tab=images

    A memehud for sure but not without filling the screen with pointless clutter more like, if you let a 2 year old design everything.

    0 Comments
    2024/09/15
    11:36 UTC

    4

    Can i commision people to make me a hud

    Ive allways wanted my own hud and ive recently tried to make one but i dont have the brain power to do all that but i have a really great idea for one. If anyone can help me add me on discord or message me Discord(therussianmafia.)

    0 Comments
    2024/09/15
    08:48 UTC

    2 Comments
    2024/09/08
    20:15 UTC

    16

    How do I give my hud this background?

    3 Comments
    2024/09/04
    16:08 UTC

    2

    i wanna try making my own huds any guide?

    pls answer

    3 Comments
    2024/08/30
    06:17 UTC

    1

    Is there a trustable page to download huds?

    I just looking for a hud to download and I don't know where to look other than gamebanana.

    1 Comment
    2024/08/27
    22:52 UTC

    2

    Custom hud fonts

    This was in my \"Clientscheme - fonts\", Searched for \"health\" and brought me to this so I did not hesitate to change the font

    I thought this was the main thing that controls which font the health will be so I didnt hesitate to change it.

    same goes for this one

    I have change the \"font\" to the custome file name but I forgot to take a new screenshot.

    This is the clientscheme whereas I have added the 2 fonts in the font list.

    I have inserted both the two custom fonts

    I had followed Raysfire's tutorial on how to change fonts in a custom hud. He changed his whole hud's font but for me I am only focusing on changing the font of my health and ammo. I have changed the health's font, but when I tested it, it showed me a regular and small text as if the font was not installed even though it was. I'm not sure what mistake I did so I am now going to ask some experts on what to do.

    0 Comments
    2024/08/20
    08:46 UTC

    3

    Can someone identify this HUD's name? It's from the Tyler McVicker newest video on the HL3 leaks

    2 Comments
    2024/08/19
    14:17 UTC

    3

    Is there any way to center the Vaccinator's resistance without centering the meter itself?

    I'm looking to center the Vacc's resistance, but not the bar. I like the bar being off to the side but I wanna see the resistance in the middle, is this possible?

    Little update here: Editing the position of the resist icon in hudmediccharge does nothing in game, so I'm still at a loss. I'm not experienced with HUDs at all.

    2 Comments
    2024/08/18
    15:04 UTC

    4

    Hello, I quite enjoy kbnhud, but id like to remove the portrait in the bottom left and put the percentage number right under the crosshair, like on medhud, without the progress bar. Please tell me how to do that

    1 Comment
    2024/08/05
    17:06 UTC

    6

    what do yall think this is

    6 Comments
    2024/08/05
    15:02 UTC

    1

    Need help making target ID larger.

    Hi all! When playing medic, I always swear by the solemn vow for allowing me to read enemy medic uber percentage. One small issue; the number is too damn small for me to consistently read! Is there any way I can make the number bigger? Preferably without breaking everything?

    0 Comments
    2024/08/01
    16:15 UTC

    1

    Does anyone now how to remove rocket launcher smoke in TF2

    I couldn't find it on the internet

    0 Comments
    2024/08/01
    10:52 UTC

    1

    Hud damage numbers stacking and not stacking at the same time

    https://reddit.com/link/1ee1zni/video/o3w0ltqip7fd1/player

    damage number stacking on top of players but not on hud on top of ammo. How do I fix this?
    Hud is Eve hud and already have this on my cfg file
    hud_combattext 1
    hud_combattext_batching 1
    hud_combattext_batching_window 2
    hud_combattext_healing 1

    0 Comments
    2024/07/28
    07:32 UTC

    1

    how to add hotkeys in the backpack?

    like keys 1-9 for the 9 mercs, 0 for backpack, then c for crafting yknow

    0 Comments
    2024/07/25
    16:51 UTC

    1

    someone help with flawhud in the tf2 hud editor

    https://preview.redd.it/91pr5kgj5led1.jpg?width=1920&format=pjpg&auto=webp&s=95f72a3bf75b57567ce86c35e1be6594fbb4e181

    (TF2 FLAWHUD HUD EDITOR) so the theme color, changes not only the text color in the menu but the ammo boxes too. so if you want to see the text in the menu, you get the fricked up ammo texts, but if you change the theme to black and transparent, you cant see the text in the mother freaking menu. Please help

    0 Comments
    2024/07/25
    03:41 UTC

    3

    Repeating connection problem

    This keeps happening every 10 seconds while I’m playing. It’s making gameplay impossible. What is my problem and have other people having these problems?

    3 Comments
    2024/07/22
    14:00 UTC

    1

    Repeated server collection error

    Lately when I’ve been playing TF two, I get the red letter message in the top corner of the screen that says I am losing connection. This has been happening every 12 seconds or so. It has never completely disconnected me, but it’s been happening so often that gameplay is impossible. Has anyone else had this issue and or knows how to fix it?

    0 Comments
    2024/07/22
    10:44 UTC

    Back To Top