LukeBruh / multipurpose-bot

a multipurpose discord bot made with dbd.js πŸ’•

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

multipurpose-bot

a multipurpose discord bot made with dbd.js!

πŸ’– installation and setup

  • first, go to index.js and change TOKEN with your bot token.

example:

const bot = new dbd.Bot({
  mobile: false, // you can change it to "true" if you want a mobile status
  token: "TOKEN", // change TOKEN with your bot token
  prefix: ['$getServerVar[prefix]', '<@!$clientID>', '<@$clientID>'] // you may change the bot's main prefix in vars.js
})
  • after setting that up. go to vars.js and change you main prefix!
  • don't change/remove anything in vars.js except for the prefix.

example:

module.exports = ({
prefix: ";", // you can change it with desired prefix
})
  • now, for the bot status.

example:

bot.status({
    text: `with $serverCount servers`, // put any text
    type: "PLAYING", // LISTENING, PLAYING, WATCHING, COMPETING
    status: "online", // online, dnd, idle, invisible
    time: 75 // amount of times where you can change the bot status (if have multiple statuses)
    })
  • for multiple bot statuses do this.

example:

bot.status({
    text: `in games`,
    type: "COMPETING",
    status: "online", 
    time: 75 
    })
    
bot.status({
    text: `music`, 
    type: "LISTENING", 
    status: "online", 
    time: 75
    })

bot.status({
    text: `tv shows`, 
    type: "WATCHING", 
    status: "online", 
    time: 75
    })
  • for streaming status.
bot.status({
    text: "text", 
    type: "STREAMING", 
    url: "enter url/link"
    })

in the console, type npm i dbd.js@2.2.6 and npm i dbd.db. then to start the bot, type node index.js. then there you go! you have made your multipurpose bot!

πŸ’ features and commands

πŸ”¨ utility:

help
command
invite
ping
setprefix

⬆ leveling:

leveling enable/disable [enabled by default]
levels
exp
expcooldown

πŸ’² economy:

daily
work
beg
balance
leaderboard
award [Bot Developer only command]

β„Ή information:

userinfo
channelinfo
roleinfo
serverinfo
botinfo

🎡 music:

play
stop
pause
resume
skip
skipto
queue
lyrics
volume
loopqueue
loopsong
nowplaying

About

a multipurpose discord bot made with dbd.js πŸ’•


Languages

Language:JavaScript 100.0%