最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Discord JS, discord-buttons; How to attach more than 5 buttons to a message? - Stack Overflow

programmeradmin3浏览0评论

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 badges
Add a ment  | 

2 Answers 2

Reset to default 6

You 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

发布评论

评论列表(0)

  1. 暂无评论