I’ve made this discord.js command for my bot which makes the bot go offline
The command makes the bot go offline, and before doing so, it sends an embed message saying it’s going offline, but I’m not to sure why it won’t work.
Discord.js 14 Ffor media channels – When new thread is posted, post a message in anoter channel
I have several media channels within my Discord. Each based around different topics.
I’m trying to get it to where if a new post is made in a media channel then a text channel gets a message sent into it with a link to the new media.
Can’t make an embed that mentions specific roles on DiscordJS
I have been trying to make a script that mentions all the users with specific roles on an embed ans recently I got this error
Member returning undefined
client.on("ready", () => { startUnmateInterval() })
DiscordJS Collector don´t Collect Message V14
require(‘dotenv’).config();
const { Client, GatewayIntentBits } = require(‘discord.js’);
const client = new Client({
intents: [
GatewayIntentBits.Guilds,
GatewayIntentBits.GuildMessages,
GatewayIntentBits.GuildMessageReactions,
],
});
can I show model menus one after another?
I need to make applications, but the modal menu only allows me to do 5 questions, how can I show a modal menu after applying another modal menu?
An invalid token was provided. Discord.js
Tried change the token parameters and still got this issue, i’ve only started the bot and here is what i got, never saw this happened before.
Detecting Application Commands Intended for Other Bots in Discord.js
I’m currently working on a Discord.js bot where I need to detect when users trigger application commands intended for other bots. I want to be able to track when a user sends a command like “/play” meant for a music bot, and then capture the interaction where the music bot responds.