2021-11-23 21:44:59 +08:00
|
|
|
|
from nonebot import on_command
|
2022-02-19 18:20:19 +08:00
|
|
|
|
from nonebot.adapters.onebot.v11 import Bot, GroupMessageEvent
|
2021-11-23 21:44:59 +08:00
|
|
|
|
from nonebot.typing import T_State
|
|
|
|
|
|
import re
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
__zx_plugin_name__ = "消息撤回 [Admin]"
|
|
|
|
|
|
__plugin_usage__ = """
|
|
|
|
|
|
usage:
|
|
|
|
|
|
简易的消息撤回机制
|
|
|
|
|
|
指令:
|
|
|
|
|
|
[回复]撤回
|
|
|
|
|
|
""".strip()
|
|
|
|
|
|
__plugin_des__ = "消息撤回机制"
|
|
|
|
|
|
__plugin_cmd__ = ["[回复]撤回"]
|
|
|
|
|
|
__plugin_version__ = 0.1
|
|
|
|
|
|
__plugin_author__ = "HibiKier"
|
|
|
|
|
|
__plugin_settings__ = {
|
|
|
|
|
|
"admin_level": 0,
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
withdraw_msg = on_command("撤回", priority=5, block=True)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@withdraw_msg.handle()
|
|
|
|
|
|
async def _(bot: Bot, event: GroupMessageEvent, state: T_State):
|
2022-12-11 00:10:07 +08:00
|
|
|
|
if event.reply:
|
|
|
|
|
|
await bot.delete_msg(message_id=event.reply.message_id)
|