Agency Docs
Standalone

Agency-Banking Installation

A complete banking system for FiveM. Manage your money through online banking and ATMs with a sleek glassmorphism UI.

v1.2.0Paid4 Pages

01Installation

  1. 1Extract Agency-Banking into your resources folder
  2. 2Import agency_banking.sql into your database
  3. 3Add ensure Agency-Banking to server.cfg
  4. 4Adjust fees, interest & accounts in config.lua
  5. 5Restart server

02Dependencies

  • oxmysql (required, MySQL persistence)
  • QBCore / ESX (optional, standalone works out of the box)

03SQL File

Import this SQL file into your database before starting the resource:

CREATE TABLE IF NOT EXISTS `agency_transactions` ( `id` int(11) NOT NULL AUTO_INCREMENT, `identifier` varchar(50) NOT NULL, `type` varchar(50) NOT NULL, -- 'transfer', 'deposit', 'withdraw', 'fixed_deposit', 'interest' `amount` int(11) NOT NULL, `target_identifier` varchar(50) DEFAULT NULL, `reason` varchar(255) DEFAULT NULL, `date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`id`) ); CREATE TABLE IF NOT EXISTS `agency_cards` ( `id` int(11) NOT NULL AUTO_INCREMENT, `identifier` varchar(50) NOT NULL, `card_number` varchar(16) NOT NULL, `card_pin` varchar(4) NOT NULL, `card_type` varchar(50) DEFAULT 'Agency 1', `card_color` varchar(50) DEFAULT 'Ultra Blue', `is_active` tinyint(1) DEFAULT 1, PRIMARY KEY (`id`) ); CREATE TABLE IF NOT EXISTS `agency_fixed_deposits` ( `id` int(11) NOT NULL AUTO_INCREMENT, `identifier` varchar(50) NOT NULL, `amount` int(11) NOT NULL, `interest_rate` float NOT NULL, `duration_days` int(11) NOT NULL, `start_date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `end_date` timestamp NOT NULL, `is_claimed` tinyint(1) DEFAULT 0, PRIMARY KEY (`id`) );

Still stuck after this page? Our support team takes it from here.