TxglsScripting
  • 🔊txgls-loadscreen
    • Index.html
  • 🍖txgls-butcherjob
    • config.lua
    • ox_inventory
    • qb-inventory
    • okokNotify
  • 🧑‍🌾txgls-farmingjob
    • config.lua
    • ox_inventory
    • qb-inventory
    • farming_data.sql
Powered by GitBook
On this page
  1. txgls-farmingjob

ox_inventory

['farming_hoe'] = {
    label = 'Farming Hoe',
    weight = 2500,
    stack = false,
    close = true,
    description = 'A sturdy hoe for farming wheat and barley crops',
    client = {
        image = 'farming_hoe.png',
    }
},

['farming_shovel'] = {
    label = 'Farming Shovel',
    weight = 2800,
    stack = false,
    close = true,
    description = 'A heavy-duty shovel for digging up potatoes and carrots',
    client = {
        image = 'farming_shovel.png',
    }
},

['farming_rake'] = {
    label = 'Farming Rake',
    weight = 1800,
    stack = false,
    close = true,
    description = 'A rake for preparing soil and maintaining crops',
    client = {
        image = 'farming_rake.png',
    }
},

['farming_watering_can'] = {
    label = 'Watering Can',
    weight = 1200,
    stack = false,
    close = true,
    description = 'A watering can for irrigating crops',
    client = {
        image = 'farming_watering_can.png',
    }
},

['wheat'] = {
    label = 'Wheat',
    weight = 100,
    stack = true,
    close = true,
    description = 'Fresh wheat harvested from the fields',
    client = {
        image = 'wheat.png',
    }
},

['barley'] = {
    label = 'Barley',
    weight = 120,
    stack = true,
    close = true,
    description = 'Fresh barley harvested from the fields',
    client = {
        image = 'barley.png',
    }
},

['potato'] = {
    label = 'Potato',
    weight = 150,
    stack = true,
    close = true,
    description = 'Fresh potatoes dug up from the soil',
    client = {
        image = 'potato.png',
    }
},

['carrot'] = {
    label = 'Carrot',
    weight = 80,
    stack = true,
    close = true,
    description = 'Fresh carrots pulled from the ground',
    client = {
        image = 'carrot.png',
    }
},

['flour'] = {
    label = 'Flour',
    weight = 50,
    stack = true,
    close = true,
    description = 'Fine flour made from processed wheat',
    client = {
        image = 'flour.png',
    }
},

['barley_flour'] = {
    label = 'Barley Flour',
    weight = 60,
    stack = true,
    close = true,
    description = 'Coarse flour made from processed barley',
    client = {
        image = 'barley_flour.png',
    }
},

['wheat_seeds'] = {
    label = 'Wheat Seeds',
    weight = 10,
    stack = true,
    close = true,
    description = 'Seeds for planting wheat crops',
    client = {
        image = 'wheat_seeds.png',
    }
},

['barley_seeds'] = {
    label = 'Barley Seeds',
    weight = 12,
    stack = true,
    close = true,
    description = 'Seeds for planting barley crops',
    client = {
        image = 'barley_seeds.png',
    }
},

['potato_seeds'] = {
    label = 'Potato Seeds',
    weight = 15,
    stack = true,
    close = true,
    description = 'Seed potatoes for planting new crops',
    client = {
        image = 'potato_seeds.png',
    }
},

['carrot_seeds'] = {
    label = 'Carrot Seeds',
    weight = 8,
    stack = true,
    close = true,
    description = 'Seeds for planting carrot crops',
    client = {
        image = 'carrot_seeds.png',
    }
},

['fertiliser'] = {
    label = 'Fertilizer',
    weight = 500,
    stack = true,
    close = true,
    description = 'Organic fertilizer to speed up crop growth',
    client = {
        image = 'fertiliser.png',
    }
},
Previousconfig.luaNextqb-inventory

Last updated 8 days ago

🧑‍🌾