Links

ds-drilling

Unique and Advance Oil Drilling Job with responsive UI and Compatible with any QBCore and ESX server.

Installaction(optional)

Dependencies

Dependency
Download
Description
qb-target
Link
A better interaction system for FiveM
qb-input
Link
batter input menu for fivem

Start

  • Extract ds-drilling.zip and place it into your resource folder.
  • Install and ensure dependencies for the resource.
  • Setupconfig.lua (⚠️see #CONFIGURATION for instructions).
  • Addensure ds-drillingto your server start config (place it anywhere below the dependency & framework resources).

Configuration

Please go through all configurable options & settings in config.lua and config.js and configure them to your server's preferences.
Also please read the comments at the end of each line, for a brief information on what the option does.

Add Items

QBCore
ESX
Images
1
['kerosene'] = {
2
['name'] = 'kerosene',
3
['label'] = 'kerosene',
4
['weight'] = 0,
5
['type'] = 'item',
6
['image'] = 'kerosene.png',
7
['unique'] = true,
8
['useable'] = true,
9
['shouldClose'] = false,
10
['combinable'] = nil,
11
['description'] = 'oil'
12
},
13
['gasoline'] = {
14
['name'] = 'gasoline',
15
['label'] = 'gasoline',
16
['weight'] = 0,
17
['type'] = 'item',
18
['image'] = 'gasoline.png',
19
['unique'] = true,
20
['useable'] = true,
21
['shouldClose'] = false,
22
['combinable'] = nil,
23
['description'] = 'oil'
24
},
INSERT INTO items (name, label, weight, rare, can_remove) VALUES ('kerosene', 'Kerosene', 1, 0, 1), ('gasoline', 'Gasoline', 2, 0, 1);