> ## 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 Custom Spawns & Loadouts in DayZ

> Customize spawn locations and starting gear on your DayZ server using DayZ Expansion or vanilla scripting for a tailored new-player survival experience.

## Defining the Survivor's Journey

In the vanilla DayZ environment, every survivor initializes their journey at a randomized coastal coordinate with minimal supplies. To differentiate your community and provide a more structured progression path, modern server owners use **Spawn Selection** and **Custom Loadout** systems. Whether you are hosting a hardcore roleplay environment or a fast-paced PVP arena, tailoring the starting experience is essential for player retention and community identity.

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

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

***

## using DayZ Expansion Spawn Logic

If your server uses the **DayZ Expansion** mod suite, your spawn and gear settings are managed through standardized JSON configuration files.

* **Storage Directory:** `/profiles/ExpansionMod/SpawnSettings/`
* **Primary Configuration:** `SpawnSettings.json`

### Engineering Loadout Classes

You can architect multiple starting kits (e.g., Survivor, VIP, or specialized roles like Medic) within the `Loadouts` registry. This allows you to reward specific community members or provide varied gameplay choices.

```json theme={null}
{
    "Name": "VIP Survival Kit",
    "Items": ["M4A1", "Mag_STANAG_30Rnd", "CannedBacon", "WaterBottle"],
    "Backpack": "CoyoteBag_Green"
}
```

***

## Custom Geographic Spawns

Allowing players to select their insertion point prevents "coast-running" and enables squads to group up more efficiently.

<Steps>
  <Step title="Identify Coordinates">
    Use an in-game admin tool or an online map (like iZurvive) to retrieve the X, Y, and Z coordinates for your desired spawn points.
  </Step>

  <Step title="Define Named Arrays">
    Within your `SpawnSettings.json`, populate the `SpawnPoints` array with your custom locations.

    ```json theme={null}
    "SpawnPoints": [
        {
            "Name": "Chernogorsk Airfield",
            "Positions": [[6500.0, 10.0, 2400.0]]
        }
    ]
    ```
  </Step>

  <Step title="Deploy & Test">
    Save the configuration and restart your server. Join as a new character to verify that the selection menu appears correctly.
  </Step>
</Steps>

***

<Note>
  ### The Vanilla Alternative: init.c Scripting

  If you prefer a lightweight environment without the Expansion mod, you can manually define starting equipment within your mission's `init.c` file. By modifying the `StartingEquipSetup` function, you can script specific items to spawn on every new character. Note that this method requires a basic understanding of C-style scripting and the technical classnames of game items.
</Note>

***

<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 | **Progression:** Your survival starts here.
</div>
