Warhammer 40 000: Dawn of War – Dark Crusade – Removing HUD for Screenshots (Easy way)

Warhammer 40 000: Dawn of War – Dark Crusade – Removing HUD for Screenshots (Easy way) 1 - steamlists.com
Warhammer 40 000: Dawn of War – Dark Crusade – Removing HUD for Screenshots (Easy way) 1 - steamlists.com
Easy way to hide UI if you want to take beautiful battle pictures

 
 

Examples

 
Warhammer 40 000: Dawn of War - Dark Crusade - Removing HUD for Screenshots (Easy way) - Examples 
 
Warhammer 40 000: Dawn of War - Dark Crusade - Removing HUD for Screenshots (Easy way) 
 
 

Setup your game to hide HUD

 

 

1.Finding game directory

 

 
First of all you need go to game directory folder just click right mouse button on game in steam library and find – “Browse files” string 
There is standart way: 
\steamapps\common\Dawn of War Dark Crusade 
 

2.Create a document

 
In main game directory you need create new text document and named it autoexec.lua 
Warhammer 40 000: Dawn of War - Dark Crusade - Removing HUD for Screenshots (Easy way) 
 

3.Paste code

 
Next step it is open autoexec.lua file with text editor and paste code below: 


 
screenmode = 0 
function toggle_screenmode() 
if screenmode == 0 then 
taskbar_hide() 
message_hide() 
screenmode = 1 
else 
taskbar_show() 
message_show() 
screenmode = 0 
end 
end 
bind(“alt+z”, “toggle_screenmode()”)
 


 
 

4.Final

 
Now save the document and start your game. If you press Alt+Z in game your interface is automatically hidden 
Warhammer 40 000: Dawn of War - Dark Crusade - Removing HUD for Screenshots (Easy way) 
 


 
P.S. How you can see it is just a function that can work with console. Of course you can just press ” ctrl + shift + ` “ to open up the console, and then type in “taskbar_hide” to hide the UI, and afterwards you can use “taskbar_show” to show it again. 
 

Written by KomaHuman

Hope you enjoy the Guide about Warhammer 40 000: Dawn of War – Dark Crusade – Removing HUD for Screenshots (Easy way), if you think we should add extra information or forget something, please let us know via comment below, and we will do our best to fix or update as soon as possible!
 
 
 
 


Be the first to comment

Leave a Reply

Your email address will not be published.


*