Advertisement
Guest User

Untitled

a guest
Jul 21st, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. const Discord = require("discord.js");
  2. var bot = new Discord.Client();
  3. const prefix = "!";
  4.  
  5. bot.on('ready', ()=>{
  6. console.log("Bot is online");
  7. })
  8.  
  9. bot.on('message', (message)=>{
  10. if(!message.content.startsWith(prefix)) return;
  11.  
  12. if(message.content.startsWith(prefix + "Assassin")){
  13. message.channel.send(message.author + "your role is set!");
  14. author.addRole(author.guild.roles.find("author", "Assassin"));
  15. }
  16.  
  17. })
  18.  
  19. bot.login("NDY5NzI2NzQxOTMwMTgwNjEw.DjL8Og.f6wQ6riGfxmdFdVfjtsYS8JO5jQ");
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement