v1.0 stable features

This commit is contained in:
klemek
2019-11-13 14:19:22 +01:00
parent a2202c026b
commit 0fb04604dc
4 changed files with 156 additions and 97 deletions
+23
View File
@@ -0,0 +1,23 @@
from utils import debug
async def compute(message, args):
debug(message, f"command '{message.content}'")
if len(args) > 1 and args[1] == "emotes":
await message.channel.send(
"Emotes Analysis:\n"
"```"
"%emotes : Rank emotes by their usage\n"
"%emotes @user : // for a specific user\n"
"%emotes #channel : // for a specific channel\n"
"(Add more @user or #channel to be more selective)"
"```")
return
else:
await message.channel.send(
"Discord Analyst commands:\n"
"```"
"%help (command) : Info on commands\n"
"%info : This bot info\n"
"%emotes : Emotes analysis"
"```")