Guest User

Untitled

a guest
May 27th, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. const Discord = require('discord.js');
  2. const client = new Discord.Client();
  3.  
  4. client.on('ready', () => {
  5. console.log('I am ready!');
  6. });
  7.  
  8. client.on('message', message => {
  9. if (message.content === 'ping') {
  10. message.reply('pong');
  11. }
  12. });
  13.  
  14. // THIS MUST BE THIS WAY
  15. client.login(process.env.BOT_TOKEN);
Add Comment
Please, Sign In to add comment