⚙️Configuration

A clear overview of all the available configurations for the Player Groups System!

Config = {}

-- Adds debug prints to the server console.
Config["Debug"] = true

-- The maximum amount of XP that the player can reach per job
Config["MaxXP"] = 300

-- Different levels
Config["Levels"] = {
    ["Rookie"] = {
        Label = "Rookie",
        RequiredXP = 0,
    },
    ["Proficient"] = {
        Label = "Proficient",
        RequiredXP = 100,
    },
    ["Expert"] = {
        Label = "Expert",
        RequiredXP = 200,
    },
    ["Professional"] = {
        Label = "Professional",
        RequiredXP = 300,
    },
}

-- The jobs that will use this system
Config["Jobs"] = {
    ["gruppe"] = 0,
    ["clicklovers"] = 0,
    ["wine"] = 0,
    ["deliveries"] = 0,
    ["tow"] = 0,
    ["sanitation"] = 0,
}

Last updated