Composter booster (Rust)
A plugin that lets the composter create fertilizer faster would be nice.

Not required, there is a console variable to alter this.

- composterUpdateInterval 

Default is 300 seconds, meaning 5 minutes, just alter that to the desired speed for the fertilizers to make compost, make sure to save the config and restart the server, it won't work without a restart.

Does this work from wipe to wipe without having to write it in the console over and over?
Like I mentioned, use this variable on the server.cfg should change it at startup, it won't work if you change it live i tried, so you have to define this on the server.cfg and restart the server, then it will work all wipes yes.
Thank you.

Merged post

Where did you get this command from?
Can't find it in any list.

I got that ConVar from the Composter class.

public override void ServerInit()
	{
		base.ServerInit();
		global::ItemContainer inventory = base.inventory;
		inventory.canAcceptItem = (Func<global::Item, int, bool>)Delegate.Combine(inventory.canAcceptItem, new Func<global::Item, int, bool>(this.InventoryItemFilter));
		base.InvokeRandomized(new Action(this.UpdateComposting), this.UpdateInterval, this.UpdateInterval, this.UpdateInterval * 0.1f);
	}

Where the UpdateInterval is:

protected float UpdateInterval
	{
		get
		{
			return ConVar.Server.composterUpdateInterval;
		}
	}

And the default value for this ConVar is:

public static float composterUpdateInterval = 300f;

So by altering this ConVar at the start of the server the speed of which the composter actually composts is determined by that variable.

Aahm for me that sounds it may be worth to do a plugin or do a plugin that boosts all farm stuff like water catcher boost already boosts that. :)
I can still do a plugin for it. but it then means it will overwrite that ConVar, but along with it, I can also make it modify the output of the composter, so the end-user can change the output of it, like 2x, 5x, etc, not sure if any plugins currently handle the output of the composter.
I didn't find any.
Well, I have no clue of programming and don't know what ConVar means but I would like to have such a plugin.
Best would be 1 plugin that handles all the different farming stuff like composter, sprinkler, water catchers, water pumps and so on.
Have you tried the solution I mentioned above for the composter speed yet?
No. I feel much better with a plugin.