tossItem
Remove specific items from your Minecraft inventory by remotely commanding players to throw them, managing storage and item counts efficiently.
Instructions
Throw items from inventory
Input Schema
Name | Required | Description | Default |
---|---|---|---|
amount | No | Amount of items to throw | |
itemName | Yes | Name of the item to throw |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"amount": {
"default": 1,
"description": "Amount of items to throw",
"type": "number"
},
"itemName": {
"description": "Name of the item to throw",
"type": "string"
}
},
"required": [
"itemName"
],
"type": "object"
}