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
  • 1 - Ensure Dependencies
  • 2 - Get T1GER ATM Robbery
  • 3 - Ensure T1GER ATM Robbery
  • 4 - Items
  • 5 - Configuration
  • 6 - Ready
  1. Resources
  2. T1GER ATM Robbery

Installation

Resource installation guide and dependencies

PreviousT1GER ATM RobberyNextAPI

Last updated 4 months ago

1 - Ensure Dependencies

Make sure T1GER Library is installed and the required dependencies are ensured. Please refer to Installation.

2 - Get T1GER ATM Robbery

  • Get the t1ger_atmrobbery resource from: link

  • Download from: .

3 - Ensure T1GER ATM Robbery

  • Unzip t1ger_atmrobbery.zip and t1ger_atmprops.zip folders and place it into your resource folder. You can place it in a sub-folder as well.

  • Add ensure t1ger_atmprops and ensure t1ger_atmrobbery to your server start config. Make sure to ensure it after all the dependencies!

4 - Items

If you rename items or use your own items, make sure to update inside t1ger_atmrobbery/config.lua with the respective item names, otherwise the script might not function.

ESX
  1. Open your database and find the items table.

  2. Run this query in your database to insert the items.

INSERT IGNORE INTO `items` (`name`, `label`) VALUES
	('t1ger_hacking_device', 'Hacking Device'),
	('t1ger_drill', 'Drill'),
	('t1ger_rope', 'Rope'),
	('t1ger_explosive', 'Explosive'),
	('t1ger_credit_card', 'Credit Card'),
	('t1ger_jack_hammer', 'Jack Hammer'),
	('t1ger_screwdriver_set', 'Screw Driver Set')
;
QBCore
  1. Navigate to qb-core/shared/items.lua and open up the file.

  2. Insert the following items into the file:

-- T1GER ATM Robbery
['t1ger_drill']				= {['name'] = 't1ger_drill',			['label'] = 'Drill',			['weight'] = 1,		['type'] = 'item',		['image'] = 't1ger_drill.png',				['unique'] = false,		['useable'] = true,		['shouldClose'] = true,		['combinable'] = nil,	['description'] = 'Drill'},
['t1ger_explosive']			= {['name'] = 't1ger_explosive', 		['label'] = 'Explosive',		['weight'] = 1,		['type'] = 'item',		['image'] = 't1ger_explosive.png',			['unique'] = false,		['useable'] = true,		['shouldClose'] = true,		['combinable'] = nil,	['description'] = 'Explosive'},
['t1ger_hacking_device']	= {['name'] = 't1ger_hacking_device',	['label'] = 'Hacking Device',	['weight'] = 1,		['type'] = 'item',		['image'] = 't1ger_hacking_device.png',		['unique'] = false,		['useable'] = true,		['shouldClose'] = true,		['combinable'] = nil,	['description'] = 'Hacking Device'},
['t1ger_rope']				= {['name'] = 't1ger_rope',				['label'] = 'Rope',				['weight'] = 1,		['type'] = 'item',		['image'] = 't1ger_rope.png',				['unique'] = false,		['useable'] = true,		['shouldClose'] = true,		['combinable'] = nil,	['description'] = 'Rope'},
['t1ger_credit_card']		= {['name'] = 't1ger_credit_card',		['label'] = 'Credit Card',		['weight'] = 1,		['type'] = 'item',		['image'] = 't1ger_credit_card.png',		['unique'] = false,		['useable'] = true,		['shouldClose'] = true,		['combinable'] = nil,	['description'] = 'Stolen Credit Card'},
['t1ger_jack_hammer']		= {['name'] = 't1ger_jack_hammer',		['label'] = 'Jack Hammer',		['weight'] = 1,		['type'] = 'item',		['image'] = 't1ger_jack_hammer.png',		['unique'] = false,		['useable'] = true,		['shouldClose'] = true,		['combinable'] = nil,	['description'] = 'Jack Hammer'},
['t1ger_screwdriver_set']	= {['name'] = 't1ger_screwdriver_set',	['label'] = 'Screw Driver Set',	['weight'] = 1,		['type'] = 'item',		['image'] = 't1ger_screwdriver_set.png',	['unique'] = false,		['useable'] = true,		['shouldClose'] = true,		['combinable'] = nil,	['description'] = 'Screw Driver Set'},
OX Inventory
  1. Navigate to ox_inventory/data/items.lua.

  2. Insert the following items into the file:

	["t1ger_drill"] = {
		label = "Drill",
		weight = 1,
		stack = true,
		close = true,
	},

	["t1ger_explosive"] = {
		label = "Explosive",
		weight = 1,
		stack = true,
		close = true,
	},

	["t1ger_hacking_device"] = {
		label = "Hacking Device",
		weight = 1,
		stack = true,
		close = true,
	},

	["t1ger_rope"] = {
		label = "Rope",
		weight = 1,
		stack = true,
		close = true,
	},

	["t1ger_credit_card"] = {
		label = "Credit Card",
		weight = 1,
		stack = true,
		close = true,
	},

	["t1ger_jack_hammer"] = {
		label = "Jack Hammer",
		weight = 1,
		stack = true,
		close = true,
	},

	["t1ger_screwdriver_set"] = {
		label = "Screw Driver Set",
		weight = 1,
		stack = true,
		close = true,
	},

5 - Configuration

Language

Navigate to t1ger_atmrobbery/language.lua to customize all strings to translate them into your preferred language.

Config

Navigate to t1ger_atmrobbery/config.lua to configure settings & options to your liking. Make sure to read the end-line comments.

6 - Ready

Once you are fully done, you have successfully installed T1GER ATM Robbery. Now restart your server and enjoy the resource!

Cfx.re Portal
Example of my startup order in server.cfg