#need a disable chat mod
1 messages · Page 1 of 1 (latest)
maybe this will help you https://modrinth.com/mod/chat
i can make one rq but if you want to you can do it for yourself, heres a tutorial
- download intellij idea
- install the minecraft development extension
- make a new project with the type Minecraft > Mod with modloader fabric with your mc version selected
- (click create)
- wait until it sets up
- when it sets up, create a new folder called
mixinsin your src/main/java/... folder - in that folder, right click on it and click create > class and then type
ChatHudMixin(and press enter) - hover over the name after the
classkeyword and click the text likeAdd to mixins configuration - in that mixin, make all the code below the first line this:
@Mixin(net.minecraft.client.gui.hud.ChatHud)
public class ChatHudMixin {
@Inject(at = @At(value = "HEAD", target = "render"), method = "render", cancellable = true)
private void render(final net.minecraft.client.gui.hud.Backend drawwer, int wh, int ct, boolean expanded, org.spongepowered.asm.mixin.injection.callback.CallbackInfo ci) {
ci.cancel();
}
}
- click here
- then here
- and type this
- then click OK and click the run button here, and the jar should be created for you in the build/libs folder
that you both, ill try both these tomorrow 
nvm
Oh I forgot to mention
You also needed to import the mixin classes
If something doesn't work then maybe you used the incorrect mapping or a version that doesn't have the class names I used (that was too different)
yeah, so that the chat is just fully disabled if possible.
then we can use packets