⚡Config File
-- $$$$$$$\ $$$$$$$$\ $$$$$$$\ $$$$$$$$\ $$\ $$$$$$\ $$$$$$\ $$$$$$$\ $$$$$$\ $$$$$$$\ $$$$$$$$\ $$$$$$\
-- $$ __$$\ $$ _____|$$ __$$\ $$ _____|$$ | $$ __$$\ $$ __$$\ $$ __$$\ \_$$ _|$$ __$$\\__$$ __|$$ __$$\
-- $$ | $$ |$$ | $$ | $$ |$$ | $$ | $$ / \__|$$ / \__|$$ | $$ | $$ | $$ | $$ | $$ | $$ / \__|
-- $$$$$$$ |$$$$$\ $$$$$$$\ |$$$$$\ $$ | \$$$$$$\ $$ | $$$$$$$ | $$ | $$$$$$$ | $$ | \$$$$$$\
-- $$ __$$< $$ __| $$ __$$\ $$ __| $$ | \____$$\ $$ | $$ __$$< $$ | $$ ____/ $$ | \____$$\
-- $$ | $$ |$$ | $$ | $$ |$$ | $$ | $$\ $$ |$$ | $$\ $$ | $$ | $$ | $$ | $$ | $$\ $$ |
-- $$ | $$ |$$$$$$$$\ $$$$$$$ |$$$$$$$$\ $$$$$$$$\ \$$$$$$ |\$$$$$$ |$$ | $$ |$$$$$$\ $$ | $$ | \$$$$$$ |
-- \__| \__|\________|\_______/ \________|\________| \______/ \______/ \__| \__|\______|\__| \__| \______/
Config = {
Locale = "en", -- "custom", "en", "se"
Framework = "qb-core", -- "esx", "qb-core", "custom"
-- If you use qb-core set the framework to the name of your core folder. Example: If you have renamed your core to "test-core" set it to "test-core".
-- Edit the functions/events in client/edit.lua and server/edit.lua if you are using a custom framework.
MaxPlayers = GetConvarInt('sv_maxclients', 48), -- Gets max players from server.cfg file, default 48
DiscordLink = "https://discord.gg/invite/rebelscripts",
WebsiteLink = "https://store.rebelscripts.net/",
Open_Command = "scoreboard",
Open_Key = "HOME",
ShowPlayerJobs = true, -- Show player jobs in the scoreboard
Default_Avatar = "https://tinyurl.com/4jev2ujk", -- Set to your desired default avatar image. Example: "https://tinyurl.com/4jev2ujk"
-- Use /avatar to set your avatar image.
-- You can only have 3 job counters. More or less will not look as good.
JobCountersEnabled = true, -- Enable job counters
JobCounters = {
["police"] = { -- job name
label = "Police", -- job label
icon = "fas fa-balance-scale", -- job icon
color = "blue", -- "blue", "green", "orange", "pink", "purple", "red", "yellow", "teal"
text_color = "#517fff", -- hex color
},
["ambulance"] = {
label = "Ambulance",
icon = "fas fa-ambulance",
color = "red",
text_color = "#ff0000",
},
["taxi"] = {
label = "Taxi",
icon = "fas fa-taxi",
color = "orange",
text_color = "#ff8c00",
},
}
}
Last updated