About This File OKOK BANKING V2 LEAK FULLY FOR QB-CORE SHOULD BE WORKING (IF I MISSED A LINE IN THE SQL LMK)
mkjnjknjj99vbu9g9y 4 Posted April 12, 2024 Im retarded. here yalls sql just use this instead : 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 ); ALTER TABLE `users` ADD COLUMN `iban` varchar(255) NULL DEFAULT NULL; ALTER TABLE `users` ADD COLUMN `pincode` int(50) NULL DEFAULT NULL; 1
mkjnjknjj99vbu9g9y 4 Posted May 1, 2024 you didnt do the sql i sent above : Quote 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 ); ALTER TABLE `users` ADD COLUMN `iban` varchar(255) NULL DEFAULT NULL; ALTER TABLE `users` ADD COLUMN `pincode` int(50) NULL DEFAULT NULL;
Mandatti1 0 Posted December 26, 2025 (edited) I managed to make it work here, add what mkjnjknjj99vbu9g9y did to the 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 ); ALTER TABLE `users` ADD COLUMN `iban` varchar(255) NULL DEFAULT NULL; ALTER TABLE `users` ADD COLUMN `pincode` int(50) NULL DEFAULT NULL; Then the error "unnokowm column iban" appeared, add this line to your database: ALTER TABLE players ADD COLUMN iban VARCHAR(50) DEFAULT NULL; This should work. Ps. This is not version v2 of okokBanking.😀 Ps 2. I'm using NewQbcore, with the most up-to-date features. Edited December 26, 2025 by Mandatti1
Recommended Comments
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now