Answers for "discord bot python get message id"

0

discord bot python get message id

sent_message = channel.send(content="My message")
print(sent_message.id)
Posted by: Guest on August-21-2021
0

python discord know message from bot

def on_message(self, message):
    if (message.author.bot):
        return #if this is true: then it is by a bot.
Posted by: Guest on January-24-2021

Code answers related to "discord bot python get message id"

Python Answers by Framework

Browse Popular Code Answers by Language