TTLG|Jukebox|Thief|Bioshock|System Shock|Deus Ex|Mobile
Results 1 to 22 of 22

Thread: The way to remove HUD completely from Thief 2

  1. #1
    New Member
    Registered: Apr 2015

    The way to remove HUD completely from Thief 2

    So I wanted to remove the HUD completely to get better screenshots. Here's all you need to do:
    -find dark.cfg in the T2 folder
    -change these values like so:
    vismeter_zoom 60 (change the 60 to -10)
    and
    hpbar_zoom 60 (change the 60 to 0)
    -save the file and restart Thief 2

    Ofc by setting different values you can just change their size too, within some allowed parameters.

    Hope that helps someone else too!

  2. #2
    Member
    Registered: Nov 2004
    Location: Germany
    There is a much easier way.

    Open cam.cfg with notepad and add the line: inv_status_height 0

    That's it

  3. #3
    ZylonBane
    Registered: Sep 2000
    Location: ZylonBane
    The correct way, under NewDark, add this to cam_ext.cfg:

    d3d_disp_2d_overlay_alpha 0

  4. #4
    New Member
    Registered: Apr 2015
    Does inv_status_height leave the items display as it is? It looks a little bit easier, not "much" easier IMO.

    I should have mentioned I'm running version 1.07 so yeah maybe it's different for NewDark.

  5. #5
    Desperately Dodgy Moderator
    Registered: Nov 2001
    Location: Bohn Museum
    Why?

  6. #6
    New Member
    Registered: May 2010
    Hey! thanks for this thread! i have been looking for a way to remove the HUD for a long time.

    IT forces you to become a true expert at this game!

    now i Just need a way to bind this option to a key on the keyboard!

    can anyone help!???????

    that way i can toggle it on and off as needed

    thanks!

  7. #7
    ZylonBane
    Registered: Sep 2000
    Location: ZylonBane
    No.

  8. #8
    New Member
    Registered: May 2010
    Quote Originally Posted by ZylonBane View Post
    No.
    No you dont know? or No you definitely know without a shadow of a doubt that there is absolutely no way of accomplishing this?

  9. #9
    New Member
    Registered: Apr 2015
    Quote Originally Posted by jblanc03 View Post
    Hey! thanks for this thread! i have been looking for a way to remove the HUD for a long time.

    IT forces you to become a true expert at this game!

    now i Just need a way to bind this option to a key on the keyboard!

    can anyone help!???????

    that way i can toggle it on and off as needed

    thanks!
    There really isn't a way because the game reads that stuff from the config file every time it starts up and you'd have to probably hack it to make it behave any differently. It doesn't even have a console you could use for restarting the graphics engine or anything like that. Still Zylon's reply is unnecessarily sardonic.

    You're usually okay to mess around with external conf files (they're left visible for a reason) quite a bit without the game minding. The parameter names will sometimes give you a good idea about what they do.

  10. #10
    Desperately Dodgy Moderator
    Registered: Nov 2001
    Location: Bohn Museum
    ZB meant no you can't toggle it at runtime, you have to exit, change the config var and restart the game. As LotBlind said, it's read only at startup.

  11. #11
    Member
    Registered: Apr 2011
    Posting this here for future reference, cause it is possible to toggle the health bar and light gem mid game without much hassle:

    1. Create a file called `hide_hud` in your Thief directory, and put these two lines into it:
    set inv_status_height 0
    objectives
    2. Create another filed called `show_hud` in your Thief directory, and put these lines in it:
    set inv_status_height 0.06
    objectives
    3. Edit `user.bnd` and add these lines to it. If there's already bindings for F9, or you prefer different keys, edit them accordingly:
    bind f9 "run hide_hud"
    bind f9+alt "run show_hud"
    4. Play Thief! Press F9 followed by Esc to hide the HUD (sorry, the switch out
    to objectives is necessary to make the config change take effect). Then
    press Alt+F9 followed by Esc to show the HUD again.

    5. Profit, I guess?

  12. #12
    Member
    Registered: Dec 2011
    Location: Ferrol - Spain
    How do I do to change the size of letters for weapons and inventory that you toggle on HUD while playing?
    And to change the duration of a notice, for instance the one that you read at the start of Return to the Cathedral inviting you to leave the area.

  13. #13
    Member
    Registered: Oct 2001
    Location: Inside at last...
    What hud?

  14. #14
    ZylonBane
    Registered: Sep 2000
    Location: ZylonBane
    The best one, of course.

  15. #15
    New Member
    Registered: May 2023

    Thanks!

    Quote Originally Posted by LotBlind View Post
    So I wanted to remove the HUD completely to get better screenshots. Here's all you need to do:
    -find dark.cfg in the T2 folder
    -change these values like so:
    vismeter_zoom 60 (change the 60 to -10)
    and
    hpbar_zoom 60 (change the 60 to 0)
    -save the file and restart Thief 2

    Ofc by setting different values you can just change their size too, within some allowed parameters.

    Hope that helps someone else too!
    Thanks so much! I can finally play Thief 2 with a clean screen, thanks to you.

  16. #16
    Member
    Registered: Apr 2011
    minor update: instead of two hotkeys, here is a script that will toggle the hud on and off with one hotkey:

    1. Create a file called `toggle_hud` in your Thief directory, and copy this code into it:
    Code:
    ifndef hud_hidden set inv_status_height 0
    ifdef hud_hidden set inv_status_height 0.06
    ifdef hud_hidden set hud_temp 1
    ifdef hud_hidden unset hud_hidden
    ifndef hud_hidden ifndef hud_temp set hud_hidden 1
    unset hud_temp
    objectives
    2. Edit `user.bnd` and add this line to it. If there's already bindings for F9, or you prefer a different key, edit it accordingly:
    Code:
    bind f9 "run toggle_hud"
    3. Play Thief! Press F9 followed by Esc to hide the HUD (sorry, the switch out
    to objectives is necessary to make the config change take effect). Then
    press F9 followed by Esc to show the HUD again.

  17. #17
    Member
    Registered: May 2004
    No profit this time?

    I've been using your last combo for a few years now, but it's nice to simplify it.

    Just tested it and works like a charm. Thank you!

  18. #18
    New Member
    Registered: Sep 2023
    Location: Beck o' the Wills
    Quote Originally Posted by vfig View Post
    minor update: instead of two hotkeys, here is a script that will toggle the hud on and off with one hotkey:

    1. Create a file called `toggle_hud` in your Thief directory, and copy this code into it:
    Code:
    ifndef hud_hidden set inv_status_height 0
    ifdef hud_hidden set inv_status_height 0.06
    ifdef hud_hidden set hud_temp 1
    ifdef hud_hidden unset hud_hidden
    ifndef hud_hidden ifndef hud_temp set hud_hidden 1
    unset hud_temp
    objectives
    2. Edit `user.bnd` and add this line to it. If there's already bindings for F9, or you prefer a different key, edit it accordingly:
    Code:
    bind f9 "run toggle_hud"
    3. Play Thief! Press F9 followed by Esc to hide the HUD (sorry, the switch out
    to objectives is necessary to make the config change take effect). Then
    press F9 followed by Esc to show the HUD again.
    does toggle_hud file have to be cfg or txt is fine too? because it doesn't work for me, created toggle_hud as cfg, added a line in user.bnd, also tried to check read-only on it, but that didn't work as well

  19. #19
    Member
    Registered: May 2004
    Neither. Delete the extension entirely.

  20. #20
    Member
    Registered: Oct 2013
    Does it work if you add the extension to the keybind line? For example:
    bind f9 "run toggle_hud.txt"

  21. #21
    New Member
    Registered: Sep 2023
    Location: Beck o' the Wills
    Quote Originally Posted by Cigam View Post
    Does it work if you add the extension to the keybind line? For example:
    bind f9 "run toggle_hud.txt"
    it worked! thank you so much!

  22. #22
    Quote Originally Posted by vfig View Post
    minor update: instead of two hotkeys, here is a script that will toggle the hud on and off with one hotkey:

    1. Create a file called `toggle_hud` in your Thief directory, and copy this code into it:
    Code:
    ifndef hud_hidden set inv_status_height 0
    ifdef hud_hidden set inv_status_height 0.06
    ifdef hud_hidden set hud_temp 1
    ifdef hud_hidden unset hud_hidden
    ifndef hud_hidden ifndef hud_temp set hud_hidden 1
    unset hud_temp
    objectives
    2. Edit `user.bnd` and add this line to it. If there's already bindings for F9, or you prefer a different key, edit it accordingly:
    Code:
    bind f9 "run toggle_hud"
    3. Play Thief! Press F9 followed by Esc to hide the HUD (sorry, the switch out
    to objectives is necessary to make the config change take effect). Then
    press F9 followed by Esc to show the HUD again.
    Just for everyone, this works for both T1 & T2.

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •