Facebook
From Alpha, 3 Years ago, written in JavaScript.
This paste is a reply to mc-at-yardım from Alpha - view diff
Embed
Download Paste or View Raw
Hits: 151
  1. const Discord = require('discord.js');
  2. const ayarlar = require('../ayarlar.json');
  3. var prefix = ayarlar.prefix;
  4. exports.run = (client, message, args) => {
  5.  
  6.     const juke = new Discord.RichEmbed()
  7.     .setColor('BotAdı yardım menüsü')
  8.     .setAuthor(`Botadı`, client.user.avatarURL)
  9.       .setDescription('**[Website]() [destek sunucumuz]() [oyver]()**')
  10. .setThumbnail(client.user.avatarURL)
  11.       .addField('** !editle ()**', '`davet`, `istatistik`, `sor`, `afk`, `avatar`, `emojiler`, `roller`, `jumbo`, `kullanıcı-bilgi`, `ping`, `rol-bilgi`, `sunucu`, `sunucuresmi`')
  12.       .addField('** !editle ()**', '`küfür`, `modlog`, `otorol`, `otoselam`, `reklam`, `sayaç`, `sil-üye`, `sil`, `vkanal`, `yasakla`, `yaz`')
  13.       .addField('** !editle ()**', '`beyaz`, `kara`, `eval`, `reboot`')
  14.     .setFooter(``, client.user.avatarURL)
  15.     .setTimestamp()
  16.     message.channel.send(juke).catch()
  17.  
  18. };
  19.  
  20. exports.conf = {
  21.     enabled: true,
  22.     guildOnly: false,
  23.     aliases: [],
  24.     permLevel: 0
  25. };
  26.  
  27.  
  28.  
  29. exports.help = {
  30.     name: 'yardım',
  31.       category: 'Yardım',
  32.       description: 'Yardım kategorilerini gösteir.',
  33. };