Configuration

System Settings

Config.SystemSettings = {
	-- en - English | es - spanish | de - German | fr = French | pt = portuguese | tr - Turkish | ru - Russian 
	Language = "en",
	theme = "theme3", -- gblue | theme2 | theme3 | theme4 | theme5 - defalt theme
	OpenMenuVia = "target", -- target | textui | custom
	ClockItems = true, -- if this true SV_CONFIG.Items will add/remove when ever player clock in or out
}

Duty Station

Config.DutySystem = {
    ["police"] = {
        theme = "gblue",
        RestrictedGrades = {}, -- These are the grades that are not allowed to use the duty system
        Station = {
            -- user
            duty = {
                coords = {
                    vec4(437.0450, -986.5495, 30.6896, 349.8869)
                    -- add more coords if you want
                },
                EnablePed = true,
                model = "s_m_y_cop_01", -- https://docs.fivem.net/docs/game-references/ped-models/
                scenario = "WORLD_HUMAN_CLIPBOARD" -- https://gtaforums.com/topic/796181-list-of-scenarios-for-peds/
            },
            -- boss
            boss = {
                allowedGrades = {3},
                coords = {
                    vec3(451.7888488769531, -972.6823120117188, 30.72463035583496)
                    -- add more coords if you want
                }
            }
        },
        Blip = {
            Enable = true,
            BlipSprite = 408, -- https://docs.fivem.net/docs/game-references/blips/
            BlipScale = 0.8,
            BlipColor = 26,
            BlipName = "Police Duty Station"
        }
    },
    -- can add more
}

Leaderboard

Config.LeaderBoard = {
    -- Coordinates for where you want to display the leaderboard and rewards menu.
    ["police"] = {
        Coords = {
            vec4(427.9968, -986.4164, 30.7118, 356.7822) -- add more coords if you want
        },
        Peds = {
            EnablePed = true,
            model = "s_m_m_fiboffice_01", -- https://docs.fivem.net/docs/game-references/ped-models/
            scenario = "WORLD_HUMAN_CLIPBOARD" -- https://gtaforums.com/topic/796181-list-of-scenarios-for-peds/
        },
        Blip = {
            Enable = false,
            BlipSprite = 515, -- https://docs.fivem.net/docs/game-references/blips/
            BlipScale = 0.8,
            BlipColor = 26,
            BlipName = "Police Achievements Stations"
        }
    },
    -- can add more
}

Last updated