Installation
Follow the installation guide to successfully install the script.
Dependencies
Installation
Copy the images from images folder and paste it to your inventory location.
Copy the items below and paste it to your qb-core/shared/items.lua.
Locate the qb-inventory>html>js>app.js and search as FormatItemInfo. Then paste the code below to any place with starting elseif.
Items
--LX Fishing
["fishing_bait"] = {["name"] = "fishing_bait", ["label"] = "Bait", ["weight"] = 400, ["type"] = "item", ["image"] = "fishing_bait.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Fishing bait"},
["fishing_rod"] = {["name"] = "fishing_rod", ["label"] = "Fishing Rod", ["weight"] = 750, ["type"] = "item", ["image"] = "fishing_rod.png", ["unique"] = true, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "You want to get some fish huh? Then this is what you need to use!"},
["fishing_anchor"] = {["name"] = "fishing_anchor", ['label'] = "Boat Anchor", ["weight"] = 2500, ["type"] = "item", ["image"] = "fishing_anchor.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Boat Anchor"},
["fishing_icebox"] = {["name"] = "fishing_icebox", ["label"] = "Fishing Icebox", ["weight"] = 2500, ["type"] = "item", ["image"] = "fishing_icebox.png", ["unique"] = true, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Ice box for store your fishes"},
["fishing_bass"] = {["name"] = "fishing_bass", ["label"] = "Bass", ["weight"] = 1250, ["type"] = "item", ["image"] = "fishing_bass.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = ""},
["fishing_bluefish"] = {["name"] = "fishing_bluefish", ["label"] = "Bluefish", ["weight"] = 2500, ["type"] = "item", ["image"] = "fishing_bluefish.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = ""},
["fishing_cod"] = {["name"] = "fishing_cod", ['label'] = "Cod", ["weight"] = 2500, ["type"] = "item", ["image"] = "fishing_cod.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = ""},
["fishing_cat"] = {["name"] = "fishing_cat", ['label'] = "Catfish", ["weight"] = 2500, ["type"] = "item", ["image"] = "fishing_cat.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = ""},
["fishing_dolphin"] = {["name"] = "fishing_dolphin", ["label"] = "Dolphin", ["weight"] = 5000, ["type"] = "item", ["image"] = "fishing_dolphin.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = ""},
["fishing_flounder"] = {["name"] = "fishing_flounder", ["label"] = "Flounder", ["weight"] = 2500, ["type"] = "item", ["image"] = "fishing_flounder.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = ""},
["fishing_carp"] = {["name"] = "fishing_carp", ["label"] = "Carp", ["weight"] = 2500, ["type"] = "item", ["image"] = "fishing_carp.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = ""},
["fishing_mackerel"] = {["name"] = "fishing_mackerel", ['label'] = "Mackerel", ["weight"] = 2500, ["type"] = "item", ["image"] = "fishing_mackerel.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = ""},
["fishing_shark"] = {["name"] = "fishing_shark", ["label"] = "Shark", ["weight"] = 5000, ["type"] = "item", ["image"] = "fishing_shark.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = ""},
["fishing_whale"] = {["name"] = "fishing_whale", ["label"] = "Whale", ["weight"] = 15000, ["type"] = "item", ["image"] = "fishing_whale.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = ""},
["fishing_boot"] = {["name"] = "fishing_boot", ['label'] = "Boot", ["weight"] = 2500, ["type"] = "item", ["image"] = "fishing_boot.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = ""},
["fishing_chest"] = {["name"] = "fishing_chest", ["label"] = "Chest", ["weight"] = 2500, ["type"] = "item", ["image"] = "fishing_chest.png", ["unique"] = true, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = ""},
["fishing_lockbox"] = {["name"] = "fishing_lockbox", ["label"] = "Lockbox", ["weight"] = 2500, ["type"] = "item", ["image"] = "fishing_lockbox.png", ["unique"] = true, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = ""},
["fishing_key"] = {["name"] = "fishing_key", ["label"] = "Chest Key", ["weight"] = 2500, ["type"] = "item", ["image"] = "fishing_key.png", ["unique"] = true, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = ""},
["fishing_log"] = {["name"] = "fishing_log", ['label'] = "Log", ["weight"] = 2500, ["type"] = "item", ["image"] = "fishing_log.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = ""},
["fishing_tacklebox"] = {["name"] = "fishing_tacklebox", ["label"] = "Tacklebox", ["weight"] = 1000, ["type"] = "item", ["image"] = "fishing_tacklebox.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = ""},
["fishing_tin"] = {["name"] = "fishing_tin", ["label"] = "Tin", ["weight"] = 2500, ["type"] = "item", ["image"] = "fishing_tin.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = ""},
Inventory
else if (itemData.name == "fishing_icebox") {
$(".item-info-title").html('<p>' + itemData.label + ' ' + itemData.info.boxid + '</p>')
$(".item-info-description").html('<p><strong>Box Owner: </strong><span>' + itemData.info.boxOwner + '</span></p> Ice box for store your fishes');
Last updated