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
- 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!* 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
};I want an asterisk symbol instead of a list.
Thanks