
π SQL
To ensure the quest and XP system works as intended you must run or import the SQL file provided in the folder [SQL]
to your database. Failure to do so will result in errors when performing tasks
CREATE TABLE IF NOT EXISTS `diving_rep` (
`citizenid` varchar(50) NOT NULL,
`rep` int(11) DEFAULT 0,
`crates_searched` int(11) DEFAULT 0,
`salvagedCrates_opened` int(11) DEFAULT 0,
`claimed_quests` text DEFAULT NULL,
PRIMARY KEY (`citizenid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
Last updated