PA Scripts
Scripts
  • Overview
  • Hookers
    • 🔧 Installation
    • 🎮 Gameplay & Usage
    • ⚙ Configuration Details
  • Multiplayer Roof Running
    • 🔧 Installation
    • 🔍 Gameplay & Usage
    • ⚙️ Configuration Details
  • Crafting System
    • 🔧 Installation
    • 🔍 Usage
    • ⚙️ Configuration Details
  • Lockpick System
    • 🔧 Installation
    • 🔍 Usage
    • ⚙️ Configuration Details
  • Racing System
    • 🔧 Installation
    • 🔍 Usage
    • ⚙️ Configuration Details
  • Hacking System
    • 🔧 Installation
    • 🔍 Usage
    • ⚙️ Configuration Details
  • Money Laundering System
    • 🔧 Installation
    • 🔍 Usage
    • ⚙️ Configuration Options
  • Radial Menu
    • 🔧 Installation
    • 🔍 Usage
    • ⚙️ Configuration Options
  • Prop System
    • 🔧 Installation
    • 🔍 Usage
    • Configuration Details
  • Hq App + Art Asylum Heist
    • ⚔️General information page
    • 🧠Installation
  • Inventory
    • Readme file
    • 🧠Installation
    • 🪶Config Settings
  • Craft System
    • 💻General features
    • 🧠Installation
    • 🪶Config Settings
    • 🟦Blueprints
  • UI Pack
    • ⚙️Setting for Core
    • 🪶Usage examples
Powered by GitBook
On this page

Was this helpful?

  1. Craft System

Blueprints

BluepInformation about Blueprintsrints

PreviousConfig SettingsNextUI Pack

Last updated 11 months ago

Was this helpful?

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'}},
🟦