ATM Robbery
Installation
warning
We highly recommend you to read carefully each step written below.
Don't skip any step, it could lead to a non-functioning script.
Follow these steps to install the atm robbery system
- Download the script from KeyMaster.
- Download the "Library" script from KeyMaster.
- Drag the
s1n_atmrobbery
folder into yourresources
directory. (you might need to rename the script's folder) - Rename the
s1n_atmrobbery-....
folder tos1n_atmrobbery
. - Drag the
s1n_lib
folder into yourresources
directory. - Rename the
s1n_lib-....
folder tos1n_lib
. - Start the library by adding
start s1n_lib
to yourserver.cfg
file. - Start the atm robbery system by adding
start s1n_atmrobbery
to yourserver.cfg
file. - (if you're using ESX) Please insert SQL query in your database :
INSERT INTO `items` (`name`, `label`, `weight`) VALUES
('drill', 'Drill', 1),
('rope', 'Rope', 1),
('c4', 'C4', 1);
- (if you're using QBCore) Please add these items to qb-core/shared/items.lua
['drill'] = { ['name'] = 'drill', ['label'] = 'Drill', ['weight'] = 0, ['type'] = 'item', ['image'] = 'drill.png', ['unique'] = true, ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = ''},
['rope'] = { ['name'] = 'rope', ['label'] = 'Rope', ['weight'] = 0, ['type'] = 'item', ['image'] = 'rope.png', ['unique'] = true, ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = ''},
['c4'] = { ['name'] = 'c4', ['label'] = 'C4', ['weight'] = 0, ['type'] = 'item', ['image'] = 'c4.png', ['unique'] = true, ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = ''},
- Configure the script by modifying the values in the
config.lua
file located in thes1n_atmrobbery/shared/
script folder. - Configure the library by modifying the values in all the files contained in the
configuration/
folder located in thes1n_lib/
script folder.