Skip to content

Instantly share code, notes, and snippets.

@Pavich7
Last active May 5, 2021 09:46
Show Gist options
  • Save Pavich7/7b03dfe19956a3cae2b024be7a1fbdae to your computer and use it in GitHub Desktop.
Save Pavich7/7b03dfe19956a3cae2b024be7a1fbdae to your computer and use it in GitHub Desktop.
Pavich's SimpleBot on YouTube Tutorial
const Discord = require('discord.js');
const bot = new Discord.Client();
const token = '';
bot.on('message' , msg=>{
if(msg.content === "Hello"){
msg.reply('Hello friend! :)')
console.log(`botlog input = Hello`);
}
})
bot.login(token);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment