⚙️ Installation

This structure organizes the content clearly and concisely, making it easy to follow during installation and configuration.

Step 1: Import SQL to Your Database and

Install bd-minigames :

https://github.com/kristiyanpts/bd-minigamesarrow-up-right

To get started, import the following SQL code into your database to create the cooldown table for ATM robberies :

CREATE TABLE IF NOT EXISTS `atm_robbery_cooldowns` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `citizenid` varchar(50) DEFAULT NULL,
  `player_name` varchar(50) DEFAULT NULL,
  `cooldown_end` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=56 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

Framework :

Config.Framework = 'QBCore'  -- Set your Framework to 'QBCore' for QBCore Framework or 'ESX' for (ESX Framework soon not aviable now) 
Config.Core = 'qb-core'  -- Core framework name
Config.Corename = 'QBCore'  -- Core framework alias

Target System :

Config.target = 'qb-target'  -- Set the target system you use (e.g., qb-target, ox_target)
Config.UseTarget = true  -- Set to true if you want to use target system, false for drawtext mode

other settings about robbery :

Last updated