For the complete documentation index, see llms.txt. This page is also available as Markdown.

Legacy Docs (V1)

YouTube Video

Installation Guide

Execute the following SQL code in your database:

CREATE TABLE `okokbanking_transactions`	(
    `id` int(11) NOT NULL AUTO_INCREMENT,
    `receiver_identifier` varchar(255) NOT NULL,
    `receiver_name` varchar(255) NOT NULL,
    `sender_identifier` varchar(255) NOT NULL,
    `sender_name` varchar(255) NOT NULL,
    `date` varchar(255) NOT NULL,
    `value` int(50) NOT NULL,
    `type` varchar(255) NOT NULL,
    PRIMARY KEY (`id`)
);

CREATE TABLE `okokbanking_societies`	(
    `society` varchar(255) NULL DEFAULT NULL,
    `society_name` varchar(255) NULL DEFAULT NULL,
    `value` int(50) NULL DEFAULT NULL,
    `iban` varchar(255) NOT NULL,
    `is_withdrawing` int(1) NULL DEFAULT NULL
);

If using ESX, execute the following code as well:

If using QBCore, execute the following code:

[QBCore] If using management funds:

[QBCore] If not using management funds:

QBCORE ONLY

Navigate to qb-core/server/player.lua and add the following code underneath function self.Functions.SetJobDuty(onDuty) ... end:

Exports

Server artifacts

Make sure your server artifacts version is above the 5181.

Last updated