Other Integrations

Find information on configuring for other resources!

ESX Item Support

Firstly, head to the config.lua file and enable ESX in the config. Next, run the following SQL into your ESX database to add the item:

INSERT INTO `items` (`name`, `label`, `weight`, `rare`, `can_remove`) VALUES
('tripod', 'Tripod', 1, 0, 1),
('basket', 'Basket', 1, 0, 1);

QB-Core Item Support

Firstly, head to the config.lua file and enable QBCore in the config. Next, add the following lines of code into your qb-core/shared/items.lua file:

['tripod']   = {
    ['name'] = 'tripod',                             
    ['label'] = 'Tripod',              
    ['weight'] = 1500,         
    ['type'] = 'item',         
    ['image'] = nil,                   
    ['unique'] = false,         
    ['useable'] = true,     
    ['shouldClose'] = true,      
    ['combinable'] = nil,   
    ['description'] = 'Tripod'},
 
['basket']   = {
    ['name'] = 'basket',                             
    ['label'] = 'Basket',              
    ['weight'] = 1500,         
    ['type'] = 'item',         
    ['image'] = nil,                   
    ['unique'] = false,         
    ['useable'] = true,     
    ['shouldClose'] = true,      
    ['combinable'] = nil,   
    ['description'] = 'Basket'
},

Feel free to adjust the various item settings depending on your server requirements!

vRP Inventory Support

Firstly, head to the config.lua file and enable vRP in the config. Next, add the following line of code into your vrp/cfg/items.lua file:

["tripod"] = {"Tripod","Tripod",function(args) return ropeGen("tripod") end,0.1},
["basket"] = {"Basket","Basket",function(args) return ropeGen("basket") end,0.1},
 
 
local function ropeGen(itemName)
  local fgen = function(args)
    choices["Use"] = {function(player,choice)
      local user_id = vRP.getUserId(player)
      if user_id ~= nil then
        TriggerEvent("Server:useRopeRescueItem", player, itemName)
      end
    end}
 
    return choices
  end
 
  return fgen
end

Quasar Inventory Support

Quasar Inventory support is built into the resource. To start, head to the config.lua file and enable Quasar Inventory support within the resource.

We've done the rest for you and ensured that our Quasar Inventory support works for QBCore or ESX servers, so make sure you've also enabled QBCore or ESX within the config.lua file.

Core Inventory Support

Core Inventory support is built into the resource. To start, head to the config.lua file and enable Core Inventory support within the resource.

We've done the rest for you and ensured that our Core Inventory support works for QBCore or ESX servers, so make sure you've also enabled QBCore or ESX within the config.lua file.

Last updated