Author Topic: Question about hiding the HUD (when equipped weps)  (Read 325 times)

So I saw a video (blockland) where a guy pulled out a weapon and was firing it and everything, first person mode, but there was no HUD or anything visible. Is there anyway to make that happen through options? I've looked through it before and never saw anything. I did see "Hide HUD",  but that only hides the HUD when a weapon is not equipped, last time I checked. Is this possible?

A cheap solution would to be to type this in your console  :

Code: [Select]
HUD_ToolBox.visible = false; HUD_ToolNameBG.visible = false;

When you want it later simply do

Code: [Select]
HUD_ToolBox.visible = true; HUD_ToolNameBG.visible = true;

That works! Thank you very much! :D

Locking