Skip to main content

Installation

  1. Download loaf_jewelheist from keymaster
  2. Install ox_lib if you don't have it already
  3. Unzip loaf_jewelheist and drag it into your resources folder
  4. Add ensure loaf_jewelheist to your server.cfg
  5. Restart your server, or type refresh and then ensure loaf_jewelheist in the server console

Items

The script requires a few items. You can change all items used in the config/config.lua file. These are:

  • thermite
  • glass_cutter
  • necklace
  • watch
  • ring
  • painting
  • diamond

If you use ox_inventory, you can copy paste this into ox_inventory/data/items.lua:

thermite = {
label = "Thermite",
weight = 1,
stack = true,
close = true
},

glass_cutter = {
label = "Glass Cutter",
weight = 2500,
stack = false
},

necklace = {
label = "Golden necklace",
weight = 1,
stack = true,
close = false
},

watch = {
label = "Luxury watch",
weight = 1,
stack = true,
close = false
},

ring = {
label = "Diamond ring",
weight = 1,
stack = true,
close = false
},

painting = {
label = "Painting",
weight = 500,
stack = true
},

diamond = {
label = "Diamond",
weight = 1,
stack = true,
close = true,
},