djs

  1. thegears

    discord.js adam ölçer(eğlence) ;

    var kisi = message.author; if(message.mentions.users.first()) var kisi = message.mentions.users.first(); message.channel.send(new Discord.MessageEmbed() .setTitle("Adamlık ölçer") .setDescription(`${kisi} %${Math.floor(Math.random()*101)} adam.`) .setColor("RANDOM"))
  2. thegears

    discord.js oto yardım menüsü ;

    Kaldırıldı.
  3. thegears

    discord.js basit v11 kodlarını v12'e çevirir ;

    if (!text) return message.channel.send("Doğru kullanım ``" + prefix + "v11tov12 <kod>``") message.channel.send( text .replace(/.find/g, ".cache.find") .replace(/.get/g, ".cache.get") .replace(/.map/g, ".cache.map") .replace(/.some/g, ".cache.some")...
  4. thegears

    discord.js botun çalışma süresini gösterir ;

    function duration(ms) { const sec = Math.floor(ms / 1000 % 60).toString(); const min = Math.floor(ms / (60*1000) % 60).toString(); const hrs = Math.floor(ms / (60*60*1000) % 60).toString(); const days = Math.floor(ms / (24*60*60*1000) %...