Installation

Follow these steps to install this resource to your server.

  1. Ensure you have all dependencies installed.

  2. Extract the resource.

  3. Configure the resource to your liking. (See Configuration for help)

  4. Add the items to the resource of your choice using the guide below.

  5. Place the extracted resource in your resources directory.

  6. Import the included gfg_plants.sql into your database.

  7. Add ensure gfg_plants to your server.cfg after the dependencies.

  8. Restart your server.

If you are using the default plants and items included in the config, you can check out the inventory folder for images and code snippets for ox and qb.

Adding Seeds

  1. Navigate to ox_inventory/data/items.lua

  2. Somewhere in your item list, add the entry below for each plant you'd like to have.

  3. Make sure the item name matches the seedItem in Config.Plants.

You can have whatever name or other item information you'd like, as long as the server export is 'gfg_drugtables.placeTable'

["weedseed"] = { label = "Weed Seed", weight = 1, description = "", stack = true, server = {export = 'gfg_plants.placePlant'} },

Adding Dead Plants

  1. Navigate to ox_inventory/data/items.lua

  2. Somewhere in your item list, add the entry below for each dead plant item you'd like to have.

  3. Make sure the item name matches the item name is the related Config.Plants.'name'.deadPlantItem

You can have whatever name or other item information you'd like.

["deadweedplant"] = { label = "Dead Weed Plant", weight = 500, description = "", stack = false},

Last updated