Guest User

Untitled

a guest
Jun 16th, 2020
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 13.11 KB | None | 0 0
  1. <?xml version="1.0"?>
  2. <ServerSettings>
  3. <!-- GENERAL SERVER SETTINGS -->
  4.  
  5. <!-- Server representation -->
  6. <property name="ServerName" value="Kamenzees Place"/> <!-- Whatever you want the name of the server to be. -->
  7. <property name="ServerDescription" value="The dopest 7 days sever on planet earth"/> <!-- Whatever you want the server description to be, will be shown in the server browser. -->
  8. <property name="ServerWebsiteURL" value=""/> <!-- Website URL for the server, will be shown in the serverbrowser as a clickable link -->
  9. <property name="ServerPassword" value="June2020"/> <!-- Password to gain entry to the server -->
  10. <property name="ServerLoginConfirmationText" value="" /> <!-- If set the user will see the message during joining the server and has to confirm it before continuing. For more complex changes to this window you can change the "serverjoinrulesdialog" window in XUi -->
  11.  
  12. <!-- Networking -->
  13. <property name="ServerPort" value="26900"/> <!-- Port you want the server to listen on. -->
  14. <property name="ServerVisibility" value="2"/> <!-- Visibility of this server: 2 = public, 1 = only shown to friends, 0 = not listed. As you are never friend of a dedicated server setting this to "1" will only work when the first player connects manually by IP. -->
  15. <property name="ServerDisabledNetworkProtocols" value="SteamNetworking"/> <!-- Networking protocols that should not be used. Separated by comma. Possible values: LiteNetLib, SteamNetworking. Dedicated servers should disable SteamNetworking if there is no NAT router in between your users and the server or when port-forwarding is set up correctly -->
  16. <property name="ServerMaxWorldTransferSpeedKiBs" value="512"/> <!-- Maximum (!) speed in kiB/s the world is transferred at to a client on first connect if it does not have the world yet. Maximum is about 1300 kiB/s, even if you set a higher value. -->
  17.  
  18. <!-- Slots -->
  19. <property name="ServerMaxPlayerCount" value="20"/> <!-- Maximum Concurrent Players -->
  20. <property name="ServerReservedSlots" value="0"/> <!-- Out of the MaxPlayerCount this many slots can only be used by players with a specific permission level -->
  21. <property name="ServerReservedSlotsPermission" value="100"/> <!-- Required permission level to use reserved slots above -->
  22. <property name="ServerAdminSlots" value="0"/> <!-- This many admins can still join even if the server has reached MaxPlayerCount -->
  23. <property name="ServerAdminSlotsPermission" value="0"/> <!-- Required permission level to use the admin slots above -->
  24.  
  25. <!-- Admin interfaces -->
  26. <property name="ControlPanelEnabled" value="false"/> <!-- Enable/Disable the web control panel -->
  27. <property name="ControlPanelPort" value="8080"/> <!-- Port of the control panel webpage -->
  28. <property name="ControlPanelPassword" value="NestlePureLife"/> <!-- Password to gain entry to the control panel -->
  29.  
  30. <property name="TelnetEnabled" value="true"/> <!-- Enable/Disable the telnet -->
  31. <property name="TelnetPort" value="8081"/> <!-- Port of the telnet server -->
  32. <property name="TelnetPassword" value=""/> <!-- Password to gain entry to telnet interface. If no password is set the server will only listen on the local loopback interface -->
  33. <property name="TelnetFailedLoginLimit" value="10"/> <!-- After this many wrong passwords from a single remote client the client will be blocked from connecting to the Telnet interface -->
  34. <property name="TelnetFailedLoginsBlocktime" value="10"/> <!-- How long will the block persist (in seconds) -->
  35.  
  36. <property name="TerminalWindowEnabled" value="true"/> <!-- Show a terminal window for log output / command input (Windows only) -->
  37.  
  38. <!-- Folder and file locations -->
  39. <property name="AdminFileName" value="serveradmin.xml"/> <!-- Server admin file name. Path relative to the SaveGameFolder -->
  40. <!-- <property name="UserDataFolder" value="absolute path" /> --> <!-- Use this to override where the server stores all generated data, including RWG generated worlds. Do not forget to uncomment the entry! -->
  41. <!-- <property name="SaveGameFolder" value="absolute path" /> --> <!-- Use this to only override the save game path. Do not forget to uncomment the entry! -->
  42.  
  43. <!-- Other technical settings -->
  44. <property name="EACEnabled" value="true"/> <!-- Enables/Disables EasyAntiCheat -->
  45. <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 -->
  46. <property name="MaxUncoveredMapChunksPerPlayer" value="131072"/> <!-- Override how many chunks can be uncovered on the ingame map by each player. Resulting max map file size limit per player is (x * 512 Bytes), uncovered area is (x * 256 m²). Default 131072 means max 32 km² can be uncovered at any time -->
  47. <property name="PersistentPlayerProfiles" value="false" /> <!-- If disabled a player can join with any selected profile. If true they will join with the last profile they joined with -->
  48.  
  49.  
  50.  
  51. <!-- GAMEPLAY -->
  52.  
  53. <!-- World -->
  54. <property name="GameWorld" value="RWG"/> <!-- "RWG" (see WorldGenSeed and WorldGenSize options below) or any already existing world name in the Worlds folder (currently shipping with e.g. "Navezgane", "PREGEN01", ...) -->
  55. <property name="WorldGenSeed" value="Tinman"/> <!-- If RWG this is the seed for the generation of the new world. If a world with the resulting name already exists it will simply load it -->
  56. <property name="WorldGenSize" value="8192"/> <!-- If RWG this controls the width and height of the created world. It is also used in combination with WorldGenSeed to create the internal RWG seed thus also creating a unique map name even if using the same WorldGenSeed. Has to be between 2048 and 16384, though large map sizes will take long to generate / download / load -->
  57. <property name="GameName" value="Kamenzees Place"/> <!-- Whatever you want the game name to be. This affects the save game name as well as the seed used when placing decoration (trees etc) in the world. It does not control the generic layout of the world if creating an RWG world -->
  58. <property name="GameMode" value="GameModeSurvival"/> <!-- GameModeSurvival -->
  59.  
  60. <!-- Difficulty -->
  61. <property name="GameDifficulty" value="1"/> <!-- 0 - 5, 0=easiest, 5=hardest -->
  62. <property name="BlockDamagePlayer" value="100" /> <!-- How much damage do players to blocks (percentage in whole numbers) -->
  63. <property name="BlockDamageAI" value="100" /> <!-- How much damage do AIs to blocks (percentage in whole numbers) -->
  64. <property name="BlockDamageAIBM" value="100" /> <!-- How much damage do AIs during blood moons to blocks (percentage in whole numbers) -->
  65. <property name="XPMultiplier" value="150" /> <!-- XP gain multiplier (percentage in whole numbers) -->
  66. <property name="PlayerSafeZoneLevel" value="5" /> <!-- If a player is less or equal this level he will create a safe zone (no enemies) when spawned -->
  67. <property name="PlayerSafeZoneHours" value="5" /> <!-- Hours in world time this safe zone exists -->
  68.  
  69. <!-- -->
  70. <property name="BuildCreate" value="false" /> <!-- cheat mode on/off -->
  71. <property name="DayNightLength" value="60" /> <!-- real time minutes per in game day: 60 minutes -->
  72. <property name="DayLightLength" value="18" /> <!-- in game hours the sun shines per day: 18 hours day light per in game day -->
  73. <property name="DropOnDeath" value="1" /> <!-- 0 = nothing, 1 = everything, 2 = toolbelt only, 3 = backpack only, 4 = delete all -->
  74. <property name="DropOnQuit" value="0" /> <!-- 0 = nothing, 1 = everything, 2 = toolbelt only, 3 = backpack only -->
  75. <property name="BedrollDeadZoneSize" value="15" /> <!-- Size (box "radius", so a box with 2 times the given value for each side's length) 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. -->
  76. <property name="BedrollExpiryTime" value="45" /> <!-- Number of days a bedroll stays active after owner was last online -->
  77.  
  78. <!-- Performance related -->
  79. <property name="MaxSpawnedZombies" value="100" /> <!-- This setting covers the entire map. There can only be this many zombies on the entire map at one time. Changing this setting has a huge impact on performance. -->
  80. <property name="MaxSpawnedAnimals" value="100" /> <!-- If your server has a large number of players you can increase this limit to add more wildlife. Animals don't consume as much CPU as zombies. NOTE: That this doesn't cause more animals to spawn arbitrarily: The biome spawning system only spawns a certain number of animals in a given area, but if you have lots of players that are all spread out then you may be hitting the limit and can increase it. -->
  81. <property name="ServerMaxAllowedViewDistance" value="8" /> <!-- Max viewdistance a client may request (6 - 12). High impact on memory usage and performance. -->
  82.  
  83. <!-- Zombie settings -->
  84. <property name="EnemySpawnMode" value="true" /> <!-- Enable/Disable enemy spawning -->
  85. <property name="EnemyDifficulty" value="0" /> <!-- 0 = Normal, 1 = Feral -->
  86. <property name="ZombieMove" value="0" /> <!-- 0-4 (walk, jog, run, sprint, nightmare) -->
  87. <property name="ZombieMoveNight" value="3" /> <!-- 0-4 (walk, jog, run, sprint, nightmare) -->
  88. <property name="ZombieFeralMove" value="2" /> <!-- 0-4 (walk, jog, run, sprint, nightmare) -->
  89. <property name="ZombieBMMove" value="3" /> <!-- 0-4 (walk, jog, run, sprint, nightmare) -->
  90. <property name="BloodMoonFrequency" value="7" /> <!-- What frequency (in days) should a blood moon take place. Set to "0" for no blood moons -->
  91. <property name="BloodMoonRange" value="1" /> <!-- How many days can the actual blood moon day randomly deviate from the above setting. Setting this to 0 makes blood moons happen exactly each Nth day as specified in BloodMoonFrequency -->
  92. <property name="BloodMoonWarning" value="6" /> <!-- The Hour number that the red day number begins on a blood moon day. Setting this to -1 makes the red never show. -->
  93. <property name="BloodMoonEnemyCount" value="8" /> <!-- This is the number of zombies that can be alive (spawned at the same time) at any time PER PLAYER during a blood moon horde, however, MaxSpawnedZombies overrides this number in multiplayer games. Also note that your game stage sets the max number of zombies PER PARTY. Low game stage values can result in lower number of zombies than the BloodMoonEnemyCount setting. Changing this setting has a huge impact on performance. -->
  94.  
  95. <!-- Loot -->
  96. <property name="LootAbundance" value="100" /> <!-- percentage in whole numbers -->
  97. <property name="LootRespawnDays" value="14" /> <!-- days in whole numbers -->
  98. <property name="AirDropFrequency" value="72"/> <!-- How often airdrop occur in game-hours, 0 == never -->
  99. <property name="AirDropMarker" value="true"/> <!-- Sets if a marker is added to map/compass for air drops. -->
  100.  
  101. <!-- Multiplayer -->
  102. <property name="PartySharedKillRange" value="200"/> <!-- The distance you must be within to receive party shared kill xp and quest party kill objective credit. -->
  103. <property name="PlayerKillingMode" value="2" /> <!-- Player Killing Settings (0 = No Killing, 1 = Kill Allies Only, 2 = Kill Strangers Only, 3 = Kill Everyone) -->
  104.  
  105. <!-- Land claim options -->
  106. <property name="LandClaimCount" value="1"/> <!-- Maximum allowed land claims per player. -->
  107. <property name="LandClaimSize" value="50"/> <!-- Size in blocks that is protected by a keystone -->
  108. <property name="LandClaimDeadZone" value="30"/> <!-- Keystones must be this many blocks apart (unless you are friends with the other player) -->
  109. <property name="LandClaimExpiryTime" value="7"/> <!-- The number of days a player can be offline before their claims expire and are no longer protected -->
  110. <property name="LandClaimDecayMode" value="2"/> <!-- Controls how offline players land claims decay. 0=Slow (Linear) , 1=Fast (Exponential), 2=None (Full protection until claim is expired). -->
  111. <property name="LandClaimOnlineDurabilityModifier" value="4"/> <!-- How much protected claim area block hardness is increased when a player is online. 0 means infinite (no damage will ever be taken). Default is 4x -->
  112. <property name="LandClaimOfflineDurabilityModifier" value="4"/> <!-- How much protected claim area block hardness is increased when a player is offline. 0 means infinite (no damage will ever be taken). Default is 4x -->
  113. <property name="LandClaimOfflineDelay" value="0"/> <!-- The number of minutes after a player logs out that the land claim area hardness transitions from online to offline. Default is 0 -->
  114.  
  115.  
  116. <!-- There are several game settings that you cannot change when starting a new game.
  117. You can use console commands to change at least some of them ingame.
  118. setgamepref BedrollDeadZoneSize 30 -->
  119. </ServerSettings>
Add Comment
Please, Sign In to add comment