Page cover

πŸ’»Installation

Dependencies :

QBCORE

You will need the latest version of qb-core

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

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


Inventories :

QB-INVENTORY

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

   wapotablet         = { name = 'wapotablet',              label = 'Water and Power Tablet',           weight = 100,       type = 'item',     image = 'wapotablet.png',                                              unique = false, useable = true,     shouldClose = true,    combinable = nil,   description = 'Water and Power Tablet.'},  
OX_INVENTORY

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

	["wapotablet"] = {
		label = "Water and Power Tablet",
		weight = 100,
		stack = true,
		close = true,
		description = "Water and Power Tablet.",
		client = {
			image = "wapotablet.png",
		}
	},

Add this into ox_inventory/modules/items/client.lua

Item('wapotablet', function(data, slot)
	ox_inventory:useItem(data, function(data)
		if data then
			TriggerEvent("zat-waterpower:client:OpenTablet")
		end
	end)
end)

QS-INVENTORY

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

['wapotablet'] = {
    ['name'] = 'wapotablet',
    ['label'] = 'Water and Power Tablet',
    ['weight'] = 100,
    ['type'] = 'item',
    ['image'] = 'wapotablet.png',
    ['unique'] = false,
    ['useable'] = true,
    ['shouldClose'] = true,
    ['combinable'] = nil,
    ['description'] = 'Water and Power Tablet.'
},

Add this into qs-inventory/server/custom/misc/CreateUseableItem.lua

CreateUsableItem('wapotablet', function(source, item)
    local src = source
    TriggerClientEvent('zat-waterpower:client:OpenTablet', src)
end)


ZAT - DIALOG (in case you use it) :

Add this to shared/config.lua :


ADDITIONAL SETUP

IMAGES
  • Copy the contents of the [images] folder into your inventory's image directory.

ENSURE RESOURCES

Last updated