SHOW:
|
|
- or go back to the newest paste.
| 1 | import discord | |
| 2 | from discord.ext import commands | |
| 3 | import os | |
| 4 | ||
| 5 | class ayy: | |
| 6 | """lmaoing""" | |
| 7 | ||
| 8 | def __init__(self, bot): | |
| 9 | self.bot = bot | |
| 10 | ||
| 11 | async def check_ayy(self, message): | |
| 12 | if message.author == self.bot: | |
| 13 | return | |
| 14 | ||
| 15 | message.content = message.content.lower(); | |
| 16 | message.content = message.content.replace("fuckin'","fucking");
| |
| 17 | message.content = message.content.replace("fuckin ","fucking");
| |
| 18 | message.content = message.content.replace("kid","kids");
| |
| 19 | message.content = message.content.replace("kiddo","kids");
| |
| 20 | message.content = message.content.replace("kiddos","kids");
| |
| 21 | message.content = message.content.replace("ze", "the");
| |
| 22 | ||
| 23 | ||
| 24 | if message.content.find("engage the memes")>=0:
| |
| 25 | await self.bot.send_message(message.channel, "http://imgur.com/f1xAKWi"); | |
| 26 | elif message.content.find("engage")>=0:
| |
| 27 | await self.bot.send_message(message.channel, "http://i.imgur.com/u9qfv1F.gif") | |
| 28 | if message.content.find("fucking script kids")>=0:
| |
| 29 | await self.bot.send_message(message.channel, "https://cdn.discordapp.com/attachments/219777337514917888/219784141103824896/Belive_who_you_are.jpg") | |
| 30 | if message.content.find("synurwin")>=0:
| |
| 31 | await self.bot.send_message(message.channel, "https://cdn.discordapp.com/attachments/161339996794519552/219771141097521152/n5LvgA7.gif") | |
| 32 | if message.content.find("deus vult")>=0:
| |
| 33 | await self.bot.send_message(message.channel, "https://img.ifcdn.com/images/a30963d10fa098131cc1bb9017ea68f19c356e6d5d638ed56daae99bbc9205b8_1.jpg") | |
| 34 | if message.content.find("happymarre")>=0:
| |
| 35 | await self.bot.send_message(message.channel, "https://cdn.discordapp.com/attachments/219777337514917888/219784126704779264/Art.jpg") | |
| 36 | if message.content.find("president marre")>=0:
| |
| 37 | await self.bot.send_message(message.channel, "https://cdn.discordapp.com/attachments/219777337514917888/219784139874893824/Biker_Mice_From_Marres.jpg") | |
| 38 | if message.content.find("cheesy marre")>=0:
| |
| 39 | await self.bot.send_message(message.channel, "https://cdn.discordapp.com/attachments/219777337514917888/219784150171910145/cheesy_meme.png") | |
| 40 | if message.content.find("dota meme")>=0:
| |
| 41 | await self.bot.send_message(message.channel, "https://cdn.discordapp.com/attachments/219777337514917888/219784161345404939/DOTA_MEME.jpg") | |
| 42 | if message.content.find("gtmarre")>=0:
| |
| 43 | await self.bot.send_message(message.channel, "https://cdn.discordapp.com/attachments/219777337514917888/219784168152891402/gtmaree.jpg") | |
| 44 | if message.content.find("sexy marre")>=0:
| |
| 45 | await self.bot.send_message(message.channel, "https://cdn.discordapp.com/attachments/219777337514917888/219784171931959297/Marre_sexy.jpg") | |
| 46 | if message.content.find("marre hand")>=0:
| |
| 47 | await self.bot.send_message(message.channel, "https://cdn.discordapp.com/attachments/219777337514917888/219784177652989952/marre_fist.jpg") | |
| 48 | if message.content.find("marreception")>=0:
| |
| 49 | await self.bot.send_message(message.channel, "https://cdn.discordapp.com/attachments/219777337514917888/219784182350610433/Marreception.jpg") | |
| 50 | if message.content.find("marrection")>=0:
| |
| 51 | await self.bot.send_message(message.channel, "https://cdn.discordapp.com/attachments/219777337514917888/219784187991949312/Marrection_man.jpg") | |
| 52 | if message.content.find("marrenator")>=0:
| |
| 53 | await self.bot.send_message(message.channel, "https://cdn.discordapp.com/attachments/219777337514917888/219784193863843840/Marrenator.jpg") | |
| 54 | if message.content.find("marrection")>=0:
| |
| 55 | await self.bot.send_message(message.channel, "https://cdn.discordapp.com/attachments/219777337514917888/219784187991949312/Marrection_man.jpg") | |
| 56 | if message.content.find("infinite marre")>=0:
| |
| 57 | await self.bot.send_message(message.channel, "https://cdn.discordapp.com/attachments/219777337514917888/219784197621940224/infinite_marre.gif") | |
| 58 | if message.content.find("infinite murr")>=0:
| |
| 59 | await self.bot.send_message(message.channel, "https://cdn.discordapp.com/attachments/219777337514917888/219784201988341760/infinite_marre_mucho_fast.gif") | |
| 60 | - | await self.bot.send_message(message.channel, "https://cdn.discordapp.com/attachments/219777337514917888/219800893837541376/Bad_News.gif") |
| 60 | + | |
| 61 | - | if message.content.find("engage")>=0:
|
| 61 | + | |
| 62 | - | await self.bot.send_message(message.channel, "http://i.imgur.com/u9qfv1F.gif") |
| 62 | + | |
| 63 | await self.bot.send_message(message.channel, "https://cdn.discordapp.com/attachments/219777337514917888/219800893837541376/Bad_News.gif") | |
| 64 | ||
| 65 | def setup(bot): | |
| 66 | n = ayy(bot) | |
| 67 | bot.add_listener(n.check_ayy, "on_message") | |
| 68 | bot.add_cog(n) |