๐Ÿ”งInstallation

First we want you to know that our script only supports the following versions of the two most used frameworks, in older versions it may be usable but we do not provide support since the development focuses on the following versions:

ensure oxmysql/icmysql
ensure qb-core
...(make sure to start the inventory before the script)

ensure origen_hacking (optional)
ensure origen_carboosting

If you want to use the hack script that comes built-in with Origen Car Boosting you need to start first the origen_hacking, if you didn't want to use them you can remove the dependencie and modifie this following the next step.

Now you have to insert the SQL files into your database:

origen_carboosting/db/tables.sql

Put that items on shared of qb-core.

['boosting_cad']              = {['name'] = 'boosting_cad',         ['label'] = 'Boosting Tablet',                   ['weight'] = 100,       ['type'] = 'item',      ['image'] = 'boosting_cad.png',              ['unique'] = true,         ['useable'] = true,     ['shouldClose'] = false,   ['combinable'] = nil,   ['description'] = 'Probably you can use this tablet for ilegal actions.'},
['locator_remover']              = {['name'] = 'locator_remover',         ['label'] = 'Locator Remover',                   ['weight'] = 100,       ['type'] = 'item',      ['image'] = 'locator_remover.png',              ['unique'] = true,         ['useable'] = true,     ['shouldClose'] = false,   ['combinable'] = nil,   ['description'] = 'Looks like a remover for specific signal type.'},

If you use the ox_inventory

['boosting_cad'] = {
    label = 'Boosting CAD',
    weight = 100,
    stack = false,
    close = true,
    description = 'Device used for boosting missions.'
},

['locator_remover'] = {
    label = 'Locator Remover',
    weight = 100,
    stack = true,
    close = true,
    description = 'Tool used to remove vehicle locators.'
},

Or if you are using the new Origen Inventory

Config File

Last updated