# Result

Use this variant to make a craft recipe result slot.

A machine using the [craft processor](https://frinn.gitbook.io/custom-machinery-1.21/creating-custom-machines/processor/craft) to process [craft recipes](https://frinn.gitbook.io/custom-machinery-1.21/recipes/craft-recipe) 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"
}
```
