ALL COMMANDS!
NPM 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('./node_modules/bb-dbotbits/discordReplies.js'); // Replies
const { discordTickets } = require('./node_modules/bb-dbotbits/discordTickets.js'); // discordTickets
const { discordReverse } = require('./node_modules/bb-dbotbits/discordReverse.js'); // discordReverse
const { discordRadio } = require('./node_modules/bb-dbotbits/discordRadio.js'); // discordRadio
const { discordLogin, token } = require('./node_modules/bb-dbotbits/discordHandler.js'); //discordLogin
const { checkSpamRate } = require('./node_modules/bb-dbotbits/checkSpamRate'); //discordLogin
const { discordPurgeCommands} = require('./node_modules/bb-dbotbits/discordPurge'); //purge commands setup
const { settings: discordRules } = require('./node_modules/bb-dbotbits/discordRules'); //Rules
const { discordCheckSpam } = require('./node_modules/bb-dbotbits/discordCheckSpam'); //Check for URLS
const { discordReplyEmbed } = require('./node_modules/bb-dbotbits/discordReplyEmbed.js'); // Embed
const { discordXP } = require('./node_modules/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();