Advertisement
Guest User

Untitled

a guest
Jan 24th, 2017
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. bot.on('message', msg => {
  2. //Prefix
  3. let prefix = "~"
  4. // Return
  5. if (!msg.content.startsWith(prefix)) return;
  6. // Exit if bot executes command
  7. if(msg.author.bot) return;
  8.  
  9. if(msg.content.startsWith(prefix + 'help')){
  10. console.log(colors.red(msg.author.username+' Executed ~help'));
  11. msg.reply('I have sent you a DM with my commands!');
  12. msg.author.sendMessage('Reply')
  13.  
  14. }});
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement