This is one of the most important parts, since without the dependencies, the resource will never work or not start, here we will list the dependencies with their respective links for you to download and add them to your server.
Step 2 โก Resources in server.cfg
if you are using ESX โก NEVER, but NEVER, you must place the resources above es_extended, if you do this they will never work and will throw errors
The correct order of the resources is as follows, always keeping es_extended and its cores above, but the other normal resources below
ensure sfbanking
if you are using QBCore framework remove the qb-atms, qb-banking and qb-crypto resource.
Step 3 โก Database
Run query/SQL query and paste below code
CREATETABLEIFNOTEXISTS`sfbanking` (`id`int(11) NOT NULL,`cid`varchar(64) NOT NULL,`bank_number`int(11) NOT NULLDEFAULT0,`bank_amount`int(32) NOT NULLDEFAULT0,`crypto_number`int(11) NOT NULLDEFAULT0,`crypto_amount`textNOT NULLDEFAULT ('[]'),`business`varchar(16) DEFAULTNULL) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;CREATETABLEIFNOTEXISTS`sfbanking_logs` (`id`int(11) NOT NULL,`number`int(11) DEFAULTNULL,`tonumber`int(11) NOT NULL,`amount`int(11) DEFAULTNULL,`reason`varchar(256) DEFAULTNULL,`type`int(11) NOT NULLDEFAULT0,`date`varchar(64) NOT NULL) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;CREATETABLEIFNOTEXISTS`sfbanking_cryptologs` (`id`int(11) NOT NULL,`number`int(11) DEFAULTNULL,`tonumber`int(11) NOT NULL,`amount`floatDEFAULTNULL,`currency`varchar(11) NOT NULL,`type`int(11) NOT NULLDEFAULT0,`date`varchar(64) NOT NULL) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;CREATETABLE `sfbanking_access` (`id`int(11) NOT NULL,`playerid`varchar(64) NOT NULL,`bank_number`int(16) DEFAULTNULL,`crypto_number`int(16) DEFAULTNULL) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;ALTERTABLE`sfbanking`ADDPRIMARY KEY (`id`);ALTERTABLE`sfbanking`MODIFY`id`int(11) NOT NULL AUTO_INCREMENT;ALTERTABLE`sfbanking_logs`ADDPRIMARY KEY (`id`);ALTERTABLE`sfbanking_logs`MODIFY`id`int(11) NOT NULL AUTO_INCREMENT;ALTERTABLE`sfbanking_cryptologs`ADDPRIMARY KEY (`id`);ALTERTABLE`sfbanking_cryptologs`MODIFY`id`int(11) NOT NULL AUTO_INCREMENT;ALTERTABLE`sfbanking_access`ADDPRIMARY KEY (`id`);ALTERTABLE`sfbanking_access`MODIFY`id`int(11) NOT NULL AUTO_INCREMENT;