Open SametKecici opened 3 years ago
I got the same error
DiscordAPIError: Cannot send an empty message at RequestHandler.execute (/home/runner/AtlantaBot/node_modules/discord.js/src/rest/RequestHandler.js:154:13) at runMicrotasks () at processTicksAndRejections (internal/process/task_queues.js:97:5) at async RequestHandler.push (/home/runner/AtlantaBot/node_modules/discord.js/src/rest/RequestHandler.js:39:14) { method: 'post', path: '/channels/910820565676359741/messages', code: 50006, httpStatus: 400 }
Maybe Try This One:
const Command = require("../../base/Command.js"),
Discord = require("discord.js");
class Help extends Command {
constructor (client) {
super(client, {
name: "help",
dirname: __dirname,
enabled: true,
guildOnly: false,
aliases: [ "aide", "h", "commands" ],
memberPermissions: [],
botPermissions: [ "SEND_MESSAGES", "EMBED_LINKS" ],
nsfw: false,
ownerOnly: false,
cooldown: 5000
});
}
async run (message, args, data) {
// if a command is provided
if(args[0]){
const isCustom = (message.guild && data.guild.customCommands ? data.guild.customCommands.find((c) => c.name === args[0]) : false);
// if the command doesn't exist, error message
const cmd = this.client.commands.get(args[0]) || this.client.commands.get(this.client.aliases.get(args[0]));
if(!cmd && isCustom){
return message.error("general/help:CUSTOM", {
cmd: args[0]
});
} else if(!cmd){
return message.error("general/help:NOT_FOUND", {
search: args[0]
});
}
const description = message.translate(`${cmd.help.category.toLowerCase()}/${cmd.help.name}:DESCRIPTION`);
const usage = message.translate(`${cmd.help.category.toLowerCase()}/${cmd.help.name}:USAGE`, {
prefix: message.guild
? data.guild.prefix
: ""
}
);
const examples = message.translate(`${cmd.help.category.toLowerCase()}/${cmd.help.name}:EXAMPLES`, {
prefix: message.guild
? data.guild.prefix
: ""
}
);
// Creates the help embed
const groupEmbed = new Discord.MessageEmbed()
.setAuthor(
message.translate("general/help:CMD_TITLE", {
prefix: message.guild
? data.guild.prefix
: "",
cmd: cmd.help.name
})
)
.addField(
message.translate("general/help:FIELD_DESCRIPTION"),
description
)
.addField(message.translate("general/help:FIELD_USAGE"), usage)
.addField(
message.translate("general/help:FIELD_EXAMPLES"),
examples
)
.addField(
message.translate("general/help:FIELD_ALIASES"),
cmd.help.aliases.length > 0
? cmd.help.aliases.map(a => "`" + a + "`").join("\n")
: message.translate("general/help:NO_ALIAS")
)
.addField(
message.translate("general/help:FIELD_PERMISSIONS"),
cmd.conf.memberPermissions.length > 0
? cmd.conf.memberPermissions.map((p) => "`"+p+"`").join("\n")
: message.translate("general/help:NO_REQUIRED_PERMISSION")
)
.setColor(this.client.config.embed.color)
.setFooter(this.client.config.embed.footer);
// and send the embed in the current channel
return message.channel.send(groupEmbed);
}
const categories = [];
const commands = this.client.commands;
commands.forEach((command) => {
if(!categories.includes(command.help.category)){
if(command.help.category === "Owner" && message.author.id !== this.client.config.owner.id){
return;
}
categories.push(command.help.category);
}
});
const emojis = this.client.customEmojis;
const embed = new Discord.MessageEmbed()
.setDescription(message.translate("general/help:INFO", {
prefix: message.guild
? data.guild.prefix
: ""
}))
.setColor(data.config.embed.color)
.setFooter(data.config.embed.footer);
categories.sort().forEach((cat) => {
const tCommands = commands.filter((cmd) => cmd.help.category === cat);
embed.addField(emojis.categories[cat.toLowerCase()]+" "+cat+" - ("+tCommands.size+")", tCommands.map((cmd) => "`"+cmd.help.name+"`").join(", "));
});
if(message.guild){
if(data.guild.customCommands.length > 0){
embed.addField(emojis.categories.custom+" "+message.guild.name+" | "+message.translate("general/help:CUSTOM_COMMANDS")+" - ("+data.guild.customCommands.length+")", data.guild.customCommands.map((cmd) => "`"+cmd.name+"`").join(", "));
}
}
embed.addField("\u200B", message.translate("misc:STATS_FOOTER", {
donateLink: "https://patreon.com/Androz2091",
dashboardLink: "https://dashboard.atlanta-bot.fr",
inviteLink: await this.client.generateInvite({
permissions: ["ADMINISTRATOR"]
}),
githubLink: "https://github.com/Androz2091",
supportLink: "https://discord.atlanta-bot.fr"
}));
embed.setAuthor(message.translate("general/help:TITLE", {
name: this.client.user.username
}), this.client.user.displayAvatarURL({ size: 512, dynamic: true, format: 'png' }));
return message.channel.send(embed);
}
}
module.exports = Help;
Idk if it will work
I recommend using Atlanta version 4.11, since 4.12 has some bugs like this. Version 4.11 has the same features 4.12 is just rewritten.
You need to use discord.js v12
[image: image.png] what is this
NotRennaru @.***>, 10 Nis 2022 Paz, 06:31 tarihinde şunu yazdı:
You need to use discord.js v12
— Reply to this email directly, view it on GitHub https://github.com/Androz2091/AtlantaBot/issues/603#issuecomment-1094167776, or unsubscribe https://github.com/notifications/unsubscribe-auth/ALIVOKDZLS7IEFEF44KNYSDVEJDRLANCNFSM5IVTDISQ . You are receiving this because you authored the thread.Message ID: @.***>
what is this
DiscordAPIError: Cannot send an empty message at RequestHandler.execute (/home/runner/AtlantaBot/node_modules/discord.js/src/rest/RequestHandler.js:154:13) at runMicrotasks ()
at processTicksAndRejections (internal/process/task_queues.js:97:5)
at async RequestHandler.push (/home/runner/AtlantaBot/node_modules/discord.js/src/rest/RequestHandler.js:39:14) {
method: 'post',
path: '/channels/910820565676359741/messages',
code: 50006,
httpStatus: 400
}