Facebook
From sfsdfsdf, 5 Years ago, written in Plain Text.
Embed
Download Paste or View Raw
Hits: 253
  1. if(cmd === `${prefix}öp`) {
  2.  let mesaj = args.slice(0).join(' ');
  3.   let resim = ["ttps://media.giphy.com/media/AdyM4dgWi9XNu/giphy.gif", "https://howtokissgifs.com/wp-content/uploads/2015/03/kiss-gif-5.gif", "https://media.giphy.com/media/YLduinEW3YuVG/giphy.gif", "https://media3.giphy.com/media/3osxYpWPiQ5UPHsyas/giphy.gif"];
  4.         let result = Math.floor((Math.random() * resim.length));
  5.   if (mesaj.length < 1) return message.channel.send(':warning: Öpeceğin kişiyi etiketlemelisin. Örnek ``8!öp @832 BOT``');
  6.     const embed = new Discord.RichEmbed()
  7.     .setAuthor('')
  8.     .setColor("#990000")
  9.     .setDescription(`${mesaj}` + message.author.username + ' isimli kullanıcıyı öptü.')
  10.         .setImage(`${resim[result]}`)
  11.   .setFooter(`${message.author.username} tarafından istendi.`);
  12.     message.channel.sendEmbed(embed);
  13. }