gearConfiguration

Configuration

Fully Customizable

Edit config.lua to define:

  • 🔢 Maximum number of players per convoy

  • 🚛 Truck and trailer models

  • 📍 Delivery locations and reward zones

  • 🛣️ Bonus multipliers for multiplayer convoys

--வாழ்க தமிழ் ! ஓம் நம சிவாய !
--Made by Lone with ❤️

Config = {}
Locales={}

Config.Debug = false

Config.Locale = "en" -- ta/en

Config.UseTarget = true -- true for use target , false for using marker

Config.framework = "qb" -- esx/qb

Config.Target = "qb" -- qb/ox

Config.notification = "qb" -- qb/esx/custom

Config.customnotification = "customnotify:notify" -- event of that notification

Config.marker = vector3(1195.91, -3253.46, 7.1) -- marker location

Config.pedlocation = vector4(1195.91, -3253.46, 7.1, 78.41) --ped location
Config.pedmodel = 's_m_m_postal_01' -- ped model

Config.maxplayers = 4 --Max players for convey

Config.usejob = false --Max for whitelisting for specific jobs

Config.Job = "trucker" --job name




--Trailer Spawn Locations
Config.trailerlocation = { 
    vector4(1185.73, -3246.43, 6.03, 92.89),
    vector4(1187.67, -3233.1, 6.03, 95.96),
    vector4(1188.07, -3239.65, 6.03, 101.52),
    vector4(1187.45, -3243.11, 6.03, 82.63),
    -- Add Number of locations as max players for better spawning
 }

Config.truckmodel = {"phantom", "hauler","packer"} --truck model for the job add yours as if needed 

Config.trailermodel = "trailers" -- trailer model for the job 

Config.deliverylocations = {
    {coords = vector3(1716.64, -1644.66, 112.53), payout = 10000},
    {coords = vector3(2687.02, 1548.07, 24.59), payout = 14000},
    {coords = vector3(2869.76, 4479.04, 48.32), payout = 20000},
    -- Add more delivery locations as needed
}

Config.conveybonus = "5000" -- bonus amount for the convey 




print("^2LONE MultiTrucker Job ^7v^4"..GetResourceMetadata(GetCurrentResourceName(), 'version', nil):gsub("%.", "^7.^4").."^7 - Script by ^1lone^7")

Last updated