Skip to content

Instantly share code, notes, and snippets.

@MrMetric
MrMetric / fix_telegram.md
Last active January 12, 2017 04:54 — forked from gpadd/fix_telegram.md
How to fix the really really round telegram bubbles and avatars and << >> -- stuff
@MrMetric
MrMetric / adderbot.py
Created April 2, 2015 02:43
Adds perverts to the MLF chat
from __future__ import print_function
import Skype4Py, sys
skype = Skype4Py.Skype()
skype.Attach()
chat = None
for chat_ in skype.RecentChats:
if '/mlf/' in chat_.Topic.lower():
# Shitty plugin made by iloveportalz0r
from util import hook
@hook.command
def join(inp, input=None):
"omg please join <channel>"
if input.nick not in input.bot.config["admins"]:
return "Only bot admins can use this command!"
chan = inp.split(' ', 1)
from util import hook
@hook.command
def join(inp, input=None):
"omg please join <channel>"
if input.nick not in input.bot.config["admins"]:
return "Only bot admins can use this command!"
chan = inp.split(' ', 1)
#if len(chan) != 1:
#return "Usage: omg please join <channel>"