> For the complete documentation index, see [llms.txt](https://docs.stevoscripts.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.stevoscripts.com/free-scripts/stevo_portablecrafting/installation/items.md).

# Items

{% tabs %}
{% tab title="ox\_inventory" %}

```lua
['weap_craftingtable'] = {
    label = 'Weapon Crafting Table',
    weight = 500,
    stack = false
},

['item_craftingtable'] = {
    label = 'Item Crafting Table',
    weight = 500,
    stack = false
},

['stevo_exampleblueprint'] = {
    label = 'Example Blueprint',
    weight = 190,
    stack = false
},

```

{% endtab %}

{% tab title="qb-inventory" %}

```lua
["weap_craftingtable"] = {
    ['name'] = 'weap_craftingtable',
    ['label'] = 'Weapon Crafting Table',
    ['weight'] = 500,
    ['type'] = 'item',
    ['image'] = 'weap_craftingtable.png',
    ['unique'] = false,
    ['useable'] = true,
    ['shouldClose'] = true,
    ['combinable'] = nil,
    ['description'] = ""
},

["item_craftingtable"] = {
    ['name'] = 'item_craftingtable',
    ['label'] = 'Item Crafting Table',
    ['weight'] = 500,
    ['type'] = 'item',
    ['image'] = 'item_craftingtable.png',
    ['unique'] = false,
    ['useable'] = true,
    ['shouldClose'] = true,
    ['combinable'] = nil,
    ['description'] = ""
},

["stevo_exampleblueprint"] = {
    ['name'] = 'stevo_exampleblueprint',
    ['label'] = 'Example Blueprint',
    ['weight'] = 190,
    ['type'] = 'item',
    ['image'] = 'stevo_exampleblueprint.png',
    ['unique'] = false,
    ['useable'] = false,
     ['useable'] = false,
    ['combinable'] = nil,
    ['description'] = ""
}

```

{% endtab %}
{% endtabs %}
