Job center

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

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

Config.Center = {
    Ped = {
        model = 's_m_y_construct_01',--Ped model, model names can be found @ https://docs.fivem.net/docs/game-references/ped-models/
        pos = vector3(807.11, -809.99, 26.2),--Positions
        heading = 88.64,--Peds heading
        animation = {--This controls ped 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 = 'flatbed3',
        livery = 1,
        extras = {
            [2] = true
        },
    },

    Spawns = {
        { pos = vector3(819.48, -819.57, 26.18),  heading = 86.44 },
        { pos = vector3(817.44, -824.75, 26.18),   heading = 91.59 },
        { pos = vector3(804.75, -824.79, 26.18),  heading = 89.26 },
        { pos = vector3(804.1, -819.02, 26.18),  heading = 82.97  },
        { pos = vector3(799.9, -810.3, 26.18),  heading = 142.88 },
    },

    Return = {--Vehicle return point
        pos = vector3(803.97, -820.04, 26.18)
    },
}

Last updated