# Palworld Randomizer Settings (/docs/palworld/randomizer)



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

The randomizer shuffles which Pals spawn in which locations, creating a fresh exploration experience.

Enable the Randomizer [#enable-the-randomizer]

In `Pal/Saved/Config/LinuxServer/PalWorldSettings.ini`:

```
RandomizerType=Region
```

Randomizer Types [#randomizer-types]

| Value    | Effect                                                                    |
| -------- | ------------------------------------------------------------------------- |
| `None`   | Default — Pals spawn in their normal locations                            |
| `Region` | Pals within each region are shuffled — region difficulty stays consistent |
| `All`    | Fully random across the entire map — any Pal can appear anywhere          |

Randomizer Seed [#randomizer-seed]

```
RandomizerSeed="myseed123"
```

Set a seed for deterministic randomization — same seed = same Pal placement. Leave blank for true random.

Level Randomization [#level-randomization]

```
bIsRandomizerPalLevelRandom=True
```

* `True` — Pal levels are fully randomized
* `False` — Pal levels are based on zone difficulty (recommended)

> 💡 **Tip:** `Region` mode is the best balance — it keeps zone difficulty consistent while still surprising you with unexpected Pals.

Related Guides [#related-guides]

* [Server Configuration](/docs/palworld/server-settings)
* [Spawn Rate](/docs/palworld/spawn-rate)
