! Bemep
! Bemep
DIAdiscord.js - Imagine an app
Created by ! Bemep on 2/18/2024 in #djs-questions
Put an asterisk symbol
Thanks
9 replies
DIAdiscord.js - Imagine an app
Created by ! Bemep on 2/18/2024 in #djs-questions
Put an asterisk symbol
I want an asterisk symbol instead of a list.
9 replies
DIAdiscord.js - Imagine an app
Created by ! Bemep on 2/18/2024 in #djs-questions
Put an asterisk symbol
No description
9 replies
DIAdiscord.js - Imagine an app
Created by ! Bemep on 2/18/2024 in #djs-questions
Put an asterisk symbol
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 };
9 replies
DIAdiscord.js - Imagine an app
Created by ! Bemep on 2/18/2024 in #djs-questions
Put an asterisk symbol
'\* Text' doesnt work
9 replies
DIAdiscord.js - Imagine an app
Created by ! Bemep on 2/18/2024 in #djs-questions
Put an asterisk symbol
'* Text'
9 replies
DIAdiscord.js - Imagine an app
Created by ! Bemep on 2/18/2024 in #djs-questions
Put an asterisk symbol
* Text
9 replies
DIAdiscord.js - Imagine an app
Created by ! Bemep on 1/21/2023 in #djs-questions
I am trying to send a local image
Thanks, my mistake
7 replies
DIAdiscord.js - Imagine an app
Created by ! Bemep on 1/21/2023 in #djs-questions
I am trying to send a local image
What to do?
7 replies
DIAdiscord.js - Imagine an app
Created by ! Bemep on 1/21/2023 in #djs-questions
I am trying to send a local image
Or you about it - const { Client, GatewayIntentBits, Partials, AttachmentBuilder } = require('discord.js');
7 replies
DIAdiscord.js - Imagine an app
Created by ! Bemep on 1/21/2023 in #djs-questions
I am trying to send a local image
No, that's all about the AttachmentBuilder
7 replies
DIAdiscord.js - Imagine an app
Created by ! Bemep on 1/21/2023 in #djs-questions
I am trying to send a local image
No picture
7 replies
DIAdiscord.js - Imagine an app
Created by ! Bemep on 1/21/2023 in #djs-questions
How to specify the path to the image from a folder on the computer in .setImage?
It seems to me that nothing but AttachmentBuilder will work
18 replies
DIAdiscord.js - Imagine an app
Created by ! Bemep on 1/21/2023 in #djs-questions
How to specify the path to the image from a folder on the computer in .setImage?
This does not work
18 replies
DIAdiscord.js - Imagine an app
Created by ! Bemep on 1/21/2023 in #djs-questions
How to specify the path to the image from a folder on the computer in .setImage?
Didn't understand - set it to be the file's name (including extension)
18 replies
DIAdiscord.js - Imagine an app
Created by ! Bemep on 1/21/2023 in #djs-questions
How to specify the path to the image from a folder on the computer in .setImage?
No, and I've already confirmed it
18 replies
DIAdiscord.js - Imagine an app
Created by ! Bemep on 1/21/2023 in #djs-questions
How to specify the path to the image from a folder on the computer in .setImage?
Yes, but I may accidentally delete or something like that, I would like it to be directly in the message
18 replies
DIAdiscord.js - Imagine an app
Created by ! Bemep on 1/21/2023 in #djs-questions
How to specify the path to the image from a folder on the computer in .setImage?
I want it to open like - media.discordapp.net or cdn.discordapp.com
18 replies
DIAdiscord.js - Imagine an app
Created by ! Bemep on 1/21/2023 in #djs-questions
How to specify the path to the image from a folder on the computer in .setImage?
I want it to open on the discord server when I open it in the browser
18 replies
DIAdiscord.js - Imagine an app
Created by ! Bemep on 11/15/2022 in #djs-questions
How can i edit a message by its id?
It works thanks
12 replies