Days of War Wiki
Advertisement

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. 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 ingame server menu (SERVER INFO).

Server info

Server configuration gameplay

Advertisement