> ## Knowledge Base Index
> Fetch the complete knowledge base index at: https://help.gtxgaming.co.uk/sitemap.xml
> Use this file to discover available pages before exploring further.
> Pure-Markdown content can be obtained by appending a '.md' suffix to the content URLs listed in the sitemap (without the trailing slash).

# How to password an Enshrouded game server

1. Navigate to the configuration files on the gamepanel.

2. Click the text editor option on the "enshrouded_server.json" 

3. You can add passwords for admin, friend and guest roles, they cannot be the same. Example below.
 
```
"userGroups": [

{
"name": "Admin",
"password": "putpasshere1",
"canKickBan": true,
"canAccessInventories": true,
"canEditBase": true,
"canExtendBase": true,
"reservedSlots": 0
},
{
"name": "Friend",
"password": "putpasshere2",
"canKickBan": false,
"canAccessInventories": true,
"canEditBase": true,
"canExtendBase": true,
"reservedSlots": 0
},
{
"name": "Guest",
"password": "putpasshere3",
"canKickBan": false,
"canAccessInventories": false,
"canEditBase": false,
"canExtendBase": false,
"reservedSlots": 0
}
]
}
```

