qb-inventory / ps-inventory
Images:
Go to
dynyx_crafting\images
and copy all the imagesLocate the
qb-inventory OR ps-inventory\web\images
folderAnd paste all the images in there
Items:
Copy the following code
Go to the bottom of
qb-core\shared\items.lua
Paste all the items before the last
}
["table_weapon"] = {["name"] = "table_weapon", ["label"] = "Weapon Crafting Table", ["weight"] = 0, ["type"] = "item", ["image"] = "table_weapon.png", ["unique"] = true, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = ""},
["table_tools"] = {["name"] = "table_tools", ["label"] = "Tools Crafting Table", ["weight"] = 0, ["type"] = "item", ["image"] = "table_weapon.png", ["unique"] = true, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = ""},
["table_ammo"] = {["name"] = "table_ammo", ["label"] = "Ammo Crafting Table", ["weight"] = 0, ["type"] = "item", ["image"] = "table_weapon.png", ["unique"] = true, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = ""},
-- BLUEPRINTS
["blueprint_pistol"] = { name = "blueprint_pistol", label = "Pistol Blueprint", weight = 500, type = "item", image = "blueprint_pistol.png", unique = true, useable = false, description = "Blueprint for crafting a standard pistol." },
["blueprint_combatpistol"] = { name = "blueprint_combatpistol", label = "Combat Pistol Blueprint", weight = 500, type = "item", image = "blueprint_combatpistol.png", unique = true, useable = false, description = "Blueprint for crafting a combat pistol." },
["blueprint_heavypistol"] = { name = "blueprint_heavypistol", label = "Heavy Pistol Blueprint", weight = 500, type = "item", image = "blueprint_heavypistol.png", unique = true, useable = false, description = "Blueprint for crafting a heavy pistol." },
["blueprint_appistol"] = { name = "blueprint_appistol", label = "AP Pistol Blueprint", weight = 500, type = "item", image = "blueprint_appistol.png", unique = true, useable = false, description = "Blueprint for crafting an AP pistol." },
["blueprint_smg"] = { name = "blueprint_smg", label = "SMG Blueprint", weight = 500, type = "item", image = "blueprint_smg.png", unique = true, useable = false, description = "Blueprint for crafting an SMG." },
["blueprint_carbinerifle"] = { name = "blueprint_carbinerifle", label = "Carbine Rifle Blueprint", weight = 500, type = "item", image = "blueprint_carbinerifle.png", unique = true, useable = false, description = "Blueprint for crafting a carbine rifle." },
["blueprint_assaultrifle"] = { name = "blueprint_assaultrifle", label = "Assault Rifle Blueprint", weight = 500, type = "item", image = "blueprint_assaultrifle.png", unique = true, useable = false, description = "Blueprint for crafting an assault rifle." },
Last updated