Delivery Config

DeliveryConfig = {}

-- Honey Delivery Config
DeliveryConfig.DeliveryVehicle = "bison"  -- The vehicle the player will use to deliver honey
DeliveryConfig.DeliveryVehicleSpawnCoords = vector4(1809.66, 4593.14, 36.69, 183.92)  -- The coordinates of the vehicle spawn
DeliveryConfig.HoneyDeliveryPaymentMin = 500  -- The minimum amount of money the player can earn from delivering honey
DeliveryConfig.HoneyDeliveryPaymentMax = 1000  -- The maximum amount of money the player can earn from delivering honey
DeliveryConfig.BadHoneyDeliveryChance = 100  -- 10% chance to deliver bad honey
DeliveryConfig.BadHoneyDeliveryDeduction = 200  -- If the player delivers bad honey, they will lose this amount of money

DeliveryConfig.DeliveryBoxProp = "prop_drop_crate_01"  -- The prop that will be used to deliver honey
DeliveryConfig.DeliveryBoxPropSpawn = {  -- The coordinates of the prop spawn
    {
        coords = vector4(1803.53, 4598.67, 37.68, 273.83)
    },
    {
        coords = vector4(1803.39, 4599.41, 37.68, 273.8)
    },
    {
        coords = vector4(1803.34, 4600.6, 37.68, 275.21)
    },
}

DeliveryConfig.DeliveryRoute = {  -- The route the player will take to deliver honey
    [1] = {
        ["coords"] =  vector4(247.59, 3169.45, 42.78, 269.93),
        ["finalroute"] = false
    },
    [2] = {
        ["coords"] =  vector4(1943.85, 3804.32, 32.04, 122.46),
        ["finalroute"] = false
    },
    [3] = {
        ["coords"] = vector4(2729.12, 4280.71, 48.96, 274.02),
        ["finalroute"] = true
    },
}

-- Mead Delivery Config
DeliveryConfig.MeadDeliveryVehicle = "rumpo3" -- The vehicle the player will use to deliver mead
DeliveryConfig.MeadDeliveryVehicleSpawnCoords = vector4(800.47, -1775.22, 29.54, 227.19) -- The coordinates of the vehicle spawn
DeliveryConfig.MeadDeliveryPaymentMin = 500  -- The minimum amount of money the player can earn from delivering mead
DeliveryConfig.MeadDeliveryPaymentMax = 1000  -- The maximum amount of money the player can earn from delivering mead
DeliveryConfig.BadMeadDeliveryChance = 100  -- 10% chance to deliver bad mead
DeliveryConfig.BadMeadDeliveryDeduction = 200  -- If the player delivers bad mead, they will lose this amount of money

DeliveryConfig.MeadDeliveryBoxProp = "prop_drop_crate_01"  -- The prop that will be used to deliver mead
DeliveryConfig.MeadDeliveryBoxPropSpawn = {  -- The coordinates of the prop spawn
    {
        coords = vector4(790.9, -1778.43, 29.87, 264.08)
    },
    {
        coords = vector4(790.77, -1779.77, 29.87, 262.99)
    },
    {
        coords = vector4(790.44, -1781.4, 29.87, 262.16)
    },
}

DeliveryConfig.MeadDeliveryRoute = {  -- The route the player will take to deliver honey
    [1] = {
        ["coords"] =  vector4(1136.87, -978.8, 46.42, 11.85),
        ["finalroute"] = false
    },
    [2] = {
        ["coords"] =  vector4(-1226.41, -907.57, 12.33, 123.47),
        ["finalroute"] = false
    },
    [3] = {
        ["coords"] = vector4(-1486.12, -382.59, 40.16, 224.23),
        ["finalroute"] = true
    },
}

-- Wine Delivery Config
DeliveryConfig.WineDeliveryVehicle = "rumpo3" -- The vehicle the player will use to deliver wine
DeliveryConfig.WineDeliveryVehicleSpawnCoords = vector4(-1924.03, 2064.93, 140.86, 256.37) -- The coordinates of the vehicle spawn
DeliveryConfig.WineDeliveryPaymentMin = 500  -- The minimum amount of money the player can earn from delivering wine
DeliveryConfig.WineDeliveryPaymentMax = 1000  -- The maximum amount of money the player can earn from delivering wine
DeliveryConfig.BadWineDeliveryChance = 100  -- 10% chance to deliver bad wine
DeliveryConfig.BadWineDeliveryDeduction = 200  -- If the player delivers bad wine, they will lose this amount of money

DeliveryConfig.WineDeliveryBoxProp = "prop_drop_crate_01"  -- The prop that will be used to deliver wine
DeliveryConfig.WineDeliveryBoxPropSpawn = {  -- The coordinates of the prop spawn
    {
        coords = vector4(-1923.65, 2059.24, 139.83, 344.44)
    },
    {
        coords = vector4(-1925.46, 2059.86, 139.83, 348.3)
    },
    {
        coords = vector4(-1927.04, 2060.18, 139.84, 346.22)
    },
}

DeliveryConfig.WineDeliveryRoute = {  -- The route the player will take to deliver wine
    [1] = {
        ["coords"] =  vector4(1136.87, -978.8, 46.42, 11.85),
        ["finalroute"] = false
    },
    [2] = {
        ["coords"] =  vector4(-1226.41, -907.57, 12.33, 123.47),
        ["finalroute"] = false
    },
    [3] = {
        ["coords"] = vector4(-1486.12, -382.59, 40.16, 224.23),
        ["finalroute"] = true
    },
}


Last updated