Error with Ping command
I made a ping command and wanted to go a little further. I wanted to display the bot's ping by executing /ping, but it's not working. Despite many modifications, I still can't find a solution to this problem.
The issue is with ${client.ws.ping}. The code is in the discussion. Thanks for helping me....
Handle button press without interaction
I want nothing to happen in the discord clientside after a button press, no followUp, no editing that is visually seen, no deferring and thinking. I just want the user to press a button, let some code run in the background and that is it. Is this possible?
Detect replies and edit own message
Can I make my bot detect when a user is replying to it and then update the message that was replied to?
I have a bot that writes messages. And I want the ability to tell it to correct a message if I'm replying to it....
Building and running create-discord-bot causes an error
After some latest commits where crawl moved to picocolors which uses commonjs modules, running built file causes the error below

Duplicate messages in multiple shards
```
ws.on('message', async function incoming(data) {
const object = JSON.parse(data);
let channel = await client.channels.fetch(object.message.target.id);...
let channel = await client.channels.fetch(object.message.target.id);...
I know the issue but not how to fix it
```js
File name 'c:/Users/cmart/Desktop/Discord Bots/Sapphire/src/Schemas/Errors.js' differs from already included file name 'c:/Users/cmart/Desktop/Discord Bots/Sapphire/src/schemas/Errors.js' only in casing.
The file is in the program because:
Imported via "./schemas/Errors" from file 'c:/Users/cmart/Desktop/Discord Bots/Sapphire/src/utils.js'
Imported via "./schemas/Errors" from file 'c:/Users/cmart/Desktop/Discord Bots/Sapphire/src/utils.js'...
quick question about module.export aliases for commands
i have this command with aliase being 'cam' short for campaign, but i have another command that has an aliase 'c', yet doing prefix c or prefix ca, assumes i mean prefix cam, is there a better solution to have shortened command names?

This Library Is Not Handling Member Joins
I've a problem with my member join event handling, by which it only executes after the first member join, but it don't catches the joining of any member after the first one since the restart of the bot.
Here's the code:
```javascript
const { Events } = require('discord.js');...
Slash Command redirect
Hi folks. Looking to create a slash command, that could allow the user to be redirected to an external url in their browser. The use case is signing up for an account on a website. I'd like to implement a /register command that would allow them to be redirected to my authentication service with some prepopulated values
What's the best way to do this? Return a button or url for them to click, or can a redirect/open browser be forced?...
Cannot read properties of undefined (reading 'GuildVoiceStates')
Cannot read properties of undefined (reading 'GuildVoiceStates')
Guild Member cache doesn't contain all users
Hey, I'm not too sure why but when I check the member cache of a specific guild, I can only see 1 user (My bot account itself) but not other users.
My guild has two users in it, one is the bot and one is myself
```javascript
const guild = await client.guilds.cache.get(process.env.DISCORD_GUILD_ID);
console.log(guild); // Correctly finds guild...
Updating a set of buttons in a reply
I have the following case:
1. I create a message with a button attached and post this in a channel
2. When the button is pressed, it shall send a ephemeral message to the user with a set of new buttons ((everything works until here))
3. When the user clicks one of the new buttons, the buttons should update. I don't get this working.
...
Streaming external websocket backend state to a discord channel
Hey
I have a discord bot that is connected to a separate websocket backend with WebSockets.
I want the bot to show the backend servers state on a discord channel, should I just make the
bot send a message that shows the backend server state and then edit that message on every backend state change?...
Dynamic options for a slash command? Wizard-esque UI
is it possible to create a slash command that uses a technique similar to Autocomplete for the subsequent arguments (options) for the command?
e.g. if I have
/summon <monster> and there are bunch of options for monsters
- some have size or power...discord payment system / integration w/ tap n go?
Hi wondering if discord-js has payment system bots or api. Possibly integrated with tap n go or a tap to pay type system ?
Attach files with @discordjs/rest
How do I attach files and send POST it to channel message endpoint properly?