Peds Config

PedsConfig = {}

PedsConfig.PawnShop = {
    {
        model = "a_m_m_bevhills_02",  -- The model of the ped
        coords = vector4(412.03, 315.07, 102.13, 198.62),  -- The coordinates of the ped
        type = "pawn_shop",  -- The type of ped
        scenario = "WORLD_HUMAN_AA_SMOKE",
    },
}

PedsConfig.Fixer = {
    {
        model = "s_m_m_dockwork_01",
        coords = vector4(-428.5, -1728.16, 18.78, 71.29),
        type = "fixer",
        scenario = "WORLD_HUMAN_CLIPBOARD",
        items = {
            {
                item = "parking_meter",
                label = "Parking Meter",
                givesDirtyMoney = true,
                price = math.random(40, 80),
            },
            {
                item = "parking_meter2",
                label = "Parking Meter 2 Sides",
                givesDirtyMoney = true,
                price = math.random(80, 120),
            },
        },
    },
}

Last updated