/discord-bot

Primary LanguageJavaScript

Project logo

Discord BOT

Carrot 🥕

GitHub last commit Discord GitHub followers


🧐 About

A chat bot for Discord app based off discord.js.

📝 List of commands

Soon.

Write !help to the chat to get a full list of available commands.

Permissions

What things you need to install the software and how to install them.

Permission Reason
Read Messages Detect the commands
Send messages Respond to commands
Manage Messages Can delete or edit messages
View Channel
Connect
Speak
Mention @everyone, @here, and All Roles
Kick members Kick innactive members
Ban members For fun

Installing

Connect to discord (currently unnavailable)

🚀 Code example

const Discord = require('discord.js');
const client = new Discord.Client();

client.on('ready', () => {
  console.log('Carrot is online!');
});

client.on('message', msg => {
  if (msg.content === 'ping') {
    msg.reply('pong');
  }
});

client.login('token');

🔗 Useful links

If you want to make your own discord bot, I recommend you these sites:

Extensions