Installation
Prerequisities
Step 1: Installing the dependencies
Step 2: Configure the Database
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
Step 4: Configuration
Step 5: Permissions
Step 6: Start using our script
Last updated