Advertisement
Wetzu

Commands

Jan 18th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. if (message.content.startsWith(prefix + 'avatar')) {
  2.     message.reply(message.author.avatarURL)
  3. }
  4.  
  5. if (message.content.startsWith(prefix + 'help')) {
  6.     message.reply(":white_check_mark: Check your DMs~")
  7.     message.author.send({embed: {
  8.         color: 3447003,
  9.         description: "`Here are my commands!`\n**MISC**\n`help - Shows this menu`\n`invite - Gives your a link to invite me to your server!` \n`ping - To test if your bot is alive`\n`shrug - Shows a shrug picture`"
  10.     }
  11.  
  12. if(message.content.startsWith(prefix + 'invite')) {
  13.    message.reply(":white_check_mark: Check yours DMs~")
  14.    message.author.send({embed: {
  15.     color: 3447003,
  16.     description: "Use this to invite me!\n https://discordapp.com/oauth2/authorize?&client_id=401967891869597697&scope=bot&permissions=0"
  17.   }});
  18.  
  19. if (message.content.startsWith(prefix + 'shrug')) {
  20.     message.channel.send(' https://imgur.com/Zx9EboQ ');
  21. }
  22. });
  23.  
  24.  
  25. bot.login(settings.token)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement