# Blueprints

To add metadata to your blueprint item, remember to do the following\
qb-inventory (or pa\_inventory) html/js/app.js

```javascript
case "blueprint":
            return `<p><strong>Blueprint Type: </strong><span>${itemData.info.type}</span></p>`;
```

<figure><img src="/files/2WA9XnGiA051cSgPMeID" alt=""><figcaption></figcaption></figure>

You can also add this to your qb-core/shared/items.lua file.item images will be given in the script

```lua
    blueprint = { name = 'blueprint', label = 'Blueprint', weight = 0, type = 'item', image = 'print.png', unique = true, useable = false, shouldClose = false, combinable = nil, description = 'Blueprint' },

```

For example, you want to add blueprint to the config file of your ac-shop script. This is how you should add it

```lua
{name = "blueprint", label = "Blueprint", perPrice = 150, description = "Drink",metadata = {type = 'repairkit'}},

```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://pa-scripts.gitbook.io/overview/craft-system/blueprints.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
