├── FUNDING.yml ├── README.md ├── __INSTALLATION ├── Images │ ├── broccoli.png │ ├── broccoli_raw.png │ ├── broccoli_seed.png │ ├── carrot.png │ ├── carrot_raw.png │ ├── carrot_seed.png │ ├── cocaine.png │ ├── cocaine_raw.png │ ├── cocaine_seed.png │ ├── corn.png │ ├── corn_raw.png │ ├── corn_seed.png │ ├── garden_pitcher.png │ ├── garden_shovel.png │ ├── heroin.png │ ├── heroin_raw.png │ ├── heroin_seed.png │ ├── pickle.png │ ├── pickle_raw.png │ ├── pickle_seed.png │ ├── potato.png │ ├── potato_raw.png │ ├── potato_seed.png │ ├── tomato.png │ ├── tomato_raw.png │ ├── tomato_seed.png │ ├── weed.png │ ├── weed_raw.png │ ├── weed_seed.png │ ├── wheat.png │ ├── wheat_raw.png │ └── wheat_seed.png └── Items │ ├── esx_limit.sql │ ├── esx_weight.sql │ ├── ox_inventory.lua │ └── qbcore.lua ├── bridge ├── esx │ ├── client.lua │ └── server.lua ├── qb │ ├── client.lua │ └── server.lua └── standalone │ ├── client.lua │ └── server.lua ├── config.lua ├── core ├── client.lua ├── server.lua └── shared.lua ├── fxmanifest.lua ├── locales ├── locale.lua └── translations │ ├── de.lua │ ├── en.lua │ ├── es.lua │ ├── fr.lua │ └── pt-br.lua └── modules ├── exchange ├── client.lua └── server.lua ├── materials └── shared.lua └── plants ├── client.lua └── server.lua /FUNDING.yml: -------------------------------------------------------------------------------- 1 | custom: ["https://www.buymeacoffee.com/PickleMods"] 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PickleModifications/pickle_farming/HEAD/README.md -------------------------------------------------------------------------------- /__INSTALLATION/Images/broccoli.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PickleModifications/pickle_farming/HEAD/__INSTALLATION/Images/broccoli.png -------------------------------------------------------------------------------- /__INSTALLATION/Images/broccoli_raw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PickleModifications/pickle_farming/HEAD/__INSTALLATION/Images/broccoli_raw.png -------------------------------------------------------------------------------- /__INSTALLATION/Images/broccoli_seed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PickleModifications/pickle_farming/HEAD/__INSTALLATION/Images/broccoli_seed.png -------------------------------------------------------------------------------- /__INSTALLATION/Images/carrot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PickleModifications/pickle_farming/HEAD/__INSTALLATION/Images/carrot.png -------------------------------------------------------------------------------- /__INSTALLATION/Images/carrot_raw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PickleModifications/pickle_farming/HEAD/__INSTALLATION/Images/carrot_raw.png -------------------------------------------------------------------------------- /__INSTALLATION/Images/carrot_seed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PickleModifications/pickle_farming/HEAD/__INSTALLATION/Images/carrot_seed.png -------------------------------------------------------------------------------- /__INSTALLATION/Images/cocaine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PickleModifications/pickle_farming/HEAD/__INSTALLATION/Images/cocaine.png -------------------------------------------------------------------------------- /__INSTALLATION/Images/cocaine_raw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PickleModifications/pickle_farming/HEAD/__INSTALLATION/Images/cocaine_raw.png -------------------------------------------------------------------------------- /__INSTALLATION/Images/cocaine_seed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PickleModifications/pickle_farming/HEAD/__INSTALLATION/Images/cocaine_seed.png -------------------------------------------------------------------------------- /__INSTALLATION/Images/corn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PickleModifications/pickle_farming/HEAD/__INSTALLATION/Images/corn.png -------------------------------------------------------------------------------- /__INSTALLATION/Images/corn_raw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PickleModifications/pickle_farming/HEAD/__INSTALLATION/Images/corn_raw.png -------------------------------------------------------------------------------- /__INSTALLATION/Images/corn_seed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PickleModifications/pickle_farming/HEAD/__INSTALLATION/Images/corn_seed.png -------------------------------------------------------------------------------- /__INSTALLATION/Images/garden_pitcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PickleModifications/pickle_farming/HEAD/__INSTALLATION/Images/garden_pitcher.png -------------------------------------------------------------------------------- /__INSTALLATION/Images/garden_shovel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PickleModifications/pickle_farming/HEAD/__INSTALLATION/Images/garden_shovel.png -------------------------------------------------------------------------------- /__INSTALLATION/Images/heroin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PickleModifications/pickle_farming/HEAD/__INSTALLATION/Images/heroin.png -------------------------------------------------------------------------------- /__INSTALLATION/Images/heroin_raw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PickleModifications/pickle_farming/HEAD/__INSTALLATION/Images/heroin_raw.png -------------------------------------------------------------------------------- /__INSTALLATION/Images/heroin_seed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PickleModifications/pickle_farming/HEAD/__INSTALLATION/Images/heroin_seed.png -------------------------------------------------------------------------------- /__INSTALLATION/Images/pickle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PickleModifications/pickle_farming/HEAD/__INSTALLATION/Images/pickle.png -------------------------------------------------------------------------------- /__INSTALLATION/Images/pickle_raw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PickleModifications/pickle_farming/HEAD/__INSTALLATION/Images/pickle_raw.png -------------------------------------------------------------------------------- /__INSTALLATION/Images/pickle_seed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PickleModifications/pickle_farming/HEAD/__INSTALLATION/Images/pickle_seed.png -------------------------------------------------------------------------------- /__INSTALLATION/Images/potato.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PickleModifications/pickle_farming/HEAD/__INSTALLATION/Images/potato.png -------------------------------------------------------------------------------- /__INSTALLATION/Images/potato_raw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PickleModifications/pickle_farming/HEAD/__INSTALLATION/Images/potato_raw.png -------------------------------------------------------------------------------- /__INSTALLATION/Images/potato_seed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PickleModifications/pickle_farming/HEAD/__INSTALLATION/Images/potato_seed.png -------------------------------------------------------------------------------- /__INSTALLATION/Images/tomato.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PickleModifications/pickle_farming/HEAD/__INSTALLATION/Images/tomato.png -------------------------------------------------------------------------------- /__INSTALLATION/Images/tomato_raw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PickleModifications/pickle_farming/HEAD/__INSTALLATION/Images/tomato_raw.png -------------------------------------------------------------------------------- /__INSTALLATION/Images/tomato_seed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PickleModifications/pickle_farming/HEAD/__INSTALLATION/Images/tomato_seed.png -------------------------------------------------------------------------------- /__INSTALLATION/Images/weed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PickleModifications/pickle_farming/HEAD/__INSTALLATION/Images/weed.png -------------------------------------------------------------------------------- /__INSTALLATION/Images/weed_raw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PickleModifications/pickle_farming/HEAD/__INSTALLATION/Images/weed_raw.png -------------------------------------------------------------------------------- /__INSTALLATION/Images/weed_seed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PickleModifications/pickle_farming/HEAD/__INSTALLATION/Images/weed_seed.png -------------------------------------------------------------------------------- /__INSTALLATION/Images/wheat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PickleModifications/pickle_farming/HEAD/__INSTALLATION/Images/wheat.png -------------------------------------------------------------------------------- /__INSTALLATION/Images/wheat_raw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PickleModifications/pickle_farming/HEAD/__INSTALLATION/Images/wheat_raw.png -------------------------------------------------------------------------------- /__INSTALLATION/Images/wheat_seed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PickleModifications/pickle_farming/HEAD/__INSTALLATION/Images/wheat_seed.png -------------------------------------------------------------------------------- /__INSTALLATION/Items/esx_limit.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PickleModifications/pickle_farming/HEAD/__INSTALLATION/Items/esx_limit.sql -------------------------------------------------------------------------------- /__INSTALLATION/Items/esx_weight.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PickleModifications/pickle_farming/HEAD/__INSTALLATION/Items/esx_weight.sql -------------------------------------------------------------------------------- /__INSTALLATION/Items/ox_inventory.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PickleModifications/pickle_farming/HEAD/__INSTALLATION/Items/ox_inventory.lua -------------------------------------------------------------------------------- /__INSTALLATION/Items/qbcore.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PickleModifications/pickle_farming/HEAD/__INSTALLATION/Items/qbcore.lua -------------------------------------------------------------------------------- /bridge/esx/client.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PickleModifications/pickle_farming/HEAD/bridge/esx/client.lua -------------------------------------------------------------------------------- /bridge/esx/server.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PickleModifications/pickle_farming/HEAD/bridge/esx/server.lua -------------------------------------------------------------------------------- /bridge/qb/client.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PickleModifications/pickle_farming/HEAD/bridge/qb/client.lua -------------------------------------------------------------------------------- /bridge/qb/server.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PickleModifications/pickle_farming/HEAD/bridge/qb/server.lua -------------------------------------------------------------------------------- /bridge/standalone/client.lua: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bridge/standalone/server.lua: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PickleModifications/pickle_farming/HEAD/config.lua -------------------------------------------------------------------------------- /core/client.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PickleModifications/pickle_farming/HEAD/core/client.lua -------------------------------------------------------------------------------- /core/server.lua: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/shared.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PickleModifications/pickle_farming/HEAD/core/shared.lua -------------------------------------------------------------------------------- /fxmanifest.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PickleModifications/pickle_farming/HEAD/fxmanifest.lua -------------------------------------------------------------------------------- /locales/locale.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PickleModifications/pickle_farming/HEAD/locales/locale.lua -------------------------------------------------------------------------------- /locales/translations/de.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PickleModifications/pickle_farming/HEAD/locales/translations/de.lua -------------------------------------------------------------------------------- /locales/translations/en.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PickleModifications/pickle_farming/HEAD/locales/translations/en.lua -------------------------------------------------------------------------------- /locales/translations/es.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PickleModifications/pickle_farming/HEAD/locales/translations/es.lua -------------------------------------------------------------------------------- /locales/translations/fr.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PickleModifications/pickle_farming/HEAD/locales/translations/fr.lua -------------------------------------------------------------------------------- /locales/translations/pt-br.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PickleModifications/pickle_farming/HEAD/locales/translations/pt-br.lua -------------------------------------------------------------------------------- /modules/exchange/client.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PickleModifications/pickle_farming/HEAD/modules/exchange/client.lua -------------------------------------------------------------------------------- /modules/exchange/server.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PickleModifications/pickle_farming/HEAD/modules/exchange/server.lua -------------------------------------------------------------------------------- /modules/materials/shared.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PickleModifications/pickle_farming/HEAD/modules/materials/shared.lua -------------------------------------------------------------------------------- /modules/plants/client.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PickleModifications/pickle_farming/HEAD/modules/plants/client.lua -------------------------------------------------------------------------------- /modules/plants/server.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PickleModifications/pickle_farming/HEAD/modules/plants/server.lua --------------------------------------------------------------------------------