Everything posted by Luis_ST
-
I'm Having Modded Mincraft Troubles with 1.19 Forge
Please new post debug.log.
-
These Libraries failed to download try again.
If you run the installer, the installer log will be generate next to it (same folder). Please post this file, it is existential to help you.
-
Raytrace Block Method
The past does not exists
-
Game wont load my world
Please post debug.log from the logs folder.
-
Help with ore generation and crashes
Create the BiomeModifier json how it's description in the Doc i linked above, then update your Git repo and the logs.
-
Connection closed - missmatched server list
You can try OptiFine HD U H9 pre4, but the version is not compatible with Forge 41.1.0. So this could lead problems.
-
please help
Problem with Advanced Compass. Make sure you are using the latest version. If the Mod is already up to date, report this bug to the Mod author.
-
Connection closed - missmatched server list
Remove Rubidium from the server, it's a badly coded client side Mod. I also would recommend to not use magic performance Mods like Rubidium. Since the mostly increase the performance due breaking game mechanics, which could lead problem with other Mods.
-
Help with ore generation and crashes
I would recommend you to take a look at this Doc, it's official from Forge and it explains how you create a valid BiomeModifier. If you don't want to create your own you can take a look at the Builtin Modifier Types
-
Getting error with forge for 1.18.2
if this is your path to java 17 the run.bat file should look like this: // here should be the "@echo off" line and the "REM" lines "C:\Program Files\Java\jdk-17.0.4\bin\java.exe" @user_jvm_args.txt @libraries/net/minecraftforge/forge/1.19-41.0.61/win_args.txt %* pause
-
Help with ore generation and crashes
your BiomeModifier json file is invalid, how did you create this BiomeModifier json file? Do you register a BiomeModifier Codec somewhere?
-
Getting error with forge for 1.18.2
Then you do not start the server with java 17. Replace the java keyword in the run.bat file with the full path of the java 17 executable (java.exe). If the path contains a space you need to put it into quotes.
-
Help with ore generation and crashes
- Connection closed - missmatched server list
Do this please- Getting error with forge for 1.18.2
Minecraft 1.18 requires java 17- Connection closed - missmatched server list
What's this issue? Post debug.log from server, if there is no debug.log run the server from the command line and post full output. This is the only info i get from the log, are you sure the Mod versions from server and client match?- Connection closed - missmatched server list
Post debug.log from server and client.- [1.19] Custom shield not animating on use
Correct, it's also useful to include your mod is into the property- [1.18.2] [SOLVED] Modify incoming potion effects in Event handler
As far as i know that's not possible with Events- I'm Having Modded Mincraft Troubles with 1.19 Forge
Are you sure it is the full debug.log from the logs folder, since the log does not contains any error which cause the game to crash. If this is the full debug.log please post launcher_log.txt as well.- [1.19] Custom shield not animating on use
You need to register the blocking ItemProperty for your custom ShieldItem in FMLClientSetupEvent in enqueueWork, you can take a look at the ItemProperties class to use the vanilla blocking ItemProperty as an example. Do you have a json model for your Shield or do you want to use the vanilla Model or a custom Model (Java)?- Destroy / Remove blocks (10x10x10) when the block is clicked with an item.
I'm not be able to reproduce your problem, this code works fine in Singleplayer and on Server. The Logger debug statements are correctly printed on console Please post the full class of your Item. @Override public InteractionResultHolder<ItemStack> use(Level level, Player player, InteractionHand hand) { if (player instanceof ServerPlayer serverPlayer) { LogUtils.getLogger().debug("ServerPlayer"); serverPlayer.connection.teleport(serverPlayer.getX(), 100, serverPlayer.getZ(), 0.0F, 0.0F); } if (!level.isClientSide) { LogUtils.getLogger().debug("!isClientSide"); } return super.use(level, player, hand); }- org.spongepowered.asm.mixin.transformer.throwables.MixinTransformerError: An unexpected critical error was encountered(pls help)
Remove Rubidium Extras.- 2 Wide Block
You haven't registered the default state of the Block, take a look at the DoublePlantBlock constructor how it should be done Note you need to register there all BlockStateProperties (you add to the StateDefinition) with the default value- Destroy / Remove blocks (10x10x10) when the block is clicked with an item.
Then rayTraceDistance is your issue it's in a class which should be only used on client, remove it since you can not store data like this in a Item, the value will be shared. If you want to store data in a Item you need to store the data in the related ItemStack. Therefore i would recommend you to use a Capability. - Connection closed - missmatched server list
IPS spam blocked by CleanTalk.
Important Information
By using this site, you agree to our Terms of Use.