Page 1 of 1

(yukon please)need a bit of help with 1920x1080 resolution

Posted: Tue Jan 29, 2019 7:39 am
by Bogdan_xD
So, i've seen in yukon's stream, that his lobby is on actual 1920x1080 and not a stretched 1280x1024.How can i do that aswell, as this stretching is really unpleasant.
Also, how do i make zoom, go even more zoom out?

Re: (yukon please)need a bit of help with 1920x1080 resoluti

Posted: Tue Jan 29, 2019 12:54 pm
by Arntzen
Go to Empire Earth folder, find dreXmod.config and open this in notepad. This will show up:

<?xml version="1.0"?>
<config>

<Camera>
<Enabled>false</Enabled>
<Zoom>
<MaxZ>14</MaxZ>
<FOV>0.85</FOV>
<Fog>50</Fog>
<Style>2</Style>
</Zoom>
<Rotation>
<Pitch>35</Pitch>
</Rotation>
</Camera>

<ScenarioHosting>
<Enabled>true</Enabled>
</ScenarioHosting>

<LobbyExtension>
<Enabled>true</Enabled>
</LobbyExtension>

<MenuSettings>
<Enabled>true</Enabled>
<ResolutionWidth>1920</ResolutionWidth>
<ResolutionHeight>1080</ResolutionHeight>
</MenuSettings>

<HUDPlayers>
<Enabled>true</Enabled>
<Layout>
<Left>0.845</Left>
<Bottom>0.720</Bottom>
<Width>0.150</Width>
<Height>0.160</Height>
</Layout>
<Style>
<Background>
<Color red='1' green='1' blue='1' />
<FriendlyPlayerBGColor red='117' green='117' blue='117'/>
<HostilePlayerBGColor red='37' green='37' blue='37' />
<Opacity>0.5</Opacity>
</Background>
<Text>
<Font>
<Name>Arial</Name>
<Size>12</Size>
</Font>
<ActivePlayerColor red='255' green='255' blue='255'/>
<InactivePlayerColor red='150' green='150' blue='150'/>
</Text>
</Style>
</HUDPlayers>

</config>

To have zoom out enabled, make sure it says true. Also add a higher number to get more zoom, like 30 for example.
Multiplayer lobby you see further down in MenuSettings. Of course be careful here to only change to something that actually works. It would be a good idea to first copy this file and save it somewhere else as a backup.

Re: (yukon please)need a bit of help with 1920x1080 resoluti

Posted: Tue Jan 29, 2019 1:50 pm
by drex888
yo,
thank you kaz for you answer.
Just a quick comment on the drexmod.config file.
This file was created for users, it does not contain any internal critical parameters. you can even delete it, drexmod continue to work :D

You can modify / customize all the values you want. be careful to camera settings, a high value for MAXZ or FOV could cause a crash.
There are 5 main sections : Camera, ScenarioHosting, MenuSettings, HUDPlayers, GamePlayersExtension.

"MenuSettings" is what you are looking for. it's disabled by default.

you turn on a feature by changing the value to <Enabled>true</Enabled> in related section (exactly true, not True, not TRUE)
you turn it off by changing the value to <Enabled>false</Enabled>

More details in the video descrition:
https://youtu.be/1euHIeURk6w

drex

Re: (yukon please)need a bit of help with 1920x1080 resoluti

Posted: Tue Jan 29, 2019 2:26 pm
by Bogdan_xD
thank you both :D