1.x.x only : IMC or how to send message from your mod to discord - DenisD3D/Mc2Discord GitHub Wiki

This was for 1.x.x versions. It's not working any more with v2 or v3 version. Please use the Addon system. Contact me on discord for more information

You are a modder and you would like to send more message to discord ? This page is for you ! Using forge InterModCommunication (IMC) you can send message like advancement to discord without complication.

To send a message just use : InterModComms.sendTo("minecraft2discord", "discord_channel", () -> "message_content");

Replace discord_channel with :

  • chat_channel to send the message in the channel specified for chat messages in the config file.
  • info_channel to send the message in the channel specified for every other messages in the config file.
  • A custom channel id (need to be digits only) to send the message in a specific channel.

Replace message_content with the content of your message.