Inventory settings

A good resource for “itemshortname” is Corrision hour's guide to Rust - please keep in mind that all items listed on this site may not be in Rust Console Edition at the time of writing.

Add default items

inventory.adddefaultitem "string"

Adds an item to the set of default items that players spawn with.

Example: inventory.adddefaultitem "mushroom"


Unlock a blueprint

inventory.bpunlock "string"

Unlocks a blueprint in the Tech Tree.


Clear your inventory

inventory.clearall

Completely empties your inventory.


Clear default items

inventory.cleardefaultitem

Clears any items that have been added to the default inventory with adddefaultitem, meaning that players will no longer spawn with those items.


Remove an item from all players

inventory.clearitemfromplayers "string"

Removes an item from everyone’s inventories.

Example:

inventory.clearitemfromplayers "rock"    

Give yourself an item

inventory.give "string" "quantity"

Gives yourself an item. You can also add a quantity.

Example:

inventory.give "mushroom" "11"

Give everyone an item

inventory.giveall "string" "quantity"

Gives everyone an item. You can also add a quantity.

Example:

inventory.giveall "mushroom" "11"

Drop an item in front of you

inventory.givedrop "string"

Drops an item in front of you, instead of adding it to your inventory.

Example:

inventory.givedrop "mushroom"

Give an item to a player

inventory.giveto "ID" "string"

Gives a target player an item.

Example:

inventory.giveto "player" "mushroom"

Remove a default item

inventory.removedefaultitem "string"

Removes an item from the set of default items the players spawn with.

Example:

inventory.removedefaultitem "torch"

Remove an item from corpses

inventory.removefromcorpses "string"

Removes an item from all corpses.

Example:

inventory.removefromcorpses "torch"

Reset everyone's blueprint progress

inventory.resetbp

Resets everyone’s blueprint progress.


Unlock all blueprints for yourself

inventory.unlockall

Unlocks all blueprints for the player who entered the command.

Last updated