我正在尝试为java discord bot的discord消息上的反应创建一个事件监听器。我还没有发现任何与此相关的文档,我的尝试都是徒劳的,我的想法是对邮件作出反应的用户订阅了邮件列表。
public class accept extends ListenerAdapter {
public void onreactionAdded(MessageReactionAddEvent event) {
MessageReaction reaction = event.getReaction();
ReactionEmote emote = reaction.getReactionEmote();
MessageChannel channel = event.getChannel();
System.out.println("test");
channel.sendMessage("Commands:\n !notify - notifies users who have subscribed to mailing list").queue();
}
}
答案 0 :(得分:1)
我写了onreactionAdded而不是onMessageReactionAdd。
答案 1 :(得分:0)
这是Java文档,其中包含所有事件:
您想要的:onMessageReactionAdd
,希望这很有用。