Config File

Config = {}


Config.Framework = 'esx' -- 'qb' for qb-core and qbox & 'esx' for esx framework
Config.NPC = vector4(1242.1876, -3113.8735, 6.0284, 272.2119)
Config.InteractMethod = "ox_lib" -- Change to "ox_lib", "ox_target" and "qb-target" as needed


Config.EnableFinalsPaycheck = false

Config.TruckModel = "phantom"
Config.TrailerModel = "trailers"

Config.RepoPerRoute = math.random(3, 5)

Config.TruckSpawn = vector4(1253.4325, -3107.1843, 6.0357, 0.6372)
Config.TrailerSpawn = vector4(1272.8094, -3097.8022, 6.1383, 89.6086)


Config.routes = {
    [1] = {
        name = "Route 1", 
        repo = '0%', 
        street = 'Signal St', 
        locationName = 'Elysian Island', 
        location = vector3(164.8315, -3066.2009, 5.9753), 
        payment = 2500
    },
    [2] = {
        name = "Route 2", 
        repo = '4%', 
        street = 'Plaice Pl', 
        locationName = 'Elysian Island', 
        location = vector3(-402.8498, -2788.7397, 6.0685), 
        payment = 2800
    },
        [3] = {
        name = "Route 3", 
        repo = '9%', 
        street = 'Popular St', 
        locationName = 'La Mesa', 
        location = vector3(811.5558, -1665.6257, 28.7598), 
        payment = 4500
    },
    [4] = {
        name = "Route 4", 
        repo = '12%', 
        street = 'Strawberry Ave', 
        locationName = 'Strawberry', 
        location = vector3(-41.3631, -1514.7180, 30.1560), 
        payment = 5200
    },
    [5] = {
        name = "Route 5", 
        repo = '21%', 
        street = 'Ineseno Road', 
        locationName = 'Banham Canyon', 
        location = vector3(-3047.9050, 440.0859, 6.2339), 
        payment = 5800
    },
    [6] = {
        name = "Route 6", 
        repo = '28%', 
        street = 'Route 68', 
        locationName = 'Lago Zannudo', 
        location = vector3(-2528.8503, 2345.0620, 32.4235), 
        payment = 6500
    },
    [7] = {
        name = "Route 7", 
        repo = '36%', 
        street = 'El Burro Blvd', 
        locationName = 'El Burro Heights', 
        location = vector3(1709.0831, -1484.0897, 112.8857), 
        payment = 6900
    },
    [8] = {
        name = "Route 8", 
        repo = '45%', 
        street = 'Heritage Way', 
        locationName = 'Richards Majestic', 
        location = vector3(-1023.2939, -506.6479, 36.1497), 
        payment = 7350
    },
    [9] = {
        name = "Route 9", 
        repo = '50%', 
        street = 'Marlowe Dr', 
        locationName = 'Vinewood Hills', 
        location = vector3(700.8641, 606.0377, 128.2760), 
        payment = 8300
    },
    [10] = {
        name = "Route 10", 
        repo = '55%', 
        street = 'Vinewood Park Dr', 
        locationName = 'Vinewood Racetrack', 
        location = vector3(1142.7770, 71.0357, 80.8225), 
        payment = 9400
    },
    [11] = {
        name = "Route 11", 
        repo = '57%', 
        street = 'Senora Way', 
        locationName = 'Palmer-Taylor Power Station', 
        location = vector3(2666.1350, 1709.5389, 24.5561), 
        payment = 10000
    },
    [12] = {
        name = "Route 12", 
        repo = '60%', 
        street = 'Chianski Passage', 
        locationName = 'Humane Labs And Research', 
        location = vector3(3639.7981, 3769.5579, 28.5887), 
        payment = 12000
    },
    [13] = {
        name = "Route 13", 
        repo = '70%', 
        street = 'Chianski Passage', 
        locationName = 'San Chianski Mountain Range', 
        location = vector3(2897.8792, 4382.9551, 50.4252), 
        payment = 15000
    },
    [14] = {
        name = "Route 14", 
        repo = '80%', 
        street = 'Great Ocean Hwy', 
        locationName = 'Mount Chiliad', 
        location = vector3(408.3408, 6469.7925, 28.8737), 
        payment = 16000
    },
    [15] = {
        name = "Route 15", 
        repo = '100%', 
        street = 'Great Ocean Hwy', 
        locationName = 'Mount Chiliad', 
        location = vector3(204.7747, 6386.0864, 31.4686), 
        payment = 20000
    },
}

Last updated