Page cover

πŸ’»Installation

Dependencies :

chevron-rightES EXTENDEDhashtag

You will need the latest version of esx_corearrow-up-right.

  • Extract the contents of the archive to your resources folder.

  • Start the resource near the top of your resources in your server.cfg.

chevron-rightINTERACT OR TARGEThashtag

You will need the latest version of Interactarrow-up-right or qb-targetarrow-up-right

  • Extract the contents of the archive to your resources folder.

  • Start the resource near the top of your resources in your server.cfg.

chevron-rightXSOUNDhashtag

You will need the latest version of xsoundarrow-up-right

  • Extract the contents of the archive to your resources folder.

  • Start the resource near the top of your resources in your server.cfg.


Inventories :

chevron-rightQB INVENTORYhashtag

Add the items below to the qb-core/shared/items.lua:

    -- Gallery heist
    rfid_cloner             = { name = 'rfid_cloner',                  label = 'RFID Cloner',                            weight = 100,       type = 'item',      image = 'rfid_cloner.png',                                          unique = true, useable = true,     shouldClose = true,    combinable = nil,   description = 'RFID Cloner' },    
    painting1               = { name = 'painting1',                    label = 'Mark Ashkenazi Painting',                weight = 100,       type = 'item',      image = 'painting1.png',                                          unique = true, useable = true,     shouldClose = true,    combinable = nil,   description = 'Mark Ashkenazi Painting' },    
    painting2               = { name = 'painting2',                    label = 'Jean Delvin Painting',                   weight = 100,       type = 'item',      image = 'painting2.png',                                          unique = true, useable = true,     shouldClose = true,    combinable = nil,   description = 'Jean Delvin Painting' },    

Add this into your qb-inventory js file:

        case "rfid_cloner":
            if (itemData.info.uses == undefined) {
                return `<p>Uses: 5</p>`;  
            }else{
                return `<p>Uses: ${itemData.info.uses}</p>`;  
            }
chevron-rightQS INVENTORYhashtag

Add the items below into your qs-inventory/shared/items.lua

Add this into qs-inventory/config/metadata.js

chevron-rightOX INVENTORYhashtag

Add the items below into your ox-inventory/data/items.lua


Dialog :

chevron-rightZAT DIALOGhashtag

Add the code below to zat-dialog/shared/config.lua

Doorlock:

chevron-rightQB DOORLOCKhashtag

copy gallery.lua doorlock file and paste it in qb-doorlock/configs

chevron-rightOX DOORLOCKhashtag

Just import the ox_doorlock.sql into your Database.

ENSURE RESOURCES

Last updated