Config File
🌟 Our amazing Blip System!
Config File
Config = {}
Config.Debug = false
Config.Language = 'en' -- Just 'pt' or 'en' for now
Config.Utils = {
ManagementCommand = 'bs-blips', -- Name of the command to manage the blips
CommandPermission = 'admin', -- Permission to use the command to create a blip | Which group should this permission be assigned to? (Ex: 'mod', 'admin', 'god')
MigrateConfigBlips = false, -- Do you want to migrate the configured blips to the database automatically? | IMPORTANT: Requires that the 'bs_blips' table is already created!
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)
}
-- 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