Disabling the HUD


Sgt.Crocodile
11-16-2005, 07:20 AM
I was wondering if i could disable the HUD so i could take screenshots.
Is that possible?
Thanks

Sgt.Crocodile
11-17-2005, 04:43 AM
I assume its not doable......:(

pedroleum
11-17-2005, 04:52 AM
from the wiki (http://developer.valvesoftware.com/wiki/Creating_Level_Overviews):


5. Remove any HUD elements with console commands "cl_drawhud 0" and "hidepanel all".

Sgt.Crocodile
11-17-2005, 05:32 AM
Thanks mate.
What about bringing it back.....????

"cl_drawhud 1" and "showpanel all". ????

pedroleum
11-17-2005, 06:19 AM
don't know :P
first one is correct.. but i can only guess about the second part.... hidepanel 0 ??

Kieffer
11-19-2005, 11:52 PM
http://www.dayofdefeat.net/forums/showthread.php?s=&threadid=55701

Make sure you download the second link down the page

burcs
11-21-2005, 12:23 PM
//autoexec.cfg (Source)
bind F6 "pics"
alias pics "cl_drawhud 0; r_drawviewmodel 0; wait; wait; wait; wait; screenshot; bind F6 pics1"
alias pics1 "cl_drawhud 1; r_drawviewmodel 1; bind F6 pics"

(can subsititue "jpeg" for "screenshot" but .tga's = higher quality)

//userconfig.cfg (Goldsrc)
bind F6 "pics"
alias pics "hud_draw 0; r_drawviewmodel 0; wait; wait; wait; wait; snapshot; bind F6 pics1"
alias pics1 "hud_draw 1; r_drawviewmodel 1; bind F6 pics"

if you're unfamiliar with scripting, you can just copy and paste these into the appropriate configs. F6 will clear the screen and take a snapshot, then hit F6 again to turn everything back on. rinse, lather, repeat. if you change from F6 make sure and change all the F6's.

Day of Defeat Forum Archive created by Neil Jedrzejewski.

This in an partial archive of the old Day of Defeat forums orignally hosted by Valve Software LLC.
Material has been archived for the purpose of creating a knowledge base from messages posted between 2003 and 2008.