# How to Set Up Allocs Live Map on Your 7 Days to Die Server (/docs/7-days-to-die/allocs-live-map)





import { Step, Steps } from 'fumadocs-ui/components/steps';

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 [#whats-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 `.dll` files, so EAC must be **disabled** (`EACEnabled=false`). See [Disable EAC](/docs/7-days-to-die/disable-eac).

Install Allocs Server Fixes [#install-allocs-server-fixes]

<Steps>
  <Step>
    Download the mod [#download-the-mod]

    Download the latest Alloc's Server Fixes release from the official source.
  </Step>

  <Step>
    Stop the server [#stop-the-server]

    In the [XGamingServer Panel](https://panel.xgamingserver.com), go to **Console** and stop the server.
  </Step>

  <Step>
    Upload to Mods/ [#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.

        <img alt="File Manager showing Mods folder" src={__img0} placeholder="blur" />
  </Step>

  <Step>
    Enable the web dashboard [#enable-the-web-dashboard]

    Open `serverconfig.xml` in **Files** and set:

    ```xml
    <property name="WebDashboardEnabled" value="true" />
    <property name="WebDashboardPort" value="8080" />
    <property name="EnableMapRendering" value="true" />
    ```
  </Step>

  <Step>
    Start the server [#start-the-server]

    Start from **Console**. Run `version` to verify — all 3 Allocs mods + 3 TFP mods should appear.
  </Step>
</Steps>

Access the Live Map [#access-the-live-map]

Open a browser and go to:

```
http://your-server-ip:8080/legacymap
```

The 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 [#map-permissions]

Control who sees what on the map via `serveradmin.xml`:

```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 [#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 [#related-guides]

* [Disable EAC](/docs/7-days-to-die/disable-eac)
* [Server Configuration](/docs/7-days-to-die/server-config)
* [Mod Installation](/docs/7-days-to-die/mod-setup)
* [Ports Reference](/docs/7-days-to-die/ports)
