ALL COMMANDS!

GitHub Version

This is all current avaliable commands!

Assuming you done all the steps here. You are ready to get started with your fresh new bot.

Important

Needed permissions:

If you are runing all commands Admin/Mod Role would be best

const { discordReply } = require('./BB-DBotBits/discordReplies.js'); // Replies
const { discordTickets } = require('./BB-DBotBits/discordTickets.js'); // discordTickets
const { discordReverse } = require('./BB-DBotBits/discordReverse.js'); // discordReverse
const { discordRadio } = require('./BB-DBotBits/discordRadio.js'); // discordRadio
const { discordLogin, token } = require('./BB-DBotBits/discordHandler.js'); //discordLogin
const { checkSpamRate } = require('./BB-DBotBits/checkSpamRate'); //discordLogin
const { discordPurgeCommands} = require('./BB-DBotBits/discordPurge'); //purge commands setup
const { settings: discordRules } = require('./BB-DBotBits/discordRules'); //Rules
const { discordCheckSpam } = require('./BB-DBotBits/discordCheckSpam'); //Check for URLS
const { discordReplyEmbed } = require('./BB-DBotBits/discordReplyEmbed.js'); // Embed
const { discordXP } = require('./BB-DBotBits/discordXP.js'); // XP Level system

// Starts the XP System
discordXP();

//Checks for URLS in messages
discordCheckSpam()

//Displays rules check settings for more info
discordRules();

//simple reply
discordReply('helloworld', 'ohhh so it starts');


//Embed capability
  discordReplyEmbed(
    'announcenew', // wakeword (slash command)
    'Important Update', // title of the embed
    'We have some exciting new features coming soon! Stay tuned.', // body of the embed
    'This is a footer text', // footer text
    'https://example.com/update-image.png', // optional image URL
    'https://example.com/more-info' // optional URL to make the title clickable
);  

discordPurgeCommands();
//opens a ticket in a new section with permisisons.
discordTickets();

//Spam rate
checkSpamRate();

// Call the radio function with the station URL and thumbnail URL
discordRadio('radioStationName', 'streamURL', 'logoOfradioStationURL.jpg');
Warning

Please note the below commands should only be called once:

discordTickets(); 
checkSpamRate(); 
discordCheckSpam(); 
discordRules(); 
discordXP();