We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
实现返回值快速回复,例如: kotlin:
/** * 监听 [私聊消息][PrivateMsg]与[群聊消息][GroupMsg], * 并在收到消息的时候统一回复 "Hello. this is Quick reply.", 如果在群聊中,会AT触发事件的人。 * 其中,在群聊中需要被AT。 */ @Listens( value = [ Listen(PrivateMsg::class), Listen(GroupMsg::class), ] ) @Filters(atBot = true) fun listen() = Reply.reply("Hello. this is Quick reply.", at = true)
java:
/** 与上述方法含义一样。 */ @OnGroup @OnPrivate @Filters(atBot = true) public ReplyAble listen(){ return Reply.reply("Hello. this is Quick reply.", true); }
The text was updated successfully, but these errors were encountered:
基于 #49
Sorry, something went wrong.
d4ee97a
ForteScarlet
No branches or pull requests
实现返回值快速回复,例如:
kotlin:
java:
The text was updated successfully, but these errors were encountered: