Config File

🌟 Our amazing Blip System!

Config File
Config = {}

Config.Debug = false

Config.Language = 'en' -- Just 'pt' or 'en' for now

-- EVENTS & EXPORTS
-- Open Management Menu | BrunoScripts:Blips:Client:OpenBlipManagementMenu

Config.Utils = {
    RunSQL = false, -- Creates the table in the database when starting the script (Once used turn false to prevent the script from trying to load the table every time it starts)
    MigrateConfigBlips = false, -- Do you want to migrate the configured blips to the database automatically? | IMPORTANT: Requires that the 'bs_blips' table is already created!
    Command = {
        UseCommand = true, -- Only true (Use Command) or false (Don't use Command)
        ManagementCommand = 'bs-blips' -- Name of the command to manage the blips
    },
    ManagePermission = 'god', -- Permission to access the menu to manage the blips | Which group should this permission be assigned to? (Ex: 'mod', 'admin', 'god')
    MenuColor = '#74c0fc' -- Put here what color do you want on Menus
}

-- title - Blip Title (Ex: Government)
-- color - Blip Color (https://docs.fivem.net/docs/game-references/blips/#blip-colors)
-- sprite - Blip Sprite ID (https://docs.fivem.net/docs/game-references/blips/#blips)
-- coords - Blip Coordinates
-- scale - Blip Scale
-- allowedJobs - Jobs that can see the blip (Ex: { "all" } for everyone | { "police" } only police can see | { "police", "ambulance" } only police and ambulance can see)
Config.Blips = {
    -- { title = "", color = , sprite = , coords = vector3(x, y, z), scale = 0.8, allowedJobs = { "all" } },
}

Last updated