Job center

Job center ped, blip, vehicle model, spawn locations and return location

This file can be located in peuren_electricianjob/shared/sh_main.lua.

Config.Center = {
    Ped = {
        model = 's_m_y_construct_01',--Dealers ped model, model names can be found @ https://docs.fivem.net/docs/game-references/ped-models/
        pos = vector3(-717.88, -2469.93, 13.95),--Dealers positions
        heading = 334.04,--Dealers heading
        animation = {--This controls dealer animation, if you don't want this, make it to: animation = false
            --Supported anim data format:
                -- anim = ''
                -- dict = ''
                -- scenario = ''
            --Examples:
                -- anim = 'missexile3'
                -- dict = 'ex03_dingy_search_case_base_michael'
            scenario = 'WORLD_HUMAN_CLIPBOARD'
        }
    },

    Vehicle = {
        model = 'nspeedo',
        livery = 10,
        mods = {
            --[mod id] = mod index
            [10] = 6,--Roof racks
        },
        extras = {
            --[extra id] = true/false
            -- [2] = true
        },
    },

    Spawns = {
        { pos = vector3(-717.22, -2464.12, 13.88),  heading = 65.75 },
        { pos = vector3(-708.81, -2468.71, 13.83),   heading = 58.24 },
        { pos = vector3(-702.17, -2473.42, 13.83),  heading = 56.13 },
        { pos = vector3(-693.66, -2478.45, 13.83),  heading = 51.97  },
        { pos = vector3(-686.66, -2482.17, 13.83),  heading = 60.92 },
        { pos = vector3(-681.57, -2477.0, 13.83),  heading = 59.35 },
    },

    Return = {--Vehicle return point
        pos = vector3(-710.31, -2459.82, 13.82)
    },
}

Last updated