Installation

Basic installation instructions for this script

  • Ensure dependencies are installed and running before frozen-fishing

  • Place script in resources directory

  • Add the item images from INSTALLATION directory

  • Add item to your preferred inventory style with down below. ESX Inventory or QB Inventory or OX Inventory

  • Configure config.lua as you wish

ESX Inventory (SQL query)

/*--- REELS ----*/
INSERT INTO `items` (`name`, `label`) VALUES ('zillareel', 'Zilla Reel');
INSERT INTO `items` (`name`, `label`) VALUES ('thunderreel', 'Thunder Reel');
INSERT INTO `items` (`name`, `label`) VALUES ('fishrusreel', 'Fish R Us Reel');
INSERT INTO `items` (`name`, `label`) VALUES ('rockbottomreel', 'Rock Bottom Reel');
INSERT INTO `items` (`name`, `label`) VALUES ('linesnifferreel', 'LineSniffer Reel');
INSERT INTO `items` (`name`, `label`) VALUES ('brokeassreel', 'BrokeAss Reel');
INSERT INTO `items` (`name`, `label`) VALUES ('fish-finder', 'Fish Finder');

/*--- LINES -----*/
INSERT INTO `items` (`name`, `label`) VALUES ('kingbraid', 'KingBraid Line');
INSERT INTO `items` (`name`, `label`) VALUES ('lightningbraid', 'Lightning Braid');
INSERT INTO `items` (`name`, `label`) VALUES ('noodlebraid', 'NoodleBraid Line');
INSERT INTO `items` (`name`, `label`) VALUES ('mobeymono', 'Mobey Mono Line');
INSERT INTO `items` (`name`, `label`) VALUES ('bitesizemono', 'BiteSize Mono Line');
INSERT INTO `items` (`name`, `label`) VALUES ('cheapmono', 'Cheap Mono Line');


/*---- HOOKS -----*/ 
INSERT INTO `items` (`name`, `label`) VALUES ('towhook', 'Tow Hook');
INSERT INTO `items` (`name`, `label`) VALUES ('no10', '#10/0 Fish Hook');
INSERT INTO `items` (`name`, `label`) VALUES ('no6', '#6/0 Fish Hook');
INSERT INTO `items` (`name`, `label`) VALUES ('no3', '#3/0 Fish Hook');
INSERT INTO `items` (`name`, `label`) VALUES ('no2', '#2/0 Fish Hook');
INSERT INTO `items` (`name`, `label`) VALUES ('no1', '#1/0 Fish Hook');

/*--- RODS ---- */
INSERT INTO `items` (`name`, `label`) VALUES ('magnumxlrod', 'Magnum XL Rod');
INSERT INTO `items` (`name`, `label`) VALUES ('zeusrod', 'Zeus Rod');
INSERT INTO `items` (`name`, `label`) VALUES ('brutasrod', 'Brutas Rod');
INSERT INTO `items` (`name`, `label`) VALUES ('nerorod', 'Nero Rod');
INSERT INTO `items` (`name`, `label`) VALUES ('elementalrod', 'Elemental Rod');
INSERT INTO `items` (`name`, `label`) VALUES ('valuecastrod', 'Value Cast Rod');

/*---- BAIT -----*/
INSERT INTO `items` (`name`, `label`) VALUES ('nightworms', 'Bait: NightWorms');
INSERT INTO `items` (`name`, `label`) VALUES ('redworms', 'Bait: RedWorms');
INSERT INTO `items` (`name`, `label`) VALUES ('leech', 'Bait: Leech');
INSERT INTO `items` (`name`, `label`) VALUES ('minnow', 'Bait: Minnow');
INSERT INTO `items` (`name`, `label`) VALUES ('waxworms', 'Bait: WaxWorms');
INSERT INTO `items` (`name`, `label`) VALUES ('mealworms', 'Bait: MealWorms');
INSERT INTO `items` (`name`, `label`) VALUES ('turtlemeat', 'Bait: Turtle Meat');
INSERT INTO `items` (`name`, `label`) VALUES ('bread', 'Bait: Bread');
INSERT INTO `items` (`name`, `label`) VALUES ('crab', 'Bait: Crab');
INSERT INTO `items` (`name`, `label`) VALUES ('hugecutbait', 'Bait: Huge Cut Bait');
INSERT INTO `items` (`name`, `label`) VALUES ('bacon', 'Bait: Bacon');
INSERT INTO `items` (`name`, `label`) VALUES ('maggots', 'Bait: Maggots');
INSERT INTO `items` (`name`, `label`) VALUES ('technoplankton', 'Bait: Technoplankton');

/*---- FISH -----*/
INSERT INTO `items` (`name`, `label`) VALUES ('minnow', 'Fresh Caught: Minnow');
INSERT INTO `items` (`name`, `label`) VALUES ('crab', 'Fresh Caught: Crab');
INSERT INTO `items` (`name`, `label`) VALUES ('crappie', 'Fresh Caught: Crappie');
INSERT INTO `items` (`name`, `label`) VALUES ('garfish', 'Fresh Caught: Garfish');
INSERT INTO `items` (`name`, `label`) VALUES ('rainbowtrout', 'Fresh Caught: RainbowTrout');
INSERT INTO `items` (`name`, `label`) VALUES ('northernpike', 'Fresh Caught: NorthernPike');
INSERT INTO `items` (`name`, `label`) VALUES ('salmon', 'Fresh Caught: Salmon');
INSERT INTO `items` (`name`, `label`) VALUES ('stripedbass', 'Fresh Caught: Striped Bass');
INSERT INTO `items` (`name`, `label`) VALUES ('trout', 'Fresh Caught: Trout');
INSERT INTO `items` (`name`, `label`) VALUES ('pollock', 'Fresh Caught: Pollock');
INSERT INTO `items` (`name`, `label`) VALUES ('haddock', 'Fresh Caught: Haddock');
INSERT INTO `items` (`name`, `label`) VALUES ('tuna', 'Fresh Caught: Tuna');
INSERT INTO `items` (`name`, `label`) VALUES ('shark', 'Fresh Caught: Shark');
INSERT INTO `items` (`name`, `label`) VALUES ('dolphin', 'Fresh Caught: Dolphin');
INSERT INTO `items` (`name`, `label`) VALUES ('turtle', 'Fresh Caught: Turtle');
INSERT INTO `items` (`name`, `label`) VALUES ('whale', 'Fresh Caught: Whale');

QB Inventory (qb_core/shared/items.lua)

OX Inventory (ox_inventory/data/items.lua)

Last updated