almost 2 years ago
muy buen bot para un primer intento aunque me gustaria q pusieran cosas de comida y tal poque me parecio curioso el nombre
1
This bot replies to simple things. You can also play 8ball and coin flip and more. Run Food!help for help.
This is a bot I just made. It replies to simple things like Hello. You can also play with coinflip and 8ball and more. This is my first bot and I am still working on it. I used
if message.content.startswith('hello'):
await message.channel.send('Hello!')
for it to reply to text.
This is the command for the 8ball.
if any(word in msg for word in eightball_words):
await message.channel.send(random.choice(eightball_responses))
It pickes random messages from a group called eightball_responses.
Here is eightball_responses:
eightball_responses = [
":8ball: Without a doubt :pensive:",
":8ball: Outlook good :smirk:", ":8ball: Outlook not so good :upside_down:", ":8ball: Signs point to yes:slight_smile:", ":8ball: Don't count on it :thinking:", ":8ball: Yes - definitely :scream:", ":8ball: Nope :flushed:", ":8ball: No :confused:"
]
4
1 review
Reviews can be left only by registered users. All reviews are moderated by Top.gg moderators. Please make sure to check our guidelines before posting.
5 stars
0
4 stars
1
3 stars
0
2 stars
0
1 star
0
almost 2 years ago
muy buen bot para un primer intento aunque me gustaria q pusieran cosas de comida y tal poque me parecio curioso el nombre
1