How to Manage User Groups on Your Enshrouded Server

Publicado em 1 de setembro de 2026 · Por Host Havoc Technical Support Team

Enshrouded allows you to grant players different roles that gives permissions, primarily for server management, through the User Groups option in the enshrouded_server.json file.

User Group Settings

User Group SettingDescription
nameThe name of the user group.
passwordThe password users will use to log in as a member of the user group. For example, if you would like to log in as an admin, you need to join your server using the admin password (How to Become an Admin on Your Enshrouded Server).
canKickBanAccepted values: true or false

Allows users in the group to kick and ban players.
canAccessInventoriesAccepted values: true or false

Allows users in the group to use chests, factories, and other containers.
canEditWorldAccepted values: true or false

Allows users in the group to make changes to the world and terrain outside of bases.
canEditoBaseAccepted values: true or false

Allows users in the group to make changes to the terrain and builds within bases.
canExtendBaseAccepted values: true or false

Allows users in the group to make changes to place flame altars, extinguish flames, and upgrade bases.
reservedSlotsSets the number of slots that will be reserved for players in the user group.

Below is an example of user group settings for "Default" and "Admin" groups:

"userGroups": [
    {
        "name": "Default",
        "password": "",
        "canKickBan": false,
        "canAccessInventories": true,
        "canEditWorld": true,
        "canEditBase": true,
        "canExtendBase": true,
        "reservedSlots": 0
    },
    {
        "name": "Admin",
        "password": "AdminPassword123",
        "canKickBan": true,
        "canAccessInventories": true,
        "canEditWorld": true,
        "canEditBase": true,
        "canExtendBase": true,
        "reservedSlots": 0
    }
]

How to Access and Manage User Groups

  1. Log in to the Game Control Panel.
  2. Stop your Enshrouded server.
  3. Click Configuration Files from the game panel menu.
  4. Open the enshrouded_server.json using the Text Editor.
  5. Scroll down to the userGroups section of the config file and make your preferred changes. You may add or remove user groups as needed.
  6. Click Save & Exit.