Displayed vehicle in the shop

Your character will need to have a job with the specific dealer, once you make sure you have the correct job you're going to see this marker.

The marker will give you two options 1. Display new vehicle 2. Remove existing vehicle from the display case

So we're going to press G and it will open this menu

Use the arrows right + left to navigate in the vehicle menu press enter to choose the category and then press another enter to choose the final vehicle. It will ask you if you want to really confirm this vehicle to be in the display showcase so press yes.

Adding brand new showcase spot

You can find all existing spots in the directory: rcore_pdm/config/displayed_vehicles.lua

The position has to be in the middle of all displayed vehicles! If the position will not be near the vehicles they won't show!

Config.DisplayVehicles = {
    --------------
    {
        -- name of the job
        Job = "dealer",

        -- This will lock the display vehicle change option to listed grades only.
        --        Grades = {
        --            ["boss"] = true,
        --            ["other"] = true,
        --        },

        -- Position in the PDM, please keep in mind this position HAS to be in the middle of the thing,
        -- so all vehicles can
        -- spawn and render.
        Position = vector3(-45.84, -1096.8, 26.42),

        -- Do not change.
        Render = false,

        -- camera
        cam = {
            ["car"] = PDMCamera,
        },
        
        vehicles = {
            [1] = {
                -- Dont change these!
                -----------------------
                vehicle = "none",
                category = "",
                -----------------------

                pos = vector3(-38.95, -1099.94, 26.03),
                heading = 143.15,
            },
            [2] = {
                -- Dont change these!
                -----------------------
                vehicle = "none",
                category = "",
                -----------------------

                pos = vector3(-43.17, -1097.91, 26.03),
                heading = 143.15,
            },
            [3] = {
                -- Dont change these!
                -----------------------
                vehicle = "none",
                category = "",
                -----------------------

                pos = vector3(-47.57, -1096, 26.03),
                heading = 143.15,
            },
            [4] = {
                -- Dont change these!
                -----------------------
                vehicle = "none",
                category = "",
                -----------------------

                pos = vector3(-52.42, -1094.03, 26.03),
                heading = 143.15,
            },
        },
    },
}

Last updated