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

Installation

Installation

The installation of the script is extremely easy

Installation

  1. Download the script and extract it in your resources

  2. Add this code in your auto start (example: server.cfg)

add_unsafe_worker_permission jobs_creator # Allows jobs_creator to automatically install itself
ensure jobs_creator
  1. The script will automatically setup the database, in case it doesn't, you can manually run the files in jobs_creator/sql/ folder

Adding the items - Optional

To add the premade items, you only have to run the file jobs_creator/sql/items_limit.sql or jobs_creator/sql/items_weight.sql depending on your server, if it uses the limit or the weight

The latest version of ESX uses weight

Installation

  1. Download the script and extract it in your resources

  2. Add this code in your auto start (example: server.cfg)

add_unsafe_worker_permission jobs_creator # Allows jobs_creator to automatically install itself
ensure jobs_creator
  1. The script will automatically setup the database, in case it doesn't, you can manually run the files in jobs_creator/sql/ folder

  2. Download and extract the script menu_default (clickable link) in your resources, without renaming it, and add it to auto start (example: server.cfg)

Adding the items - Optional

To add the new items, you have to edit qb-core/shared/items.lua file and add at the bottom of the table the following code

	['fixkit'] = {['name'] = 'fixkit', ['label'] = 'Fixkit', ['weight'] = 500, ['type'] = 'item', ['image'] = 'your_image.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = false, ['combinable'] = nil},
	['medikit'] = {['name'] = 'medikit', ['label'] = 'Medikit', ['weight'] = 500, ['type'] = 'item', ['image'] = 'your_image.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = false, ['combinable'] = nil},
	['sponge'] = {['name'] = 'sponge', ['label'] = 'Sponge', ['weight'] = 500, ['type'] = 'item', ['image'] = 'your_image.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = false, ['combinable'] = nil},
	['handcuffs'] = {['name'] = 'handcuffs', ['label'] = 'Handcuffs', ['weight'] = 500, ['type'] = 'item', ['image'] = 'your_image.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = false, ['combinable'] = nil},
	['lockpick'] = {['name'] = 'lockpick', ['label'] = 'Lockpick', ['weight'] = 500, ['type'] = 'item', ['image'] = 'your_image.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = false, ['combinable'] = nil},
	['bandage'] = {['name'] = 'bandage', ['label'] = 'Bandage', ['weight'] = 500, ['type'] = 'item', ['image'] = 'your_image.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = false, ['combinable'] = nil},

Screenshot example

You are ready to go! Enjoy the script ๐Ÿ˜

Optional step

After the database is setup correctly, you can delete the files in jobs_creator/sql/ folder, so the script won't try to setup the database each time you start the script

Last updated