Facebook
From ByMayFe, 3 Years ago, written in JavaScript.
Embed
Download Paste or View Raw
Hits: 271
  1. const Discord = require('discord.js');
  2.  
  3. var hd = [
  4.     "Tura",
  5.     "Yazı"
  6. ];
  7.  
  8. module.exports.run = async (bot, message, args) => {
  9.  
  10.   message.channel.send(message.author.toString() + " Yazı mı Tura mı : " + (hd[Math.floor(Math.random() * hd.length)]));
  11. }
  12.  
  13. exports.conf = {
  14.   enabled: true,
  15.   guildOnly: false,
  16.   aliases: ['yazıtura','turayazı','paraçevir','paradöndür'],
  17.   permLevel: 0
  18. };
  19.  
  20. exports.help = {
  21.   name: 'yazı-tura',
  22.   description: 'Yazı Tura Oynamanıza Yarar.',
  23.   usage: 'yazı-tura'
  24. };