discord commands

  1. Rewindo

    Otomatik bütün komutları çeken bir kod.

    const Discord = require("discord.js"); module.exports.run = async (client, message, args) => { try { await message.channel.send(`Komut listesinde ${client.commands.size} adet komut bulunmaktadır. \n${client.commands.map(props => `\`${props.help.name}\``).join(" - ")}`); } catch...