Advertisement
Guest User

Untitled

a guest
Dec 8th, 2019
463
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.58 KB | None | 0 0
  1. # -- Server --
  2. isPrivate = 'false' # Hides from the lobby if true.
  3. serverName = '[DE-PVE]Der Rentner Treff NEU'
  4. greeting = 'Welcome to %server%, %user%!' # Displayed to players when they join. Leave empty to disable. %user% = User who joined, %server% = Name of server.
  5. maxPlayers = '32' # [Minimum = 1, Maximum = 32]
  6. bindIP = '134.255.236.82' # The IP to bind the server to. Default: 0.0.0.0
  7. portNumber = '29300' # (Port-forward as UDP)
  8. password = ''
  9. enableCommands = 'true' # When set to false, all commands are disabled.
  10. connectionTimeout = '600' # The amount of seconds a client can be unresponsive before being kicked.
  11. steamAuthTimeout = '30' # The amount of seconds before the steam authentication fails when a player connects.
  12. steamAuthPort = '29315' # The port the steam authenticator will use to communicate with steam.
  13. asyncPort = '0' # The port used for background communication. (Port-forward as TCP)
  14. timeBetweenPlayerJoin = '15' # The seconds the server waits before allowing a player since the last player joined. Default: 10
  15. targetFrameRate = '50' # Default: 60
  16.  
  17. # -- Ping Limit --
  18. enablePingLimit = 'true' # Kick players who exceed the ping limit while this is enabled.
  19. pingPort = '29300' # (Port-forward as TCP) The port dedicated to managing player pings. This number can be shared with the gameplay port.
  20. pingLimit = '200' # [Minimum = 50, Maximum = 10000] An average ping limit in milliseconds. eg. 200 = 0.2 seconds
  21. pingGraphLength = '120' # [Minimum = 10, Maximum = 3600] The length of the graph used to calculate the average ping as seconds. A longer graph gives more room for latency spikes. eg. 120 = 2 minutes
  22.  
  23. # -- World --
  24. saveLocation = 'Saves/' # The location to save the worlds slots.
  25. autoSaveInterval = '1800' # How often the server saves in seconds. -1 to disable. (Default: 3600 = 1 hour)
  26. worldSlot = '1' # -1 creates a new world.
  27. allowSaving = 'true'
  28. levelName = 'America' # America
  29.  
  30. # -- Backups --
  31. # The server will always backup before saving in case the save fails.
  32. # These settings determine if you would like to keep the backups.
  33. backupsEnabled = 'true' # When true, the server will keep backups after saving.
  34. backupCountLimit = '5' # The number of backups to keep. (-1 allows infinite)
  35. backupSizeLimit = '1000' # Keeps the total size of all the backups under the specified size in MB. (1000 MB = 1 GB, -1 to disable)
  36. backupExpireTime = '720' # Removes any backups that are older then the specified number of hours. (24 = 1 day, 720 = 1 month, -1 to disable)
  37.  
  38. # -- Game --
  39. decay = 'true' # If placed objects and blocks decay and destroy over time.
  40.  
  41. # Changing these values will not affect pre-existing objects, also these were expected to be for very longs times and thus might not show immediate results if set low.
  42. decayMulti = '1' # A multiplier for decay time. >0 and < 1 means quicker, > 1 means slower. ExceptedTime * Multiplier = ActualTime.
  43. sleeperStarveTimer = '864000' # A timer that kills a player who stays asleep for the full duration. (0 to disable)
  44. sleeperDrownTimer = '300' # A timer that kills a player who stays asleep under water. (0 to disable)
  45. landSiege = 'true' # If the land area can be under siege.
  46. buildingCollapsing = 'true' # If buildings collapse when not attached to the ground.
  47. dailyInterestRate = '0,001' # The daily interest rate used for loans. Compounds per in-game day at midnight.
  48. startingYear = '1' # The year the server will start at (1 - 3000).
  49. startingMonth = '1' # The month the server will start at (1-12)
  50. startingDay = '1' # The day the server will start at (1-28)
  51. landClaimCooldown = '7200' # The timer after a successful flag placement where a player cannot claim more land. (0 to disable)
  52. baseTaxRate = '1' # The base value for property tax (>=0)
  53. minTaxHike = '0' # The minimum allowable tax rate hike (0-10)
  54. maxTaxHike = '0,1' # The maximum allowable tax rate hike (0-10)
  55.  
  56. allowCompasses = 'true' # Allows players to use the compass hud.
  57.  
  58. restartInterval = '28800' # The number of seconds between restarts. -1 to disable. This is ignored if restartHour is set.
  59. restartHour = '-1' # The 24 hour time (UTC) to perform a restart. -1 to disable. EX: 23 = 11 PM UTC
  60. restartMessage = 'The server will restart in %timeLeft%.' # Variables: %timeLeft%
  61. Restart Warning Times { # The time in seconds remaining to warn the players that the server will restart.
  62. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement