LyloN
Ne Mutlu Türküm Diyene!
JavaScript:
const Discord = require("discord.js");
exports.run = async (client, message, args) => {
///////////////////////////
var sözler = [
"Dıriiiii amını biç",
"Amını biç",
"Kuraaa",
"Ammınaa Koyu",
"Diri amuangoyim vallah",
"Hasooo",
"İbin oğluuu",
"sG",
]
var veritabanı = sözler[Math.floor(Math.random() * (sözler.length))]
var resim = [
"https://cdn.discordapp.com/attachments/828968549594693662/830446062464532490/iM2Mz8dO_400x400.jpg",
"https://cdn.discordapp.com/attachments/828968549594693662/830446065001168976/BL9BtME5.jpg",
"https://cdn.discordapp.com/attachments/828968549594693662/830446075357822976/maxresdefault_1.jpg",
"https://cdn.discordapp.com/attachments/828968549594693662/830446079953862686/maxresdefault.jpg"
]
var görsel = resim[Math.floor(Math.random() * (resim.length))]
///////////////////////////
const vrs = new Discord.MessageEmbed()
.setColor("RED")
.setThumbnail(`${görsel}`)
.setTitle("Hiko Baba Diyor Ki:")
.setDescription(`${veritabanı}`)
message.channel.send(vrs);
///////////////////////////
};
exports.conf = {
enabled: true,
guildOnly: true,
aliases: ["hikobaba"],
permLevel: 0
};
exports.help = {
name: "hikobaba"
};