Installation

Installation

  1. Download quito-boosting

  2. Extract the script into the resources folder in your server

  3. Import db.sql into your database

  4. Add the images from to images folder to your inventory (eg. qb-inventory/html/images)

  5. Add items (see code block below) to [qb]/qb-core/shared/items.lua

  6. Make sure the folder is called quito-boosting, or it will cause issues

  7. Add ensure quito-boosting or start quito-boosting in your server.cfg

  8. Restart 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