Installation
Prerequisities
Before getting started, make sure you have the following:
A FiveM server with admin privileges
Access to your server’s database
A way to transfer files (FTP or direct file access)
We do NOT recommend using FileZilla — it has been known to corrupt script files frequently!
Step 1: Installing the dependencies
Our script requires 3 dependencies:
Step 2: Configure the Database
To ensure the script functions correctly, you’ll need to update your database. Execute the following SQL statements:
CREATE TABLE `users` (
`id` INT NOT NULL,
`owner` VARCHAR(46) COLLATE utf8mb3_general_ci DEFAULT NULL,
`upgrades` LONGTEXT COLLATE utf8mb3_general_ci DEFAULT NULL,
`password` BIGINT DEFAULT NULL,
`safePassword` INT DEFAULT NULL,
`blip` LONGTEXT COLLATE utf8mb3_general_ci DEFAULT NULL,
`lightsColor` VARCHAR(255) COLLATE utf8mb3_general_ci DEFAULT NULL,
`date` DATETIME DEFAULT NULL,
`clothes` LONGTEXT COLLATE utf8mb3_general_ci DEFAULT NULL,
PRIMARY KEY (`id`)
)
ENGINE=InnoDB
DEFAULT CHARSET=utf8mb3
COLLATE=utf8mb3_general_ci;Step 3: Downloading the Script
Download the script from your Keymaster.
Unzip the files into your resources folder (or any other folder you prefer).
Add the following line to your server.cfg:
Step 4: Configuration
Open the
shared/config.luafile inside the script folder.Adjust the settings to suit your preferences.
Step 5: Permissions
Open your server.cfg.
Add permission for command.storageAdminPanel
add_ace group.admin command.storageAdminPanel allowChange group.admin to your group
Step 6: Start using our script
Save all changes
Restart / Start your FiveM server
Last updated