Survive the Nights Wiki
JB STN (talk | contribs)
No edit summary
Tag: Visual edit
JB STN (talk | contribs)
No edit summary
Tag: Visual edit
Line 7: Line 7:
 
== Solo Tab ==
 
== Solo Tab ==
   
[[File:SoloSettings.jpg|753x753px|alt=|left]]
+
[[File:SoloSettings.jpg|753x753px|alt=|center]]
 
<div style="text-align: center;">
 
<div style="text-align: center;">
 
</div>
 
</div>
Line 94: Line 94:
   
   
'''<u>ServerConfigTEMPLATE.txt</u>'''
+
'''<u>ServerConfigTEMPLATE.txt</u>'''<syntaxhighlight lang="c#" line="1">
  +
// _____ _ _______ _ _ _ _ _ _
  +
// / ____| (_) |__ __| | | \ | (_) | | | |
  +
// | (___ _ _ _ ____ _____ _____ | | | |__ ___ | \| |_ __ _| |__ | |_ ___
  +
// \___ \| | | | '__\ \ / / \ \ / / _ \ | | | '_ \ / _ \ | . ` | |/ _` | '_ \| __/ __|
  +
// ____) | |_| | | \ V /| |\ V / __/ | | | | | | __/ | |\ | | (_| | | | | |_\__ \
  +
// |_____/ \__,_|_| \_/ |_| \_/ \___| |_| |_| |_|\___| |_| \_|_|\__, |_| |_|\__|___/
  +
// / ____| / _(_) __/ |
  +
// | (___ ___ _ ____ _____ _ __ ___ ___ _ __ | |_ _ __ _ |___/
  +
// \___ \ / _ \ '__\ \ / / _ \ '__| / __/ _ \| '_ \| _| |/ _` |
  +
// ____) | __/ | \ V / __/ | | (_| (_) | | | | | | | (_| |
  +
// |_____/ \___|_| \_/ \___|_| \___\___/|_| |_|_| |_|\__, |
  +
// __/ |
  +
// |___/
  +
//
  +
// Configuration Options
  +
//
  +
// Usage
  +
//
  +
// Options
  +
// ServerOwner: {String} Optional //This is only required for first start in order to write to the ServerUsers.txt this must be your steamID64, find ID at - https://steamid.io/
  +
// ServerName: {String} Required //Default "New Private Server". Quotations required but will not show in server list.
  +
// ServerPassword: {String} Optional //String server password. Must not contain spaces. Quotations required but will not be included in password.
  +
// FirstJoinWelcomeMessage: {String} Optional //Message displayed to player when player joins the server for the first time.
  +
// RecurringWelcomeMessage: {String} Optional //Message displayed to player when player rejoins the server.
  +
// ProgressTime: {true, false} Optional //Enable day night cycle.
  +
// DayCycleInMinutes: {int} Optional //Length of a day night cycle in minutes.
  +
// TimePersistence: {true, false} Optional //Continue from time, day and month after server restart. False means the server starts at mid day in spring on server start.
  +
// StartingWeather: {0,1,2,3} Optional //Default 0. Sunny=0 LightRain=1 HeavyRain=2 Storm=3 LightSnow=4 HeavySnow=5 SnowStorm=6.
  +
// RandomWeather: {true, false} Optional //True by default. Weather switches at random to match season.
  +
// NameTagDistance: {0,1,2,3} Optional //The distance at which nametags no longer show. 0 = off, 1 = near, 2 medium(default) and 3 = far.
  +
// ShowLoginMessages: {true, false} Optional //Should login messages show when new player enters or leaves the server.
  +
// ShowDeathMessages: {true, false} Optional //Should the server announce when a player dies.
  +
// PlayerNutrition: {true, false} Optional //Does the players nutrition and hydration go down.
  +
// StaminaDrainRate: {true, false} Optional //Does stamina drain.
  +
// LootSpawnRate: {0-9} Optional //Global loot spawn rate. 0=NoLoot 1=Rare 2=Medium 3=High
  +
// GrowRate: {0,1,2,3} Optional //Global grow rate. 0=NoGrowing 1=Slow 2=Medium 3=Fast
  +
// HordeDifficulty: {0,1,2,3} Optional //Horde difficulty. 0=NoHorde 1=Easy 2=Medium 3=Hard
  +
// ZombieAmount: {0,1,2,3} Optional //The overall density of zombies in the world between 0 and 5. 0 = off
  +
// PassiveAiAmount: {0,1,2,3} Optional //The overall density of passive AI in the world between 0 and 5. 0 = off
  +
// VehicleSpawnRate: {0 - 9} Optional //Global spawn rate for vehicles. This number is a multiplier against LootSpawnRate
  +
// StartingComponentsAmount:{0,1,2,3} Optional //The global amount of starting components inside of machines like generators and electricity panels.
  +
// ForcedSpawnPoint {0 > max} Optional //the spawn point that is chosen by default. Based on the spawnPoints array. Comment or remove if not needed. Alternatively mark as -1 to disable.
  +
// ServerLoadType {0>} Optional //Determines the amount of sectors loaded when running in the editor. 0 = soft load and likely wants to be on when testing.
  +
// RestartRate {int} Optional //The amount of hours between server restarts. Note if set to 12 then the servers will restart at 3am and 3pm local time. If set to 24h then server will restart at 3am
  +
// SoloDifficulty {int} Optional //Presets for game difficulty on solo server. 0=easy, 1= med, 2 hard and 3 = hardcore.
  +
//
  +
// Format
  +
// string Example: ServerOwner=76561198004636696
  +
// int Example: DayCycleInMinutes=45
  +
//
  +
ServerIP="127.0.0.1"
  +
ServerPort=0
  +
ServerOwner=
  +
ServerName="New Private Server"
  +
ServerPassword=
  +
WelcomeMessage="Welcome to the server."
  +
RecurringWelcomeMessage="Welcome to the server."
  +
ProgressTime=true
  +
DayCycleInMinutes=45
  +
TimePersistence=true
  +
StartingWeather=0
  +
RandomWeather=true
  +
NameTagDistance=2
  +
ShowLoginMessages=true
  +
ShowDeathMessages=true
  +
PlayerNutrition=true
  +
StaminaDrainRate=true
  +
LootSpawnRate=3
  +
HordeDifficulty=2
  +
ZombieAmount=2
  +
PassiveAiAmount=2
  +
VehicleSpawnRate=2
  +
StartingComponentsAmount=2
  +
ShowInPublicLobby=true
  +
PvpDisabled=false
  +
PlayerStartingItems=2574
  +
SoloDifficulty=2
   
  +
</syntaxhighlight>
   
 
'''<u>ServerUsers_README.txt</u>'''
 
'''<u>ServerUsers_README.txt</u>'''

Revision as of 23:59, 8 March 2021

Survive the Nights is and always will be a multiplayer game. It's what we set out to make and it's what we're still making. We always saw this game as a co-op friend fueled experience, the more the merrier. That being said, a lot of players don't seem very interested in playing with others. One feature (if not the most requested one) is single player and while time and design doesn't really allow for a true single player, we've done our best to replicate this experience.

To get right down to it Survive the Nights requires a server and currently there's no way around that. This doesn't mean we can't replicate a single player experience though. In the 1.7 build you will find a "Solo" tab. Opening this will display all solo options and allow you to start what is essentially a solo server using your local host. You will be able to adjust basic settings and play by yourself without the worry of other players possibly ruining your good time. The solo process works by creating a locally hosted server doing so should require no extra input from the player. This should work for the majority of people. All you need to do is simply click the solo tab, select your setting and click the play button. The game will take care of the rest.

This process will not be cheap. You will need a decent amount of ram to run a solo server smoothly. We will be working on optimizations across the board in the coming updates.

Solo Tab

SoloSettings

Solo Tab Settings

  • Disclaimer: Solo play requires running a local server but should not require any ports opening. Additional RAM is required for solo play.
  • Game Difficulty - Easy, Medium, Hard (Default), Hardcore.
  • Easy - No hordes | Fewer zombies | High loot | Starting items
  • Medium - Easier hordes | Fewer zombies | Starting items
  • Hard - Matches Official Servers (Default)
  • Hardcore - Harder Hordes | More zombies | Start with nothing (This is the one you want)
  • Time Persistence - When true time progresses based on the 'Day Cycle Length' option. False results in time staying the same as launch time or the '/time' the server admin sets the server to.
  • Day Cycle Length - The in game time cycle length based on minutes 15m, 30m, 45m (Default), 1h, 1h 30m, 2h, 3h, 4h, 5h and lastly 24h (for the maniacs).
  • Starting Weather - The weather when the server is started. Sunny (Default), Light Rain, Heavy Rain, Storm, Light Snow, Heavy Snow, Snow Storm.
  • Random Weather - Should server have random weather events. If false then server remains in starting weather state.
  • Player Nutrition - Do players need to consume food and drinks?
  • Stamina Drain - Should the player have stamina drain and how fast should it drain?.

You will notice a Database tab as well. This tab will allow you to backup your solo match. You can use it to save and restore old server states or delete your current state.

Browse - This will open the directory location of your database save file and backups that you have taken. Backup - Quickly backs up the server database.

The browse button will allow you to access the current server database .stn-server this is the file that controls your current servers state. It stores all the relevant information when it comes to the server 'world'. As an example, if the player were to spawn into a solo match, place a plank on a window then quit and delete .stn-server, the plank would no longer be there on the next join. Everything has a save state and it's all controlled by .stn-server.

SoloDB

The window that opens upon clicking the "Browse" button

Backups

After the browse button opens Solo directory, it will allow you to access the "Backups" folder. This folder will contain all of the backups generated by pressing the "Backup" button in game. These backups will be all be sorted and dated allowing you to easily store and restore older server saves.

SoloDB

Server backups will be dated for convenience

Browse

Below the database buttons you'll find a little out of the way button titled 'Browse'. This will allow you direct access to many of the servers configuration files. For the most part and for most players the above options will be enough. The team strongly suggest you do not alter any of the configuration options at first. Use the basic settings above and have a few good play throughs. These config files will allow you to adjust all of the server options (same as a hosted server) including settings like teleport pre-sets and user permissions. Most of these files are .json based and simple to understand. As always, feel free to reach out on Discord if you have any questions.

SoloConfig

Host Tab

Host tab settings

In game server hosting is a nice simple solution for those that want to play online with friends. The host option will allow a player to start a public or privately hosted server. It can be placed on our public server list for all to see or you can simply share your IP with a friend and allow them to join discreetly. This option does require quite a bit more knowhow than the solo option. Ports need to be opened and forwarded to allow for outside connections. This is not recommended for players new to networking and multiplayer games. This host option is more of a co-op experience. The server is only running when you're playing so friends wont be able to join without you. This option isn't our dedicated server option. You will see that shortly as we have a bit more to work on. The dedicated servers will run linux and be available via a Steam depot.

  • Progress Time - This option is the same as the solo setting. When true time progresses based on the ‘Day Length’ option. False results in time staying the same as launch time or the ’/time’ the server admin sets the server to.
  • Day Cycle Length - The in game time cycle length based on minutes 15m, 30m, 45m (Default), 1h, 1h 30m, 2h, 3h, 4h, 5h and lastly 24h.
  • Time Persistence - When true time progresses based on the 'Day Cycle Length' option. False results in time staying the same as launch time or the '/time' the server admin sets the server too.
  • Starting Weather - The weather when the server is started. Sunny (Default), Light Rain, Heavy Rain, Storm, Light Snow, Heavy Snow, Snow Storm.
  • Random Weather - Should server have random weather events. If false then server remains in starting weather state.
  • Name Tag Distance - The distance that name tags are visible from. No name tags, Near, Medium (Default), Far.
  • Announce Logins - Should players be notified when other players join the server? (True | False) e.g. “JB has joined the server”
  • Announce Deaths - Should other players be notified when another player dies. (True | False) e.g. “JB has been killed by a Zombie”
  • Player Nutrition - Do players need to consume food and drinks?
  • Stamina Drain - Should the player have stamina drain and how fast should it drain?.
  • Loot Spawn - The rate at which loot spawns. Also controls the quantity of loot. 0 (No loot) - 9 (Overload).
  • Hordes - The horde difficulty in game. Can be used to turn hordes off completely.
  • Zombie Amount - The amount of zombies on the server. Off, Low, Medium (Default), High.
  • Vehicles Amount - The amount and spawn frequency of vehicles on the server. Off, Low, Medium (Default), High.
  • Starting Components - The amount of items machines like fires and generators spawn with. None,Low, Medium (Default), High. e.g. A campfire should have firewood and tinder already in it when server starts.
  • PvP Disabled - If true players cannot hurt each other.
  • Player Starting Items - The item ID numbers to items you want the player to start with. Item ID numbers must be separated with a. comma. The last ID doesn’t need a comma e.g. 1000, 525, 3004 > You can find an Item ID list HERE.
  • Server Name - The server name as displayed in the server list.
  • Server Password - The server password.
  • First Join Message - The message that players receive when they first join your server.
  • Return Join Message - The message players receive when they return to your server.
  • IP Address - The IP of your server. This should be set to the public IP address of your current network.
  • Connection Port - The port that other players should use to connect to your server. Note that this port needs opening and forwarding via your router.
  • Show in Public Servers - When true your server will show in the public list of servers. When false players must join using the direct connect text field and your servers IP and Port.
  • Steam Query Port - The port that Steam uses to query your server. Used for showing in the public server list. Only required if 'Show in Public Servers' is set to true. Note: Should not be the same as connection port.

You will notice a Database tab as well. This tab will allow you to backup your solo match. You can use it to save and restore old server states or delete your current state. This functions exactly the same as the Solo setting does.

Server Configuration Files and More

The in game server host tab gives you a lot of options to get started with. If you feel you'd like to venture a little further there are a few more adjustments that can be made in the serverconfig.txt. You will be able to better tailor your experience if you'd like although we do suggest you check out some presets first to get a good feel for things. There are quite a few additional files that can be edited as well.


Consumables.json


Craftables.json


ServerConfigSolo.txt


ServerConfigTEMPLATE.txt

//   _____                  _             _______ _            _   _ _       _     _       
//  / ____|                (_)           |__   __| |          | \ | (_)     | |   | |      
// | (___  _   _ _ ____   _____   _____     | |  | |__   ___  |  \| |_  __ _| |__ | |_ ___ 
//  \___ \| | | | '__\ \ / / \ \ / / _ \    | |  | '_ \ / _ \ | . ` | |/ _` | '_ \| __/ __|
//  ____) | |_| | |   \ V /| |\ V /  __/    | |  | | | |  __/ | |\  | | (_| | | | | |_\__ \
// |_____/ \__,_|_|    \_/ |_| \_/ \___|    |_|  |_| |_|\___| |_| \_|_|\__, |_| |_|\__|___/
//  / ____|                                           / _(_)            __/ |              
// | (___   ___ _ ____   _____ _ __    ___ ___  _ __ | |_ _  __ _      |___/               
//  \___ \ / _ \ '__\ \ / / _ \ '__|  / __/ _ \| '_ \|  _| |/ _` |                         
//  ____) |  __/ |   \ V /  __/ |    | (_| (_) | | | | | | | (_| |                         
// |_____/ \___|_|    \_/ \___|_|     \___\___/|_| |_|_| |_|\__, |                         
//                                                           __/ |                         
//                                                          |___/     
//                                                                                            
// Configuration Options
//
// Usage
//
// Options
//   ServerOwner:             {String}      Optional     //This is only required for first start in order to write to the ServerUsers.txt this must be your steamID64, find ID at - https://steamid.io/
//   ServerName:              {String}      Required     //Default "New Private Server". Quotations required but will not show in server list.
//   ServerPassword:          {String}      Optional     //String server password. Must not contain spaces. Quotations required but will not be included in password.
//   FirstJoinWelcomeMessage: {String}      Optional     //Message displayed to player when player joins the server for the first time.
//   RecurringWelcomeMessage: {String}      Optional     //Message displayed to player when player rejoins the server.
//   ProgressTime:            {true, false} Optional     //Enable day night cycle.
//   DayCycleInMinutes:       {int}          Optional     //Length of a day night cycle in minutes.
//   TimePersistence:         {true, false} Optional     //Continue from time, day and month after server restart. False means the server starts at mid day in spring on server start.
//   StartingWeather:         {0,1,2,3}     Optional     //Default 0. Sunny=0 LightRain=1 HeavyRain=2 Storm=3 LightSnow=4 HeavySnow=5 SnowStorm=6.
//   RandomWeather:           {true, false} Optional     //True by default. Weather switches at random to match season.
//   NameTagDistance:         {0,1,2,3}     Optional     //The distance at which nametags no longer show. 0 = off, 1 = near, 2 medium(default) and 3 = far.
//   ShowLoginMessages:       {true, false} Optional     //Should login messages show when new player enters or leaves the server.
//   ShowDeathMessages:       {true, false} Optional     //Should the server announce when a player dies.
//   PlayerNutrition:         {true, false} Optional     //Does the players nutrition and hydration go down.
//   StaminaDrainRate:        {true, false} Optional     //Does stamina drain.
//   LootSpawnRate:           {0-9}         Optional     //Global loot spawn rate. 0=NoLoot 1=Rare 2=Medium 3=High
//   GrowRate:                {0,1,2,3}     Optional     //Global grow rate. 0=NoGrowing 1=Slow 2=Medium 3=Fast
//   HordeDifficulty:         {0,1,2,3}     Optional     //Horde difficulty. 0=NoHorde 1=Easy 2=Medium 3=Hard
//   ZombieAmount:            {0,1,2,3}     Optional     //The overall density of zombies in the world between 0 and 5. 0 = off
//   PassiveAiAmount:         {0,1,2,3}     Optional     //The overall density of passive AI in the world between 0 and 5. 0 = off
//   VehicleSpawnRate:        {0 - 9}       Optional     //Global spawn rate for vehicles. This number is a multiplier against LootSpawnRate
//   StartingComponentsAmount:{0,1,2,3}     Optional     //The global amount of starting components inside of machines like generators and electricity panels. 
//   ForcedSpawnPoint         {0 > max}     Optional     //the spawn point that is chosen by default. Based on the spawnPoints array. Comment or remove if not needed. Alternatively mark as -1 to disable.
//   ServerLoadType           {0>}          Optional     //Determines the amount of sectors loaded when running in the editor. 0 = soft load and likely wants to be on when testing.
//   RestartRate              {int}         Optional     //The amount of hours between server restarts. Note if set to 12 then the servers will restart at 3am and 3pm local time. If set to 24h then server will restart at 3am
//   SoloDifficulty           {int}         Optional     //Presets for game difficulty on solo server. 0=easy, 1= med, 2 hard and 3 = hardcore.
//
// Format
//  string Example: ServerOwner=76561198004636696
//  int    Example: DayCycleInMinutes=45 
//
ServerIP="127.0.0.1"
ServerPort=0
ServerOwner=                     
ServerName="New Private Server"  
ServerPassword=                  
WelcomeMessage="Welcome to the server."
RecurringWelcomeMessage="Welcome to the server."
ProgressTime=true      
DayCycleInMinutes=45               
TimePersistence=true              
StartingWeather=0                 
RandomWeather=true         
NameTagDistance=2           
ShowLoginMessages=true           
ShowDeathMessages=true         
PlayerNutrition=true     
StaminaDrainRate=true               
LootSpawnRate=3             
HordeDifficulty=2                 
ZombieAmount=2              
PassiveAiAmount=2            
VehicleSpawnRate=2                   
StartingComponentsAmount=2       
ShowInPublicLobby=true
PvpDisabled=false
PlayerStartingItems=2574
SoloDifficulty=2

ServerUsers_README.txt

The ServerUsers.txt file stores all the players that have ever been on a server. Altering this file directly should not generally be required.

The main reason to edit this file would be to increase a players user group. The number directly after the long Steam ID. When in game players can promote other player to any rank that is lower than their own. To set a rank in-game.

  • /setrank userName indexOfRank

Or

  • /setrank userName rankName

Example user:  76561198004636696,3,false,false,Jayty


ServerUsers.txt

As the ReadMe indicates the serveruser file contains a list of all players who have entered your server.

[CODE/]

76561198038502026,2,false,false,JB

76561198004636696,3,false,false,Jayty

[/CODE]


TpPresets_README.txt

The TpPresets.json holds a series of teleportation locations. To edit, add or remove these presets the following commands can be used in game.

  • /tppreset add nameOfPreset //This adds a tp location a the place where your player is currently located.
  • /tppreset update nameOfPreset //This will edit an existing preset to the location the player is currently located.
  • /tppreset remove nameOfPreset //Deletes preset of name.
  • /tppreset clear //Clears all tp presets.
  • To use preset locations enter the commands.
  • /tp me nameOfPreset //Tp's yourself to location.
  • /tp userName nameOfPreset //Tp's another player to location.

NOTE: Requires teleportation permissions to edit/use.


TpPresets.json


UserPermissions_README.txt

The UserPermissions.json file contains the base set of user groups and permissions. The UserPermissions.json can be changed while the server is offline in order to setup ranks and their perms.

By default base user groups such as 'User' (All general users) right through to 'Owner' status is setup. Any user group that has the permission '*' has access to ALL in game commands and this should be used sparingly.

Editing: The most important thing when editing is to ensure that the json architecture is maintained.  Otherwise the server will fail to read the file and not run.

List of all perms. Note that some may not work as expect or work at all.

  •     BasicUser,
  •     DropAllSelf,
  •     DropAllOthers,
  •     DeleteAllSelf,
  •     DeleteAllOthers,
  •     SpawnAI,
  •     KillAI,
  •     SetTime,
  •     SetMonth,
  •     SetWeather,
  •     WeatherOnOff,
  •     TpToLocation,
  •     TpToPlayer,
  •     TpPlayerToMe,
  •     TpPlayerToPlayer,
  •     TpPresets,
  •     GodSelf,
  •     SuperSprint,
  •     ServerInfo,
  •     Give,
  •     Mute,
  •     Kick,
  •     Ban,
  •     UnBan,
  •     SetStatsSelf,
  •     SetStatsOthers,
  •     KillPlayer,
  •     SetRank,
  •     CleanUp,
  •     Up,
  •     AlwaysSafeLogOff,
  •     StuckOthers,
  •     ChatOff,
  •     Video,
  •     Restart


UserPermissions.json