Installation

Follow these steps to install this resource to your server.

  1. Ensure you have all dependencies.

  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_crafting.sql into your database.

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

  8. Restart your server.

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

Adding Benches

  1. Navigate to ox_inventory/data/items.lua

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

  3. Make sure the item name matches the benchItem in Config.Benches.

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

["showcasebench"] = { label = "Showcase Bench", weight = 1000, description = "", stack = false, server = {export = 'gfg_crafting.placeBench'} },

Adding Ingredients and crafted items

  1. Navigate to ox_inventory/data/items.lua

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

  3. Make sure the item name matches the related item name in the config.

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

["crafteditem1"] = { label = "Crafted item 1", weight = 200, description = "", stack = true },

Last updated