settings

GitHub Version

I have tried to simplify settings as much as possible here. Below is the settings file found inside

/BB-DBotBits/settings

Please ensure you adjust to your server specs. I will be making more settings in time.

/*
 _ __        _       ____        _       ____                      
| __ ) _   _| |_ ___| __ )  ___ | |_ ___|  _ \ ___ _ __   ___  ___ 
|  _ \| | | | __/ _ \  _ \ / _ \| __/ __| |_) / _ \ '_ \ / _ \/ __|
| |_) | |_| | ||  __/ |_) | (_) | |_\__ \  _ <  __/ |_) | (_) \__ \
|____/ \__, |\__\___|____/ \___/ \__|___/_| \_\___| .__/ \___/|___/
       |___/                                      |_|              
                    https://bytebots.net 
                   Please adjust as needed
              
*/


/*
Welcome to the settings section.
*/


// Bot Status
const showStatus = true;
let botOnlineStatus = 'online' // You can set this to 'idle', 'dnd', or 'invisible'
let botStatusTxt = 'Created using BB-DBotBits' // The status you want the bot to display
let botDoing = 4 // 0 (Playing), 1 (Streaming), 2 (Listening), 3 (Watching), 4 (blank), 5 (Competing)



/*
Please enter role ID's you with to see tickets, I have used the same role over and
over again. Please update all 3 and add as many as you need with , at the end apart 
from the last id
Some servers start with 0 and JS hates that so please ensure it's enclosed in ""
*/


let ticketAccess = [
    '0928340928340982308',
    '8349058349850349854',
    '8908490328409238402'
];

/* This section is for the rules 
The role ID and Channel id need to be entered below in order for the rules to work.
The role ID will set the role people are assinged upon accepting the rules
Channel ID is where the rules will be posted.
*/

let rulesSettings = [
    {
        roleId: '12960823232178335776',      
        channelID: '1297203243434307462788'  
    }
];

const showCredits = false; /* Please do not remove this line... If you do want to remove it
Please donate to the project: https://buymeacoffee.com/coffeeismyonlyfriend */

module.exports = { ticketAccess, rulesSettings, showCredits, botOnlineStatus, botStatusTxt, botDoing, showStatus};