Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Config = {}
- Config.debug = false
- --- SETTINGS FOR ESX
- Config.esxSettings = {
- enabled = true,
- oldEsx = false,
- moneyAccount = 'black_money',
- }
- --- SETTINGS FOR QBCORE
- Config.qbSettings = {
- enabled = false,
- useNewQBExport = true, -- Make sure to uncomment the old export inside fxmanifest.lua if you're still using it
- moneyAccount = 'cash',
- }
- Config.target = {
- enabled = false,
- system = 'ox_target' -- 'qtarget' or 'qb-target' or 'ox_target' (Other systems might work as well)
- }
- -- All the areas where empty oil barrels will spawn in
- Config.areas = {
- {
- coords = {
- x = -162.08, y = 6144.09, z = 31.15
- },
- radius = 2.0,
- amount = 3,
- blip = {
- blipVisible = true,
- areaVisible = false,
- icon = 654,
- color = 29,
- scale = 0.9,
- },
- },
- {
- coords = {
- x = -169.76, y = 6173.6, z = 31.15
- },
- radius = 2.0,
- amount = 4,
- blip = {
- blipVisible = false,
- areaVisible = false,
- icon = 654,
- color = 82,
- scale = 0.9,
- },
- },
- {
- coords = {
- x = -132.3, y = 6164.7, z = 31.0
- },
- radius = 2.0,
- amount = 2,
- blip = {
- blipVisible = false,
- areaVisible = false,
- icon = 654,
- color = 82,
- scale = 0.9,
- },
- },
- {
- coords = {
- x = -109.13, y = 6184.0, z = 31.0
- },
- radius = 1.2,
- amount = 2,
- blip = {
- blipVisible = false,
- areaVisible = false,
- icon = 654,
- color = 82,
- scale = 0.9,
- },
- },
- }
- Config.crafting = {
- {
- location = {
- x = 544.88, y = 2882.48, z = 42.9, h = 150.0,
- },
- prop = 'prop_roofpipe_01',
- duration = 10000,
- requiredItems = {
- {
- item = 'ln_oil_barrel_empty',
- amount = 1,
- },
- },
- craftedItem = 'ln_oil_barrel_full', -- result item
- craftedAmount = 1,
- blip = {
- enabled = true,
- sprite = 436,
- color = 29,
- scale = 0.9,
- },
- },
- {
- location = {
- x = 647.51, y = 2928.48, z = 42.01, h = 215.0,
- },
- prop = 'prop_roofpipe_01',
- duration = 10000,
- requiredItems = {
- {
- item = 'ln_oil_barrel_empty',
- amount = 1,
- },
- },
- craftedItem = 'ln_oil_barrel_full', -- result item
- craftedAmount = 1,
- blip = {
- enabled = true,
- sprite = 436,
- color = 29,
- scale = 0.9,
- },
- }
- }
- Config.selling = {
- {
- location = {
- x = 2744.11, y = 1486.59, z = 30.79, h = 251.9,
- },
- pedModel = 'a_m_m_hasjew_01',
- duration = 2000,
- items = {
- {
- item = 'ln_oil_barrel_full',
- label = 'Oil barrel',
- price = math.random(700, 1100),
- },
- },
- blip = {
- enabled = true,
- sprite = 801,
- color = 29,
- scale = 0.7,
- },
- }
- }
- ----------------------------------------------------------------------------------------------
- --- KEYBINDS
- ----------------------------------------------------------------------------------------------
- -- https://docs.fivem.net/docs/game-references/controls/
- -- Use the input index for the "input" value
- Config.keybinds = {
- interact = {
- label = 'E',
- input = 38,
- },
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement