if(cmd === `${prefix}öp`) { let mesaj = args.slice(0).join(' '); 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"]; let result = Math.floor((Math.random() * resim.length)); if (mesaj.length < 1) return message.channel.send(':warning: Öpeceğin kişiyi etiketlemelisin. Örnek ``8!öp @832 BOT``'); const embed = new Discord.RichEmbed() .setAuthor('') .setColor("#990000") .setDescription(`${mesaj}` + message.author.username + ' isimli kullanıcıyı öptü.') .setImage(`${resim[result]}`) .setFooter(`${message.author.username} tarafından istendi.`); message.channel.sendEmbed(embed); }