Var FiveM
SkryptyPakietySubskrypcjeDokumentacja
VAR
Var FiveM
SkryptyPakietySubskrypcjeDokumentacja
Kreator motywuO nasKontakt
Kup teraz

-- 28 sections

  • ›paintball
    • configuration
    • features
    • anti-cheat-integration
    • game-modes
    • api
    • arenas
    • command
    • config
  • ›chess
    • configuration
    • events
    • integration-example
    • exports
    • controls
    • config
  • ›supermarket simulator
    • configuration
    • catalog-manager
    • commands-and-permissions
    • props-editors
    • owning-and-running-a-store
    • config
  • ›coins shop
    • configuration
    • identifier
    • export
    • server-event
    • languages
    • products
    • delivery
    • owner-panel
    • webhooks-discord
  • ›clothes shop
    • installation
    • configuration
    • blips-marker
    • translate
    • change-cam-and-pos
  • ›casino
    • installation
    • configuration
    • main-config
    • horse
    • lucky-whell
    • translate
  • ›drugs
    • installation
    • configuration
    • labs-and-interiors
    • maintenance-and-modules
    • missions
    • street-selling
    • administration
  • ›clothes shop v2
    • installation
    • configuration
    • position
    • advice-and-troubleshooting
    • configure-clothing-shops
  • ›interaction
    • configuration
    • public-api
    • interaction-config-reference
    • dialog-system
  • ›emote
    • configuration
    • config
    • adding-emote
    • menu
    • keybind
    • modules
    • 3d-placement
    • playlist
    • wheel
    • shared-emotes
  • ›crew
    • installation
    • export
  • ›alert job
    • installation
    • server-export
  • ›pin code
    • installation
    • export
  • ›society manager
    • installation
    • export
    • configuration
    • translate
    • max-salary
    • last-invoice
  • ›property
    • installation
    • configuration
    • translate
    • add-interior
  • ›barber shop
    • installation
    • configuration
    • change-menu-open-source
    • blips
    • translate
    • add-shop
  • ›shop with basket
    • installation
    • configuration
    • item-category-config
    • blips-marker
    • translate
    • add-shop
  • ›tattoo shop
    • installation
    • configuration
    • edit-tattoo
    • blips-marker
    • translate
    • add-shop
  • ›gardener job
    • installation
    • configuration
    • change-pos-farm
    • blips
    • translate
  • ›heist atm
    • installation
    • configuration
    • event-money
    • translate
    • police-alert
  • ›heist fleeca
    • installation
    • configuration
    • translate
    • pos-fleeca-heist
  • ›poster job
    • installation
    • configuration
    • change-pos-farm
    • change-poster-texture
    • blips-marker
    • translate
  • ›loading screen
    • installation
    • configuration
  • ›bank
    • installation
    • configuration
    • position
    • blips
    • translate
    • society
  • ›autocardealer
    • installation
    • configuration
    • add-vehicles
    • translate
    • blips
    • coords
  • ›character creator
    • installation
    • configuration
    • translate
    • expression
    • spawn
  • ›multi character
    • installation
    • configuration
    • translate
    • change-character-creator
    • commands
  • ›bill
    • installation
    • configuration
    • translate
    • control

~/docs/bank/installation

bank docs›
  • installation
  • configuration
  • configuration/position
  • configuration/blips
  • configuration/translate
  • configuration/society

Bank

Installation

-- 4 steps · 3 code blocks · 1 min read

get var-banktry it on the test server
inote

Installing this resource is like any other resource only verified that you have the required dependencies

01step

Connect via this site: https://keymaster.fivem.net/ with your CFX account to which your purchase was made on the store https://www.var-fivem.com/

02step

Go to the Granted Assets category and download the most recent version of the Bank

03Add the SQL file to your database

sql
CREATE TABLE `bank_user` (
  `id` varchar(36) NOT NULL,
  `identifier` varchar(255) NOT NULL,
  `firstname` varchar(255) NOT NULL,
  `lastname` varchar(255) NOT NULL,
  `email` varchar(255) NOT NULL,
  `password` varchar(255) NOT NULL,
  `beneficiaries` longtext DEFAULT '{}',
  `iban` longtext DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

ALTER TABLE `bank_user`
  ADD PRIMARY KEY (`email`);

CREATE TABLE `bank_transactions` (
  `id` int(11) NOT NULL,
  `receiver_identifier` varchar(255) DEFAULT NULL,
  `receiver_name` varchar(255) DEFAULT NULL,
  `receiver_email` varchar(255) DEFAULT NULL,
  `sender_identifier` varchar(255) DEFAULT NULL,
  `sender_name` varchar(255) DEFAULT NULL,
  `sender_email` varchar(255) DEFAULT NULL,
  `date` varchar(255) DEFAULT NULL,
  `value` int(50) DEFAULT NULL,
  `type` varchar(255) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

ALTER TABLE `bank_transactions`
  ADD PRIMARY KEY (`id`);

ALTER TABLE `bank_transactions`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=19;

CREATE TABLE `societies` (
  `id` int(11) NOT NULL,
  `label` varchar(255) DEFAULT NULL,
  `society_name` varchar(255) DEFAULT NULL,
  `value` int(50) DEFAULT NULL,
  `iban` varchar(255) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

ALTER TABLE `societies`
  ADD PRIMARY KEY (`id`);

ALTER TABLE `societies`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;
COMMIT;

04step

Once the download is complete, unzip the file and drag it into the resources folder of your server

!warning

If you added the resource while your server was already running, remember to do the refresh command and then ensure the resource

powershell
refresh
code
ensure Var-Bank
nextconfiguration

-- on this page

  1. 01step
  2. 02step
  3. 03add the sql file to your database
  4. 04step
VAR
Var FiveM

Skrypty FiveM premium. Niski resmon, wysoka jakość. Stworzone dla ESX, QBCore i Standalone.

28skrypty
1,500+sprzedaze

Skrypty

  • Marketplace
  • Pakiety
  • Subskrypcje
  • Kreator motywu

Najpopularniejsze

  • Supermarket Simulator
  • FiveM Casino Script
  • FiveM Coin Shop
  • FiveM Emote Menu
  • FiveM Paintball Script

Zasoby

  • Free Scripts
  • Guides
  • Dokumentacja
  • Wsparcie

Firma

  • O nas
  • Kontakt
  • Discord

Informacje prawne

  • Regulamin
  • Prywatność
  • Zwroty

© 2026 Var FiveM. Wszystkie sprzedaze sa ostateczne.

Płatności obsługujeTebex