
π»Installation
Dependencies :
ES_EXTENDED
You will need the latest version of es_extended.
Extract the contents of the archive to your resources folder.
Start the resource near the top of your resources in your server.cfg.
ITEMS
QB INVENTORY
Go to qb-core/shared/items.lua and add this :
-- Vangelico Heist Jewelry Items
vh_gold_necklace = { name = 'vh_gold_necklace', label = 'Gold Necklace', weight = 200, type = 'item', image = 'vh_gold_necklace.png', unique = false, useable = false, shouldClose = false, description = 'A valuable gold necklace stolen from a jewelry display.' },
vh_silver_necklace = { name = 'vh_silver_necklace', label = 'Silver Necklace', weight = 180, type = 'item', image = 'vh_silver_necklace.png', unique = false, useable = false, shouldClose = false, description = 'A fine silver necklace taken from the store.' },
vh_diamond_necklace = { name = 'vh_diamond_necklace', label = 'Diamond Necklace', weight = 170, type = 'item', image = 'vh_diamond_necklace.png', unique = false, useable = false, shouldClose = false, description = 'An expensive diamond necklace. Extremely valuable.' },
vh_gold_ring = { name = 'vh_gold_ring', label = 'Gold Ring', weight = 100, type = 'item', image = 'vh_gold_ring.png', unique = false, useable = false, shouldClose = false, description = 'A shiny gold ring stolen from a glass case.' },
vh_silver_ring = { name = 'vh_silver_ring', label = 'Silver Ring', weight = 90, type = 'item', image = 'vh_silver_ring.png', unique = false, useable = false, shouldClose = false, description = 'A polished silver ring taken during the robbery.' },
vh_diamond_ring = { name = 'vh_diamond_ring', label = 'Diamond Ring', weight = 85, type = 'item', image = 'vh_diamond_ring.png', unique = false, useable = false, shouldClose = false, description = 'A high-value diamond engagement ring.' },
vh_luxury_watch = { name = 'vh_luxury_watch', label = 'Luxury Watch', weight = 250, type = 'item', image = 'vh_luxury_watch.png', unique = false, useable = false, shouldClose = false, description = 'A premium luxury watch worth a lot on the black market.' },
vh_gold_watch = { name = 'vh_gold_watch', label = 'Gold Watch', weight = 300, type = 'item', image = 'vh_gold_watch.png', unique = false, useable = false, shouldClose = false, description = 'A heavy gold watch taken from the showroom.' },
vh_diamond_watch = { name = 'vh_diamond_watch', label = 'Diamond Watch', weight = 280, type = 'item', image = 'vh_diamond_watch.png', unique = false, useable = false, shouldClose = false, description = 'An iced-out diamond watch. Extremely valuable.' },
vh_platinum_bracelet = { name = 'vh_platinum_bracelet', label = 'Platinum Bracelet', weight = 220, type = 'item', image = 'vh_platinum_bracelet.png', unique = false, useable = false, shouldClose = false, description = 'A rare platinum bracelet stolen during the heist.' },
fuse_box = { name = 'fuse_box', label = 'Fuse Pack', weight = 220, type = 'item', image = 'fuse_box.png', unique = false, useable = false, shouldClose = false, description = 'Pack of 4 Fuses' },
-- If you have it don't add it
screwdriverset = { name = 'screwdriverset', label = 'Toolkit', weight = 1000, type = 'item', image = 'screwdriverset.png', unique = false, useable = false, shouldClose = false, description = 'Very useful to screw... screws...' },
OX INVENTORY
Go to ox_inventory/data/items.lua and add this :
["vh_gold_necklace"] = {
label = "Gold Necklace",
weight = 200,
stack = true,
close = false,
description = "A valuable gold necklace stolen from a jewelry display.",
client = {
image = "vh_gold_necklace.png",
}
},
["vh_diamond_necklace"] = {
label = "Diamond Necklace",
weight = 170,
stack = true,
close = false,
description = "An expensive diamond necklace. Extremely valuable.",
client = {
image = "vh_diamond_necklace.png",
}
},
["vh_silver_ring"] = {
label = "Silver Ring",
weight = 90,
stack = true,
close = false,
description = "A polished silver ring taken during the robbery.",
client = {
image = "vh_silver_ring.png",
}
},
["vh_gold_ring"] = {
label = "Gold Ring",
weight = 100,
stack = true,
close = false,
description = "A shiny gold ring stolen from a glass case.",
client = {
image = "vh_gold_ring.png",
}
},
["vh_diamond_watch"] = {
label = "Diamond Watch",
weight = 280,
stack = true,
close = false,
description = "An iced-out diamond watch. Extremely valuable.",
client = {
image = "vh_diamond_watch.png",
}
},
["vh_platinum_bracelet"] = {
label = "Platinum Bracelet",
weight = 220,
stack = true,
close = false,
description = "A rare platinum bracelet stolen during the heist.",
client = {
image = "vh_platinum_bracelet.png",
}
},
["vh_gold_watch"] = {
label = "Gold Watch",
weight = 300,
stack = true,
close = false,
description = "A heavy gold watch taken from the showroom.",
client = {
image = "vh_gold_watch.png",
}
},
["vh_luxury_watch"] = {
label = "Luxury Watch",
weight = 250,
stack = true,
close = false,
description = "A premium luxury watch worth a lot on the black market.",
client = {
image = "vh_luxury_watch.png",
}
},
["vh_diamond_ring"] = {
label = "Diamond Ring",
weight = 85,
stack = true,
close = false,
description = "A high-value diamond engagement ring.",
client = {
image = "vh_diamond_ring.png",
}
},
["vh_silver_necklace"] = {
label = "Silver Necklace",
weight = 180,
stack = true,
close = false,
description = "A fine silver necklace taken from the store.",
client = {
image = "vh_silver_necklace.png",
}
},
["fuse_box"] = {
label = "Fuse Pack",
weight = 220,
stack = true,
close = false,
description = "Pack of 4 Fuses",
client = {
image = "fuse_box.png",
}
},
-- add this if you don't have it
["screwdriverset"] = {
label = "Toolkit",
weight = 1000,
stack = true,
close = false,
description = "Very useful to screw... screws...",
client = {
image = "screwdriverset.png",
}
},QS INVENTORY
Go to qs-inventory/shared/items.lua and add this :
['vh_gold_necklace'] = {
name = 'vh_gold_necklace',
label = 'Gold Necklace',
weight = 200,
type = 'item',
image = 'vh_gold_necklace.png',
unique = false,
useable = false,
shouldClose = false,
combinable = nil,
description = 'A valuable gold necklace stolen from a jewelry display.',
},
['vh_diamond_necklace'] = {
name = 'vh_diamond_necklace',
label = 'Diamond Necklace',
weight = 170,
type = 'item',
image = 'vh_diamond_necklace.png',
unique = false,
useable = false,
shouldClose = false,
combinable = nil,
description = 'An expensive diamond necklace. Extremely valuable.',
},
['vh_silver_ring'] = {
name = 'vh_silver_ring',
label = 'Silver Ring',
weight = 90,
type = 'item',
image = 'vh_silver_ring.png',
unique = false,
useable = false,
shouldClose = false,
combinable = nil,
description = 'A polished silver ring taken during the robbery.',
},
['vh_gold_ring'] = {
name = 'vh_gold_ring',
label = 'Gold Ring',
weight = 100,
type = 'item',
image = 'vh_gold_ring.png',
unique = false,
useable = false,
shouldClose = false,
combinable = nil,
description = 'A shiny gold ring stolen from a glass case.',
},
['vh_diamond_watch'] = {
name = 'vh_diamond_watch',
label = 'Diamond Watch',
weight = 280,
type = 'item',
image = 'vh_diamond_watch.png',
unique = false,
useable = false,
shouldClose = false,
combinable = nil,
description = 'An iced-out diamond watch. Extremely valuable.',
},
['vh_platinum_bracelet'] = {
name = 'vh_platinum_bracelet',
label = 'Platinum Bracelet',
weight = 220,
type = 'item',
image = 'vh_platinum_bracelet.png',
unique = false,
useable = false,
shouldClose = false,
combinable = nil,
description = 'A rare platinum bracelet stolen during the heist.',
},
['vh_gold_watch'] = {
name = 'vh_gold_watch',
label = 'Gold Watch',
weight = 300,
type = 'item',
image = 'vh_gold_watch.png',
unique = false,
useable = false,
shouldClose = false,
combinable = nil,
description = 'A heavy gold watch taken from the showroom.',
},
['vh_luxury_watch'] = {
name = 'vh_luxury_watch',
label = 'Luxury Watch',
weight = 250,
type = 'item',
image = 'vh_luxury_watch.png',
unique = false,
useable = false,
shouldClose = false,
combinable = nil,
description = 'A premium luxury watch worth a lot on the black market.',
},
['vh_diamond_ring'] = {
name = 'vh_diamond_ring',
label = 'Diamond Ring',
weight = 85,
type = 'item',
image = 'vh_diamond_ring.png',
unique = false,
useable = false,
shouldClose = false,
combinable = nil,
description = 'A high-value diamond engagement ring.',
},
['vh_silver_necklace'] = {
name = 'vh_silver_necklace',
label = 'Silver Necklace',
weight = 180,
type = 'item',
image = 'vh_silver_necklace.png',
unique = false,
useable = false,
shouldClose = false,
combinable = nil,
description = 'A fine silver necklace taken from the store.',
},
['fuse_box'] = {
name = 'fuse_box',
label = 'Fuse Pack',
weight = 220,
type = 'item',
image = 'fuse_box.png',
unique = false,
useable = false,
shouldClose = false,
combinable = nil,
description = 'Pack of 4 Fuses',
},
-- Add if you donβt already have it
['screwdriverset'] = {
name = 'screwdriverset',
label = 'Toolkit',
weight = 1000,
type = 'item',
image = 'screwdriverset.png',
unique = false,
useable = false,
shouldClose = false,
combinable = nil,
description = 'Very useful to screw... screws...',
},DIALOG
ZAT DIALOG
If you have zat-dialog then add this to zat-dialog/shared/config.lua
ENSURE RESOURCES
Last updated