ieew / nonebot_adapter_mirai2

nonebot2 的三方 adapter,用以为 nonebot2 提供 MiraiApiHttp2 协议支持
https://ieew.github.io/nonebot_adapter_mirai2/
GNU Affero General Public License v3.0
20 stars 6 forks source link

请问如何主动发送信息? #58

Open TuanZiGit opened 5 months ago

TuanZiGit commented 5 months ago

在写一个插件,需要在满足特定条件时(不是群消息触发)向指定群直接发送特定信息,请问有什么方法可以实现吗,谢谢! 给出变量:MESSAGE: str (消息) GROUP: int (群号)

qienoob commented 1 month ago

我也有同样的问题,目前我的解决方法是Bot下的send_group_message,示例为 await bot.send_group_message( target=群号, message_chain=MessageChain(str类型的消息) ) 希望能有所帮助