Installation

1. Download Resource
2. Download Dependencies
3. Insert table in DB
4. Start Resource
Last updated

Last updated
CREATE TABLE IF NOT EXISTS `dex_banking` (
`id` INT NOT NULL AUTO_INCREMENT,
`identifier` VARCHAR(64) NOT NULL,
`banco` VARCHAR(64) NOT NULL,
`saldo` INT DEFAULT 0,
`ouro` INT DEFAULT 0,
`congelada` TINYINT(1) DEFAULT 0,
PRIMARY KEY (`id`),
UNIQUE KEY `identifier_banco_unique` (`identifier`, `banco`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
-- ACCOUNT OF CENTRAL MONEY | ACCOUNT WHERE ALL THE FEES GET IN
INSERT INTO dex_banking (identifier, banco, saldo) VALUES ('TESOURO_SYSTEM', 'tesouro', 0)-- IF YOU NEED TO DELETE ANY SAFE FROM DATABASE FOR SOME REASON
DELETE FROM character_inventories WHERE inventory_type = 'dex_bank_safe_(bank)_(indentifier)';
-- Example
DELETE FROM character_inventories WHERE inventory_type = 'dex_bank_safe_valentine_steam:000000000000000';ensure oxmysl #Example, oxmysql has to start first
ensure vorp_core # Example, here is your framework
ensure vorp_menu # Example, dependencies
ensure vorp_inputs
ensure vorp_inventory
# Dex Resources
ensure Dex_Banking