Doom 3 custom script not working properly - the clean screenshot script

Joined
Jan 14, 2001
Messages
584
Here is what I'm using as the script in my DoomConfig.cfg file.

Code:
/ Clean Screenshot - no Gun or HUD in picture //
bind F11 "set g_showHud 0; set ui_showGun 0; screenshot; set g_showHud 1; set ui_showGun 1"

It only half way works... when I take a screenshot, everything is gone EXCEPT for the weapon. According to the script, it looks like it should be taken out... but it's not.
Any help here? I would really appreciate it.

Thanks.
 
Works for me.

// Clean Screenshot - no Gun or HUD in picture //
bind F11 "set ui_showGun 0; set g_showHud 0; screenshot; set g_showHud 1; set ui_showGun 1"
 
Back
Top