🚲azakit_pocketbikes

Manual Guide

INSTALLATION [ESX/QBCore]

1. Download

Download the repository.

2. Unzip The Folder

Unzip the script folder. Add the azakit_pocketbikes to your resources folder.

3. Ensure

Add ensure azakit_pocketbikes to your server.cfg.

This should be under your essentials resources.

ensure azakit_pocketbikes

CONFIGURATION

4. Configure

Configure the config.lua file present in the resource, with the help of comments to facilitate your configuration. Check: config.lua

5. Create Item

Create the items in your inventory.

OX Inventory Items

['bmx'] = {
	label = 'BMX',
	weight = 200,
	stack = false,
	close = true,
	description = nil,
	client = {
		export = "azakit_pocketbikes.useItem"
	}
},

['cruiser'] = {
	label = 'Cruiser',
	weight = 200,
	stack = false,
	close = true,
	description = nil,
	client = {
		export = "azakit_pocketbikes.useItem"
	}
},

['fixter'] = {
	label = 'Fixter',
	weight = 200,
	stack = false,
	close = true,
	description = nil,
	client = {
		export = "azakit_pocketbikes.useItem"
	}
},

['scorcher'] = {
	label = 'Scorcher',
	weight = 200,
	stack = false,
	close = true,
	description = nil,
	client = {
		export = "azakit_pocketbikes.useItem"
	}
},

['tribike'] = {
	label = 'Tribike',
	weight = 200,
	stack = false,
	close = true,
	description = nil,
	client = {
		export = "azakit_pocketbikes.useItem"
	}
},

['tribike2'] = {
	label = 'Tribike V2',
	weight = 200,
	stack = false,
	close = true,
	description = nil,
	client = {
		export = "azakit_pocketbikes.useItem"
	}
},

['tribike3'] = {
	label = 'Tribike V3',
	weight = 200,
	stack = false,
	close = true,
	description = nil,
	client = {
		export = "azakit_pocketbikes.useItem"
	}
},

6. Fxmanifest

When switching from ESX to QBCore, not only the config.lua but also the fxmanifest.lua file must be modified.

7. Restart Server

Restart your game server and enjoy the system.

Last updated