Everything posted by warjort
-
Custom gamerule syncing [1.19.2] [SOLVED]
GameRules are not automatically synched to the client. Most game rules are only for server side behaviour. The only one I can see (from a quick check the of the ClientLevel class) vanilla sends to the client is RULE_DAYLIGHT which has its own special network packet. See ClientBoundSetTimePacket which calls ClientLevel.setDayTime()
-
help
One of your mods is trying to load client side only classes on the server. That log does not say which mod, but the logs/debug.log might. You should remove any (broken) client side only mods you have installed from the server.
-
Forge server .bat file not lauching server with -Xmx and -Xms variables
1.16.x is not a supported version of forge in this forum. But your question isn't really related the version of forge you are using. If java installed itself in the "Program Files (x86)" that means you downloaded the 32bit version of java which doesn't support 4GB of memory (unless it also supports certain tricks). Download the 64bit version of java.
-
How to creat a shield for forge 40.1.0 1.18.2 ?
You are in the wrong place for this question. This is a support forum not a teaching forum. If you have specific questions, feel free to ask them. "I don't know how to do it" is not a specific question. If you are new to modding you should start with something simpler than a shield. Make yourself familiar with item models, rendering and animations first, then when you are more comfortable with basic modding, have a go at the shield. Some "light" reading for you. ๐ https://forge.gemwire.uk/wiki/Item_Properties https://forge.gemwire.uk/wiki/BlockEntityWithoutLevelRenderer https://forge.gemwire.uk/wiki/Custom_Item_Animations You should make yourself familiar with everything on that wiki. At least to the point where you can lookup details when you need them.
-
SOLVED - Error Minecraft 1.19.2 creating a New World
Issue with the supplementaries mod. Something related to your key bindings configuration? Check you have the latest version then contact the mod author. Maybe related? You should upgrade optifine to the latest preview release or try without optifine.
-
Wanted to make a small modpack for myself, but something with optifine is making it crash I think.
Install the latest preview release of optifine.
-
How to make a custom enchant reduce damage from a specific entity
It's not clear from your question what you are trying to do? But maybe you want to check for the damage source being EntityDamageSource or IndirectEntityDamageSource? Both contain a reference to the Entity causing the damage.
-
Server works for a while then suddenly a "waiting for server" appears.
That crash is caused when something is taking too long on the main server thread. The snapshot when it crashes suggests it could be one of 4 mods (underlined below). It could also be some other mod? The above is just at snapshot when the 60 second timeout occurs. Check you have the latest versions of the above mods then contact the mod authors. If it is none of the above mods, try using something like the following mod to see what is taking time on the server thread: https://www.curseforge.com/minecraft/mc-mods/spark
-
[Solved] [1.18.2] Problems with HeightRangePlacement.triangle when doing ore generation
So -16 blocks "above" the bottom of the world. Or in other words, in the void beneath the world. -64 - 16 = -80 -64 + 94 = 30 Since it is a triangle, the peak will be at the middle of the range (30 - 80) / 2 = -25 Perhaps you meant to use VertialAnchor.absolute() ? Or -16 to 94 with a peak at (94 - 16) / 2 = 39
-
"Error: java.lang.IllegalArgumentException: Failed to create player model for default" HELP
Issue with the midnight hats mods. Check you have the latest version then contact the mod author.
-
Terrablender (terrablender) has failed to load correctly, java.lang.ExceptionInInitializerError: null
It still doesn't say which config file. But looking at the source code for the mod, the file is config/terrablender.toml https://github.com/Glitchfiend/TerraBlender/blob/dde0781f3d2b81bfc262c6c99e0ac5f1794c37b6/Forge/src/main/java/terrablender/core/TerraBlenderForge.java#L30
-
Terrablender (terrablender) has failed to load correctly, java.lang.ExceptionInInitializerError: null
The error message does not say which file. If in doubt, contact the mod author. But you can always backup the file before deleting it.
-
Terrablender (terrablender) has failed to load correctly, java.lang.ExceptionInInitializerError: null
Looks like one of the terrablender config files is invalid/corrupted. That error message does not say which one, but the logs/debug.log might? If you don't have a backup of the file, you can delete it and it should be recreated with default values.
-
I can't open a server with mods on forge 1.18.2
That is the same log you posted last time. The relevant log won't have a .gz file ending.
-
I can't open a server with mods on forge 1.18.2
Use java 17, mixin does not support java 19
-
My mc is crashing and IDK why, when it starts loading up the home screen is like a glitched block (purple and black)
That error says there is an issue with the ModelFix mod. Probably a conflict with another mod? Check you have the latest version then contact the mod author.
-
i cant download forge
Maybe this is your problem? Impossible to say with so little information. https://johann.loefflmann.net/en/software/jarfix/index.html
-
Forge 1.18.2 crash (org.spongepowered.asm.mixin.transformer.throwables.MixinTransformerError)
Issue with create when rendering a Map item. Others have said it is a conflict with Optifine?
-
Got a crash 1.18.2
Issue with debugify. Check you have the latest version then contact the mod author.
-
(1.19,2-43.2.0) Can't join my server
Issue with create when drawing a Map item. Others have said it is a conflict with Optifine?
-
Java is crashing Minecraft 1.18.2 for some reason (Again, even after updating Java and Drivers)
Maybe this? https://forums.minecraftforge.net/topic/119518-exit-code-1073740940/#comment-524102
-
Errors in currently selected datapacks prevent the world from It's loading. You can either try to load it with just the vanil
You need to post a link toi the logs/debug.log so we can see the error.
-
The game crashed whilst rendering item
https://github.com/BluSunrize/ImmersiveEngineering/issues/5518
-
[1.19.3] Getting correct drops from blocks
As with all these types of unanswerable questions: * You need to show what you tried and what you don't understand, otherwise your question is way too vague and open ended. * Use your IDE to look at how vanilla uses the method
-
Lighting around custom entity [SOLVED]
AFAIK entities don't part in the lightlng system in minecraft. If they did, there would be hundreds of mods out there that let the player carry a torch or equivalent. ๐