Answers for "how to get a time of message send discord.py"

1

discord.py get id of sent message

sent_message = await ctx.send("I want to get the ID of this message")
print(message.id)
Posted by: Guest on August-23-2021
0

Detect Word Then Send Message (discord.py)

#New Event, prints oh wow if someone says wow
@client.event
async def on_message(message):

    if "wow" in message.content:
        await channel.send("oh wow")

#End of Event
Posted by: Guest on June-03-2021

Code answers related to "how to get a time of message send discord.py"

Python Answers by Framework

Browse Popular Code Answers by Language