Advertisement
DontAskme

lolrekta

Oct 15th, 2017
342
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  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("MjM4OTkzMzc0MjYxMDE4NjI0.C_GOxg.qBFJkaLl9b0G-uGf2gOX9hpSR7w");
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement