XJR Hunter Joined Apr 13, 2004 Messages 98 Reaction score 4 Dec 31, 2004 #1 how can i make the hud , weapon models and crosshair dissapear?
Hectic Glenn Site Director Staff member Joined Aug 8, 2004 Messages 12,233 Reaction score 241 Dec 31, 2004 #2 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:
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:
XJR Hunter Joined Apr 13, 2004 Messages 98 Reaction score 4 Dec 31, 2004 #3 im in a hurry but thanks thats a great help