Browse Source

Merge pull request #13 from Khelgar1/patch-1

Update serverconfig.xml
pull/16/head
Daniel Gibbs 8 years ago
committed by GitHub
parent
commit
53e50d8e4d
  1. 21
      7DaysToDie/serverconfig.xml

21
7DaysToDie/serverconfig.xml

@ -2,11 +2,17 @@
<ServerSettings>
<property name="ServerPort" value="26900"/> <!-- Port you want the server to listen on. -->
<property name="ServerIsPublic" value="true"/> <!-- Should this server register to master server -->
<property name="ServerName" value="SERVERNAME"/> <!-- Whatever you want the name to be. -->
<property name="ServerName" value="My Game Host"/> <!-- Whatever you want the name to be. -->
<property name="ServerPassword" value=""/> <!-- Password to gain entry to the server -->
<property name="ServerMaxPlayerCount" value="8"/> <!-- Maximum Concurrent Players -->
<property name="ServerReservedSlots" value="0"/> <!-- Out of the MaxPlayerCount this many slots can only be used by players with a specific permission level -->
<property name="ServerReservedSlotsPermission" value="100"/> <!-- Required permission level to use reserved slots above -->
<property name="ServerAdminSlots" value="0"/> <!-- This many admins can still join even if the server has reached MaxPlayerCount -->
<property name="ServerAdminSlotsPermission" value="0"/> <!-- Required permission level to use the admin slots above -->
<property name="ServerDescription" value="A 7 Days to Die server"/> <!-- Whatever you want the description to be. -->
<property name="ServerWebsiteURL" value=""/> <!-- Website URL for the server -->
<property name="ServerDisabledNetworkProtocols" value="UNET"/> <!-- Networking protocols that should not be used. Separated by comma. Possible values: UNET, RakNet, SteamNetworking. Ex: "unet,steamnetworking" -->
<property name="GameWorld" value="Navezgane"/> <!-- Navezgane, Random Gen -->
<property name="GameName" value="My Game"/> <!-- Whatever you want the game name to be THIS CONTROLS THE RANDOM GENERATION SEED -->
@ -25,19 +31,19 @@
<property name="ControlPanelEnabled" value="false"/> <!-- Enable/Disable the control panel -->
<property name="ControlPanelPort" value="8080"/> <!-- Port of the control panel webpage -->
<property name="ControlPanelPassword" value="ADMINPASSWORD"/> <!-- Password to gain entry to the control panel -->
<property name="ControlPanelPassword" value="CHANGEME"/> <!-- Password to gain entry to the control panel -->
<property name="TelnetEnabled" value="true"/> <!-- Enable/Disable the telnet -->
<property name="TelnetPort" value="8081"/> <!-- Port of the telnet server -->
<property name="TelnetPassword" value="ADMINPASSWORD"/> <!-- Password to gain entry to telnet interface -->
<property name="TelnetPassword" value=""/> <!-- Password to gain entry to telnet interface -->
<property name="AdminFileName" value="serveradmin.xml"/> <!-- Server admin file name -->
<property name="DropOnDeath" value="0" /> <!-- 0 = everything, 1 = toolbelt only, 2 = backpack only, 3 = delete all -->
<property name="DropOnQuit" value="0" /> <!-- 0 = nothing, 1 = everything, 2 = toolbelt only, 3 = backpack only -->
<property name="EnemySenseMemory" value="60" /> <!-- Time, in seconds, that a zombie will pursue something that has been sensed. -->
<property name="EnemySpawnMode" value="3" /> <!-- 0 = Disabled 0%, 1 = Very Low 50%, 2 = Low 75%, 3 = Medium 100%, 4 = High 125%, 5 = Very High 150% -->
<property name="BloodMoonEnemyCount" value="8" /> <!-- The number of zombies spawned during blood moons per player. -->
<property name="EnemySpawnMode" value="true" /> <!-- Enable/Disable enemy spawning -->
<property name="EnemyDifficulty" value="0" /> <!-- 0 = Normal, 1 = Feral -->
<property name="BlockDurabilityModifier" value="100" /> <!-- percentage in whole numbers -->
@ -45,7 +51,7 @@
<property name="LootAbundance" value="100" /> <!-- percentage in whole numbers -->
<property name="LootRespawnDays" value="30" /> <!-- days in whole numbers -->
<property name="LandClaimSize" value="7"/> <!-- Size in blocks that is protected by a keystone -->
<property name="LandClaimSize" value="41"/> <!-- Size in blocks that is protected by a keystone -->
<property name="LandClaimDeadZone" value="30"/> <!-- Keystones must be this many blocks apart (unless you are friends with the other player) -->
<property name="LandClaimExpiryTime" value="3"/> <!-- The number of days a player can be offline before their claims expire and are no longer protected -->
<property name="LandClaimDecayMode" value="0"/> <!-- Controls how offline players land claims decay. All claims have full protection for the first 24hrs. 0=Linear, 1=Exponential, 2=Full protection until claim is expired. -->
@ -62,6 +68,9 @@
-->
<property name="MaxSpawnedAnimals" value="50"/>
<property name="EACEnabled" value="true"/> <!-- Enables/Disables EasyAntiCheat -->
<property name="HideCommandExecutionLog" value="0"/> <!-- Hide logging of command execution. 0 = show everything, 1 = hide only from Telnet/ControlPanel, 2 = also hide from remote game clients, 3 = hide everything -->
<property name="MaxUncoveredMapChunksPerPlayer" value="131072"/> <!-- Override how many chunks can be uncovered on the ingame map by each player. Resulting max map file size per player is 512 Bytes times this value. Default 131072 means max 32 km² can be uncovered at any time -->
<property name="BedrollDeadZoneSize" value="15"/> <!-- Size of bedroll deadzone, no zombies will spawn inside this area, and any cleared sleeper volumes that touch a bedroll deadzone will not spawn after they've been cleared. -->
<!--property name="SaveGameFolder" value="absolute path" /--> <!-- use this to override the default save game path -->
</ServerSettings>

Loading…
Cancel
Save