# Change Resource & Drop Rates on Your Palworld Server (/docs/palworld/resource-rates)



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

Control how much loot drops from gathering, enemies, and how heavy/durable items are.

Resource & Drop Settings [#resource--drop-settings]

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

| Setting                            | Default | Description                                   |
| ---------------------------------- | ------- | --------------------------------------------- |
| `CollectionDropRate`               | `1.0`   | Resource gathering yield                      |
| `CollectionObjectHpRate`           | `1.0`   | Gatherable HP — higher = more hits to harvest |
| `CollectionObjectRespawnSpeedRate` | `1.0`   | How fast resources respawn                    |
| `EnemyDropItemRate`                | `1.0`   | Enemy loot drop rate                          |
| `ItemWeightRate`                   | `1.0`   | Item weight (lower = carry more)              |
| `EquipmentDurabilityDamageRate`    | `1.0`   | Gear degradation speed (lower = lasts longer) |

Popular Configurations [#popular-configurations]

Generous Resources [#generous-resources]

```
CollectionDropRate=2.000000
EnemyDropItemRate=2.000000
ItemWeightRate=0.500000
EquipmentDurabilityDamageRate=0.500000
```

Hardcore Scarcity [#hardcore-scarcity]

```
CollectionDropRate=0.500000
EnemyDropItemRate=0.500000
ItemWeightRate=1.500000
EquipmentDurabilityDamageRate=2.000000
```

> 💡 **Tip:** Setting `ItemWeightRate=0.5` lets players carry double the items — reduces tedious inventory management trips.

Related Guides [#related-guides]

* [Server Configuration](/docs/palworld/server-settings)
* [XP Rate](/docs/palworld/xp-rate)
* [Work Speed](/docs/palworld/work-speed)
