NaLajcie Scripts
  • NaLajcie Scripts
  • PAID SCRIPTS
    • Nalajcie - Boombox
      • Installation
      • Dependencies
    • NaLajcie - Guitar System
      • Installation
      • Dependencies
    • NaLajcie - Hostage Card
      • Installation
      • Dependencies
    • NaLajcie - Weed System
      • Installation
      • Dependencies
  • FREE SCRIPTS
    • NaLajcie - Notepad
      • Installation
      • Dependencies
    • NaLajcie - Extras Menu
      • Installation
      • Dependencies
Powered by GitBook
On this page
  1. PAID SCRIPTS
  2. NaLajcie - Weed System

Installation

PreviousNaLajcie - Weed SystemNextDependencies

Last updated 8 months ago

Resource must be named nalajcie_weed to work properly.

  1. Ensure all dependencies are installed

Be sure all are installed, running, and utilizing the latest versions available.

  1. Edit config

Configure the script to your servers needs, everything can be customized!

Just add it to your items ( ox_inventory/data/items.lua )

	['plantpot'] = {
		label = 'Pot',
		weight = 150,
		stack = false,
		consume = 0
	},

	['plantpot_ground'] = {
		label = 'Flower pot with ground',
		weight = 300,
		stack = false,
		consume = 0
	},

	['weedscissors'] = {
		label = 'Scissors',
		weight = 100,
		stack = false,
		consume = 0
	},

	['shovel'] = {
		label = 'Shovel',
		weight = 100,
		stack = false,
		consume = 0
	},

	['ground'] = {
		label = 'Ground',
		weight = 150,
		stack = false,
		consume = 0
	},

	['lighter'] = {
		label = 'Lighter',
		weight = 80,
		stack = true,
		consume = 0
	},

	['lemon_grinder'] = {
		label = 'Grinder',
		weight = 120,
		stack = true,
		consume = 0
	},

	['plant_fertilizer'] = {
		label = 'Fertilizer',
		weight = 200,
		stack = true,
		consume = 0
	},

	['ogkush_seed'] = {
		label = 'Seed OGKush',
		weight = 20,
		stack = true,
		consume = 0,
		client = {
			export = 'nalajcie_plant.ogkush_seed'
		}
	},

	['ogkush_top'] = {
		label = 'Top OGKush',
		weight = 10,
		stack = true,
		consume = 0,
		client = {
			export = 'nalajcie_plant.ogkush_top'
		}
	},

	['ogkush_gram'] = {
		label = 'Gram OGKush',
		weight = 1,
		stack = true,
		consume = 0
	},

	['rainbowbelts_seed'] = {
		label = 'Seed Rainbow Belts',
		weight = 20,
		stack = true,
		consume = 0,
		client = {
			export = 'nalajcie_plant.rainbowbelts_seed'
		}
	},

	['rainbowbelts_top'] = {
		label = 'Top Rainbow Belts',
		weight = 10,
		stack = true,
		consume = 0,
		client = {
			export = 'nalajcie_plant.rainbowbelts_top'
		}
	},

	['rainbowbelts_gram'] = {
		label = 'Gram Rainbow Belts',
		weight = 1,
		stack = true,
		consume = 0
	},
dependencies