Installation
Installation
Download quito-boosting
Extract the script into the
resources
folder in your serverImport
db.sql
into your databaseAdd the images from to
images
folder to your inventory (eg.qb-inventory/html/images
)Add items (see code block below) to
[qb]/qb-core/shared/items.lua
Make sure the folder is called
quito-boosting
, or it will cause issuesAdd
ensure quito-boosting
orstart quito-boosting
in your server.cfgRestart your server
--- quito-boosting
['boostinglaptop'] = {['name'] = 'boostinglaptop', ['label'] = 'Boosting Laptop', ['weight'] = 3000, ['type'] = 'item', ['image'] = 'boostinglaptop.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Useful laptop', ['created'] = nil, ['decay'] = 28.0},
['hacking_device'] = {['name'] = "hacking_device", ['label'] = "Hacking device", ['weight'] = 500, ['type'] = 'item', ['image'] = 'hacking_device.png',['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = "A useful device", ['created'] = nil, ['decay'] = 28.0},
['trackerdisabler'] = {['name'] = "trackerdisabler", ['label'] = "Tracker Disabler", ['weight'] = 500, ['type'] = 'item', ['image'] = 'trackerdisabler.png',['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = "What will this item do?", ['created'] = nil, ['decay'] = 28.0},
Last updated