Modifiers

Modifiers allow you to manually edit the gather rates, cook speeds, loot scaling for individual items, and other things.

You can add multiple modifiers for the same item, or of the same type, but each new command will require a new line.

A good resource for β€œitemname” is Corrosion hour's guide to Rust Please keep in mind that some items listed on this site may not be implemented in Rust: Console Edition at the time of writing.


Modifier Application

Collection

πŸ‘’πŸ“Ÿ

modifiers.setmodifier "ItemName" collection "scale"

Where "ItemName" is the name of the item you want to manipulate,

and "scale" is the relative rate of collection for that particular item from collectables

(like hemp plants, nodettes, etc) (max 3).

Example

πŸ‘’πŸ“Ÿ

modifiers.setmodifier "Stones" collection "3"

Players will collect 3x as much Stone as normal from Stone Nodettes.


Cook Amount

πŸ‘’πŸ“Ÿ

modifiers.setmodifier "ItemName" cookamount "scale"

Where "ItemName" is the name of the item you want to manipulate,

and "scale" is the relative yield received for that particular item when processed in a furnace.

Example

πŸ‘’πŸ“Ÿ

modifiers.setmodifier "metal.refined" cookamount "3"

Triples yield when smelting HQM in a furnace.


Cook Speed

πŸ‘’πŸ“Ÿ

modifiers.setmodifier "ItemName" cookspeed "scale"

Where "ItemName" is the name of the item you want to manipulate,

and "scale" is the relative speed at which that item will be processed by a furnace.

Example

πŸ‘’πŸ“Ÿ

modifiers.setmodifier "metal.ore" cookspeed "3"

Triples (3x) the cook speed of Metal Ore, effectively reducing the time taken to produce to a β…“ of the base rate.


Crafting Speed

πŸ‘’πŸ“Ÿ

modifiers.setmodifier "ItemName" craftspeed "scale"

Where "ItemName" is the name of the item you want to manipulate,

and "scale" is a scale of how fast that particular item will take to craft.

Example

πŸ‘’πŸ“Ÿ

modifiers.setmodifier "tool.cupboard" craftspeed "2"

Doubles the crafting speed when crafting a Tool Cupboard.


Crafting Time

πŸ‘’πŸ“Ÿ

modifiers.setmodifier "ItemName" crafttime "value"

Where "ItemName" is the name of the item you want to manipulate.

"Value" will override

Example

πŸ‘’πŸ“Ÿ

modifiers.setmodifier "tool.cupboard" crafttime "10"

Overrides crafting time for crafting a Tool Cupboard and sets it to 10 seconds.


Gathering

πŸ‘’πŸ“Ÿ

modifiers.setmodifier "ItemName" gather "scale"

Where "ItemName" is the name of the item you want to manipulate,

and "scale" is the relative gathering rate for that particular item.

Example

πŸ‘’πŸ“Ÿ

modifiers.setmodifier "Wood" gather "2"

Players will collect twice as much Wood when harvesting directly from trees.


Loot

πŸ‘’πŸ“Ÿ

modifiers.setmodifier "ItemName" loot "scale"

Where "ItemName" is the name of the item you want to manipulate,

and "scale" is the relative amount of loot received for that particular item.

Example

πŸ‘’πŸ“Ÿ

modifiers.setmodifier "Scrap" loot "3"

Triples (3x) the amount of scrap spawned from scrap resources (barrels, crates etc.)


Tools

πŸ‘’πŸ“Ÿ

modifiers.setmodifier "ToolName" tool "scale"

Where "ToolName" is the name of the tool you want to manipulate,

and "scale" is the scale of metarial collected on-hit when using this tool.

Example

πŸ‘’πŸ“Ÿ

modifiers.setmodifier "Hatchet" tool "2"

Doubles gather rate on Hatchets. (Twice as many resources collected per-hit)


Workbench Level

πŸ‘’πŸ“Ÿ

modifiers.setmodifier "ItemName" workbenchlevel "value"

Where "ItemName" is the name of the item you want to manipulate,

and "value" sets the workbench tier required to craft the specified item.

Example

πŸ‘’πŸ“Ÿ

modifiers.setmodifier "rifle.ak" workbenchlevel "1"

Sets the Assault Rifle to be craftable with a Lvl 1 Workbench. You must still have the blueprint unlocked, and this does not unlock the Assault Rifle blueprint on the Tech Tree.


Furnaces

Furnace Cook Speed

πŸ‘’πŸ“Ÿ

craft.itemcookspeedmultiplier β€œscale”

Where "scale" controls the relative speed of furnace cooking.

(Max 3)

Example

πŸ‘’πŸ“Ÿ

craft.itemcookspeedmultiplier β€œ2”

Furnaces will cook twice as fast.


Furnace Efficiency

πŸ‘’πŸ“Ÿ

craft.furnaceusagemultiplier β€œscale"

Where "scale" controls the relative amount of Low Grade Fuel that furnaces use.

(Max 3)

Example

πŸ‘’πŸ“Ÿ

craft.furnaceusagemultiplier β€œ3"

Furnaces will burn 3 times as much fuel when this is active.


Furnace Output

πŸ‘’πŸ“Ÿ

craft.furnaceoutputmultiplier β€œscale"

Where "scale" controls the relative amount of output that furnaces yield.

(Max 3)

Example

πŸ‘’πŸ“Ÿ

craft.furnaceoutputmultiplier "3"

Furnaces will yield triple the amount of items when smelting.


Modifier Management

πŸ‘’πŸ“Ÿ

modifiers.listmodifiers "ItemName"

Outputs all of the currently active modifiers for a defined item, into the console.

πŸ‘’πŸ“Ÿ

modifiers.listallmodifiers

Outputs all the items that have modifiers, and their modifiers, into the console.

πŸ‘’πŸ“Ÿ

modifiers.clearmodifier "ItemName" "modifier"

Removes a previously applied modifier from an item.

You can also use "all" to remove all of the modifiers on that item.

πŸ‘’πŸ“Ÿ

modifiers.clearmodifiers

Removes all modifiers from all items.

Last updated