For the complete documentation index, see llms.txt. This page is also available as Markdown.

Installation

Step-by-step guide to adding the BK Garages to your server.

  1. Install all dependencies and make sure to ensure them in the server.cfg.

  2. Place the bk_garages folder somewhere in your resources directory.

  3. Ensure the resource in your server.cfg as follows, AFTER all dependencies and core/framework resources:

ensure bk_garages
  1. Modify the configuration files in the /config folder to your liking.

  2. If you want to use the carjacker item (recommended), register the item in your inventory items file. Below are some examples:

If you use ox_inventory
  • ox_inventory/data/shared/items.lua:

['carjacker'] = {
    label = 'Car Jacker',
    weight = 2000,
    stack = false,
    consume = 0,
    description = 'Hmm, what could that do to parked cars...',
    server = {
        export = 'bk_garages.carJackerUsed'
    }
},
if you use qb_inventory
  • qb-core/shared/items.lua

carjacker = { name = 'carjacker', label = 'Car Jacker', weight = 2000, type = 'item', image = 'carjacker.png', unique = true, useable = true, shouldClose = true, description = 'Hmm, what could that do to parked cars...' },
  1. Add the item image to your inventory icons folder.

  2. Enjoy!

For support, join our discord

Last updated