SimpleStore
This Action is designed for storing items into containers.
Makes Up
An Action is fundamentally made up of two main components:
- type
simpleStore- data
see SimpleStoreData
SimpleStoreData
Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
box | true | - | The list of boxes to store. | |
empty_slot_threshold | number | false | 0 | The threshold of empty slot to start storing. |
can_move | boolean | false | false | Whether the bot can move while digging. |
box
The box to store.
Example
[
{
"type": "simpleStore",
"data": {
"box": [
{
"item_id": "glow_lichen",
"pos": {
"x": 1,
"y": 1,
"z": 1
}
}
],
"empty_slot_threshold": 5,
"can_move": false
}
}
]
Last modified: 12 11月 2023