Retrieve a list of Discord.js - discord

I'm trying to create a bot that can read a list of usernames that reacted (a specific reaction) from a message and export the usernames to a csv. So far I've only gotten so far as to build a bot for the discord and have it be responsive to slash commands but most of my methods of peeling reactions off the message have been a bust. There are 850~ reactions that I'd like the usernames from. Any help or guidance would be appreciated.

Related

Grab a discord token by verifying

I want to know how to grab a discord token when a user is verifying on my server. So that the tiktok is either sent to a channel or saved in a file.
I have tryed searching for a code for this but I could find any. I'd very appreciate it if someone could help me.
Discord has certain limitations in the API, one of them is this. For privacy, it does not let bots access user tokens.

How can my discord bot filter who can send me a DM?

Is this possible with the discord.js API to enable my custom bot to filter all direct messages and reject some from members that doesn't have a specific role even if they are in my friend list or in the same guilds ?
If I understand correctly you want the bot to block certain users from sending you DMs?
If so, then it's not possible.
Bots do not have access to your DMs with other people, nor are they able to emit an event when someone DMs you.
The discord API does not provide such functionality and it will probably never do.

Is it possible to create a discord bot with no discord bot tag?

so I have this question. Is it possible to create a discord bot that can be runned, but doesn't have the [Bot] tag after the name? Just curious.
You can but it's not allowed. All official Discord bots will have the bot tag. It's possible to create a userbot with a user token, and this would not have the bot tag. However, selfbots go against Discord TOS
You can probably make code that controls a discord acc. Like you log in and the "bot" can auto type stuff if certain words are detected in the html code.

How to make a discord bot to auto send messages?

Is it possible to make a bot to automatically message people in my friends list or everyone from a specific server where i'm not an administrator? Where would i start, i know some Python but never worked with Discord bots, i was thinking this shouldn't be too hard as a first one?
I know i've received various messages / adveritsements from people on discord that i wouldn't think are admin on any server i'm on. Unless its done manually?
If you are wanting to write your own Discord bot in python, have a look at discord.py, follow the tutorial which will show you how to write simple commands and automated responses.
Is it possible to make a bot to automatically message people in my friends list or everyone from a specific server where i'm not an administrator?
You must have the required permissions to add the bot to the discord server. A role with 'regular' permissions will typically not allow you to do this. Additionally you can only have discord bots bound to a server, so a 'personal' bot that follows you around different servers is not really feasible.
I think what you're talking about is a self bot, which is against the Discord TOS and will likely get your account banned. If you want to get a bot on a Discord Server you'll have to ask an administrator.

How are discord bots online?

How are discord bots online? Is there any API call I need to do to make my bot online? I just want to use the API, I don't want to use any libraries.
As far as I know about the Discord bot, I know this is not possible.
When you make a disc bot, it looks like a member. The only difference is that a series of features such as having a bot verification and having a dedicated roll.
Discord gives you a bot token that can be used to control the bot and enter the bot. You can write a code that keeps the bot online.
This was my information about the Discord bot. I may be wrong and someone may have more accurate and useful information.

Resources