2018-03-16 03:13:43 -04:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
"""
|
|
|
|
Will I like this?
|
|
|
|
"""
|
|
|
|
from module import commands, example
|
|
|
|
|
|
|
|
@commands('willilike')
|
|
|
|
@example('.willilike Banished Quest')
|
|
|
|
def willilike(bot, trigger):
|
|
|
|
"""An advanced AI that will determine if you like something."""
|
2020-01-07 18:58:19 -05:00
|
|
|
if len(trigger.args) >= 2:
|
2018-03-16 03:13:43 -04:00
|
|
|
bot.reply("No.")
|
|
|
|
|
|
|
|
@commands('upvote')
|
|
|
|
def upvote(bot, trigger):
|
2020-01-08 07:51:00 -05:00
|
|
|
"""Upvotes a post made by someone."""
|
2018-05-25 15:21:18 -04:00
|
|
|
bot.msg(trigger.nick + " upvoted this post!")
|