Skip to content
Advertisement

Tag: discord.js

Discord bot only replying to initator

I am starting with a new Discord bot using discord.js. I am still learning things but am curious if it is possible to send a reply to only the initiator, not the channel. Channel.send and message.reply are both public to all. Answer To dm the person who said the message do To send it to someone else,

What does Message.fetch() actually do in discord.js

According to the Message#fetch() docs, this function simply fetches the message it was called on. However, I’m not sure in which circumstance it would ever make sense to use this function. According to the screenshot above, this method returns Promise<Message>. I’m confused, because why would you need to fetch a message you already have access to? For example: So, what’s

How can I make the avatar appear in large format?

I’m new to all this, sorry for my stupidity :c is my first discord bot! when I give the command !avatar on discord, the avatar comes out very small on the right of the embed Answer Thumbnails are small. You would need to place the avatar in .setImage() then have it set to scale up to 256 in size This

Discord.js Bulk Delete command

I am trying to add a bulk delete command to my bot but when I type how many messages I want to delete, I get the following error: Here’s the code: Answer To use the parseInt(), you have to add the decimal base, so 10 -> parseInt(args[0], 10);. The snippet of code I have put above is working well.

Advertisement