Advertisement
Guest User

Untitled

a guest
Dec 8th, 2019
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. const Discord = require('discord.js');
  2. const bot = new Discord.Client();
  3.  
  4. const token = '';
  5.  
  6. bot.on('ready', () =>{
  7. console.log('I am online!')
  8. })
  9.  
  10. bot.on('message', msg=>{
  11. if(msg.content === "general kenobi"
  12. msg.reply('hello there')
  13. }}
  14.  
  15. bot.login(token);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement