Loading...
A Rust plugin that adds a "SPREAD" button to Composters for smart fertilizer distribution to planters.
When players open a Composter, they see a SPREAD button that:
CompostHelper.cs in oxide/plugins/oxide/config/Composter.jsonoxide.grant group default composthelper.usecomposthelper.use - Required to see and use the SPREAD button| 1 | { |
| 2 | "Breakdown Time (seconds)": 1.0, |
| 3 | "Auto Distribution Enabled": false, |
| 4 | "Maximum Distribution Range": 50.0, |
| 5 | "Supported Planter Types": [ |
| 6 | "planter.large.deployed", |
| 7 | "planter.small.deployed", |
| 8 | "planter.triangle.deployed", |
| 9 | "plantpot.single.deployed", |
| 10 | "bathtub.planter.deployed", |
| 11 | "minecart.planter.deployed" |
| 12 | ], |
| 13 | "Fertilizer Item Shortname": "fertilizer" |
| 14 | } |
Key Settings:
Maximum Distribution Range: How far to search for planters (default: 50m)Supported Planter Types: Which planters receive fertilizerExample Output:
| 1 | ✓ Distributed 45/50 fertilizer to 15 planters |
| 2 | → 5 fertilizer stored back in composter |