square-userBasic configuration

1

Download the file from your CFX portal

2

Extract the script and configure it to your liking in the Setting.lua file

3

Add the database according to your framework

ALTER TABLE users ADD COLUMN roulette_last_spin INT DEFAULT 0;

CREATE TABLE `jotadev_pausemenu_announce` (
    `id` INT NOT NULL AUTO_INCREMENT,
    `image` VARCHAR(255) NOT NULL,
    `title` VARCHAR(150) NOT NULL,
    `description` TEXT NOT NULL,
    `published_at` DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP,
    PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
4

Configure your language

If your language isn't listed here, you can add it or even open a ticket and we'll add it for you!

--[[  
Configure your language using the following:
    'es' -> Spanish
    'en' -> English
    'fr' -> French
    'de' -> German
    'it' -> Italian
    'pt' -> Portuguese
]]
Config.Locale = 'en' 
5

Last updated