Skip to content

$consume

$consume marks the provided item as consumed, making it unusable until repurchased.

Usage

$consume[consumableId]

Parameters

FieldTypeDescriptionRequired
consumableIdnumberYour consumable ID.true

Example(s)

This will mark the provided consumableId as consumed.

1
client.command({
2
name: "consume",
3
code: `
4
$consume[12345678]
5
$comment[Example value of consumableId]
6
`
7
});