unddasnoch
unddasnoch
DIAdiscord.js - Imagine an app
Created by unddasnoch on 12/21/2023 in #djs-questions
modal password warning removal
Can i turn the warning off about not sharing your password or other sensitive information inside the modal?
4 replies
DIAdiscord.js - Imagine an app
Created by unddasnoch on 12/6/2023 in #djs-questions
discord message reactions
when i try to get the event from the messages with Events.MessageReactionAdd its not even reacting and printing out a simple console output i already have all intents i guess i need as you can see here
const client = new Client({
intents: [
GatewayIntentBits.GuildMessages,
GatewayIntentBits.Guilds,
GatewayIntentBits.MessageContent,
GatewayIntentBits.GuildPresences,
GatewayIntentBits.GuildMembers,
GatewayIntentBits.GuildMessageReactions,
]
});

// the simple version for a simple output
client.on(Events.MessageReactionAdd, (reaction, user) => {
console.log("someone reacted to something");
});
const client = new Client({
intents: [
GatewayIntentBits.GuildMessages,
GatewayIntentBits.Guilds,
GatewayIntentBits.MessageContent,
GatewayIntentBits.GuildPresences,
GatewayIntentBits.GuildMembers,
GatewayIntentBits.GuildMessageReactions,
]
});

// the simple version for a simple output
client.on(Events.MessageReactionAdd, (reaction, user) => {
console.log("someone reacted to something");
});
5 replies
DIAdiscord.js - Imagine an app
Created by unddasnoch on 12/5/2023 in #djs-questions
embedding an manipulated image inside the box
No description
9 replies