Questions tagged [dm]
103 questions
-1
votes
1 answer
Sending a DM with hikari-lightbulb
i'm really new to hikari and i don't really understand the docs, but how would i send a dm to a user?
this idea might not be very smart, but i've got a password generating bot and i want to send a dm to the user with the password once i've generated…

Hobospider132
- 3
- 2
-1
votes
2 answers
How to make bot dm me when someone sends a specific message in discord
@client.event
async def on_message(message):
if message.content == "help me":
user = client.get(My_id)
if user is not None:
await user.send("Someone needs help")
Is there any way to make bot dm me when someone…

Jack0845
- 13
- 4
-1
votes
1 answer
Send a dm in discord.py
I am trying to have it send a dm to a specified user using the on_message event.
So far I've gotten it to get the snowflake id from the mentioned user but can't find a way to send a dm to that user.
I've been looking for hours and haven't found an…
-1
votes
1 answer
Discord.py DM command (To send and recieve a dm)
I'm pretty new to python and well, I wanted to make a discord bot that sends a dm, and when the other user receives the dm, they answer back, and the owner of the code or an admin of a server will be able to see what it says!
Here is my code so far…

Lumiscnt1
- 29
- 4
-1
votes
1 answer
Sending a DM to a specific user
Hello
what i want to do
Hello, i am trying to send a DM to a user who is triggering the following function:
if message.content.startswith("!help"):
await message.author.send("hello")
After a User sends !help into any of the discord…

laurin amiet
- 15
- 4
-1
votes
1 answer
Discord.JS - Cannot send messages to this user
I'm making a kick command and I would like the bot private message the user with a message saying they were kicked, the reason why they were kicked and an invite back to the server however whenever it tries to DM either my alt or my friend it…

Crxnier
- 1
-1
votes
1 answer
Discord JS - Sending dm to every user in every server that bot is
I want to create a command like - /announcement but I want to send message to every user of server in which bot is like:
Server a - will send
Server B - will send too by triggering one command, is this possible?

St533
- 1
- 2
- 6
-2
votes
1 answer
Data warehousing relation between 2 fact tables with different grain for drill down in report tool?
I've read through the DWH Toolkit and searched here on Stack Overflow.
There are different stores and HQ wants to have a report with their monthly revenue.
All data is normalized in the DWH and a periodic fact table is created for the reporting tool…

Jayrune
- 3
- 2
-2
votes
2 answers
Discord.py not sending dm?
#MassDM Command
@bot.command()
async def massdm(ctx, msg):
await ctx.message.delete()
show_cursor()
wipeinput = input(Fore.RED+"Are you sure you want to mass dm? (WARNING: This happens really fast so it will probably flag your account)(y…

Bigweld
- 26
- 5
-2
votes
1 answer
direct messages in flask python
so I'm developing python flask app where users can see other user's profile then they can click on a bottom where they can send real time direct messages using. (like direct messages in other apps).
can someone lead me to w website or source to…

Aziz
- 55
- 8
-2
votes
1 answer
I need help making a discord bot direct message someone on typing a command
I am currently trying to create a discord bot and am stumped on a command i am trying to make it do. The command is supposed to be a secret DM message sent by the bot. I was wondering if there was anyway to do this? the command is supposed to look…

David J
- 49
- 1
- 3
- 11
-3
votes
1 answer
How to use Discord API to send a private message given a user ID (Discord.py) ( CLOSED )
I want to send a message in a dm but from a user account not a bot. I have searched the whole internet (including stackoverflow) but i can't seem to find anything. Is this kind of thing possibly using discord's api and if, then any resources would…

skrvt
- 7
- 1
- 4
-3
votes
1 answer
How can I get my discord bot to DM a member and myself?
How, if possible, would I get my discord bot (in python) to DM another user and whoever sent the command (telling them what they said)?
Edit: Solved, thanks Patrick Haugh - https://stackoverflow.com/users/6779307/patrick-haugh
btw here's my code i…

geliebt
- 11
- 1
- 1
- 2