Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Embed not working use HELP command not send it #603

Open
SametKecici opened this issue Nov 24, 2021 · 6 comments
Open

Embed not working use HELP command not send it #603

SametKecici opened this issue Nov 24, 2021 · 6 comments

Comments

@SametKecici
Copy link

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
}

@RXNationGMG
Copy link

I got the same error

@RXNationGMG
Copy link

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

@Shadoukita
Copy link

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.

@ghost
Copy link

ghost commented Apr 10, 2022

You need to use discord.js v12

@SametKecici
Copy link
Author

SametKecici commented Apr 10, 2022 via email

@SametKecici
Copy link
Author

image
what is this

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants