I am coding a forge minecraft 1.12.2 mod and I need to know how do I get the contents of a chat message that someone sends in chat.
I am using the ServerChatEvent
event to sence messages but I do not know how to get the actual content of the message itself.
Advertisement
Answer
To get the message you can use :
event.getMessage();
Also, if you want the full message (with style/actions/…) you can use :
event.getComponent()
More informations: