Tebex Integration

Configuring Tebex Integration

To make the most of your queue, we advise setting up two packages on your Tebex store!

While it is possible, we DO NOT recommend having your priority points and reserved slot package being the same package.

Adding A Game Server

You will need to create a game server via Tebex and copy the secret key, this key is the key that will be used to authenticate with Tebex and validate payments.

Package One: Priority Points The package should be "Pay as much as you want"

Recurring payments are not currently supported. If you wish to use recurring payments, please let us know via our Discord and if enough people want it, it might be something we add!

Once created, edit the package and get the package ID out of the URL:

Add this package ID to your config:

config.tebex = {
    ['server_key'] = 'YOUR_SERVER_KEY',
    ['points'] = {
        ['package'] = 'YOUR_PACKAGE_ID',
        ['whole_conversion'] = 1,
        ['round_down'] = true,
    },
    ['slot'] = {
        ['package'] = 'YOUR_PACKAGE_ID',
    },
}

Configure whole_conversion and round_down:

whole_conversion

For every whole unit of currency (a pound/a dollar) how many priority points do you want to give to the user

round_down

If this is true, we will round down the payment amount, i.e a 10.36 payment will become a 10.00 payment If this is false, we wil round up the payment amount, i.e a 10.36 payment will become a 11.00 payment

Package Two: Reserved Slot

This package should have a set price.

Recurring payments are not currently supported. If you wish to use recurring payments, please let us know via our Discord and if enough people want it, it might be something we add!

Once created, edit the package and get the package ID out of the URL:

Add this package ID to your config:

config.tebex = {
    ['server_key'] = 'YOUR_SERVER_KEY',
    ['points'] = {
        ['package'] = 'YOUR_PACKAGE_ID',
        ['whole_conversion'] = 1,
        ['round_down'] = true,
    },
    ['slot'] = {
        ['package'] = 'YOUR_PACKAGE_ID',
    },
}

Last updated