gearSetup Guide

In this section, you will learn how to setup this program for use.

Setup Guide


1

Downloading the File

  1. Head over to https://clients.boostbot.cloudarrow-up-right and download the latest version of the software.

  2. Extract the Files Once downloaded, extract the contents using WinRAR (or any compatible archive tool).

  3. Activate Your License Navigate to the following file:

    assets/license.key

    Open it and paste your license key provided at the time of purchase.

  4. Configure Your Settings Go to:

    assets/config.json

    Open the file and begin setting up your preferences. It should look similar to the example below (replace placeholders with your own values).

triangle-exclamation

This code block is provided for instructional purposes only. It is not intended to be copied and pasted, but rather to serve as guidance on what information should be entered alongside it.

{
    "token": "", // Discord bot token
    "client_id": "", // Discord application client ID
    "client_secret": "", // Discord application client secret

    "allowed_user_ids": [792874281305636866], // User IDs allowed to control the bot
    "GUILD_ID": 0, // Discord server (guild) ID
    "log_channel": "", // Channel ID for bot logs

    "invoice_masking": "", // Invoice format (e.g., name-xxx-xxx)
    "embed_color": "0x", // Embed color in hexadecimal format
    "footer": "All rights reserved.", // Default embed footer text
    "thumbnail_url": "", // Embed thumbnail image URL

    "proxyless": false, // Enable if proxyless mode is required
    "advance_mode": false,
    "webhook_url": "",

    "captcha_solver": {
        "solve_captcha": false, // Set to true to enable captcha solving
        "use_solver": "", // Supported: RAZORCAP or ONYXSOLVER
        "razorcap_api_key": "", // Required if using Razorcap
        "onxysolver_api_key": "", // Required if using OnyxSolver
        "max_retries": 1 // Maximum captcha retry attempts
    },

    "customisation": {
        "nick": "", // Booster nickname
        "bio": "", // Booster profile bio
        "change_pfp": false, // Enable to change profile picture
        "change_banner": false // Enable to change profile banner
    },

    "website_settings": {
        "discord": "", // Discord server invite link
        "view-shop": "" // Website/shop URL
    },

    "enabled": true, // Set to false to disable auto-buy
    "store": "", // Supported: Paylix, SellAuth, SellApp, Sellhub V2
    "webhook_secret": "",
    "invite_link": "", // Server invite link (e.g., https://discord.gg/yourserver)
    "auto_products": {}, // Configure using /setup-autobuy command

    "api_key": "", // Store API key
    "shop_id": "", // Store shop ID

    "paylix_api_key": "", // Required only if using Paylix
    "paylix_merchant": "", // Required only if using Paylix
    "sellapp_api_key": "", // Required only if using SellApp
    "sellapp_store_slug": "" // Required only if using SellApp
}
2

Setting Up Discord Bot

{
    "token": "", // Discord bot token
    "client_id": "", // Discord application client ID
    "client_secret": "", // Discord application client secret

Client ID & Secret

  1. Obtain your Bot Token through your developer portal https://discord.com/developers/applicationsarrow-up-right

  2. Obtain your Client ID through your developer portal https://discord.com/developers/applicationsarrow-up-right

  3. Obtain your Client Secret through your developer portal https://discord.com/developers/applicationsarrow-up-right

3

Setting Up Discord Setting

    "allowed_user_ids": [], // User IDs allowed to control the bot
    "GUILD_ID": 0, // Discord server (guild) ID
    "log_channel": "", // Channel ID for bot logs

    "invoice_masking": "", // Invoice format (e.g., name-xxx-xxx)
    "embed_color": "0x", // Embed color in hexadecimal format
    "footer": "All rights reserved.", // Default embed footer text
    "thumbnail_url": "", // Embed thumbnail image URL

    "proxyless": false, // Enable if proxyless mode is required
    "advance_mode": false,
    "webhook_url": "",

    "captcha_solver": {
        "solve_captcha": false, // Set to true to enable captcha solving
        "use_solver": "", // Supported: RAZORCAP or ONYXSOLVER
        "razorcap_api_key": "", // Required if using Razorcap
        "onxysolver_api_key": "", // Required if using OnyxSolver
        "max_retries": 1 // Maximum captcha retry attempts
    },

Whitelisting User IDs

Setting up this configuration will allow users to interact with the bot.

  1. Enable Developer Mode on Discord which can be found in your setting

  2. Right click on a user and click on "Copy User ID"

Enabling Guild ID

Setting up this configuration will allow users to interact with the bot.

  1. Enable Developer Mode on Discord which can be found in your setting

  2. Right click on a server icon and click on "Copy Server ID"

Setting Log Channel

Setting up this configuration will allow users view boost bot logging

  1. Right-click on the channel where you want the bot to send logs, then select Copy Channel ID.

circle-info

Keep in mind that any configuration left blank while its corresponding feature is set to true will prevent the bot from functioning properly. You must either disable the feature or provide the required configuration values before enabling it.\

Proxies Configuration

Set proxyless to false if you're using proxies with the bot. Use the format:

USER:PASS@HOST:PORT

If you're not using proxies, set proxyless to true

If you use proxies, we recomend purchasing them from the services below:

Captcha Solver Configuration

Set solve_captcha to true if you're using captcha solver with the bot.

If you use captcha solver, we recommend purchasing them from the services below:

4

Setting Up Customizations

    "customisation": {
        "nick": "", // Booster nickname
        "bio": "", // Booster profile bio
        "change_pfp": false, // Enable to change profile picture
        "change_banner": false // Enable to change profile banner
    },

    "website_settings": {
        "discord": "", // Discord server invite link
        "view-shop": "" // Website/shop URL
    },
5

Setting Up Website Customizations

    "website_settings": {
        "discord": "", // Discord server invite link
        "view-shop": "" // Website/shop URL
    },

    "enabled": true, // Set to false to disable auto-buy
    "store": "", // Supported: Paylix, SellAuth, SellApp, Sellhub V2
    "webhook_secret": "",
    "invite_link": "", // Server invite link (e.g., https://discord.gg/yourserver)
    "auto_products": {}, // Configure using /setup-autobuy command

    "api_key": "", // Store API key
    "shop_id": "", // Store shop ID

    "paylix_api_key": "", // Required only if using Paylix
    "paylix_merchant": "", // Required only if using Paylix
    "sellapp_api_key": "", // Required only if using SellApp
    "sellapp_store_slug": "" // Required only if using SellApp
}
6

Auto Delivery

Use command /setup-autobuy and instructions will be provided further on discord.

Last updated