Posted January 12, 20214 yr Hi, I’m very new to modding and I haven’t been able to figure out how to make the player send a chat message through the mod. Basically I’m trying to make a mod that teleports the player when an event runs. For some reason Minecraft.getMinecraft().thePlayer.sendChatMessage("/Command here") Does not work for me. I get an error that says: “Cannot resolve method ‘getMinecraft’ in ‘Minecraft’. If anyone could help me that would be greatly appreciated! public static final Minecraft mc = Minecraft.getMinecraft(); @SubscribeEvent public void onChat (ClientChatReceivedEvent event) { Minecraft.getMinecraft().thePlayer.sendChatMessage(""); String message = event.getMessage().getUnformattedComponentText(); if (message.contains("Teleport Me!")) Minecraft.getMinecraft().thePlayer.sendChatMessage(""); } Edited January 12, 20214 yr by metword
January 12, 20214 yr The code you had copied from is old. The name/signature has changed. Minecraft.getInstance().player;
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.