DontAskme

codea

Oct 15th, 2017
280
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. const Discord = require('discord.js');
  2.  
  3. const bot = new Discord.Client();
  4.  
  5. bot.on('ready', () => {
  6.     console.log("I am ready");
  7. });
  8.  
  9. bot.on('message', message => {
  10.     if(message.author !== bot.user) return;
  11.  
  12.     if(message.content === "hello") {
  13.         message.channel.sendMessage("world");
  14.     }
  15. });
  16.  
  17. bot.login("<SUPER SECRET TOKEN>");
Add Comment
Please, Sign In to add comment