我如何在我的世界中获取聊天消息的内容?

how do i get the content of a chat message in minecraft?

我正在编写 forge minecraft 1.12.2 mod,我需要知道如何获取某人在聊天中发送的聊天消息的内容。

我正在使用 ServerChatEvent 事件来接收消息,但我不知道如何获取消息本身的实际内容。

要获取消息,您可以使用:

event.getMessage();

此外,如果您想要完整的消息(使用 style/actions/...),您可以使用 :

event.getComponent()

更多信息: