diff --git a/resources/[inventory]/cs_shops/config/config.lua b/resources/[inventory]/cs_shops/config/config.lua index d47d130f1..f56c7d0ec 100644 --- a/resources/[inventory]/cs_shops/config/config.lua +++ b/resources/[inventory]/cs_shops/config/config.lua @@ -1266,7 +1266,12 @@ CodeStudio.Products = { itemPrice = 50, itemInfo = "", }, - + ['pdbag'] = { + itemName = "Ausrüstungs Tasche", + itemStock = 150, + itemPrice = 50, + itemInfo = "", + }, } }, diff --git a/resources/[inventory]/inventory_images/images/pdbag.png b/resources/[inventory]/inventory_images/images/pdbag.png new file mode 100644 index 000000000..77b7f9127 Binary files /dev/null and b/resources/[inventory]/inventory_images/images/pdbag.png differ diff --git a/resources/[inventory]/tgiann-inventory/configs/configItemStash.lua b/resources/[inventory]/tgiann-inventory/configs/configItemStash.lua index c7865ded3..5720ef054 100644 --- a/resources/[inventory]/tgiann-inventory/configs/configItemStash.lua +++ b/resources/[inventory]/tgiann-inventory/configs/configItemStash.lua @@ -8,9 +8,8 @@ config.itemStash = { whitelist = { "c_necklace", "c_bproof", "c_decal", "c_torso", "c_mask", "c_helmet", "c_glasses", "c_bag", "c_pants", "c_shoes", "c_bracelet", "c_watch", "c_ear", "clothe_set" } }, { - item = "bkposet", - maxweight = 0, - slots = 40, - whitelist = { "c_necklace", "c_bproof", "c_decal", "c_torso", "c_mask", "c_helmet", "c_glasses", "c_bag", "c_pants", "c_shoes", "c_bracelet", "c_watch", "c_ear", "clothe_set" } + item = "pdbag", + maxweight = 100000, + slots = 10, }, } diff --git a/resources/[inventory]/tgiann-inventory/configs/configStashes.lua b/resources/[inventory]/tgiann-inventory/configs/configStashes.lua index 39790b67b..814e7af61 100644 --- a/resources/[inventory]/tgiann-inventory/configs/configStashes.lua +++ b/resources/[inventory]/tgiann-inventory/configs/configStashes.lua @@ -9,7 +9,7 @@ config.stashes = { slots = 70, weight = 70000, owner = true, -- if true, it creates a player-specific stash. - jobs = { police = { 1, 2, 3, 4, 5, 6, 7, 8, 9 } } -- only 9 ranks for police job + jobs = { police = true } -- only 9 ranks for police job }, { coords = vec3(301.3, -600.23, 43.28), diff --git a/resources/[qb]/qb-core/shared/items.lua b/resources/[qb]/qb-core/shared/items.lua index 622894be2..50bc533f6 100644 --- a/resources/[qb]/qb-core/shared/items.lua +++ b/resources/[qb]/qb-core/shared/items.lua @@ -10176,11 +10176,25 @@ QBShared.Items = { type = 'item', description = '', weight = 100, - label = 'stungun_ammo', + label = 'Taser Cardridge', unique = false, useable = true, image = 'stungun_ammo.png', name = 'stungun_ammo', }, + pdbag = { + shouldClose = true, + type = 'item', + description = '', + weight = 1000, + label = 'Ausrüstungs Tasche', + unique = true, + useable = true, + image = 'pdbag.png', + name = 'pdbag', + }, + + + } \ No newline at end of file