20 lines
437 B
Python
20 lines
437 B
Python
from util import hook
|
|
|
|
@hook.regex("thanks mr skeltal")
|
|
def skeltal(_):
|
|
return "https://www.youtube.com/watch?v=10pqeNBg5d0"
|
|
|
|
@hook.regex(r"(.*)")
|
|
def h(inp, channel=None, conn=None):
|
|
inp = inp.group(1)
|
|
if inp == "h":
|
|
return "h"
|
|
|
|
@hook.regex("dQw4w9WgXcQ")
|
|
def rickrollProtector(inp):
|
|
return "linked a rick roll, watch out"
|
|
|
|
@hook.regex("[kK]-[lL]ine")
|
|
def kline(inp):
|
|
return "http://i.imgur.com/FQjQgyB.jpg"
|