Task Setup

Tasks are configured in the Config.Tasks table. You can define task types, locations, payments, and other details.

Example Task Configuration:

Config.Tasks = {
    {
        name = "Deliver Vehicle",
        description = "Deliver a vehicle to the specified location.",
        icon = "fas fa-car",
        type = "vehicle_delivery",
        vehicleSpawnLocation = vec4(804.100769, -2127.651367, 29.320450, 90.041245),
        deliveryLocation = vec4(2354.245117, 3133.971924, 48.208710, 77.543404),
        payment = 1000
    },
    {
        name = "Grocery Delivery",
        description = "Pick up groceries from the store and deliver them to the customer.",
        icon = "fas fa-shopping-basket",
        type = "grocery_delivery",
        pickupLocation = vector3(373.875, 325.896, 103.566),
        deliveryLocation = vector3(1000.0, -500.0, 60.0),
        payment = 600
    }
}

Last updated