Job center

Job center ped, blip, vehicle spawns and package spawns

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

Config.Center = {
    Orders = {--New order listings
        Pickup = { min = 0, sec = 10 },--Generate a new pickup job every min = x and sec = x
        Deliver = { min = 0, sec = 10 },--Generate a new deliver job every min = x and sec = x
    },

    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(2569.25, 2720.29, 42.96),--Dealers positions
        heading = 204.39,--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 = 'TipTruck',
        extras = {
            [2] = true
        },
        cargo = {
            areaSize = vec3(1.5, 3, 1.0),
            spacing = vec3(0.5, 0.5, 0.17),
            offsetPos = vec3(0.8, 3.0, 0.7),      
            trunkBones = {
                -- [door id, rage is 0 - 5] = bone name
                [2] = 'dside_r',
                [3] = 'pside_r'
            }
        },
    },

    Spawns = {
        { pos = vector3(2585.37, 2712.22, 42.96), heading = 291.99 },
        { pos = vector3(2595.05, 2717.0, 42.6), heading = 295.51 },
        { pos = vector3(2604.81, 2722.04, 41.72),heading = 295.21 },
        { pos = vector3(2614.51, 2725.31, 41.28), heading = 287.6 },
    },
}

Last updated