⚙️Configuration

Here you can find anything about the configuration files.

Debug

The Debug setting will print a debug messages for the developer.

config.lua
Config.Debug = false

Bot

The Bot section include the bot token and guild id.

config.lua
Config.Bot = {
    guildId = 0,
    botToken = '',
}

Roles

The roles config section, is the most interesting section for you since with these you can help yourself monetize your server.

config.lua
Config.Roles = {
    allowlistEnabled = true, -- Enable discord role checking?
    allowlistRole = 1180091220035387423, -- The required role for joining.
    points = {
        {
            id = 1052586384386441227,
            points = 100,
            bypassQueue = true,
        },
    }
}

allowlistEnabled

In case you want to restrict access to the server so that only specific users with a certain role can join, you can enable role checking and set the required role.

allowlistRole

The required role id that you should have to be able to join.

Points

In this section, you can configure each role and set its starting points. If a user has multiple roles, all their role points will be combined.

Id

The id of the role.

Points

The starting points.

BypassQueue

Enabling "Bypass Queue" grants the user two benefits: skipping the queue entirely and ignoring any slot limitations.

Last updated