Installation
Prerequisities
Step 1: Installing the dependencies
Step 2: Configure the Database
CREATE TABLE `iconic_fishing` (
`player` VARCHAR(50) COLLATE utf8mb4_unicode_ci NOT NULL,
`exp` INT NOT NULL,
`fished` VARCHAR(11000) COLLATE utf8mb4_unicode_ci NOT NULL,
`bestFish` VARCHAR(1000) COLLATE utf8mb4_unicode_ci NOT NULL,
`quests` JSON NOT NULL,
PRIMARY KEY (`player`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
CREATE TABLE `iconic_fishing_upgrades` (
`identifier` VARCHAR(46) COLLATE utf8mb4_unicode_ci NOT NULL,
`upgrades` JSON NOT NULL,
PRIMARY KEY (`identifier`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
Step 3: Downloading the Script
Step 4: Configuration
Step 6: Start using our script
Last updated