DEV Community

Discussion on: Hosting a Discord bot on Repl.it

Collapse
 
mlgmemezboi profile image
Existable

How do I make it so then I can add more commands instead of just the ping command?

Collapse
 
mataskrivickas profile image
Force Studios - Comms Open
  1. Get discord.js by downloading node.js
  2. I would recommend this code if you want a 2nd answer from the person and bot:

client.on('message', msg => {
if (msg.content === 'PERSONS MESSAGE') {
msg.reply('BOTS REPLY');
} else if (msg.content === 'PERSONS MESSAGE') {
msg.reply('BOTS REPLY')
}
});

// This is the full message command