mirror of
http://shenjack.top:5100/shenjack/icalingua-python-bot.git
synced 2024-11-23 12:41:05 +08:00
更新bmcl插件,添加/brrs命令以显示排名信息
This commit is contained in:
parent
1f7ffcb2d4
commit
3b280e23c0
|
@ -178,7 +178,13 @@ def bmcl_rank(msg: NewMessage, client: IcaClient, name: Optional[str]) -> None:
|
||||||
|
|
||||||
help = """/bmcl -> dashboard
|
help = """/bmcl -> dashboard
|
||||||
/bmcl rank -> all rank
|
/bmcl rank -> all rank
|
||||||
/bmcl rank <name> -> rank of <name>"""
|
/bmcl rank <name> -> rank of <name>
|
||||||
|
/brrs <name> -> rank of <name>
|
||||||
|
搜索限制:
|
||||||
|
1- 3 显示全部信息
|
||||||
|
4-10 显示状态、名称
|
||||||
|
11+ 不显示
|
||||||
|
"""
|
||||||
|
|
||||||
|
|
||||||
def on_message(msg: NewMessage, client: IcaClient) -> None:
|
def on_message(msg: NewMessage, client: IcaClient) -> None:
|
||||||
|
@ -194,3 +200,11 @@ def on_message(msg: NewMessage, client: IcaClient) -> None:
|
||||||
else:
|
else:
|
||||||
reply = msg.reply_with(help)
|
reply = msg.reply_with(help)
|
||||||
client.send_message(reply)
|
client.send_message(reply)
|
||||||
|
elif msg.content.startswith("/brrs"):
|
||||||
|
if msg.content == "/brrs":
|
||||||
|
reply = msg.reply_with(help)
|
||||||
|
client.send_message(reply)
|
||||||
|
else:
|
||||||
|
if len(msg.content) > 6:
|
||||||
|
name = msg.content[6:]
|
||||||
|
bmcl_rank(msg, client, name)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user