๐ŸŸฆBlueprints

BluepInformation about Blueprintsrints

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

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

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

    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

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

Last updated

Was this helpful?