Put an asterisk symbol

I want to make a note in the text of my bot ("* text"), but when I put an asterisk symbol, an asterisk is created, and if I use a slash it does not help.
4 Replies
d.js toolkit
d.js toolkit10mo 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!
! Bemep
! BemepOP10mo ago
* Text '* Text' '\* Text' doesnt work const Discord = require('discord.js'); const { Client, GatewayIntentBits, Partials, AttachmentBuilder } = require('discord.js'); const client = new Client({ intents: [GatewayIntentBits.Guilds], partials: [Partials.Channel] }); const { EmbedBuilder } = require('discord.js'); module.exports = async (client, args, argsF) => { const exampleEmbed = new EmbedBuilder() .setColor(0x00c0ff) .setDescription('* Text') const channel = client.channels.cache.get(965617293667233792); const message = await channel.messages.fetch(1030496887742136330); channel.messages.edit("1030496887742136330", { embeds: [exampleEmbed]}) } module.exports.names = ["editembed"]; module.exports.interaction = { name: 'editembed', description: 'Command description.', defaultPermission: true };
! Bemep
! BemepOP10mo ago
No description
! Bemep
! BemepOP10mo ago
I want an asterisk symbol instead of a list. Thanks
Want results from more Discord servers?
Add your server