scoop on 19/6/2024 at 13:12
Quote Posted by Cigam
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! :cheeky:
Estel Randir on 6/2/2025 at 03:16
Quote Posted by vfig
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.