Naxly
Kayıtlı Üye
- Katılım
- 6 Ocak 2022
- Mesajlar
- 10
- Tepkime puanı
- 4
- Aktiflik Süresi
- 0
- Puanları
- 0
- Konum
- Mersin
- Web sitesi
- laurelscraft.com
- Discord
- Naxly#0033
Yazı Tura Oyun Skripti
const Discord = require('discord.js');
const chancejs = require('chance');
const chance = new chancejs();
const cevaplar = [
"YAZI-TURA:__TURA__**",
"YAZI-TURA:__YAZI__**"
];
exports.run = function(client, message) {
var cevap = cevaplar[Math.floor(Math.random() * cevaplar.length)];
if (cevap === "Yazı Tura:__Yazı__**") {
const embedyazı = new Discord.RichEmbed()
.setColor(0xf4b942)
.setDescription(cevap)
.setThumbnail("Ziyaretçiler için gizlenmiş link,görmek için Giriş yap veya üye ol.")
message.channel.send(embedyazı);
} else if (cevap === "Yazı-Tura:__Tura__**") {
const embedtura = new Discord.RichEmbed()
.setColor(0xf4b942)
.setDescription(cevap)
.setThumbnail("Ziyaretçiler için gizlenmiş link,görmek için Giriş yap veya üye ol.")
message.channel.send(embedtura);
}
};
exports.conf = {
enabled: true,
guildOnly: false,
aliases: [],
permLevel: 0
};
exports.help = {
name: 'yazıtura',
description: 'Yazı-Tura atar.',
usage: 'yazıtura'
};