Waxer59
Waxer59
DIAdiscord.js - Imagine an app
Created by Waxer59 on 7/25/2023 in #djs-questions
Get the id of the user who disconnected from vc
Hello, how would it be possible to have the user id of the user that was disconnected?
4 replies
DIAdiscord.js - Imagine an app
Created by Waxer59 on 3/20/2023 in #djs-questions
Channel Slowmode
Hello, how do I add the slowmode to the channel configuration when I am creating it?
5 replies
DIAdiscord.js - Imagine an app
Created by Waxer59 on 2/19/2023 in #djs-questions
Event when the bot is kicked from the server
Hello, what would be the event when the discord bot is kicked out of the server?
4 replies
DIAdiscord.js - Imagine an app
Created by Waxer59 on 2/17/2023 in #djs-questions
Channels within a category
Hello, how can I know how many channels are in a category?
7 replies
DIAdiscord.js - Imagine an app
Created by Waxer59 on 2/16/2023 in #djs-questions
Deny send messages
Hi, I am trying to remove the permission to write in a channel but it is not working, I probably have something wrong but I don't know what.
permissionOverwrites: [
{
id: interaction.user.id,
deny: [PermissionsBitField.Flags.SendMessages]
}
]
permissionOverwrites: [
{
id: interaction.user.id,
deny: [PermissionsBitField.Flags.SendMessages]
}
]
4 replies
DIAdiscord.js - Imagine an app
Created by Waxer59 on 2/16/2023 in #djs-questions
Change voice channel name
Hi, I am making a channel that counts the members of the server, but when I update the number of members in the channel name it only updates the first time and does not change the name the following times, how can I fix it?
10 replies
DIAdiscord.js - Imagine an app
Created by Waxer59 on 2/15/2023 in #djs-questions
Channel permissions
Hi, I'm creating a voice channel with the following code and I don't know how to make it accessible only to people with the administrator role.
const memberCounterChannelId = await interaction.guild.channels.create({
name: `📈 | ${interaction.guild.memberCount}`,
parent: parent ?? null,
type: ChannelType.GuildVoice,
})
const memberCounterChannelId = await interaction.guild.channels.create({
name: `📈 | ${interaction.guild.memberCount}`,
parent: parent ?? null,
type: ChannelType.GuildVoice,
})
4 replies
DIAdiscord.js - Imagine an app
Created by Waxer59 on 1/21/2023 in #djs-questions
Get channel by id
Hi, im trying to get a channel by it's id but i get undefined
10 replies
DIAdiscord.js - Imagine an app
Created by Waxer59 on 1/20/2023 in #djs-questions
Get the voice channel the bot is connected to
Hello, how can I get the id of the voice channel the bot is connected to?
5 replies
DIAdiscord.js - Imagine an app
Created by Waxer59 on 1/17/2023 in #djs-questions
Get Voice channel
Hi, How can I get the voice channel the user is currently on when the user sends a text message?
9 replies