Config
Config = {}
Config.Framework = "QBCore" -- "QBCore" or "ESX"
Config.Core = "qb-core" -- Your qb-core folder name
Config.OpenKey = "HOME" -- Key to open scoreboard
Config.Names = "player" -- "player" or "steam" or "none" ( "player" - Roleplay Name, "steam" - Steam Name, "none" - Player 1, Player 2, etc. )
Config.ShowJob = true -- Show job on scoreboard
Config.MaxPlayers = GetConvarInt('sv_maxclients', 64) -- Max players on the server
Config.Animation = {
enable = true, -- Enable ped make a animation when open scoreboard?
script = "rpemotes", -- "dpemotes" or "rpemotes" or "scully_emotemenu" or "aty_emote" or "cylex_animmenuv2" or "r_animations" ( open code on config_functions.lua )
animation = "map", -- Animation name
}
Config.JobColours = { -- Job colors for the scoreboard
police = "#0066ff",
ems = "#ff0000",
mechanic = "#734500",
taxi = "#ffcc00",
realestate = "#ffcc00",
lawyer = "#ffcc00",
}
Config.CopsJobs = {"police", "lspd"} -- Cops jobs for the requiredCops on heists
Config.Heists = { -- Heist data for the scoreboard
{ name = "Pacific Bank", requiredCops = 0, image = "pacificbank" },
{ name = "Fleeca Paleto", requiredCops = 2, image = "fleecapaleto" },
{ name = "Jewelry Store", requiredCops = 3, image = "jewelry" },
{ name = "Pacific Standard", requiredCops = 4, image = "pacificbank" },
{ name = "Prison Break", requiredCops = 5, image = "pacificbank" },
{ name = "The Big Con", requiredCops = 6, image = "pacificbank" },
{ name = "The Doomsday Heist", requiredCops = 7, image = "pacificbank" },
}
Config.ShowingJobs = {
[1] = { job = "police", label = "Police", colour = "#0066ff", icon = "fa-solid fa-shield-halved" },
[2] = { job = "ems", label = "Hospital", colour = "#ff0000", icon = "fa-solid fa-ambulance" },
[3] = { job = "mechanic", label = "Mechanic", colour = "#734500", icon = "fa-solid fa-wrench" },
[4] = { job = "taxi", label = "Taxi", colour = "#ffcc00", icon = "fa-solid fa-taxi" },
[5] = { job = "realestate", label = "Estate", colour = "#eab676", icon = "fa-solid fa-house" },
[6] = { job = "lawyer", label = "Lawyer", colour = "#808080", icon = "fa-solid fa-gavel" },
}
Last updated