Locations

Config.MechanicStations = {
    [1] = {
        jobName = "mechanic", -- This is the job name that the player needs to have to access the station
        Blip = {
            coords = vector3(-212.54, -1326.36, 30.89), -- This is the location of the blip
            sprite = 402, -- This is the sprite of the blip
            color = 5, -- This is the color of the blip
            scale = 0.8, -- This is the scale of the blip
            label = "Benny's", -- This is the label of the blip
        },
        Locations = {
            Crafting = {
                coords = vector3(-196.3, -1318.34, 31.09),
                label = "Crafting", -- This is the target / help text label
                zoneRange = 2.0,
                icon = "fa-solid fa-tools",
            },
            Actions = {
                coords = vector3(-206.6, -1341.71, 34.89), -- This is the location of the zone
                label = "Boss Actions", -- This is the target / help text label
                zoneRange = 2.0, -- This is the range of the zone
                grade = 3, -- This is the grade required to access the boss actions
                icon = "fas fa-box",
            },
            Vehicles = {
                coords = vector3(-204.24, -1301.84, 31.3),
                heading = 90.52,
                label = "Vehicles", -- This is the target / help text label
                zoneRange = 3.5,
                icon = "fa-solid fa-car",
            },
            DeleteVehicles = {
                coords = vector3(-190.56, -1290.09, 31.12),
                label = "Delete Vehicle", -- This is the target / help text label
                zoneRange = 2.0,
                icon = "fa-solid fa-car-crash",
            },
            Warehouse = {
                coords = vector3(-213.85, -1334.37, 30.89),
                label = "Warehouse", -- This is the target / help text label
                zoneRange = 2.0,
                icon = "fa-solid fa-box",
            },
            Shop = {
                coords = vector3(-216.39, -1318.94, 30.89),
                label = "Shop", -- This is the target / help text label
                zoneRange = 2.0,
                icon = "fa-solid fa-shopping-cart",
            },
            Diagnostic = {
                coords = vector3(-222.04, -1329.99, 30.89),
                label = "Diagnostic", -- This is the target / help text label
                zoneRange = 3.5,
                icon = "fa-solid fa-car-battery",
            },
            CarParts = {
                coords = vector3(-205.9, -1327.65, 30.89),
                label = "Car Parts", -- This is the target / help text label
                zoneRange = 2.0,
                dropStart = vector3(-244.15, -1305.11, 31.29),
                dropEnd = vector3(-203.92, -1301.97, 31.3), -- Location you go to collect it
                vehicle = "burrito",
                icon = "fa-solid fa-car-battery",
            },
        },
        ShopItems = { -- This is the items that are available in the shop
            [1] = { name = "repairkit",             price = 125, amount = 1, info = {}, type = "item", slot = 1 },
            [2] = { name = "advancedrepairkit",     price = 125, amount = 1, info = {}, type = "item", slot = 2 },
            [3] = { name = "airfilter",             price = 125, amount = 1, info = {}, type = "item", slot = 3 },
            [4] = { name = "brakepad",              price = 125, amount = 1, info = {}, type = "item", slot = 4 },
            [5] = { name = "sparkplugs",            price = 125, amount = 1, info = {}, type = "item", slot = 5 },
            [6] = { name = "fuelfilter",            price = 125, amount = 1, info = {}, type = "item", slot = 6 },
            [7] = { name = "engineoil",             price = 125, amount = 1, info = {}, type = "item", slot = 7 },
        },
        Vehicles = { -- This is the vehicles that are available in the shop
            [1] = {
                model = "blista", -- This is the model name of the vehicle
                label = "Blista", -- This is the label that will be displayed in the menu
            },
            [2] = {
                model = "flatbed", -- This is the model name of the vehicle
                label = "Flatbed", -- This is the label that will be displayed in the menu
            }
        },
        Crafting = {
            [1] = {
                item = "repairkit",
                label = "Repair Kit",
                icon = "fa-solid fa-tools",
                time = 5,
                image = "nui://"..Config.InventoryDirectory.."repairkit.png",
                amount = 1,
                requiredItems = {
                    [1] = { name = "iron", amount = 1 },
                    [2] = { name = "steel", amount = 1 },
                },
            },
            [2] = {
                item = "advancedrepairkit",
                label = "Advanced Repair Kit",
                icon = "fa-solid fa-tools",
                time = 5,
                image = "nui://"..Config.InventoryDirectory.."advancedrepairkit.png",
                amount = 1,
                requiredItems = {
                    [1] = { name = "iron", amount = 1 },
                },
            },
            [3] = {
                item = "cleaningkit",
                label = "Cleaning Kit",
                icon = "fa-solid fa-spray-can-sparkles",
                time = 5,
                image = "nui://"..Config.InventoryDirectory.."cleaningkit.png",
                amount = 1,
                requiredItems = {
                    [1] = { name = "iron", amount = 1 },
                },
            }
        }
    },
}

Last updated