Added auto reactions

This commit is contained in:
Robert 2020-01-08 01:11:50 +01:00
parent 122fced329
commit 06cd25eb96

36
cogs/fun/reactions.py Normal file
View file

@ -0,0 +1,36 @@
import discord
from discord.ext import commands
class Reactions(commands.Cog):
def __init__(self, client):
self.client = client
@commands.Cog.listener()
async def on_message(self, message : discord.Message):
if message.author.bot:
return
if "canada" in message.content.lower():
await message.add_reaction("🇨🇦")
if "germany" in message.content.lower():
await message.add_reaction("🇩🇪")
if "uk" in message.content.lower() or "britain" in message.content.lower():
await message.add_reaction("🇬🇧")
if "china" in message.content.lower():
await message.add_reaction("🇨🇳")
if "america" in message.content.lower() or " usa" in message.content.lower():
await message.add_reaction("🇬")
await message.add_reaction("🇦")
await message.add_reaction("🇾")
if "extremejoy" in str(message):
message.add_reaction(664251611765407745)
def setup(client):
client.add_cog(Reactions(client))