1
0
Fork 0
forked from Simnation/Main
This commit is contained in:
Nordi98 2025-07-09 16:51:14 +02:00
parent b3dfd74c87
commit 1fe7324645
5 changed files with 25 additions and 7 deletions

View file

@ -1266,7 +1266,12 @@ CodeStudio.Products = {
itemPrice = 50,
itemInfo = "",
},
['pdbag'] = {
itemName = "Ausrüstungs Tasche",
itemStock = 150,
itemPrice = 50,
itemInfo = "",
},
}
},

Binary file not shown.

After

Width:  |  Height:  |  Size: 150 KiB

View file

@ -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,
},
}

View file

@ -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),

View file

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