๐Installation
Resource installation guide and dependencies
Framework
Dependencies
Resource | Install | Description |
---|---|---|
Required | callbacks,notification |
Supported all esx inventories that use default esx functions.
Supported all esx inventories that use default esx functions.
1 - Start
1. Download your resource from FiveM's Keymaster.
2. Unzip fs_fraud.zip folder and place it into your resource folder.
3. Install items according to your inventory {you can copy items from below}
4. Install images that come with script in install_me_first/images folder
2 - Items
-- add item into ox_inventory/shared/items.lua under last item
["fs_stolencard"] = {
label = "Stolencard",
weight = 10,
stack = true,
close = true,
},
["fs_usb"] = {
label = "Info Usb",
weight = 10,
stack = true,
close = true,
},
["fs_whiteslip"] = {
label = "White Slip",
weight = 10,
stack = true,
close = true,
},
["fs_blankcard"] = {
label = "Blank Card",
weight = 10,
stack = true,
close = true,
},
["fs_clonnedcard"] = {
label = "Cloned Card",
weight = 10,
stack = true,
close = true,
},
["fs_forgedcheque"] = {
label = "Forged Check",
weight = 10,
stack = true,
close = true,
},
["fs_generator"] = {
label = "Generator",
weight = 1,
stack = true,
close = true,
},
["fs_laptop"] = {
label = "Laptop",
weight = 1,
stack = true,
close = true,
},
["fs_printer"] = {
label = "Printer",
weight = 1,
stack = true,
close = true,
},
["fs_skimmer"] = {
label = "Skimmer",
weight = 1,
stack = true,
close = true,
},
INSERT INTO `items` (`name`, `label`, `weight`, `rare`, `can_remove`) VALUES
('fs_generator', 'Generator', 1, 0, 1),
('fs_laptop', 'Laptop', 1, 0, 1),
('fs_whiteslip', 'White Slip', 10, 0, 1),
('fs_skimmer', 'Skimmer', 1, 0, 1),
('fs_clonnedcard', 'Cloned Card', 10, 0, 1),
('fs_blankcard', 'Blank Card', 10, 0, 1),
('fs_forgedcheque', 'Forged Check', 10, 0, 1),
('fs_usb', 'Info Usb', 10, 0, 1),
('fs_stolencard', 'Stolencard', 10, 0, 1),
('fs_printer', 'Printer', 1, 0, 1);
--if you are using qbcore supported inentory like qb inventory or lj inventory etc then copy these items into qbcore/shared/items.lua
['fs_generator'] = {
['name'] = 'fs_generator',
['label'] = 'Generator',
['weight'] = 100,
['type'] = 'item',
['image'] = 'fs_generator.png',
['unique'] = true,
['useable'] = true,
['shouldClose'] = true,
['combinable'] = nil,
['description'] = ''
},
['fs_laptop'] = {
['name'] = 'fs_laptop',
['label'] = 'Laptop',
['weight'] = 100,
['type'] = 'item',
['image'] = 'fs_laptop.png',
['unique'] = true,
['useable'] = true,
['shouldClose'] = true,
['combinable'] = nil,
['description'] = ''
},
['fs_whiteslip'] = {
['name'] = 'fs_whiteslip',
['label'] = 'Whiteslip',
['weight'] = 100,
['type'] = 'item',
['image'] = 'fs_whiteslip.png',
['unique'] = true,
['useable'] = true,
['shouldClose'] = true,
['combinable'] = nil,
['description'] = ''
},
['fs_skimmer'] = {
['name'] = 'fs_skimmer',
['label'] = 'Skimmer',
['weight'] = 100,
['type'] = 'item',
['image'] = 'fs_skimmer.png',
['unique'] = true,
['useable'] = true,
['shouldClose'] = true,
['combinable'] = nil,
['description'] = ''
},
['fs_clonnedcard'] = {
['name'] = 'fs_clonnedcard',
['label'] = 'Cloned Card',
['weight'] = 100,
['type'] = 'item',
['image'] = 'fs_clonnedcard.png',
['unique'] = true,
['useable'] = true,
['shouldClose'] = true,
['combinable'] = nil,
['description'] = ''
},
['fs_blankcard'] = {
['name'] = 'fs_blankcard',
['label'] = 'Blank Card',
['weight'] = 100,
['type'] = 'item',
['image'] = 'fs_blankcard.png',
['unique'] = true,
['useable'] = true,
['shouldClose'] = true,
['combinable'] = nil,
['description'] = ''
},
['fs_forgedcheque'] = {
['name'] = 'fs_forgedcheque',
['label'] = 'Forged Check',
['weight'] = 100,
['type'] = 'item',
['image'] = 'fs_forgedcheque.png',
['unique'] = true,
['useable'] = true,
['shouldClose'] = true,
['combinable'] = nil,
['description'] = ''
},
['fs_usb'] = {
['name'] = 'fs_usb',
['label'] = 'Info Usb',
['weight'] = 100,
['type'] = 'item',
['image'] = 'fs_usb.png',
['unique'] = true,
['useable'] = true,
['shouldClose'] = true,
['combinable'] = nil,
['description'] = ''
},
['fs_stolencard'] = {
['name'] = 'fs_stolencard',
['label'] = 'Stolencard',
['weight'] = 100,
['type'] = 'item',
['image'] = 'fs_stolencard.png',
['unique'] = true,
['useable'] = true,
['shouldClose'] = true,
['combinable'] = nil,
['description'] = ''
},
['fs_printer'] = {
['name'] = 'fs_printer',
['label'] = 'Printer',
['weight'] = 100,
['type'] = 'item',
['image'] = 'fs_printer.png',
['unique'] = true,
['useable'] = true,
['shouldClose'] = true,
['combinable'] = nil,
['description'] = ''
},
3 - Inventory Pictures
* You have to get image file from install_me_first folder and copy paste all images into your inventory
4 - Configuration
* You must go through all configuration options & settings in shared/config.lua
5 - Ready
Congratulations, you've successfully installed the resource. Restart the server and you will be all set.
Last updated