Advertisement

Generate a V Rising ServerHostSettings.json

V Rising ships two JSON config files whose names differ by a single word, and nearly everyone puts a setting in the wrong one at first.

Visual Settings

json Format
Identity

Server name in the browser.

Description shown in the browser.

Game port, UDP.

Query port, normally the game port plus one. This is the one server lists read.

World

Save folder to load. A new name starts a fresh world.

How many autosaves to keep.

Seconds between autosaves.

Players & Access

Slot limit.

Admin slots held above the player limit.

Join password.

Network

Publishes the server publicly. Off means direct connection only, and no external checker can see it.

RCON & Query

Restricts debug commands to admins.

Remote console.

RCON port. Keep it private.

RCON password. Note that game rules — rates, decay, castle limits — are not in this file at all; they live in ServerGameSettings.json.

ServerHostSettings.json

{
  "Name": "My V Rising",
  "Description": "Vampire rules.",
  "Port": 9876,
  "QueryPort": 9877,
  "MaxConnectedUsers": 40,
  "MaxConnectedAdmins": 4,
  "SaveName": "world1",
  "Password": "",
  "ListOnMasterServer": true,
  "AutoSaveCount": 20,
  "AutoSaveInterval": 120,
  "AdminOnlyDebugEvents": true,
  "Rcon": {
    "Enabled": false,
    "Port": 25575,
    "Password": ""
  }
}

Advertisement

The ServerHostSettings.json format

Treat both as strict JSON: no comments, no trailing commas, numbers without quotes. ServerHostSettings.json is only about who the server is and how it connects — name, description, ports, slots, password. Keep game rules out of it.

Advertisement

The mistake that wastes an evening

Everything that shapes how the game plays — rates, decay, PvP rules, castle limits — belongs in ServerGameSettings.json. Anything put in the host file instead is ignored with no complaint, which is how so many servers run default rules in spite of a carefully edited config.

Rather not run the server yourself?

These tools are free and funded by the two hosting services we run. If you want a server that is already set up, here they are.

Advertisement