Job center

Job center ped, order cooldown and vehicle spawn

This file can be located in peuren_gruppe6\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
    },

    peds = {
        job_manager = {
            model = 'cs_casey',--Dealers ped model, model names can be found @ https://docs.fivem.net/docs/game-references/ped-models/
            pos = vector3(-7.08, -653.9, 33.45),--Dealers positions
            heading = 182.86,--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'
            }
        },
        warehouse_manager = {
            model = 's_m_m_armoured_01',--Dealers ped model, model names can be found @ https://docs.fivem.net/docs/game-references/ped-models/
            pos = vector3(-20.54, -659.84, 33.48),--Dealers positions
            heading = 184.94,--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'
            }
        },
    },

    Spawns = {
        vehicle = {
            { pos = vector3(-5.41, -670.47, 32.34), heading = 185.04 },
            { pos = vector3(-19.58, -671.1, 32.34), heading = 185.69 },
            { pos = vector3(-34.23, -673.33, 32.34),heading = 184.78 },
            { pos = vector3(-35.75, -700.61, 32.34), heading = 349.22 },
            { pos = vector3(-19.62, -705.79, 32.34), heading = 348.81 },
            { pos = vector3(-4.01, -711.43, 32.34),  heading = 347.5 },
        },

        package = {
            { pos = vector3(-439.43, -2787.75, 6.0), heading = 137.14 },
            { pos = vector3(-441.46, -2785.25, 6.0),  heading = 131.58 },
        }
    },
}

Last updated