This guide covers how to set up server admin access on your V Rising dedicated server, use console commands, and manage your admin list. For server configuration and connecting, see V Rising Dedicated Server Setup Guide.
Enabling the Admin Console
The in-game console must be enabled before you can enter any commands. This is a client-side setting, not a server setting.
- Launch V Rising and open Options from the main menu.
- Go to the General tab.
- Find Console Enabled and set it to On.
- Press the backtick key (
`) during gameplay to open the console. On some keyboard layouts this key may be tilde (~).
Adding Yourself as an Admin
V Rising uses a list of SteamID64 values to determine who has admin privileges on the server. You need to add your SteamID to the admin list file on the server.
Step 1 — Find Your SteamID64
Your SteamID64 is a 17-digit number. To find it:
- Open your Steam profile in a web browser. If your custom URL is set, the profile page URL will look like
https://steamcommunity.com/id/yourname/. - Use a tool such as steamid.io — paste your Steam profile URL and copy the steamID64 value.
Step 2 — Edit the Admin List File
- Log in to GPanel and stop your server from the Console tab.
- Go to the Files tab and navigate to
VRisingServer_Data/StreamingAssets/Settings/. - Open the file named
adminlist.txt. If it does not exist, create a new file with that exact name in the same directory. - Add your SteamID64 on its own line. You can add multiple admins by placing each SteamID64 on a separate line.
- Save the file and start the server.
76561198012345678
76561198087654321
Authenticating as Admin In-Game
After your SteamID has been added to adminlist.txt and the server has been restarted, you must authenticate in-game before admin commands will work.
- Connect to your server and open the console with the backtick key (
`). - Type the following command and press Enter:
adminauth
You should see a confirmation message in the console. You now have admin privileges for the current session. You must re-authenticate each time you reconnect to the server.
adminunauth in the console. This is useful if you want to test the server as a regular player.
Useful Admin Console Commands
The following commands are available after authenticating with adminauth. Open the console with the backtick key and type the command exactly as shown.
| Command | Description |
|---|---|
adminauth |
Authenticate as admin for the current session. |
adminunauth |
De-authenticate as admin for the current session. |
listusers |
List all players currently connected to the server with their character names and SteamIDs. |
kick <PlayerName> |
Kick a player from the server by their character name. |
ban <PlayerName> |
Ban a player by character name. They will be disconnected and unable to rejoin. |
unban <PlayerName> |
Remove a ban for the specified player, allowing them to connect again. |
banlist |
Display all currently banned players. |
clanaccept |
Accept a pending clan invite (useful for admin testing). |
clandecline |
Decline a pending clan invite. |
give <ItemName> <Amount> |
Give yourself a specified item. Item names must match internal names (e.g. Item_Building_Siege_Golem_T02). |
spawnnpc <NPCName> <Count> |
Spawn an NPC at your location. Useful for testing or events. |
teleport <PlayerName> |
Teleport to the specified player's location. |
changehealthofclosesttomouse <Amount> |
Change the health of the entity closest to your mouse cursor. Can be used to heal or damage NPCs. |
setadminlevel <PlayerName> <Level> |
Set admin level for a player (0 = none, 1 = admin, 2 = superadmin). Only usable by superadmins. |
help |
Display a list of all available console commands. |
list in the console to see available prefab names, or check the V Rising wiki for a complete item ID reference.
Ban List File
In addition to using the ban command in-game, you can manage bans directly via a file on the server.
- In GPanel, navigate to
VRisingServer_Data/StreamingAssets/Settings/in the Files tab. - Open or create the file
banlist.txt. - Add the SteamID64 of each player you want to ban, one per line.
- Save the file and restart the server for changes to take effect.
76561198099999999
Removing an Admin
To remove admin access from a player:
- Stop the server from GPanel.
- Open
VRisingServer_Data/StreamingAssets/Settings/adminlist.txtin the file editor. - Delete the line containing the player's SteamID64.
- Save the file and start the server.