# How to Install

{% hint style="info" %}
**If you face any issues, you can contact us on our Discord and we will help you to the utmost of our abilities.**
{% endhint %}

## Setup Guide

Follow the steps below:

1. Download the script from keymaster.fivem.net
2. Remove any existing bank scripts (qb-banking for instance)
3. Extract the provided files
4. Run the SQL provided along with the files. Below is a snippet of the SQL provided:

```sql
-- --------------------------------------------------------
-- Server: 127.0.0.1
-- Server version: 10.4.28-MariaDB - mariadb.org binary distribution
-- Server Operating System: Win64
-- HeidiSQL Version: 12.5.0.6677
-- --------------------------------------------------------

/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET NAMES utf8 */;
/*!50503 SET NAMES utf8mb4 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;


-- table structure dump qbcoreframework_c8b2c9.st_banking_atms
CREATE TABLE IF NOT EXISTS `st_banking_atms` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `citizenid` varchar(50) NOT NULL DEFAULT '0',
  `entity` int(11) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- Data output was not selected

-- table structure dump qbcoreframework_c8b2c9.st_banking_bills
CREATE TABLE IF NOT EXISTS `st_banking_bills` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `owner` varchar(50) DEFAULT NULL,
  `sender` varchar(50) NOT NULL DEFAULT '0',
  `senderName` varchar(50) DEFAULT NULL,
  `amount` int(11) NOT NULL DEFAULT 0,
  `society` varchar(50) NOT NULL DEFAULT '0',
  `label` varchar(50) NOT NULL DEFAULT '0',
  `date` varchar(50) DEFAULT NULL,
  `state` varchar(50) DEFAULT 'unpaid',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- Data output was not selected

-- table structure dump qbcoreframework_c8b2c9.st_banking_cards
CREATE TABLE IF NOT EXISTS `st_banking_cards` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `owner` varchar(50) DEFAULT NULL,
  `cardNum` varchar(50) NOT NULL DEFAULT '0',
  `cardExpDate` varchar(50) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- Data output was not selected

-- table structure dump qbcoreframework_c8b2c9.st_banking_dailyspents
CREATE TABLE IF NOT EXISTS `st_banking_dailyspents` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `owner` varchar(50) NOT NULL DEFAULT '0',
  `data` longtext NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- Data output was not selected

-- table structure dump qbcoreframework_c8b2c9.st_banking_history
CREATE TABLE IF NOT EXISTS `st_banking_history` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `owner` varchar(50) DEFAULT NULL,
  `name` varchar(50) NOT NULL DEFAULT '0',
  `value` int(11) NOT NULL DEFAULT 0,
  `date` varchar(50) NOT NULL DEFAULT '0',
  `type` varchar(50) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=92 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- Data output was not selected

-- table structure dump qbcoreframework_c8b2c9.st_banking_ibans
CREATE TABLE IF NOT EXISTS `st_banking_ibans` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `owner` varchar(50) NOT NULL DEFAULT '0',
  `iban` varchar(50) NOT NULL DEFAULT '0',
  `cid` varchar(50) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- Data output was not selected

-- table structure dump qbcoreframework_c8b2c9.st_banking_loans
CREATE TABLE IF NOT EXISTS `st_banking_loans` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `owner` varchar(50) NOT NULL DEFAULT '0',
  `loanName` varchar(50) NOT NULL DEFAULT '0',
  `loanAmount` int(11) NOT NULL DEFAULT 0,
  `loanBank` varchar(50) NOT NULL DEFAULT '0',
  `date` int(25) NOT NULL DEFAULT 0,
  `dueAmount` int(11) DEFAULT NULL,
  `date2` varchar(50) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=18 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- Data output was not selected

-- table structure dump qbcoreframework_c8b2c9.st_banking_societies
CREATE TABLE IF NOT EXISTS `st_banking_societies` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(50) NOT NULL DEFAULT '0',
  `label` varchar(50) NOT NULL DEFAULT '0',
  `balance` int(11) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- Data output was not selected

/*!40103 SET TIME_ZONE=IFNULL(@OLD_TIME_ZONE, 'system') */;
/*!40101 SET SQL_MODE=IFNULL(@OLD_SQL_MODE, '') */;
/*!40014 SET FOREIGN_KEY_CHECKS=IFNULL(@OLD_FOREIGN_KEY_CHECKS, 1) */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40111 SET SQL_NOTES=IFNULL(@OLD_SQL_NOTES, 1) */;

```

5. After running the SQL, go ahead and configure the script to your liking by changing the language in the config and so on.&#x20;
6. Enjoy the script.

If you face any difficulties, you can contact us anytime on our Discord by creating a support ticket.

Discord: <https://discord.gg/storm-dev>
