Days of War Wiki
No edit summary
Tag: Visual edit
Line 1: Line 1:
== Configuring ==
+
== Configuration ==
 
To configure server, you need to edit the engine.ini and game.ini files. You can find them in <code>YourServerFolder/DaysOfWar/Saved/Config/WindowsServer</code> for Windows Server or <code>YourServerFolder/DaysOfWar/Saved/Config/LinuxServer</code> for Linux Server.
 
To configure server, you need to edit the engine.ini and game.ini files. You can find them in <code>YourServerFolder/DaysOfWar/Saved/Config/WindowsServer</code> for Windows Server or <code>YourServerFolder/DaysOfWar/Saved/Config/LinuxServer</code> for Linux Server.
   
 
<ol>
 
<ol>
<li>Set the TickRate</li>
+
<li>'''Set the TickRate'''</li>
 
Here's an example of engine.ini to set a tickrate of 60. Default is 30.
 
Here's an example of engine.ini to set a tickrate of 60. Default is 30.
 
<pre>
 
<pre>
Line 10: Line 10:
 
</pre>
 
</pre>
   
<li>Set Max Players slots</li>
+
<li>'''Set Max Players slots'''</li>
 
You should add these lines in game.ini.
 
You should add these lines in game.ini.
 
<pre>
 
<pre>
Line 17: Line 17:
 
</pre>
 
</pre>
   
<li>Set Server Name, Admin Password and Server Password</li>
+
<li>'''Set Server Name, Admin Password and Server Password'''</li>
 
You need to edit these lines in game.ini.
 
You need to edit these lines in game.ini.
 
<pre>
 
<pre>
Line 25: Line 25:
 
</pre>
 
</pre>
   
<li>Add Administrator</li>
+
<li>'''Add Administrator'''</li>
 
You need to add this line in game.ini :
 
You need to add this line in game.ini :
 
in the good part <code>[/Script/DaysOfWar.ShooterGameInstance]</code> :
 
in the good part <code>[/Script/DaysOfWar.ShooterGameInstance]</code> :
Line 87: Line 87:
 
</pre>
 
</pre>
   
You can update most of those settings in the ingame server menu (SERVER INFO).
+
'''You can update most of those settings in the in-game server menu (SERVER INFO).'''
  +
[[File:Server_info.jpg|alt=|left|thumb]]
 
  +
[[File:Server_configuration_gameplay.jpg|alt=|left|thumb|600x600px]]
[[File:Server info.jpg]]
 
  +
[[File:Server_configuration_players.jpg|alt=|left|thumb|600x600px]]
 
[[File:Server configuration gameplay.jpg]]
 
 
[[File:Server configuration players.jpg]]
 

Revision as of 15:01, 26 January 2020

Configuration

To configure server, you need to edit the engine.ini and game.ini files. You can find them in YourServerFolder/DaysOfWar/Saved/Config/WindowsServer for Windows Server or YourServerFolder/DaysOfWar/Saved/Config/LinuxServer for Linux Server.

  1. Set the TickRate
  2. Here's an example of engine.ini to set a tickrate of 60. Default is 30.
    [/Script/OnlineSubsystemUtils.IpNetDriver]
    NetServerMaxTickRate=60
    
  3. Set Max Players slots
  4. You should add these lines in game.ini.
    [/Script/Engine.GameSession]
    MaxPlayers=24
    
  5. Set Server Name, Admin Password and Server Password
  6. You need to edit these lines in game.ini.
    ServerName=name_of_your_server
    ServerAdminPassword=administration_password
    ServerPassword=server_password (remove the line if you don't want to set a server password)
    
  7. Add Administrator
  8. You need to add this line in game.ini : in the good part [/Script/DaysOfWar.ShooterGameInstance] :
    Administrators=(PlayerUniqueId="YOUR_SteamID64",PlayerName="YOUR_NAME",PlayerClass="",PlayerIPAddress="",bIsAdmin=True,bIsBanned=False,BannedDate="",BanReason="")

    You can find your SteamID64 in this page : https://steamid.xyz/

Here's an example of game.ini file configured for 24 players with 10 bots and classlimits.

[/Script/DaysOfWar.ShooterGameInstance]
ServerName=MY_SERVER_NAME
ServerAdminPassword=MY_ADMIN_PASSWORD
ServerDiscordURL="https://discord.gg/daysofwar"
ServerWebsiteURL="http://www.drivenarts.com/"
ServerMessageOfTheDay=YOUR_WELCOME_MESSAGE
MapRotation=dow_amalfi
MapRotation=dow_bocage
MapRotation=dow_carentan
MapRotation=dow_cathedral
MapRotation=dow_chateau
MapRotation=dow_dockyard
MapRotation=dow_kaysersberg
MapRotation=dow_railyard
MapRotation=dow_riverbed
MapRotation=dow_torch
MapRotation=dow_leningrad
MapRotation=dow_mirage
bFriendlyFireEnabled=False
FriendlyFireKickThreshold=0
FriendlyFireBanThreshold=0
Administrators=(PlayerUniqueId="MY_STEAMID64",PlayerName="MY_NAME",PlayerClass="",PlayerIPAddress="",bIsAdmin=True,bIsBanned=False,BannedDate="",BanReason="")
RiflemanClassMaximum=4
AssaultClassMaximum=4
SupportClassMaximum=4
SniperClassMaximum=2
MGClassMaximum=2
RocketClassMaximum=2
ClanWarHostClanName=
ClanWarAwayClanName=
ClanWarMatchTime=20
bClanWarFriendlyFire=False
ClanWarRiflemanClassMaximum=11
ClanWarAssaultClassMaximum=11
ClanWarSupportClassMaximum=11
ClanWarSniperClassMaximum=11
ClanWarMGClassMaximum=11
ClanWarRocketClassMaximum=11

[/Script/DaysOfWar.DoWGameMode_Domination]
GameWarmupTime=30
RoundWarmupTime=8
RoundRestartTime=8

[/Script/Engine.GameSession]
MaxPlayers=24

[/Script/DaysOfWar.ShooterGameMode]
MaxBots=10

You can update most of those settings in the in-game server menu (SERVER INFO).

Server info
Server configuration gameplay
Server configuration players