Set Up Allocs Live Map for 7 Days to Die
How to install Alloc's Server Fixes and set up the interactive web-based live map for your 7DTD 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
Installation
- Download the latest Alloc's Server Fixes release
- Stop your server
- In the XGamingServer Panel, click Files
- Extract the mod folders into your server's
Mods/directory - Each folder must contain a
ModInfo.xmland a.dllfile - Enable the web dashboard and map rendering in
serverconfig.xml:
<property name="WebDashboardEnabled" value="true" />
<property name="WebDashboardPort" value="8080" />
<property name="EnableMapRendering" value="true" />- Start your server
- Verify by running
version— all 3 Allocs mods + 3 TFP mods should appear
Accessing 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.
📝 Note: Port 8080 (TCP) must be accessible. On XGamingServer, check your assigned ports in the panel.
Map Permission Configuration
Control who can see 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>2000= visible to everyone (even non-players)1000= visible to all players1= admins only
Web API Tokens
For external tools (CSMM, Discord bots) to access the API, create tokens in serveradmin.xml. Remove the default template tokens (adminuser1, etc.) for security.
⚠️ Important: Allocs mods contain
.dllfiles, so EAC must be disabled (EACEnabled=false). This means crossplay won't work with the live map installed.
Related Guides
How is this guide?
