Skip to content

Allocs Server Fixes

Allocs Server Fixes is a collection of mod addons for 7 Days to Die that enables advanced functionality, including a custom API that allows Takaro to communicate with your server. Takaro requires Allocs Server Fixes to function with 7 Days to Die servers.

Allocs Server Fixes depends on the official TFP (The Fun Pimps) mods to function. These mods provide the core web server and mapping functionality that Allocs extends.

Your server must have these TFP mods installed:

  • TFP_CommandExtensions
  • TFP_MapRendering
  • TFP_WebServer

These mods are included with standard 7 Days to Die dedicated server installations. If you’re using a server host (like Nitrado, GTX, etc.), they should already be present.

Download the latest version from the official source:

https://7dtd.illy.bz/wiki/Server%20fixes

The download comes as a compressed archive. Extract through the TAR and GZ files until you locate the Mods folder containing:

  • Allocs_CommandExtensions/
  • Allocs_CommonFunc/
  • Allocs_WebAndMapRendering/

Copy the extracted Mods folder contents to your 7 Days to Die server installation directory. The final structure should look like:

<7DTD Server Directory>/
└── Mods/
├── Allocs_CommandExtensions/
│ ├── ModInfo.xml
│ └── *.dll
├── Allocs_CommonFunc/
│ ├── ModInfo.xml
│ └── *.dll
└── Allocs_WebAndMapRendering/
├── ModInfo.xml
└── *.dll

Open your serverconfig.xml file and verify these settings are enabled:

<property name="WebDashboardEnabled" value="true"/>
<property name="WebDashboardPort" value="8084"/>
<property name="EnableMapRendering" value="true"/>

Note the WebDashboardPort value - this is the port you’ll use to access the Allocs web interface and API.

Restart your 7 Days to Die server for the changes to take effect.

After restarting, verify the installation by browsing to:

http://<your-server-ip>:<WebDashboardPort>/legacymap

For example: http://192.168.1.100:8084/legacymap

If you see a login page, the installation was successful.

You can also use the version command in your server console to confirm the mods are loaded. See Checking Installed Mods for details.

Permissions are configured in the serveradmin.xml file located in your savegames folder. You can define which API endpoints are accessible and at what permission level.

Key permission modules include:

Module Description
web.map Interactive map viewing
webapi.getlandclaims View land claim locations
webapi.gethostilelocation View zombie locations
webapi.getanimalslocation View animal locations
webapi.getplayerslocation View player positions

Permission levels range from 0 (full admin access) to higher numbers for more restricted access.