Separated inline's fields on embeds

Hiya, I'm looking to do something like the first image (recreated in DIscohook (someone needs to update this tool,its outdated with formatting features)) Basically, being able to start separete inlines. Inline, Inline Inline, Inline This is possibly an API question for the discord developers server, but I thought I'd post here first to see if anyone has an idea of how to go about this.
No description
No description
5 Replies
d.js toolkit
d.js toolkit4mo ago
- What's your exact discord.js npm list discord.js and node node -v version? - Not a discord.js issue? Check out #other-js-ts. - Consider reading #how-to-get-help to improve your question! - Explain what exactly your issue is. - Post the full error stack trace, not just the top part! - Show your code! - Issue solved? Press the button! - Marked as resolved by staff
Chen
ChenOP4mo ago
this is my current code. I tried to do something like creating a blank inline, but I dont know what characters I'd be able to use that have like, no height, no width or whatever.
const openingMessageEmbed = new EmbedBuilder()
.setTitle(`Ticket #${ticket.id} - ${ticket.ckey}`)
.setDescription(bwoinkString)
.addFields(
{
name: "ckey",
value: `${ticket.ckey} ${discordLinkRecord ? `(Discord Linked: <@${discordLinkRecord.id.toString()}>)` : ""}`,
inline: true,
},
{ name: "Keyname", value: ticket.keyName, inline: true },
// { name: "", value: "" },
{ name: "Round ID", value: ticket.roundId.toString(), inline: true },
{ name: "Ticket ID", value: ticket.id.toString(), inline: true },
// { name: "", value: "" },
{ name: "Dated", value: createFullTimestamp(ticket.openedAt), inline: true },
{ name: "Round Time @ creation", value: ticket.roundTimer, inline: true },
)
.setURL(
`http://viewer.monkestation.com/?roundid=${req.body.roundid}&password=${req.body.replay_pass}#${req.body.world_time.toString()}%60,
)

.setFooter({ text: "Click the title to open the replay" });
const openingMessageEmbed = new EmbedBuilder()
.setTitle(`Ticket #${ticket.id} - ${ticket.ckey}`)
.setDescription(bwoinkString)
.addFields(
{
name: "ckey",
value: `${ticket.ckey} ${discordLinkRecord ? `(Discord Linked: <@${discordLinkRecord.id.toString()}>)` : ""}`,
inline: true,
},
{ name: "Keyname", value: ticket.keyName, inline: true },
// { name: "", value: "" },
{ name: "Round ID", value: ticket.roundId.toString(), inline: true },
{ name: "Ticket ID", value: ticket.id.toString(), inline: true },
// { name: "", value: "" },
{ name: "Dated", value: createFullTimestamp(ticket.openedAt), inline: true },
{ name: "Round Time @ creation", value: ticket.roundTimer, inline: true },
)
.setURL(
`http://viewer.monkestation.com/?roundid=${req.body.roundid}&password=${req.body.replay_pass}#${req.body.world_time.toString()}%60,
)

.setFooter({ text: "Click the title to open the replay" });
Chen
ChenOP4mo ago
mmm..
No description
Chen
ChenOP4mo ago
spacing. Awesome, thanks.
Want results from more Discord servers?
Add your server