Installation
If you aren't familiar with programming or just you don't know how to set up the script, we present our installation guide which is as comprehensive as possible so you don't have any difficulties.
3
4
Database
DELETE FROM items WHERE name = 'mobilescanner';
DELETE FROM items WHERE name = 'staticscanner';
INSERT INTO `items` (`name`, `label`, `weight`) VALUES
('mobilescanner', 'Mobile Fingerprint Scanner', 1),
('staticscanner', 'Static Fingerprint Scanner', 1)
;mobilescanner = { name = 'mobilescanner', label = 'Mobile Fingerprint Scanner', weight = 1, type = 'item', image = 'mobilescanner.png', unique = true, useable = true, shouldClose = true, description = 'A portable device used to scan fingerprints on the go' },
staticscanner = { name = 'staticscanner', label = 'Static Fingerprint Scanner', weight = 1, type = 'item', image = 'staticscanner.png', unique = true, useable = true, shouldClose = true, description = 'A stationary fingerprint scanner that can be placed in a location' },['mobilescanner'] = {
label = 'Mobile Fingerprint Scanner',
weight = 1000,
stack = false,
close = true,
description = 'A portable device used to scan fingerprints on the go',
client = {
image = 'mobilescanner.png'
}
},
['staticscanner'] = {
label = 'Static Fingerprint Scanner',
weight = 2000,
stack = false,
close = true,
description = 'A stationary fingerprint scanner that can be placed in a location',
client = {
image = 'staticscanner.png'
}
}Last updated