mirror of
https://github.com/nonebot/nonebot2.git
synced 2024-11-25 01:25:04 +08:00
28 lines
967 B
Python
28 lines
967 B
Python
#!/usr/bin/env python3
|
|
# -*- coding: utf-8 -*-
|
|
|
|
from nonebot.rule import to_me
|
|
from nonebot.typing import Event
|
|
from nonebot.plugin import on_command
|
|
from nonebot.adapters.cqhttp import Bot
|
|
|
|
test_command = on_command("帮助", to_me())
|
|
|
|
|
|
@test_command.handle()
|
|
async def test_handler(bot: Bot, event: Event, state: dict):
|
|
args = str(event.message)[len(list(state["_prefix"].keys())[0]):].strip()
|
|
print("[!] Command:", state["_prefix"], "Args:", args)
|
|
if args:
|
|
state["help"] = args
|
|
else:
|
|
await bot.send(message="命令:\n1. test1\n2. test2", event=event)
|
|
|
|
|
|
@test_command.got("help", prompt="你要帮助的命令是?")
|
|
async def test_handler(bot: Bot, event: Event, state: dict):
|
|
print("[!] Command 帮助:", state["help"])
|
|
if state["help"] not in ["test1", "test2"]:
|
|
await test_command.reject(f"{state['help']} 不支持,请重新输入!")
|
|
await bot.send(message=f"{state['help']} 帮助:\n...", event=event)
|