Skip to main content
Filter by
Sorted by
Tagged with
2 votes
0 answers
65 views

I'm trying to make a mod that adds a new material which can be made into armor, tools, and at some point some other stuff. The material is called Vibral, and it's found in the deep dark and ancient ...
Zadezapper's user avatar
0 votes
0 answers
70 views

I want do add a block to minecraft 1.21.1 with fabric that is partially transparent. While testing I found out, that the braking animation (cracks on the block) is missing. I later found out, that the ...
Pr77Pr77's user avatar
0 votes
2 answers
126 views

The MinecraftServer.class has a private Record named ReloadableResources that is used to hold managers for resource managing. ... record ReloadableResources(CloseableResourceManager resourceManager, ...
Résu's user avatar
  • 45
0 votes
1 answer
97 views

So lately I've been trying to make a little custom mod for Minecraft 1.21.1 with Fabric Kotlin and after checking everything working completely I wanted to create the .jar to share with a friend but ...
Saxo_reaper's user avatar
1 vote
2 answers
421 views

I'm developing a Minecraft mod for version 1.21.4 using the Fabric mod loader and Gradle as the build system. I've added a regular Java library as a dependency using implementation in my build.gradle. ...
Andrearoma2's user avatar
0 votes
0 answers
205 views

How to replace one message to other in minecraft fabric 1.21.5 I writed simple Mixin that insert code into writen method package org.emil.chatmod.mixin; import net.minecraft.client.gui.hud.ChatHud; ...
Максудов Эмиль's user avatar
0 votes
0 answers
40 views

I want to make a program that disables caps lock as soon as it is detected so I can use it as a keybind without worrying about my typing being in caps (in java) I've done this new ProcessBuilder("...
HerobaneNair's user avatar
0 votes
1 answer
226 views

I'm working on a Minecraft 1.21 Fabric mod and encountering an error while running DataGen. Initially, I was getting the following error: Error: Could not find or load main class net.fabricmc....
alireza2012hj's user avatar
2 votes
0 answers
165 views

Here's my Accessor: @Mixin(targets = "com.trongthang.bettercampfires.mixin.CampfireBlockEntityMixin") public interface CampfireBlockEntityAccessor { @Accessor(value = "...
Trong Thang's user avatar
0 votes
2 answers
1k views

I was following this tutorial and I was trying to create a custom recipe. However it seems that recipe jsons cannot be parsed and read properly. [23:41:37] [Render thread/INFO] (Minecraft) Created: ...
Arnold LI's user avatar
2 votes
1 answer
931 views

I'm getting the following error while registering a texture: 'Identifier(java.lang.String, java.lang.String)' has private access in 'net.minecraft.util.Identifier' Error occurs at line 18 private ...
Mathieu Asselin's user avatar
0 votes
1 answer
112 views

I am currently programming a server-sided Lifesteal Mod for Fabric and want to display the amount of lives a player has left using colors in the scoreboard. I am currently struggling to do so since I ...
phil-not-funny's user avatar
2 votes
0 answers
290 views

Here are my predicate overrides, inside of weather_cycle_device.json: { "parent": "minecraft:item/generated", "textures": { "layer0": "rafaels-...
Rafael Mehdiyev's user avatar
0 votes
0 answers
77 views

I was trying to make a mod using Fabric for Java Minecraft and when I used ./gradlew genSources to get access to the default code of Minecraft it said ERROR: JAVA_HOME is set to an invalid directory: ...
Hexfate's user avatar
1 vote
1 answer
1k views

I'm working with Minecraft Fabric 1.21.1 and I need to send data from the client to the server. Could anyone provide guidance on the correct way to accomplish this? I understand that I need to use ...
mybom's user avatar
  • 11
0 votes
1 answer
129 views

I've begun fabric modding, and I want for my mod to load a resource pack when the mod is loaded. Then I found in the fabric api a code snippet which I imported into my mod here: package com.name....
Mr. Potatoes's user avatar
0 votes
1 answer
197 views

Context, I'm working on a Minecraft mod (1.21, so Java 21), the purpose of which is to: Use the max_stack_size data component to drive the apparent default max-stack-size of items in an straight-...
AnDrew the Awesome's user avatar
0 votes
1 answer
371 views

I have a client side fabric mod. It uses SimpleConfig to store it's configuration and the state of the inbuilt client-side night vision. I want to re-enable the client side night vision as soon as the ...
MarioS271's user avatar
0 votes
0 answers
64 views

it seems that in graaljs you cannot simply go Java.type("Foo<Bar>") using Java.type("com.mojang.brigadier.Command<com.mojang.brigadier.ServerCommandSource>"), it says ...
MCBEmodder's user avatar
0 votes
0 answers
231 views

import net.fabricmc.fabric.api.client.command.v1.ClientCommandManager; import net.fabricmc.fabric.api.client.event.lifecycle.v1.ClientTickEvents; import net.fabricmc.fabric.api.client.keybinding.v1....
D a n c h's user avatar
-1 votes
1 answer
43 views

I have been trying minecraft modding recently, but while importing needed packages (via changing build.gradle), I got 2 packages with same ,,name". 2 packages and java importing failure So, I can'...
Unity's user avatar
  • 1
0 votes
1 answer
22 views

setProperties is error! player.yaw what yaw should i use? Make Projectile Entity from Item ...
Suphawit Damrongsiriwattanakul's user avatar
0 votes
1 answer
776 views

simply put nothing inside th oninitialise method runs the public class TutorialModClient appears grey in IntelliJ .I have all the necessary entries in my fabric.mod.json : the json entries are "...
Vladimir Dergachev's user avatar
0 votes
1 answer
699 views

I have just started with trying to make a simple minecraft mod that returns the PlayerEntity DisplayName property and logs it to the console. The Code goes as follows: SimpleMod.java package net....
Secure Aviator's user avatar
2 votes
2 answers
2k views

I have been trying to find a way online to find any way to modify existing blocks in minecraft fabric and there properties, and yet all I could find was how to create new blocks. Any that I do find a ...
Vladimir Dergachev's user avatar