Resend Messages in Another Chat
Hey! I'm having a problem downloading and uploading videos. This is code that saves an attachment in a buffer and sends it in a chat. But if I try that way, the video keeps loading infinitely. This works with images correctly.
I've tried sending the Attachment object instead of a BufferResolvable, but if I delete the original message, the one sent is broken.
Where am I making mistakes?
...
Command Autofill Picture
i'm trying to make the picture shown when you type / the bot's avatar instead of this blue grid.

Reference Error.
There is an issue in my command handler and no matter what I change it won't work. Code and Error Is attached.

Duplicated Application Commands
A few commands are duplicated even tho I've only put them once in the code.

Is there something like a "converter" to update old Discord.js?
I have discord.js 12.5.3 and I want to quicken the process of updating, is there something that can do this automatically?
Would it be possible to make this have a generic type?
```ts
export function generateActionRows<T>(buttons: ButtonBuilder[]): ActionRowBuilder<T> {
const actionRows: ActionRowBuilder<ButtonBuilder>[] = [];
let currentRow = new ActionRowBuilder<ButtonBuilder>();
...
Unexpected end of input for no reason.
```java
(async () => {
try {
await client.login(process.env.token);
} catch (error) {...
Code Not working
```js
const Discord = require('discord.js');
const client = new Discord.Client({
intents: {...
How do I create buttons under messages?
I have a message how to link buttons to it?
I understand MessageActionRow, Message Button, Message Embed
are outdated
```js
const { Client, Intents, MessageActionRow, MessageButton, MessageEmbed } = require('discord.js');...
DiscordJS & Discords Voice Notes
I was wondering if it’s possible for bots to detect voice notes, if so, my initial plan is to make some sort of like Historical Notes Storage system to download the file, then put it in another channel stating who made said voice note.
Direct message not being sent
The bot is supposed to send a direct message to the user if he used a blacklisted word in his message. I’m using discord.js@13.0.0.
Part of the code:
client.on('messageCreate', async (message) => {
if (message.author.bot) return;...
SlashCommandHandler - Not answering
So I've created the deploy-commands & slashcommandhandler from Discord.Js guide docs, my commands do appear when I use /ping, but it doesnt respond
Twitch
Hello I would like to know how to make a live twitch announcement system in discord.js v14 version? If someone has tips I am taker:D or even editable scripts, I would like to make a system or I would have just added the name of the twitch channel in question and its announcement in a specific channel on my server
Best way to handle ready event failure
Recently my bot had a lot of downtime because it auto-restarted but never got properly readied; it seems it silently errored with a
RequestAbortedError.
What's the best way to handle something happening like that? When it errored it never fired the ready event and put the bot into a do-nothing limbo until I manually restarted it. Is there an event I should listen to, or just a generic timeout I should set to see if it readied properly?...discord.js ignores select menu input
```js
const { Events, EmbedBuilder, ActionRowBuilder, StringSelectMenuOptionBuilder, StringSelectMenuBuilder, ComponentType } = require("discord.js");
module.exports = {
name: Events.InteractionCreate,...
Add role to user
Hey guys, im trying to add role to user but it didn't work
```js
const guild = client.guilds.cache.get("1078542061235609640"); ...

