I’m trying to make a poll, but all the ones I see have a limit of time created with asyncio, but I want to make that when the a poll reaches 5 reaction of the emoji ✅ instead of having a limit of time, send the message to another channel, I already have the poll itself done How can I
Tag: discord.py
Discord.py bot ignoring channel.message.id
I have a bot that every 1 to 12 hours sends a random message into a specific channel (the channel that the command !random is used in). A certain handful of these message are yes/no questions, and I want to make it that the bot will respond if somebody says yes/no. The code works, the issue is I want the
I am trying to make a discord chatbot but I am facing a problem
I have been trying to make a discord chatbot I finished the code “technically” it should work Here’s my code : This is the error I’m getting: Any help would be super appreciated, Thank you. Answer I’ve not familiar with Dicord’s API, but I’m pretty sure it should be activity instead of game
Python Discord Bot that responds to keywords while not being case sensitive
I’m very new to python as in I’m making this bot for fun, but I’ve been trying to make a simple discord.py bot that will respond to keywords that aren’t case sensitive as well as detect the word in a message. I’ve been able to have it be non case sensitive, but the main issue that I’m having is being
discord.py’s on_member_leave event isn’t working
Making a bot that logs basic events, like on_member_join and on_message has been working, but when I implemented the on_member_leave, that event hasn’t been working. I have previously turned on intents. I’ve tried adding, It still hasn’t been working, what am I doing wrong, what are some things I need to know. Here is the script.. Answer on_member_leave doesn’t exist,
Discord.py Issue
Whenever I run the following code for a discord bot after I type a message so that the bot sends the link to the image I get the error: I am pretty new to coding, so sorry if it’s something super simple! Answer ‘Messageable.send’ was never awaited tells you what went wrong here. The library is async so if you
How can I make a commmand that goes through a txt file and sends the text that i need?
Im trying to make an api key thingy in discord but i don’t know how to go through txt files one by one for ex test test2 test3 test4 If the first user sends !key it would send test if the 2nd user sends !key it would send test2.And so on. this is what i’ve made so far: But im
discord bot command runs, but gets stuck trying to multiply
everything works fine, it prints the multiplication but it gets stuck on adding more coins to the server, it worked ok until I added the multiplier any help is appreciated (typing random stuff because my post is mostly code and i need to put these edits but stack overflow is being rude so yeah) Answer Initially, you set but then
I got Error in Repl it Coding Consol and I Can’t run my script
I am Developing a Simple Administration Bot with Commands working with python language. My all the Scripts Coding with repl it and I used Uptimerobot for keep online. When I Script Running it got error and This Error got all the Scripts that I run. There is No Error get when I copy my script to new repl. But the
How to send message in a Discord Thread?
So I need to create and send messages in discord thread. I have been able to create threads but unable to send message in them. I am using Discord.py library (v2.0 supports thread). This is what I am using to create thread. I have no lead on how to send message in it. Thanks. Answer create_thread() returns the thread created,