How to Set Up Allocs Live Map on Your 7 Days to Die Server
Install Alloc's Server Fixes and set up the interactive web-based live map for your 7 Days to Die dedicated server.
Alloc's Server Fixes adds a Google Maps-style interactive web map to your server, plus a web API used by tools like CSMM (Community Server Manager & Monitor).
What's Included
The mod suite has three components:
- Allocs_Core — Core framework
- Allocs_Commands — Additional console commands
- Allocs_Webinterface — Web-based live map and API
It also requires three vanilla TFP mods (usually pre-installed): TFP_CommandExtensions, TFP_MapRendering, TFP_WebServer.
Allocs mods contain
.dllfiles, so EAC must be disabled (EACEnabled=false). See Disable EAC.
Install Allocs Server Fixes
Download the mod
Download the latest Alloc's Server Fixes release from the official source.
Stop the server
In the XGamingServer Panel, go to Console and stop the server.
Upload to Mods/
Click Files in the sidebar. Extract the mod folders into your Mods/ directory. Each folder must contain a ModInfo.xml and a .dll file.

Enable the web dashboard
Open serverconfig.xml in Files and set:
<property name="WebDashboardEnabled" value="true" />
<property name="WebDashboardPort" value="8080" />
<property name="EnableMapRendering" value="true" />Start the server
Start from Console. Run version to verify — all 3 Allocs mods + 3 TFP mods should appear.
Access the Live Map
Open a browser and go to:
http://your-server-ip:8080/legacymapThe map shows terrain, player positions, land claims, and more depending on permissions.
Port 8080 (TCP) must be accessible. Check your assigned ports in the Network tab.
Map Permissions
Control who sees what on the map via serveradmin.xml:
<permissions>
<permission cmd="web.map" permission_level="2000" />
<permission cmd="webapi.getlandclaims" permission_level="1000" />
<permission cmd="webapi.gethostilelocation" permission_level="1" />
<permission cmd="webapi.getanimalslocation" permission_level="1" />
</permissions>| Level | Who can see |
|---|---|
2000 | Everyone (including non-players) |
1000 | All connected players |
1 | Admins only |
Web API Tokens
For external tools (CSMM, Discord bots), create tokens in serveradmin.xml. Remove the default template tokens (adminuser1, etc.) for security.
Related Guides
How is this guide?

How to Add Admins on Your 7 Days to Die Server
Add admins, configure permission levels, and manage admin access on your 7 Days to Die dedicated server.
How to Back Up and Restore Your 7 Days to Die Server
Create backups of your 7 Days to Die world, player data, and configs — and restore them when needed.