Frozen Wiki
Website
  • Documentation
  • 🔹Scripts
    • Frozen Medic Job
      • Installation
      • Dependencies
      • Exports
      • State Bags
      • Customizations
      • Common Issues
        • QBCore
    • Frozen Crutch
    • Frozen Scratch Ticket
      • Installations
    • Frozen Police Job
      • Installation
      • Dependencies
      • Exports
      • State Bags
      • Events
      • Customizations
    • Frozen Inventory
      • Features
      • Examples
      • Dependencies
      • Installation
        • v1.2 installation
    • Helicopter Camera
      • Adding custom helicopters
      • Moving the UI above the minimap
      • Adding controller inputs
      • Exports
      • Events
    • Frozen Poker
      • Installation
      • Dependencies
    • Frozen Fishing
      • Installation
      • Dependencies
      • Shop Items
      • Fishing Equipment Strength
    • Frozen Gym
      • Installation
      • Exports
        • Client Exports
        • Server Exports
  • 🔓Authorization
    • How to get authorized with license system?
Powered by GitBook
On this page
  1. Scripts
  2. Frozen Fishing

Shop Items

Configured shop for Ox Inventory

This only contains shop for ox_inventory which should be put in data/shops.lua but you can easily put it on your server's market for the specific inventory if you using other inventory type.

	FishingMarket = {
		name = 'Fishing Market',
		blip = {
			id = 317, colour = 69, scale = 0.5
		},
		 inventory = {
			{ name = 'magnumxlrod', price = 380, },
			{ name = 'zeusrod', price = 195, },
			{ name = 'brutasrod', price = 125, },
			{ name = 'nerorod', price = 85, },
			{ name = 'elementalrod', price = 45, },
			{ name = 'valuecastrod', price = 25, },
			{ name = 'zillareel', price = 290, },
			{ name = 'thunderreel', price = 230, },
			{ name = 'fishrusreel', price = 110, },
			{ name = 'rockbottomreel', price = 160, },
			{ name = 'linesnifferreel', price = 55, },
			{ name = 'brokeassreel', price = 25, },
			{ name = 'fish-finder', price = 750, },
			{ name = 'kingbraid', price = 150, },
			{ name = 'lightningbraid', price = 70, },
			{ name = 'noodlebraid', price = 50, },
			{ name = 'mobeymono', price = 30, },
			{ name = 'bitesizemono', price = 15, },
			{ name = 'cheapmono', price = 10, },
			{ name = 'towhook', price = 90, },
			{ name = 'no10', price = 30, },
			{ name = 'no6', price = 15, },
			{ name = 'no3', price = 12, },
			{ name = 'no2', price = 7, },
			{ name = 'no1', price = 5, },
			{ name = 'nightworms', price = 9, },
			{ name = 'redworms', price = 7, },
			{ name = 'mealworms', price = 7, },
			{ name = 'leech', price = 10, },
			{ name = 'waxworms', price = 15, },
			{ name = 'minnow', price = 20, },
			{ name = 'turtlemeat', price = 20, },
			{ name = 'tunameat', price = 5, },
			{ name = 'bread', price = 5, },
			{ name = 'crab', price = 25, },
			{ name = 'hugecutbait', price = 100, },
			{ name = 'bacon', price = 5, },
			{ name = 'maggots', price = 5, },
			{ name = 'technoplankton', price = 150, },
		}, locations = {
			vec3(-1831.78, -1204.16, 14.30),
		}, targets = {
			{
                ped = `a_m_m_eastsa_02`,
                scenario = 'WORLD_HUMAN_AA_COFFEE',
                loc = vec3(-1831.78, -1204.16, 14.30),
                heading = 138.89,
                distance = 5.0
            },
		}
	},
PreviousDependenciesNextFishing Equipment Strength

Last updated 1 year ago

🔹