I have 2 discord client instances a bot and a user account. I have already figured out how to copy messages from one channel to another channel, basically a on_message event. However, I want to know if there is a way I can use the user account to fetch the messages, I’ve tried fetching messages in different guilds but they
Advertisement
Tag: message
Discord BOT with Python, How to make it reply in the channel we send the command (Done)
Done! Thanks to anyone who helped me out:) Still maybe you have better answers, so, feel free to answer! I know, this may look like a stupid question, but if you consider that I’m a beginner in making bots for Discord in Python beyond all my other Python knowledge and Stack Overflow being probably a place just for that, I
How do I raise the same Exception with a custom message in Python?
I have this try block in my code: Strictly speaking, I am actually raising another ValueError, not the ValueError thrown by do_something…(), which is referred to as err in this case. How do I attach a custom message to err? I try the following code but fails due to err, a ValueError instance, not being callable: Answer Update: For Python
Advertisement