Installation
Prerequisities
Before getting started, make sure you have the following:
A FiveM server with admin privileges
Access to your server’s database
A way to transfer files (FTP or direct file access)
We do NOT recommend using FileZilla — it has been known to corrupt script files frequently!
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 `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
Download the script from your Keymaster.
Unzip the files into your resources folder (or any other folder you prefer).
Add the following line to your server.cfg:
ensure i_fishing
Step 4: Configuration
Open the
shared/config.luafiles inside the script folder.Adjust the settings to suit your preferences.
Step 6: Start using our script
Save all changes
Restart / Start your FiveM server
Last updated