Page cover image

Installation guide

Welcome to the Brutal Banking installation guide, here you can learn how to completely install our asset.


Asset download

  • Put the script folder to your server.

  • Start the script in the server.cfg. (ensure brutal_banking)

  • Restart your server! (And you get permission to use the script)

Upload the SQL

In your localhost or heidisql database you must execute this sql, with this we will automatically eliminate the existing tables and columns and replace them with the current ones from Quasar Inventory. If you want to edit something in these events, you can do so but at your own risk, do not forget to fully read the notices above this message.

CREATE TABLE IF NOT EXISTS `brutal_banking_accounts` (
  `account_id` text DEFAULT NULL,
  `identifier` text DEFAULT NULL,
  `pincode` text DEFAULT NULL,
  `accounts` text DEFAULT NULL,
  `partners` text DEFAULT NULL,
  `account_name` text DEFAULT NULL,
  `iban` text DEFAULT NULL,
  `created` text DEFAULT NULL,
  `transactions` text DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

CREATE TABLE IF NOT EXISTS `brutal_banking_sub_accounts` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `account_id` text DEFAULT NULL,
  `account_name` text DEFAULT NULL,
  `owner` text DEFAULT NULL,
  `owner_name` text DEFAULT NULL,
  `balance` int(50) DEFAULT NULL,
  `created` text DEFAULT NULL,
  `iban` text DEFAULT NULL,
  `permissions` text DEFAULT NULL,
  `transactions` text DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=0 DEFAULT CHARSET=utf8;

Asset positioning

-- First we will start the cores, never below
ensure es_extended or qb-core

-- The Notify / TextUI / Progressbar / Inventory / Banking have to be above our asset
ensure [notify]
ensure [textui]
ensure [inventory]

-- Start the Brutal Banking at the end
ensure brutal_banking

Setting up the Webhook

If you want to use the opportunnities which can be given by a webhook then you will have to set it up in our assets. You can do it by changeing a value to your discord webhook in the sv-utils.lua file.

Discord Webhook

Setting the loaded event

In the client-core.lua file go to the LoadedEvent variable and if you are using a different event then paste there your event which is used on your server.

client-core.lua

Checking the Config file

Please make sure that you go through the whole file during the installation and check everything. It is one of the most important things as if you miss this step the script might won't work propetly.

Most important steps

The most important things always at the top of the config so pay the most attencion to these elements.

Setting the Core

Set your server's core wether it's using es_extended or qb-core, other cores aren't supported .

Setting the Notify

If you are using the Brutal Notify then it is good news, you don't have to do anything. If you aren't then set the BrutalNotify value to false in the config and set up your own notify in the cl-utils.lua


Editing framework


If you got any error

If you followed the installational guide and the script still don't work or you get any errors the please check the common errors, here in the docs and in our discord server, for more informations.

Last updated

Was this helpful?