desktop-arrow-downInstallation

Prerequisities

Before getting started, make sure you have the following:

  1. A FiveM server with admin privileges

  2. Access to your server’s database

  3. A way to transfer files (FTP or direct file access)

circle-exclamation

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

  1. Download the script from your Keymasterarrow-up-right.

  2. Unzip the files into your resources folder (or any other folder you prefer).

  3. Add the following line to your server.cfg:

Step 4: Configuration

  1. Open the shared/config.lua file inside the script folder.

  2. Adjust the settings to suit your preferences.

Step 5: Permissions

  1. Open your server.cfg.

  2. Add permission for command.storageAdminPanel

  3. add_ace group.admin command.storageAdminPanel allow

  4. Change group.admin to your group

Step 6: Start using our script

  1. Save all changes

  2. Restart / Start your FiveM server

Last updated