mirror of
https://github.com/TriM-Organization/LiteyukiBot-TriM.git
synced 2024-11-11 01:27:29 +08:00
✨ message 统计
This commit is contained in:
parent
c90ac1d21a
commit
e843d790b1
@ -39,7 +39,7 @@ bind-city|绑定城市
|
||||
命令
|
||||
|
||||
```shell
|
||||
statistics message --duration <duration> --period <period> --group [current|group_id] --bot [current|bot_id] # 统计Bot接收到的消息
|
||||
statistic message --duration <duration> --period <period> --group [current|group_id] --bot [current|bot_id] # 统计Bot接收到的消息
|
||||
# duration: 统计时长,支持格式例如:1d2h3m4s
|
||||
# period: 统计周期,支持格式同上
|
||||
# group: 统计群组,支持current(当前群聊)和group_id
|
||||
@ -49,7 +49,7 @@ statistics message --duration <duration> --period <period> --group [current|grou
|
||||
命令别名
|
||||
|
||||
```shell
|
||||
statistics|stat
|
||||
statistic|stat
|
||||
message|m
|
||||
--duration|-d
|
||||
--period|-p
|
||||
|
@ -10,7 +10,7 @@ from nonebot_plugin_alconna import UniMessage, on_alconna, Alconna, Args, Subcom
|
||||
|
||||
stat_msg = on_alconna(
|
||||
Alconna(
|
||||
"statistics",
|
||||
"statistic",
|
||||
Subcommand(
|
||||
"message",
|
||||
# Args["duration", str, "2d"]["period", str, "60s"], # 默认为1天
|
||||
@ -62,7 +62,7 @@ async def _(result: Arparma, event: T_MessageEvent, bot: Bot):
|
||||
if group_id in ["all", "a"]:
|
||||
group_id = "all"
|
||||
|
||||
if bot_id == ["current", "c"]:
|
||||
if bot_id in ["current", "c"]:
|
||||
bot_id = str(bot.self_id)
|
||||
|
||||
img = await get_stat_msg_image(duration, period, group_id, bot_id, ulang)
|
||||
|
Loading…
Reference in New Issue
Block a user