Facebook
From lera, 3 Years ago, written in Plain Text.
Embed
Download Paste or View Raw
Hits: 93
  1. const Discord = require('discord.js')
  2. exports.run = (client, message, args) => {
  3.  
  4.   message.channel.send(
  5.     new Discord.RichEmbed()
  6.       .setColor('#000000')
  7.       .setTitle(`Davet Etmek İçin Bana Tıkla`)
  8.       .setURL(`https://discord.com/oauth2/authorize?client_id=${client.user.id}&scope=bot&permissions=8`)
  9.      .setFooter(`Biftek İs Best`)
  10. )
  11.  
  12. }
  13.  
  14. exports.conf = {
  15.   enabled: true,
  16.   guildOnly: true,
  17.   aliases: [],
  18.   permLevel: 0
  19. }
  20.  
  21. exports.help = {
  22.   name: 'davet'
  23. }