fix(qb-core): add global CreateUsableItem alias for qs-inventory compatibility
qs-inventory apelează CreateUsableItem ca funcție globală, dar qb-core definea doar QBCore.Functions.CreateUseableItem (cu 'e'). Adăugat alias global + fix 16 stringuri sparte în items.lua care blocau parsarea.
This commit is contained in:
@@ -440,6 +440,10 @@ function QBCore.Functions.CreateUseableItem(item, data)
|
||||
QBCore.UsableItems[item] = data
|
||||
end
|
||||
|
||||
-- Global alias for qs-inventory compatibility (calls CreateUsableItem as a global, not QBCore.Functions)
|
||||
QBCore.Functions.CreateUsableItem = QBCore.Functions.CreateUseableItem
|
||||
CreateUsableItem = QBCore.Functions.CreateUseableItem
|
||||
|
||||
---Checks if the given item is usable
|
||||
---@param item string
|
||||
---@return any
|
||||
|
||||
@@ -1174,6 +1174,178 @@ bobby_pin = { name = 'bobby_pin', label = 'Bobby Pin', weight = 2500, type = 'it
|
||||
["combinable"] = nil,
|
||||
["description"] = "Folosit pentru a taia metale"
|
||||
},
|
||||
tshirt = {
|
||||
['name'] = 'tshirt',
|
||||
['label'] = 'T-shirt',
|
||||
['weight'] = 0,
|
||||
['type'] = 'item',
|
||||
['image'] = 'tshirt.png',
|
||||
['unique'] = true,
|
||||
['useable'] = true,
|
||||
['shouldClose'] = true,
|
||||
['combinable'] = nil,
|
||||
['description'] = 'A nice piece of clothing'
|
||||
},
|
||||
torso = {
|
||||
['name'] = 'torso',
|
||||
['label'] = 'Torso',
|
||||
['weight'] = 0,
|
||||
['type'] = 'item',
|
||||
['image'] = 'torso.png',
|
||||
['unique'] = true,
|
||||
['useable'] = true,
|
||||
['shouldClose'] = true,
|
||||
['combinable'] = nil,
|
||||
['description'] = 'A nice piece of clothing'
|
||||
},
|
||||
arms = {
|
||||
['name'] = 'arms',
|
||||
['label'] = 'Arms',
|
||||
['weight'] = 0,
|
||||
['type'] = 'item',
|
||||
['image'] = 'arms.png',
|
||||
['unique'] = true,
|
||||
['useable'] = true,
|
||||
['shouldClose'] = true,
|
||||
['combinable'] = nil,
|
||||
['description'] = 'A nice piece of clothing'
|
||||
},
|
||||
jeans = {
|
||||
['name'] = 'jeans',
|
||||
['label'] = 'Jeans',
|
||||
['weight'] = 0,
|
||||
['type'] = 'item',
|
||||
['image'] = 'jeans.png',
|
||||
['unique'] = true,
|
||||
['useable'] = true,
|
||||
['shouldClose'] = true,
|
||||
['combinable'] = nil,
|
||||
['description'] = 'A nice piece of clothing'
|
||||
},
|
||||
shoes = {
|
||||
['name'] = 'shoes',
|
||||
['label'] = 'Shoes',
|
||||
['weight'] = 0,
|
||||
['type'] = 'item',
|
||||
['image'] = 'shoes.png',
|
||||
['unique'] = true,
|
||||
['useable'] = true,
|
||||
['shouldClose'] = true,
|
||||
['combinable'] = nil,
|
||||
['description'] = 'A nice piece of clothing'
|
||||
},
|
||||
mask = {
|
||||
['name'] = 'mask',
|
||||
['label'] = 'Mask',
|
||||
['weight'] = 0,
|
||||
['type'] = 'item',
|
||||
['image'] = 'mask.png',
|
||||
['unique'] = true,
|
||||
['useable'] = true,
|
||||
['shouldClose'] = true,
|
||||
['combinable'] = nil,
|
||||
['description'] = 'A nice piece of clothing'
|
||||
},
|
||||
ears = {
|
||||
['name'] = 'ears',
|
||||
['label'] = 'Ears',
|
||||
['weight'] = 0,
|
||||
['type'] = 'item',
|
||||
['image'] = 'ears.png',
|
||||
['unique'] = true,
|
||||
['useable'] = true,
|
||||
['shouldClose'] = true,
|
||||
['combinable'] = nil,
|
||||
['description'] = 'A nice piece of clothing'
|
||||
},
|
||||
glasses = {
|
||||
['name'] = 'glasses',
|
||||
['label'] = 'Glasses',
|
||||
['weight'] = 0,
|
||||
['type'] = 'item',
|
||||
['image'] = 'glasses.png',
|
||||
['unique'] = true,
|
||||
['useable'] = true,
|
||||
['shouldClose'] = true,
|
||||
['combinable'] = nil,
|
||||
['description'] = 'A nice piece of clothing'
|
||||
},
|
||||
helmet = {
|
||||
['name'] = 'helmet',
|
||||
['label'] = 'Helmet',
|
||||
['weight'] = 0,
|
||||
['type'] = 'item',
|
||||
['image'] = 'helmet.png',
|
||||
['unique'] = true,
|
||||
['useable'] = true,
|
||||
['shouldClose'] = true,
|
||||
['combinable'] = nil,
|
||||
['description'] = 'A nice piece of clothing'
|
||||
},
|
||||
bag = {
|
||||
['name'] = 'bag',
|
||||
['label'] = 'Bag',
|
||||
['weight'] = 0,
|
||||
['type'] = 'item',
|
||||
['image'] = 'bag.png',
|
||||
['unique'] = true,
|
||||
['useable'] = true,
|
||||
['shouldClose'] = true,
|
||||
['combinable'] = nil,
|
||||
['description'] = 'A nice piece of clothing'
|
||||
},
|
||||
chain = {
|
||||
['name'] = 'chain',
|
||||
['label'] = 'Chain',
|
||||
['weight'] = 100,
|
||||
['type'] = 'item',
|
||||
['image'] = 'goldchain.png',
|
||||
['unique'] = true,
|
||||
['useable'] = true,
|
||||
['shouldClose'] = false,
|
||||
['combinable'] = nil,
|
||||
['rare'] = 'epic',
|
||||
['description'] = 'It is very fragile, watch out'
|
||||
},
|
||||
vest = {
|
||||
['name'] = 'vest',
|
||||
['label'] = 'Vest',
|
||||
['weight'] = 100,
|
||||
['type'] = 'item',
|
||||
['image'] = 'vest.png',
|
||||
['unique'] = true,
|
||||
['useable'] = true,
|
||||
['shouldClose'] = false,
|
||||
['combinable'] = nil,
|
||||
['rare'] = 'epic',
|
||||
['description'] = 'Body Armor'
|
||||
},
|
||||
bracelets = {
|
||||
['name'] = 'bracelets',
|
||||
['label'] = 'Bracelets',
|
||||
['weight'] = 100,
|
||||
['type'] = 'item',
|
||||
['image'] = 'bracelets.png',
|
||||
['unique'] = true,
|
||||
['useable'] = true,
|
||||
['shouldClose'] = false,
|
||||
['combinable'] = nil,
|
||||
['rare'] = 'epic',
|
||||
['description'] = 'It is very fragile, watch out'
|
||||
},
|
||||
watch = {
|
||||
['name'] = 'watch',
|
||||
['label'] = 'Watch',
|
||||
['weight'] = 100,
|
||||
['type'] = 'item',
|
||||
['image'] = 'rolex.png',
|
||||
['unique'] = false,
|
||||
['useable'] = false,
|
||||
['shouldClose'] = false,
|
||||
['combinable'] = nil,
|
||||
['rare'] = 'epic',
|
||||
['description'] = 'It is very fragile, watch out'
|
||||
}
|
||||
|
||||
-- ═══════════════════════════════════════════════════
|
||||
-- ITEMS IMPORTATE DIN QS-INVENTORY (preLoad update)
|
||||
@@ -1185,12 +1357,12 @@ bobby_pin = { name = 'bobby_pin', label = 'Bobby Pin', weight = 2500, type = 'it
|
||||
['bag'] = {['name'] = 'bag', ['label'] = 'Bag', ['weight'] = 0, ['type'] = 'item', ['image'] = 'bag.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A nice piece of clothing'},
|
||||
['beryl_chunk'] = {['name'] = 'beryl_chunk', ['label'] = 'Beryl Chunk', ['weight'] = 200, ['type'] = 'item', ['image'] = 'beryl_chunk.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A chunk of beryl.'},
|
||||
['black_money'] = {['name'] = 'black_money', ['label'] = 'Black Money', ['weight'] = 0, ['type'] = 'item', ['image'] = 'markedbills.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Black Money'},
|
||||
['black_phone'] = {['name'] = 'black_phone', ['label'] = 'Black Phone', ['weight'] = 150, ['type'] = 'item', ['image'] = 'black_phone.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'They say that Quasar Smartphone is the same as an iPhone},
|
||||
['black_phone'] = {['name'] = 'black_phone', ['label'] = 'Black Phone', ['weight'] = 150, ['type'] = 'item', ['image'] = 'black_phone.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'They say that Quasar Smartphone is the same as an iPhone'},
|
||||
['black_weapontint'] = {['name'] = 'black_weapontint', ['label'] = 'Black Tint', ['weight'] = 1000, ['type'] = 'item', ['image'] = 'black_attachment.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Default/Black Weapon Tint'},
|
||||
['blackjack_bourbon'] = {['name'] = 'blackjack_bourbon', ['label'] = 'Blackjack Bourbon', ['weight'] = 10, ['type'] = 'item', ['image'] = 'blackjack_bourbon.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A bold bourbon perfect for any high stakes game.'},
|
||||
['blue_diamond'] = {['name'] = 'blue_diamond', ['label'] = 'Blue Diamond', ['weight'] = 150, ['type'] = 'item', ['image'] = 'blue_diamond.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A rare and valuable blue diamond.'},
|
||||
['boom_weapontint'] = {['name'] = 'boom_weapontint', ['label'] = 'Boom! Camo', ['weight'] = 1000, ['type'] = 'item', ['image'] = 'boomcamo_attachment.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Boom! Camo Tint'},
|
||||
['bracelets'] = {['name'] = 'bracelets', ['label'] = 'Bracelets', ['weight'] = 100, ['type'] = 'item', ['image'] = 'bracelets.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = 'It is very fragile},
|
||||
['bracelets'] = {['name'] = 'bracelets', ['label'] = 'Bracelets', ['weight'] = 100, ['type'] = 'item', ['image'] = 'bracelets.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = 'It is very fragile'},
|
||||
['briefcase'] = {['name'] = 'briefcase', ['label'] = 'briefcase', ['weight'] = 0, ['type'] = 'item', ['image'] = 'weapon_briefcase.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'No have'},
|
||||
['broken_camera'] = {['name'] = 'broken_camera', ['label'] = 'Broken Camera', ['weight'] = 100, ['type'] = 'item', ['image'] = 'broken_camera.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A small and sweet casting.'},
|
||||
['brushstroke_weapontint'] = {['name'] = 'brushstroke_weapontint', ['label'] = 'Brushstroke Camo', ['weight'] = 1000, ['type'] = 'item', ['image'] = 'brushcamo_attachment.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Brushstroke Camo Tint'},
|
||||
@@ -1202,10 +1374,10 @@ bobby_pin = { name = 'bobby_pin', label = 'Bobby Pin', weight = 2500, type = 'it
|
||||
['burncream'] = {['name'] = 'burncream', ['label'] = 'Burn Cream', ['weight'] = 125, ['type'] = 'item', ['image'] = 'burncream.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'To help with burns'},
|
||||
['camera'] = {['name'] = 'camera', ['label'] = 'Camera', ['weight'] = 100, ['type'] = 'item', ['image'] = 'camera.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A small and sweet casting.'},
|
||||
['camera_module'] = {['name'] = 'camera_module', ['label'] = 'Camera module', ['weight'] = 20, ['type'] = 'item', ['image'] = 'camera_module.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A small and sweet casting.'},
|
||||
['casinoships'] = {['name'] = 'casinoships', ['label'] = 'Casino Chips', ['weight'] = 0, ['type'] = 'item', ['image'] = 'casinoships.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Let\'s bet},
|
||||
['chain'] = {['name'] = 'chain', ['label'] = 'Chain', ['weight'] = 100, ['type'] = 'item', ['image'] = 'goldchain.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = 'It is very fragile},
|
||||
['cigarette'] = {['name'] = 'cigarette', ['label'] = 'Cigarette', ['weight'] = 1, ['type'] = 'item', ['image'] = 'cigarette.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = 'A cigar},
|
||||
['cigarettebox'] = {['name'] = 'cigarettebox', ['label'] = 'Cigarette Box', ['weight'] = 5, ['type'] = 'item', ['image'] = 'cigarettebox.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Open it},
|
||||
['casinoships'] = {['name'] = 'casinoships', ['label'] = 'Casino Chips', ['weight'] = 0, ['type'] = 'item', ['image'] = 'casinoships.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Lets bet'},
|
||||
['chain'] = {['name'] = 'chain', ['label'] = 'Chain', ['weight'] = 100, ['type'] = 'item', ['image'] = 'goldchain.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = 'It is very fragile'},
|
||||
['cigarette'] = {['name'] = 'cigarette', ['label'] = 'Cigarette', ['weight'] = 1, ['type'] = 'item', ['image'] = 'cigarette.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = 'A cigar'},
|
||||
['cigarettebox'] = {['name'] = 'cigarettebox', ['label'] = 'Cigarette Box', ['weight'] = 5, ['type'] = 'item', ['image'] = 'cigarettebox.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Open it'},
|
||||
['clear_crystal'] = {['name'] = 'clear_crystal', ['label'] = 'Clear Crystal', ['weight'] = 150, ['type'] = 'item', ['image'] = 'clear_crystal.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A clear and pristine crystal.'},
|
||||
['coal_ore'] = {['name'] = 'coal_ore', ['label'] = 'Coal Ore', ['weight'] = 250, ['type'] = 'item', ['image'] = 'coal_ore.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A piece of coal ore.'},
|
||||
['cooked_fries'] = {['name'] = 'cooked_fries', ['label'] = 'Cooked Fries', ['weight'] = 200, ['type'] = 'item', ['image'] = 'cooked_fries.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['description'] = 'Crispy golden french fries'},
|
||||
@@ -1228,7 +1400,7 @@ bobby_pin = { name = 'bobby_pin', label = 'Bobby Pin', weight = 2500, type = 'it
|
||||
['gold_weapontint'] = {['name'] = 'gold_weapontint', ['label'] = 'Gold Tint', ['weight'] = 1000, ['type'] = 'item', ['image'] = 'gold_attachment.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Gold Weapon Tint'},
|
||||
['graphite_chunk'] = {['name'] = 'graphite_chunk', ['label'] = 'Graphite Chunk', ['weight'] = 200, ['type'] = 'item', ['image'] = 'graphite_chunk.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A chunk of graphite.'},
|
||||
['green_garnet'] = {['name'] = 'green_garnet', ['label'] = 'Green Garnet', ['weight'] = 150, ['type'] = 'item', ['image'] = 'green_garnet.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A precious green garnet.'},
|
||||
['green_phone'] = {['name'] = 'green_phone', ['label'] = 'Green Phone', ['weight'] = 150, ['type'] = 'item', ['image'] = 'green_phone.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'They say that Quasar Smartphone is the same as an iPhone},
|
||||
['green_phone'] = {['name'] = 'green_phone', ['label'] = 'Green Phone', ['weight'] = 150, ['type'] = 'item', ['image'] = 'green_phone.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'They say that Quasar Smartphone is the same as an iPhone'},
|
||||
['green_weapontint'] = {['name'] = 'green_weapontint', ['label'] = 'Green Tint', ['weight'] = 1000, ['type'] = 'item', ['image'] = 'green_attachment.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Green Weapon Tint'},
|
||||
['helmet'] = {['name'] = 'helmet', ['label'] = 'Helmet', ['weight'] = 0, ['type'] = 'item', ['image'] = 'helmet.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A nice piece of clothing'},
|
||||
['high_roller_vodka'] = {['name'] = 'high_roller_vodka', ['label'] = 'High Roller Vodka', ['weight'] = 10, ['type'] = 'item', ['image'] = 'high_roller_vodka.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'The choice of those who play the game big.'},
|
||||
@@ -1266,7 +1438,7 @@ bobby_pin = { name = 'bobby_pin', label = 'Bobby Pin', weight = 2500, type = 'it
|
||||
['purple_quartz'] = {['name'] = 'purple_quartz', ['label'] = 'Purple Quartz', ['weight'] = 200, ['type'] = 'item', ['image'] = 'purple_quartz.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A piece of purple quartz.'},
|
||||
['quartz_crystal'] = {['name'] = 'quartz_crystal', ['label'] = 'Quartz Crystal', ['weight'] = 200, ['type'] = 'item', ['image'] = 'quartz_crystal.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A clear quartz crystal.'},
|
||||
['raw_fries'] = {['name'] = 'raw_fries', ['label'] = 'Raw Fries', ['weight'] = 200, ['type'] = 'item', ['image'] = 'raw_fries.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = false, ['description'] = 'Uncooked potato slices ready for frying'},
|
||||
['red_phone'] = {['name'] = 'red_phone', ['label'] = 'Red Phone', ['weight'] = 150, ['type'] = 'item', ['image'] = 'red_phone.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'They say that Quasar Smartphone is the same as an iPhone},
|
||||
['red_phone'] = {['name'] = 'red_phone', ['label'] = 'Red Phone', ['weight'] = 150, ['type'] = 'item', ['image'] = 'red_phone.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'They say that Quasar Smartphone is the same as an iPhone'},
|
||||
['rifle_defaultclip'] = {['name'] = 'rifle_defaultclip', ['label'] = 'Rifle Default Clip', ['weight'] = 1000, ['type'] = 'item', ['image'] = 'defaultclip_attachment.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Rifle Default Clip'},
|
||||
['rifle_drum'] = {['name'] = 'rifle_drum', ['label'] = 'Rifle Drum Magazine', ['weight'] = 1000, ['type'] = 'item', ['image'] = 'drum_attachment.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Rifle Drum Magazine'},
|
||||
['rifle_extendedclip'] = {['name'] = 'rifle_extendedclip', ['label'] = 'Rifle Extended Clip', ['weight'] = 1000, ['type'] = 'item', ['image'] = 'extendedclip_attachment.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Rifle Extended Clip'},
|
||||
@@ -1276,7 +1448,7 @@ bobby_pin = { name = 'bobby_pin', label = 'Bobby Pin', weight = 2500, type = 'it
|
||||
['royal_flush_whiskey'] = {['name'] = 'royal_flush_whiskey', ['label'] = 'Royal Flush Whiskey', ['weight'] = 10, ['type'] = 'item', ['image'] = 'royal_flush_whiskey.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A premium whiskey for high rollers.'},
|
||||
['rpg_ammo'] = {['name'] = 'rpg_ammo', ['label'] = 'RPG Ammo', ['weight'] = 200, ['type'] = 'item', ['image'] = 'rifle_ammo.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Ammo for EMP Launcher'},
|
||||
['ruby_crystal'] = {['name'] = 'ruby_crystal', ['label'] = 'Ruby Crystal', ['weight'] = 250, ['type'] = 'item', ['image'] = 'ruby_crystal.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A brilliant ruby crystal.'},
|
||||
['sedative'] = {['name'] = 'sedative', ['label'] = 'Sedative', ['weight'] = 20, ['type'] = 'item', ['image'] = 'sedative.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'If needed},
|
||||
['sedative'] = {['name'] = 'sedative', ['label'] = 'Sedative', ['weight'] = 20, ['type'] = 'item', ['image'] = 'sedative.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'If needed'},
|
||||
['sessanta_weapontint'] = {['name'] = 'sessanta_weapontint', ['label'] = 'Sessanta Camo', ['weight'] = 1000, ['type'] = 'item', ['image'] = 'sessantacamo_attachment.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Sessanta Camo Tint'},
|
||||
['shoes'] = {['name'] = 'shoes', ['label'] = 'Shoes', ['weight'] = 0, ['type'] = 'item', ['image'] = 'shoes.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A nice piece of clothing'},
|
||||
['shotgun_defaultclip'] = {['name'] = 'shotgun_defaultclip', ['label'] = 'Shotgun Default Clip', ['weight'] = 1000, ['type'] = 'item', ['image'] = 'defaultclip_attachment.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Shotgun Default Clip'},
|
||||
@@ -1309,27 +1481,27 @@ bobby_pin = { name = 'bobby_pin', label = 'Bobby Pin', weight = 2500, type = 'it
|
||||
['toaster'] = {['name'] = 'toaster', ['label'] = 'Toaster', ['weight'] = 18000, ['type'] = 'item', ['image'] = 'placeholder.png', ['unique'] = true, ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Toast'},
|
||||
['tomato_slice'] = {['name'] = 'tomato_slice', ['label'] = 'Tomato Slice', ['weight'] = 25, ['type'] = 'item', ['image'] = 'tomato_slice.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = 'Fresh tomato slice'},
|
||||
['torso'] = {['name'] = 'torso', ['label'] = 'Torso', ['weight'] = 0, ['type'] = 'item', ['image'] = 'torso.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A nice piece of clothing'},
|
||||
['tradingcard_basic'] = {['name'] = 'tradingcard_basic', ['label'] = 'Card Basic', ['weight'] = 10, ['type'] = 'item', ['image'] = 'tradingcard_basic.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Basic letter},
|
||||
['tradingcard_basic'] = {['name'] = 'tradingcard_basic', ['label'] = 'Card Basic', ['weight'] = 10, ['type'] = 'item', ['image'] = 'tradingcard_basic.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Basic letter'},
|
||||
['tradingcard_booster_legends'] = {['name'] = 'tradingcard_booster_legends', ['label'] = 'Card Booster Legends', ['weight'] = 50, ['type'] = 'item', ['image'] = 'tradingcard_booster_legends.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Pack with random TCG cards'},
|
||||
['tradingcard_booster_pack'] = {['name'] = 'tradingcard_booster_pack', ['label'] = 'Card Booster Pack', ['weight'] = 50, ['type'] = 'item', ['image'] = 'tradingcard_booster_pack.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Pack with random TCG cards'},
|
||||
['tradingcard_legendary'] = {['name'] = 'tradingcard_legendary', ['label'] = 'Card Legendary', ['weight'] = 10, ['type'] = 'item', ['image'] = 'tradingcard_legendary.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A card of peculiar rarity},
|
||||
['tradingcard_psa'] = {['name'] = 'tradingcard_psa', ['label'] = 'Card Psa', ['weight'] = 50, ['type'] = 'item', ['image'] = 'tradingcard_psa.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Letter verified with PSA},
|
||||
['tradingcard_rare'] = {['name'] = 'tradingcard_rare', ['label'] = 'Card Rare', ['weight'] = 10, ['type'] = 'item', ['image'] = 'tradingcard_rare.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'This letter is strange},
|
||||
['tradingcard_legendary'] = {['name'] = 'tradingcard_legendary', ['label'] = 'Card Legendary', ['weight'] = 10, ['type'] = 'item', ['image'] = 'tradingcard_legendary.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A card of peculiar rarity'},
|
||||
['tradingcard_psa'] = {['name'] = 'tradingcard_psa', ['label'] = 'Card Psa', ['weight'] = 50, ['type'] = 'item', ['image'] = 'tradingcard_psa.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Letter verified with PSA'},
|
||||
['tradingcard_rare'] = {['name'] = 'tradingcard_rare', ['label'] = 'Card Rare', ['weight'] = 10, ['type'] = 'item', ['image'] = 'tradingcard_rare.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'This letter is strange'},
|
||||
['tradingcard_stash'] = {['name'] = 'tradingcard_stash', ['label'] = 'Card Book', ['weight'] = 50, ['type'] = 'item', ['image'] = 'tradingcard_stash.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Album for collectible cards!'},
|
||||
['tshirt'] = {['name'] = 'tshirt', ['label'] = 'T-shirt', ['weight'] = 0, ['type'] = 'item', ['image'] = 'tshirt.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A nice piece of clothing'},
|
||||
['tweezers'] = {['name'] = 'tweezers', ['label'] = 'Tweezers', ['weight'] = 50, ['type'] = 'item', ['image'] = 'tweezers.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'For picking out bullets'},
|
||||
['vest'] = {['name'] = 'vest', ['label'] = 'Vest', ['weight'] = 100, ['type'] = 'item', ['image'] = 'vest.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = 'Body Armor'},
|
||||
['vicodin_10mg'] = {['name'] = 'vicodin_10mg', ['label'] = 'Vicodin 10MG', ['weight'] = 2, ['type'] = 'item', ['image'] = 'vic10.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = true, ['description'] = 'A controlled substance to control pain'},
|
||||
['vicodin_5mg'] = {['name'] = 'vicodin_5mg', ['label'] = 'Vicodin 5MG', ['weight'] = 2, ['type'] = 'item', ['image'] = 'vic5.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = true, ['description'] = 'A controlled substance to control pain'},
|
||||
['watch'] = {['name'] = 'watch', ['label'] = 'Watch', ['weight'] = 100, ['type'] = 'item', ['image'] = 'rolex.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = 'It is very fragile},
|
||||
['watch'] = {['name'] = 'watch', ['label'] = 'Watch', ['weight'] = 100, ['type'] = 'item', ['image'] = 'rolex.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = 'It is very fragile'},
|
||||
['weapon_metaldetector'] = {['name'] = 'weapon_metaldetector', ['label'] = 'Metal Detector', ['weight'] = 1000, ['type'] = 'weapon', ['image'] = 'placeholder.png', ['unique'] = true, ['useable'] = true, ['description'] = 'Weapon Metal Detector'},
|
||||
['weapon_precisionrifle'] = {['name'] = 'weapon_precisionrifle', ['label'] = 'Precision Rifle', ['weight'] = 1000, ['type'] = 'weapon', ['image'] = 'weapon_marksmanrifle_mk2.png', ['unique'] = true, ['useable'] = true, ['description'] = 'Weapon Precision Rifle'},
|
||||
['weapon_repairkit'] = {['name'] = 'weapon_repairkit', ['label'] = 'Weapon Repairkit', ['weight'] = 4000, ['type'] = 'item', ['image'] = 'advancedkit.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A nice toolbox with stuff to repair your weapon'},
|
||||
['weapon_tacticalrifle'] = {['name'] = 'weapon_tacticalrifle', ['label'] = 'Service Carbine', ['weight'] = 1000, ['type'] = 'weapon', ['image'] = 'weapon_carbinerifle.png', ['unique'] = true, ['useable'] = true, ['description'] = 'Weapon Tactical Rifle'},
|
||||
['weapons'] = {['name'] = 'weapons', ['label'] = 'weapons', ['weight'] = 1, ['type'] = 'item', ['image'] = 'weapons.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Weapon License'},
|
||||
['weapontint_url'] = {['name'] = 'weapontint_url', ['label'] = 'URL Tint', ['weight'] = 1000, ['type'] = 'item', ['image'] = 'url_attachment.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Luxury Finish Tint'},
|
||||
['white_phone'] = {['name'] = 'white_phone', ['label'] = 'White Phone', ['weight'] = 150, ['type'] = 'item', ['image'] = 'white_phone.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'They say that Quasar Smartphone is the same as an iPhone},
|
||||
['white_phone'] = {['name'] = 'white_phone', ['label'] = 'White Phone', ['weight'] = 150, ['type'] = 'item', ['image'] = 'white_phone.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'They say that Quasar Smartphone is the same as an iPhone'},
|
||||
['woodland_weapontint'] = {['name'] = 'woodland_weapontint', ['label'] = 'Woodland Camo', ['weight'] = 1000, ['type'] = 'item', ['image'] = 'woodcamo_attachment.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Woodland Camo Tint'},
|
||||
['yellow_phone'] = {['name'] = 'yellow_phone', ['label'] = 'Yellow Phone', ['weight'] = 150, ['type'] = 'item', ['image'] = 'yellow_phone.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'They say that Quasar Smartphone is the same as an iPhone},
|
||||
['yellow_phone'] = {['name'] = 'yellow_phone', ['label'] = 'Yellow Phone', ['weight'] = 150, ['type'] = 'item', ['image'] = 'yellow_phone.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'They say that Quasar Smartphone is the same as an iPhone'},
|
||||
['zebra_weapontint'] = {['name'] = 'zebra_weapontint', ['label'] = 'Zebra Camo', ['weight'] = 1000, ['type'] = 'item', ['image'] = 'zebracamo_attachment.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Zebra Camo Tint'},
|
||||
}
|
||||
Reference in New Issue
Block a user