- EnesKurt#0444
- Katılım
- 22 Tem 2021
- Mesajlar
- 108
- Tepkime puanı
- 62
- Şehir
- Balıkesir
Kadın gif atar
JavaScript:
const Discord = require("discord.js");
module.exports.run = async (bot, message, args) => {
let replies = ["https://cdn.discordapp.com/attachments/694694493525377035/737302021295833109/GIF-200727_113742.gif","https://cdn.discordapp.com/attachments/694694493525377035/737302739444301824/wqeqw.gif","https://cdn.discordapp.com/attachments/694694493525377035/737303378173886554/a_14254a7b0842b2a7f32a19cb34028da4.gif","https://cdn.discordapp.com/attachments/694694493525377035/737302765520551946/a_dfda87717edc3a1ee1057aec5304f082.gif","https://cdn.discordapp.com/attachments/694694493525377035/737310262906060810/image0.gif","https://cdn.discordapp.com/attachments/694694493525377035/737310178180989009/image0.gif","https://cdn.discordapp.com/attachments/694694493525377035/737310007929864252/image0.gif","https://cdn.discordapp.com/attachments/694694493525377035/737300958031380549/a_e052cc1eb09b212fa6b4c3644450b154.gif","https://cdn.discordapp.com/attachments/694694493525377035/737301552750002226/rosiegif4.gif","https://cdn.discordapp.com/attachments/694694493525377035/737301660455534642/GIF.6.gif","https://cdn.discordapp.com/attachments/694694493525377035/737301813912666145/gif_342.gif","https://cdn.discordapp.com/attachments/694694493525377035/737301817615974471/GIF.5.gif","https://cdn.discordapp.com/attachments/694694493525377035/737301870971846687/gif_346.gif","https://cdn.discordapp.com/attachments/694694493525377035/737301916379381790/gif_335.gif","https://cdn.discordapp.com/attachments/694694493525377035/737021018333249546/Lorie10.gif","https://cdn.discordapp.com/attachments/694694493525377035/737021142547693618/a_3a35e998e21a471ca9999b2e78051d53.gif","https://cdn.discordapp.com/attachments/694694493525377035/737036899612360774/a_0edcde786dca1aa7cb3caf12af732bc5.gif"];
let result = Math.floor((Math.random() * replies.length));
let gifembed = new Discord.MessageEmbed()
.setTitle("Woman Gif ")
.setColor("#f6ff00")
.setFooter(`${message.author.tag} `, message.author.avatarURL)
.setImage(replies[result]);
message.channel.send(gifembed);
};
exports.conf = {
enabled: true,
guildOnly: false,
aliases: ['gif-woman','woman-gif','gifwoman','womangif','kadın'],
permLevel: 0
};
exports.help = {
name: 'woman-gif',
description: 'kadın gifi',
usage: 'woman'
};