How to attach more than 5 buttons to a message with discord-buttons, discord.js?
Example
The way I try:
let Buttons = [];
Buttons[0] = new discordButton.MessageButton().setStyle('gray').setID("0").setLabel(' ');
Buttons[1] = new discordButton.MessageButton().setStyle('gray').setID("1").setLabel(' ');
Buttons[2] = new discordButton.MessageButton().setStyle('gray').setID("2").setLabel(' ');
Buttons[3] = new discordButton.MessageButton().setStyle('gray').setID("3").setLabel(' ');
Buttons[4] = new discordButton.MessageButton().setStyle('gray').setID("4").setLabel(' ');
Buttons[5] = new discordButton.MessageButton().setStyle('gray').setID("5").setLabel(' ');
Buttons[6] = new discordButton.MessageButton().setStyle('gray').setID("6").setLabel(' ');
Buttons[7] = new discordButton.MessageButton().setStyle('gray').setID("7").setLabel(' ');
Buttons[8] = new discordButton.MessageButton().setStyle('gray').setID("8").setLabel(' ');
msg.channel.send(`...`, { buttons:Buttons });
The error it gets:
DiscordAPIError: Invalid Form Body
ponents[0]ponents[5]: The specified ponent exceeds the maximum width
ponents[0]ponents[6]: The specified ponent exceeds the maximum width
ponents[0]ponents[7]: The specified ponent exceeds the maximum width
ponents[0]ponents[8]: The specified ponent exceeds the maximum width
method: 'post',
path: '/channels/656858400440975371/messages',
code: 50035,
httpStatus: 400
}
Does it have something to do with my bot account?
How to attach more than 5 buttons to a message with discord-buttons, discord.js?
Example
The way I try:
let Buttons = [];
Buttons[0] = new discordButton.MessageButton().setStyle('gray').setID("0").setLabel(' ');
Buttons[1] = new discordButton.MessageButton().setStyle('gray').setID("1").setLabel(' ');
Buttons[2] = new discordButton.MessageButton().setStyle('gray').setID("2").setLabel(' ');
Buttons[3] = new discordButton.MessageButton().setStyle('gray').setID("3").setLabel(' ');
Buttons[4] = new discordButton.MessageButton().setStyle('gray').setID("4").setLabel(' ');
Buttons[5] = new discordButton.MessageButton().setStyle('gray').setID("5").setLabel(' ');
Buttons[6] = new discordButton.MessageButton().setStyle('gray').setID("6").setLabel(' ');
Buttons[7] = new discordButton.MessageButton().setStyle('gray').setID("7").setLabel(' ');
Buttons[8] = new discordButton.MessageButton().setStyle('gray').setID("8").setLabel(' ');
msg.channel.send(`...`, { buttons:Buttons });
The error it gets:
DiscordAPIError: Invalid Form Body
ponents[0].ponents[5]: The specified ponent exceeds the maximum width
ponents[0].ponents[6]: The specified ponent exceeds the maximum width
ponents[0].ponents[7]: The specified ponent exceeds the maximum width
ponents[0].ponents[8]: The specified ponent exceeds the maximum width
method: 'post',
path: '/channels/656858400440975371/messages',
code: 50035,
httpStatus: 400
}
Does it have something to do with my bot account?
Share Improve this question asked Aug 13, 2021 at 19:56 keshakesha 471 gold badge1 silver badge9 bronze badges2 Answers
Reset to default 6You can try doing this:
const msg = await message.channel.send({
embed: YOUR EMBED HERE,
ponents: [
{
type: 1,
ponents: [Button[0], Button[1], Button[2], Button[3], Button[4]],
},
{
type: 1,
ponents: [more, buttons, here, max, 5]
}
{
type: 1,
ponents: [you, can, do, 5, times]
}
]
});
I hope this helped :D
I suggest that you read through or reference the Discord API documentation, here you could find out the following information:
- Buttons must be sent inside an Action Row
- An Action Row can contain up to 5 buttons
Reference: https://discord./developers/docs/interactions/message-ponents