Facebook
From vfdsfsdfsd, 5 Years ago, written in Plain Text.
Embed
Download Paste or View Raw
Hits: 232
  1. if(cmd === `${prefix}öp`) {
  2.  let mesaj = args.slice(0).join(' ');
  3.         if (mesaj.length < 1) return message.reply(':warning: Öpeceğin kişiyi etiketlemelisin. Örnek ``8!öp @832 BOT``');
  4.     const embed = new Discord.RichEmbed()
  5.     .setAuthor('')
  6.     .setColor("#990000")
  7.     .setDescription(`${mesaj} ` + message.author.username + ' isimli kullanıcıyı öptü.')
  8.         .setImage(`https://media.giphy.com/media/AdyM4dgWi9XNu/giphy.gif`)
  9.   .setFooter(message.author.username);
  10.     message.channel.sendEmbed(embed);
  11. }