Reputation: 1478
I want to fetch all the messages sent by my bot in Discord.py .. I've tried a lot but I only found ways to do that for the last message.
Is it a function available in Discord.py?
Upvotes: 0
Views: 1586
Reputation: 248
There is no internally-kept list with information about the messages sent by your bot -- as such, you have two methods to find all the messages sent by it:
Upvotes: 1