Advertisement
Kimossab

shitlasbot carramba

Aug 29th, 2016
153
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  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.         message.content = message.content.lower();
  13.         message.content = message.content.replace("fuckin'","fucking");
  14.         message.content = message.content.replace("fuckin ","fucking");
  15.         message.content = message.content.replace("kiddos","kids");
  16.         message.content = message.content.replace("kiddo ","kids");
  17.         message.content = message.content.replace("kid ","kids");
  18.         if message.content.find("fucking script kids")>=0:
  19.             await self.bot.send_message(message.channel, "https://cdn.discordapp.com/attachments/219777337514917888/219784141103824896/Belive_who_you_are.jpg")
  20.         if message.content.find("engage the memes")>=0:
  21.             await self.bot.send_message(message.channel, "https://cdn.discordapp.com/attachments/106080820845887488/219766789251268608/ENGAGE_THE_MEMES.gif")
  22.         if message.content.find("synurwin")>=0:
  23.             await self.bot.send_message(message.channel, "https://cdn.discordapp.com/attachments/161339996794519552/219771141097521152/n5LvgA7.gif")
  24.  
  25. def setup(bot):
  26.     n = ayy(bot)
  27.     bot.add_listener(n.check_ayy, "on_message")
  28.     bot.add_cog(n)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement