Installation
Resource installation guide and dependencies
Framework
Dependencies
1 - Start
2 - SQL
3 - Items
Make sure to update t1ger_gangsystem/config.lua with the respective item names, so that the resource knows what items to use. 
You can quickly search for requiredItem inside the config.lua to find the item entries.
If you already have the items below or have similar items, you can skip the installation for items, just make sure to update config.lua with your item names.
ESX
- Open your database and find the items table. 
- Run the following query to insert items into your table: 
INSERT IGNORE INTO `items` (`name`, `label`) VALUES
('zipties', 'Zip Ties'), -- required item to zip tie target.
('headbag', 'Headbag'), -- required item to put headbag on target.
('cutter', 'Cutter'); -- useable item to cut zip-ties from target.QB Core
- Navigate to - qb-core/shared/items.luaand open up the file.
- Insert the following items into this file: 
['zipties'] 				 = {['name'] = 'zipties', 			  	  	['label'] = 'Zip Ties', 			['weight'] = 1, 		['type'] = 'item', 		['image'] = 'zipties.png', 			['unique'] = false, 	['useable'] = false, 	['shouldClose'] = true,    ['combinable'] = nil,   ['description'] = 'Required for zip tie hands.'},
['headbag'] 				 = {['name'] = 'headbag', 			  	  	['label'] = 'Headbag', 			        ['weight'] = 1, 		['type'] = 'item', 		['image'] = 'headbag.png', 			['unique'] = false, 	['useable'] = false, 	['shouldClose'] = true,    ['combinable'] = nil,   ['description'] = 'Required to put headbag on a target player.'},
['cutter'] 				 = {['name'] = 'cutter', 			  	  	['label'] = 'Cutter', 			        ['weight'] = 1, 		['type'] = 'item', 		['image'] = 'cutter.png', 			['unique'] = false, 	['useable'] = true, 	['shouldClose'] = true,    ['combinable'] = nil,   ['description'] = 'Useable item to cut zip-ties from a target player.'},4 - Configuration
5 - Ensure Dependencies
6 - Ready
Congratulations, you've successfully installed the resource. Restart the server and you will be all set.
Last updated
