MessageAction v3 - RealMegaMinds/ActionInventoryMod GitHub Wiki
Message actions send messages to players. They can also be used for logging.
They look like:
{
...common fields...
"message": {},
"sender": "",
"receivers": [],
"messageType": ""
}
(common fields are specified in Actions v3)
This is the message that is sent. This is a text object. See Common Types v3.
This is the person who the message is from. This is a UUID. See Common Types v3.
These are the people that will receive the message. If the array is empty, it will be broadcast to all players. A null in the array is replaced with the UUID of the player that clicked on it. Use the nil UUID for logging to the server. This is an array of UUIDs. See Common Types v3.
This is the type of the message. This is a string.
Types
"CHAT"
"SYSTEM"
"GAME_INFO"