> ## Documentation Index
> Fetch the complete documentation index at: https://help.freakhosting.com/llms.txt
> Use this file to discover all available pages before exploring further.

# How to Configure Workshop Collections in Unturned

> Group your Unturned server mods and maps into a Steam Workshop Collection for automated downloads and synchronized content for all connecting players.

## Centralized Asset Management

Maintaining a server with dozens of individual modification IDs is technically inefficient and prone to human error. By using a **Steam Workshop Collection**, you transition to a centralized management model where your server's assets are governed directly through the Steam interface. When you append a new item to your collection or remove an obsolete modification, your FREAKHOSTING server will programmatically detect the change and synchronize its local cache during the subsequent boot sequence. This ensures your server always uses the most current versions of your community's content.

<CardGroup cols={2}>
  <Card title="Difficulty" icon="gauge-low">
    Beginner
  </Card>

  <Card title="Time" icon="clock">
    6 Minutes
  </Card>
</CardGroup>

***

## Technical Initialization Workflow

Instead of maintaining an extensive list of numeric identifiers, you only need to register the unique token for your collection.

<Steps>
  <Step title="Architect the Collection">
    Navigate to the [Unturned Steam Workshop](https://steamcommunity.com/app/304930/workshop/) and create a new **Public Collection**. Add all required maps, weapon packs, and cosmetic assets.
  </Step>

  <Step title="Identify the Identity Token">
    Note the 10-digit numeric ID situated at the conclusion of your collection's URL (e.g., `?id=123456789`).
  </Step>

  <Step title="Access Registry">
    Log in to the [Game Panel](https://games.freakhosting.com) and open the following file:
    `/Servers/Default/WorkshopDownloadConfig.json`
  </Step>

  <Step title="Register the Collection ID">
    Insert your collection's ID into the `File_IDs` array.

    ```json theme={null}
    {
      "File_IDs": [
        123456789
      ],
      "Max_Query_Retries": 2
    }
    ```
  </Step>

  <Step title="Initialize Growth">
    **Restart** your server. Monitor the **Console** tab; the engine will now recursively download every item contained within the collection.
  </Step>
</Steps>

***

## Strategic Community Synchronization

<AccordionGroup>
  <Accordion title="Automated Client-Side Onboarding">
    One of Unturned's greatest technical strengths is its automated onboarding logic. When a player attempts to join your server, the engine automatically identifies any missing Workshop content and prompts the user to download it. By using a Collection, you guarantee that the server's binaries are perfectly aligned with the assets the players are retrieving, preventing "Asset Mismatch" disconnections.
  </Accordion>

  <Accordion title="Managing Collection Updates">
    Whenever you add a new modification to your Steam Collection, you do not need to edit any server files. Simply trigger a **Restart** from the panel, and the server will programmatically fetch the newly added assets before allowing players to connect.
  </Accordion>
</AccordionGroup>

***

<Note>
  ### Need Extra Help?

  If you encounter any issues, our support team is ready to assist:

  * **Live Chat:** Quick assistance via our website.
  * **Support Ticket:** [Open a Ticket](https://freakhosting.com/clientarea/submitticket.php)
  * **Discord:** [Join our Community](https://discord.gg/freakhosting)
  * **Email:** [support@freakhosting.com](mailto:support@freakhosting.com)
</Note>

<Tip>
  ### Save on Your Hosting

  Ready to get a new server? Use code **KB20** at checkout for **20% off** your first month!
</Tip>

***

<div align="center">
  **Last Updated:** January 2026 | **Unturned:** Workshop synced.
</div>
