Skip to Content

🚛 qb-garbagejob

導入

  • プレイヤーは設定された金額でゴミ収集車をレンタルし、マップ上のゴミ袋を回収できます。ゴミ袋1袋につき、playerは変動する報酬を受け取ります。報酬は簡単に調整可能です。また、このジョブでプレイヤーがクリプトスティックを受け取る可能性を高める設定もあります。詳細は以下をご覧ください。qb-crypto.md

構成

一般的な

Config = {} -- Rental fee that is returned on truck return Config.TruckPrice = 250 -- Want to give out a cryptostick per stop? Config.GiveCryptoStick = true -- Has to roll this number or higher to receive a cryptostick Config.CryptoStickChance = 75 -- How many stops minimum should the job roll? Config.MinStops = 5 -- Upper worth per bag Config.BagUpperWorth = 100 -- Lower worth per bag Config.BagLowerWorth = 50 -- Minimum bags per stop Config.MinBagsPerStop = 2 -- Maximum bags per stop Config.MaxBagsPerStop = 5

小児科

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 } } }

場所

Config.Locations = { -- configure the interaction points ["main"] = { label = "Garbage Depot", -- map blip name coords = vector3(-313.84, -1522.82, 27.56), -- location }, }

車両

Config.Vehicles = { -- configure the vehicles used for the job ["trash2"] = "Garbage Truck", }
Last updated on