Installation

Dependencies

QBCore Framework ox_lib ps-ui - (https://github.com/Project-Sloth/ps-ui) progressbar


How to install

Add the following item to yourinventory/data/items.lua QBCore users to qbcore/shared/items.lua Add the item image to your inventory/images

If you are using a different inventory then literally create the same items for your custom inventory.

-- Fishing
["olta"] 	    = {["name"] = "olta", 		["label"] = "Fishing Rod", 	            ["weight"] = 100, 		["type"] = "item", 		["image"] = "olta.png", 	            ["unique"] = false, 	["useable"] = true, 	["shouldClose"] = true,	   ["combinable"] = nil,   ["description"] = ""},
["fish"] 	    = {["name"] = "fish", 		["label"] = "Fish", 	            ["weight"] = 150, 		["type"] = "item", 		["image"] = "fish.png", 	            ["unique"] = false, 	["useable"] = true, 	["shouldClose"] = true,	   ["combinable"] = nil,   ["description"] = ""},
["shark"] 	    = {["name"] = "shark", 		["label"] = "Shark", 	    ["weight"] = 1500, 		["type"] = "item", 		["image"] = "shark.png", 	            ["unique"] = false, 	["useable"] = true, 	["shouldClose"] = true,	   ["combinable"] = nil,   ["description"] = ""},
["yengec"] 	    = {["name"] = "yengec", 		["label"] = "Crab", 	            ["weight"] = 100, 		["type"] = "item", 		["image"] = "yengec.png", 	            ["unique"] = false, 	["useable"] = true, 	["shouldClose"] = true,	   ["combinable"] = nil,   ["description"] = ""},
["athapot"] 	    = {["name"] = "athapot", 		["label"] = "Octopus", 	            ["weight"] = 200, 		["type"] = "item", 		["image"] = "ahtapot.png", 	            ["unique"] = false, 	["useable"] = true, 	["shouldClose"] = true,	   ["combinable"] = nil,   ["description"] = ""},

Last updated