Facebook
From fdsfsdfsd, 5 Years ago, written in Plain Text.
Embed
Download Paste or View Raw
Hits: 240
  1. if(cmd === `${prefix}yumrukat`) {
  2.  let mesaj = args.slice(0).join(' ');
  3.   let resim = ["https://media1.tenor.com/images/4586b72e5e36fec52202b9c42d8b8dd6/tenor.gif", "https://media.giphy.com/media/ZZsSZ0R9pnzeo/giphy.gif", "http://media.giphy.com/media/LI8IW6561s9pu/giphy.gif", "https://media.giphy.com/media/fO1c8eUlcx2bS/giphy.gif"];
  4.   let result = Math.floor((Math.random() * resim.length));
  5.   if (mesaj.length < 1) return message.channel.send(':warning: Yumruk atacağın kişiyi etiketlemelisin. Örnek ``8!yumrukat @832 BOT``');
  6.     const embed = new Discord.RichEmbed()
  7.     .setAuthor('')
  8.     .setColor("#990000")
  9.     .setDescription(`${mesaj}` + message.author.username + ' isimli kullanıcıya yumruk attı.')
  10.         .setImage(`${resim[result]}`)
  11.   .setFooter(`${message.author.username} tarafından istendi.`);
  12.     message.channel.sendEmbed(embed);
  13. }