Allows players to rent a garbage truck for a configured amount and pick up garbage bags around the map. Each bag will net the player a variable amount of pay that can is easily adjustable. There is also the ability to enable the chance of players receiving a cryptostick from this job. Read more about those in qb-crypto
Configuration
General
Config = {}-- Rental fee that is returned on truck returnConfig.TruckPrice =250-- Want to give out a cryptostick per stop?Config.GiveCryptoStick =true-- Has to roll this number or higher to receive a cryptostickConfig.CryptoStickChance =75-- How many stops minimum should the job roll?Config.MinStops =5-- Upper worth per bagConfig.BagUpperWorth =100-- Lower worth per bagConfig.BagLowerWorth =50-- Minimum bags per stopConfig.MinBagsPerStop =2-- Maximum bags per stopConfig.MaxBagsPerStop =5
Peds
Config.Peds = { -- configure the peds that players interact with { model ='s_m_y_garbage', -- https://docs.fivem.net/docs/game-references/ped-models/ coords =vector4(-322.24, -1546.02, 30.02, 294.97), zoneOptions = { -- Used for when UseTarget is false length =3.0, width =3.0 } }}