Installation
This page will give you the information you need to setup our fishing script.
Add items to ox_inventory
['fishing_rod'] = {
label = 'Fishing Rod',
weight = 1000,
stack = false,
close = true,
description = 'A fishing rod for people who are unexperienced in fishing.',
consume = 0.05,
client = {
event = 'vision-fishing:client:useRod'
}
},
['intermediate_rod'] = {
label = 'Intermediate Rod',
weight = 1200,
stack = false,
close = true,
description = 'A fishing rod for people who are experienced in fishing.',
consume = 0.02,
client = {
event = 'vision-fishing:client:useRod'
}
},
['pro_rod'] = {
label = 'Pro Rod',
weight = 1500,
stack = false,
close = true,
description = 'A fishing rod for people who are experts in fishing',
consume = 0.01,
client = {
event = 'vision-fishing:client:useRod'
}
},
['breadcrumbs_bait'] = {
label = 'Breadcrumbs',
weight = 5,
stack = true,
},
['worm_bait'] = {
label = 'Worm',
weight = 5,
stack = true,
},
['bass'] = {
label = 'Bass',
weight = 500,
stack = true,
close = true,
description = 'A fish that is caught in fresh water.'
},
['carp'] = {
label = 'Carp',
weight = 500,
stack = true,
close = true,
description = 'A fish that is caught in fresh water.'
},
['catfish'] = {
label = 'Catfish',
weight = 2500,
stack = true,
close = true,
description = 'A fish that is caught in fresh water.'
},
['pike'] = {
label = 'Pike',
weight = 2500,
stack = true,
close = true,
description = 'A fish that is caught in fresh water.'
},
['trout'] = {
label = 'Trout',
weight = 400,
stack = true,
close = true,
description = 'A fish that is caught in fresh water.'
},
['salmon'] = {
label = 'Salmon',
weight = 800,
stack = true,
close = true,
description = 'A fish that can be caught in fresh water and salt water.'
},
['sturgeon'] = {
label = 'Sturgeon',
weight = 800,
stack = true,
close = true,
description = 'A fish that can be caught in fresh water.'
},
['cod'] = {
label = 'Cod',
weight = 600,
stack = true,
close = true,
description = 'A fish that is caught in salt water.'
},
['mackerel'] = {
label = 'Mackerel',
weight = 300,
stack = true,
close = true,
description = 'A fish that is caught in salt water.'
},
['flounder'] = {
label = 'Flounder',
weight = 400,
stack = true,
close = true,
description = 'A fish that is caught in salt water.'
},
['tuna'] = {
label = 'Tuna',
weight = 400,
stack = true,
close = true,
description = 'A fish that is caught in salt water.'
},
['shark'] = {
label = 'Shark',
weight = 5000,
stack = false,
close = true,
description = 'A lot of shark meat, but it is illegal to have.'
},
['turtle'] = {
label = 'Turtle',
weight = 3000,
stack = false,
close = true,
description = 'Illegal to have, it is an endangered species'
},
['whale_oil'] = {
label = 'Whale Oil',
weight = 800,
stack = false,
close = true,
description = 'Illegal to have, because it is made from an endangered species.'
},Add new types of fish (optional)
Add new rod types (optional)
Last updated