T1GER Scripts Documentation
Tebex StoreDiscordYouTubeCFX Forum
  • T1GER Scripts Documentation
  • Quick Links
    • t1ger.net | Shop Now
    • Join Discord
  • Information
    • FiveM Asset Escrow
  • Resources
    • T1GER Mechanic
      • Installation
        • Job Account
          • Setup
          • API
      • Configuration
        • Config
          • Missions
        • Shop
          • Workbench
          • Supplier
        • Parts
      • Exports
        • Server
        • Client
      • Troubleshoot
        • FAQ
    • T1GER Library
      • Installation
        • Inventory
        • Target
        • Garage
        • Society Account
        • Vehicle Properties
      • Configuration
    • T1GER Gang System
      • Installation
      • Gang Garages
      • Product Information
    • T1GER Tuning System
      • Installation
      • API
        • Client
        • Server
      • Troubleshoot
        • Common Issues
        • Error Codes
      • Guides
        • Commands
        • Shops
        • Markers
        • Mod Stations
        • Pricing
        • Mod Orders
        • Vehicle Mods
        • Engine Swaps
        • Nitrous
    • T1GER ATM Robbery
      • Installation
      • API
        • Client
        • Server
      • Troubleshoot
        • Common Issues
        • Error Codes
      • Guides
        • Hacking Minigame
        • Dispatch
    • T1GER Dealerships
  • Free Resources
    • T1GER Keys
    • T1GER Garage
    • T1GER Bank Robbery
    • T1GER Tow Trucker
Powered by GitBook
On this page
  • Framework
  • Dependencies
  • 1 - Start
  • 2 - SQL
  • 3 - Items
  • 4 - Configuration
  • 5 - Ensure Dependencies
  • 6 - Ready
  1. Resources
  2. T1GER Gang System

Installation

Resource installation guide and dependencies

PreviousT1GER Gang SystemNextGang Garages

Last updated 2 years ago

Framework

Dependencies

Resource

Install

Description

Required

Framework, inventory, target and etc.

Required

Context menu, notification etc.

1 - Start

  1. Download your resource from .

  2. Unzip t1ger_gangsystem.zip folder and place it into your resource folder.

  3. Add ensure t1ger_gangsystem to your server start config. Make sure to place anywhere below the framework and dependencies resources.

2 - SQL

Please open main.sql and execute the queries into your database or import the SQL file directly into your database.

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

  1. Open your database and find the items table.

  2. 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

  1. Navigate to qb-core/shared/items.lua and open up the file.

  2. Insert the following items into this file:

Items for qb-core/shared/items.lua
['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

You must 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.

5 - Ensure Dependencies

The required dependencies for this resource can be seen in Dependencies.

Make sure to start/ensure these dependencies in your server start config before T1GER Gang System.

6 - Ready

Congratulations, you've successfully installed the resource. Restart the server and you will be all set.

T1GER Library:

OX Library:

ESX
QBCore
FiveM's Keymaster
documentation
documentation
t1ger_lib
ox_lib