Smoot178 10 Posted July 29, 2009 (edited) I am looking for something simple to just turn the HUD off. I want to film some stuff and it's hard to with the HUD in the way. Thanks. Edit: BTW I'll have my own map so I can use init commands and stuff. Edited July 29, 2009 by Smoot178 Share this post Link to post Share on other sites
Strelok386 10 Posted August 9, 2009 I too am looking for the same question, considering I asked smoot to do so. I would like to know how to do this. Share this post Link to post Share on other sites
PuFu 4600 Posted August 9, 2009 I would gladly answer if this was in the right section OR maybe you want to create your own ADDON to remove the HUD? Share this post Link to post Share on other sites
Apocal 10 Posted August 11, 2009 Try looking into "camera.sqs" (use L to remove the crosshair) and see if that does what you need to do. Share this post Link to post Share on other sites
PuFu 4600 Posted August 11, 2009 you can do 2 things: 1. write down showHud false - write it down in description.ext. Will remove all HUD elements 2. use camera.sqs, press L to remove cursor, and use showCinemaBorder false in a trigger to remove the black up and down wide screen border Share this post Link to post Share on other sites
GoreZiad 0 Posted May 31, 2010 you can do 2 things:1. write down showHud false - write it down in description.ext. Will remove all HUD elements err so i create a description.ext file and just type in showhud false? it did nothing though. Share this post Link to post Share on other sites
wickedstigma 10 Posted June 15, 2010 I am also interested in this. Share this post Link to post Share on other sites
ov3rlord 0 Posted September 15, 2010 A bit late to answer now I expect but I believe it should be: showHud = false Share this post Link to post Share on other sites
Erratic 10 Posted September 16, 2010 anyone? Open your 'Description.ext' Enter this without the quotation marks "showHud = false;" on it's own line. There ya go, just tested it myself :p Share this post Link to post Share on other sites
pressytcn 10 Posted September 13, 2012 i been trying to do that but when i put the showHud = false in the description.ext the game crashes when im launching the mission in the editor Share this post Link to post Share on other sites
[aps]gnat 28 Posted September 14, 2012 Maybe "false" isn't defined. Try = 0; Share this post Link to post Share on other sites
Deadfast 43 Posted September 14, 2012 It's a command, not a description property. Put the following in either initialization line of some unit, on activation line of a trigger or init.sqf: showHud false Share this post Link to post Share on other sites