Çöpçülük

Rehber


Config

qb-garbagejob
Config = {}

Config.UseTarget = GetConvar('UseTarget', 'false') == 'true'
Config.Jobname = 'garbage'
-- Price taken and given back when delivered a truck
Config.TruckPrice = 10

-- Want to give out a cryptostick per stop?
Config.GiveCryptoStick = false

-- Has to roll this number or higher to receive a cryptostick
Config.CryptoStickChance = 75

-- How many stops minimum should the job roll?
Config.MinStops = 

-- Upper worth per bag
Config.BagUpperWorth = 200

-- Lower worth per bag
Config.BagLowerWorth = 100

-- Minimum bags per stop
Config.MinBagsPerStop = 2

-- Maximum bags per stop
Config.MaxBagsPerStop = 5

-- WIP: Do not use
-- If you want to use custom routes instead of random amount of stops stops set to true
Config.UsePreconfiguredRoutes = false

Config.Peds = {
    {
        model = 's_m_y_garbage',
        coords = vector4(-322.24, -1546.02, 30.02, 294.97),
        zoneOptions = { -- Used for when UseTarget is false
            length = 3.0,
            width = 3.0
        }
    }
}

Last updated