> For the complete documentation index, see [llms.txt](https://frinn.gitbook.io/custom-machinery-1.21/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://frinn.gitbook.io/custom-machinery-1.21/creating-custom-machines/machine-components/item-component/result.md).

# Result

The item component variant to make a craft recipe result slot.

Use this variant to make a craft recipe result slot.

A machine using the [craft processor](/custom-machinery-1.21/creating-custom-machines/processor/craft.md) to process [craft recipes](/custom-machinery-1.21/recipes/craft-recipe.md) must have at least one result slot.

When a craft recipe is processed its result item will appear in the result slot, and the player will be able to take it like in any crafting table.

### ID

```json
"type": "custommachinery:item_result"
```

### Accepted items

No items can be put in that slot, hoppers/pipes can't interact with it either.

Only a player can take the item outside this slot to process a craft recipe.

### Example

A simple result slot :&#x20;

```json
{
    "type": "custommachinery:item_result",
    "id": "result"
}
```
