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

View on Tebex | CFX Fourm Post | Youtube Video | Discord
Installaction(optional)
Dependencies
Start
Extract
ds-drilling.zipand place it into your resource folder.Install and ensure dependencies for the resource.
Setup
config.lua(⚠️see #CONFIGURATION for instructions).Add
ensure 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
['kerosene'] = {
['name'] = 'kerosene',
['label'] = 'kerosene',
['weight'] = 0,
['type'] = 'item',
['image'] = 'kerosene.png',
['unique'] = true,
['useable'] = true,
['shouldClose'] = false,
['combinable'] = nil,
['description'] = 'oil'
},
['gasoline'] = {
['name'] = 'gasoline',
['label'] = 'gasoline',
['weight'] = 0,
['type'] = 'item',
['image'] = 'gasoline.png',
['unique'] = true,
['useable'] = true,
['shouldClose'] = false,
['combinable'] = nil,
['description'] = 'oil'
},INSERT INTO items (name, label, weight, rare, can_remove) VALUES ('kerosene', 'Kerosene', 1, 0, 1), ('gasoline', 'Gasoline', 2, 0, 1);Last updated