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

- Extract
ds-drilling.zip
and place it into your resource folder. - Add
ensure ds-drilling
to your server start config (place it anywhere below the dependency & framework resources).
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.
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);
Last modified 1yr ago