Posted September 10, 201411 yr Hello everybody. It's my first time, that I develop a mod for Forge. I watched several tutorials, but there is one big question: How do I "catch" the player's chat input? I want to react on commands. Example: The player types "/myMod help" into the chat. And I want to send the player a message like "[myMod]: Here you got the help!" or do some other stuff depending what the player is typing. Some sourcecode examples would be nice. Thanks for the help. Nero90
September 10, 201411 yr @EventHandler public void serverLoad(FMLServerStartingEvent event) { event.registerServerCommand(new MyCommand()); // Change to whatever name you want } MyCommand needs to implement ICommand As for examples anything in the package net.minecraft.command will help.
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.