- 新增积分查询插件,包含我的积分、积分查询、积分排行和积分历史查询命令 - 支持群组和私聊场景,排行榜功能仅限群组使用 - 实现用户显示名称优先级(群昵称 > 昵称 > 用户ID) - 添加详细的帮助文档和使用说明
16 lines
464 B
Python
16 lines
464 B
Python
from nonebot.plugin import PluginMetadata
|
|
from .config import Config
|
|
|
|
__plugin_meta__ = PluginMetadata(
|
|
name="Danding Points Query",
|
|
description="User-facing commands for querying points/积分",
|
|
usage="Commands: 我的积分, 积分查询, 积分排行, 积分历史查询",
|
|
type="application",
|
|
config=Config,
|
|
extra={
|
|
"required_plugins": ["danding_bot.plugins.danding_points"],
|
|
},
|
|
)
|
|
|
|
from . import commands # noqa: F401, E402
|