Days of War Wiki
No edit summary
Tag: Visual edit: Switched
Line 3: Line 3:
   
 
<ol>
 
<ol>
<li>Set the TickRate of your server</li>
+
<li>Set the TickRate</li>
 
Here's an example of engine.ini to set a tickrate of 60.
 
Here's an example of engine.ini to set a tickrate of 60.
 
<pre>
 
<pre>
Line 10: Line 10:
 
</pre>
 
</pre>
   
<li>Set MaxPlayers of the server</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 and 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>
ServerName=Name_of_your_server
+
ServerName=name_of_your_server
ServerAdminPassword=Administration_password
+
ServerAdminPassword=administration_password
  +
ServerPassword=server_password (remove the line if you don't want to set a server password)
 
</pre>
 
</pre>
   

Revision as of 14:41, 26 January 2020

Configuring

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.
    [/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 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