Blazing
Blazing
DIAdiscord.js - Imagine an app
Created by Blazing on 4/16/2025 in #djs-questions
Is there a way to reset placeholder value and not have the message labelled as edited?
in continuance to #How to reset select menu placeholder after an option is selected, i only noticed this change after closing that thread
4 replies
DIAdiscord.js - Imagine an app
Created by Blazing on 4/16/2025 in #djs-questions
How to reset select menu placeholder after an option is selected
No description
6 replies
DIAdiscord.js - Imagine an app
Created by Blazing on 4/15/2025 in #djs-questions
Pinging Roles on interaction reply messages
i have a basic command that pings the chat revive role when run, but i cant seem to get the bot to ping the members with the role. is there something i am missing here is my code:
const { SlashCommandBuilder } = require('discord.js');

module.exports = {
data: new SlashCommandBuilder()
.setName('chat-revive')
.setDescription('pings the chat revive role'),
async execute(interaction) {
await interaction.reply('<@&1361727332900929806> rez the chat');
},
};
const { SlashCommandBuilder } = require('discord.js');

module.exports = {
data: new SlashCommandBuilder()
.setName('chat-revive')
.setDescription('pings the chat revive role'),
async execute(interaction) {
await interaction.reply('<@&1361727332900929806> rez the chat');
},
};
7 replies