ds-atmrobbery
Unique ATM Robbery for qbcore and esx servers with VOLTlab Signal and Drilling Minigame.

- Extract
ds-atmrobbery.zip
and place it into your resource folder. - Add
ensure ds-atmrobbery
to your server start config (place it anywhere below the dependency & framework resources).
Please go through all configurable options & settings in
config.lua
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
['thermite'] = {
2
['name'] = 'thermite',
3
['label'] = 'Thermite',
4
['weight'] = 1000,
5
['type'] = 'item',
6
['image'] = 'thermite.png',
7
['unique'] = false,
8
['useable'] = true,
9
'shouldClose'] = true,
10
['combinable'] = nil,
11
['description'] = 'Sometimes you\'d wish for everything to burn'
12
},
13
14
['drill'] = {
15
['name'] = 'drill',
16
['label'] = 'Drill',
17
['weight'] = 20000,
18
['type'] = 'item',
19
['image'] = 'drill.png',
20
['unique'] = false,
21
['useable'] = false,
22
['shouldClose'] = false,
23
['combinable'] = nil,
24
['description'] = 'The real deal...'
25
},
26
INSERT INTO items (name, label, weight, rare, can_remove) VALUES ('drill', 'Drill', 1, 0, 1), ('thermite', 'Thermite', 2, 0, 1);
Last modified 1yr ago