forked from Simnation/Main
ed
This commit is contained in:
parent
b3dfd74c87
commit
1fe7324645
5 changed files with 25 additions and 7 deletions
|
@ -1266,7 +1266,12 @@ CodeStudio.Products = {
|
||||||
itemPrice = 50,
|
itemPrice = 50,
|
||||||
itemInfo = "",
|
itemInfo = "",
|
||||||
},
|
},
|
||||||
|
['pdbag'] = {
|
||||||
|
itemName = "Ausrüstungs Tasche",
|
||||||
|
itemStock = 150,
|
||||||
|
itemPrice = 50,
|
||||||
|
itemInfo = "",
|
||||||
|
},
|
||||||
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
BIN
resources/[inventory]/inventory_images/images/pdbag.png
Normal file
BIN
resources/[inventory]/inventory_images/images/pdbag.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 150 KiB |
|
@ -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" }
|
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",
|
item = "pdbag",
|
||||||
maxweight = 0,
|
maxweight = 100000,
|
||||||
slots = 40,
|
slots = 10,
|
||||||
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" }
|
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
|
@ -9,7 +9,7 @@ config.stashes = {
|
||||||
slots = 70,
|
slots = 70,
|
||||||
weight = 70000,
|
weight = 70000,
|
||||||
owner = true, -- if true, it creates a player-specific stash.
|
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),
|
coords = vec3(301.3, -600.23, 43.28),
|
||||||
|
|
|
@ -10176,11 +10176,25 @@ QBShared.Items = {
|
||||||
type = 'item',
|
type = 'item',
|
||||||
description = '',
|
description = '',
|
||||||
weight = 100,
|
weight = 100,
|
||||||
label = 'stungun_ammo',
|
label = 'Taser Cardridge',
|
||||||
unique = false,
|
unique = false,
|
||||||
useable = true,
|
useable = true,
|
||||||
image = 'stungun_ammo.png',
|
image = 'stungun_ammo.png',
|
||||||
name = 'stungun_ammo',
|
name = 'stungun_ammo',
|
||||||
},
|
},
|
||||||
|
pdbag = {
|
||||||
|
shouldClose = true,
|
||||||
|
type = 'item',
|
||||||
|
description = '',
|
||||||
|
weight = 1000,
|
||||||
|
label = 'Ausrüstungs Tasche',
|
||||||
|
unique = true,
|
||||||
|
useable = true,
|
||||||
|
image = 'pdbag.png',
|
||||||
|
name = 'pdbag',
|
||||||
|
},
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
Loading…
Add table
Add a link
Reference in a new issue