Increasing gathering rates allows players to collect more resources per hit, making progression faster and reducing grind. Using the Gather Manager plugin, you can customise rates for different resource types.
This guide requires uMod to be installed on your server. See How to Install uMod (Oxide) on Your Rust Server for instructions.
Installing the Gather Manager Plugin
- Download the Gather Manager plugin from uMod.
- Upload the plugin file to your
oxide/pluginsfolder. See How to Install uMod Plugins on Your Rust Server for detailed instructions. - Start your server to generate the config file.
Configuring Gathering Rates
- Navigate to the Wabbanode Control Panel and select your Rust server.
- Click the Files tab.

- Navigate to the
oxide/configfolder.
- Click on
GatherManager.jsonto open it.
- Edit the settings as needed (see below).
- Click Save then reload the plugin:
oxide.reload GatherManager
Understanding the Config Options
The Gather Manager plugin uses multipliers to control gathering rates. Higher values mean more resources per hit.
Multiplier Values
| Value | Effect |
|---|---|
1 | Normal gathering (default Rust behaviour) |
2 | Double resources per hit |
5 | 5x resources per hit |
10 | 10x resources per hit |
Resource Dispenser Settings
| Setting | Description |
|---|---|
Tree | Multiplier for wood from trees |
Ore | Multiplier for stone, metal, and sulfur from nodes |
Corpse | Multiplier for resources from animal corpses |
Default | Multiplier for all other dispenser types |
Pickup Settings
| Setting | Description |
|---|---|
Collectables | Multiplier for picked up items (hemp, mushrooms, etc.) |
CropGather | Multiplier for harvesting planted crops |
Quarry and Survey Settings
| Setting | Description |
|---|---|
MiningQuarry | Multiplier for mining quarry output |
ExcavatorResourceTickRate | Multiplier for excavator output |
SurveyCharge | Multiplier for survey charge resource amounts |
Example Configurations
Double all gathering rates:
{
"Options": {
"Default": 2,
"Tree": 2,
"Ore": 2,
"Corpse": 2,
"Collectables": 2
}
}
5x ore, 2x everything else:
{
"Options": {
"Default": 2,
"Tree": 2,
"Ore": 5,
"Corpse": 2,
"Collectables": 2
}
}
Gathering rates are now configured on your server. Players will receive increased resources when harvesting.

