The HUD?

XJR

Hunter
Joined
Apr 13, 2004
Messages
98
Reaction score
4
how can i make the hud , weapon models and crosshair dissapear? :rolleyes:
 
Quote:
Originally Posted by FictiousWill
For more professional photography:

bind [ "cl_drawhud 0; r_drawviewmodel 0; r_drawvgui 0"
bind ] "cl_drawhud 1; r_drawviewmodel 1; r_drawvgui 1"

You could set it up to a toggle button like this:

alias hideall "cl_drawhud 0; r_drawviewmodel 0; r_drawvgui 0; bind [ showall"
alias showall "cl_drawhud 1; r_drawviewmodel 1; r_drawvgui 1; bind [ hideall"

bind [ showall

OR

Code:

Developer 1 alias "hideecho" "echo leftarrow=hide hud; echo
rightarrow=show hud" bind 0 "hideecho" bind leftarrow
"cl_drawhud 0; r_drawviewmodel 0; r_drawvgui 0" bind rightarrow
"cl_drawhud 1; r_drawviewmodel 1; r_drawvgui 1"



When ever you press the "0" key a menu will pop up in the top left of your screen"

Searching the forum is a good idea :thumbs:
 
im in a hurry but thanks thats a great help
 
Back
Top