- Gwynblêd#0001
- Katılım
- 27 Mar 2022
- Mesajlar
- 12
- Tepkime puanı
- 3
- Şehir
- Bursa
JavaScript:
const Discord = require("discord.js");
module.exports.run = async (client, message, args) => {
try {
await message.channel.send(`Komutlar: \n${client.commands.map(props => `\`${props.help.name}\``).join(" | ")}`);
} catch (e) {
throw e;
}
}
module.exports.conf = {
enabled: true,
guildOnly: false,
aliases: ["commands"],
permLevel: 0
};
module.exports.help = {
name: 'komutlar',
description: 'Botta bulunan tüm komutları gösterir',
usage: 'komutlar'
};

