Everything posted by warjort
-
Minecraft 1.19.2 Modded - Cant Do Anything.
It sounds like something on the server thread is not responding properly. You can use a mod like https://www.curseforge.com/minecraft/mc-mods/spark to diagnose this kind of problem. See its docs/wiki for how to use it. But I am also seeing messages in your log like this: It is not a good idea to start a world with worldgen mods and then remove those worldgen mods. Minecraft generally doesn't handle this very well.
-
Internal Exception ATM 8
This is usually caused by a mod having broken custom recipe serialization. There is nothing in the log that says which mod has the problem, You will have to experiment with removing mods or search your mod's issues pages for known issues.
-
Custom Tree Not Growing, throwing "Trying to access unbound value" error 1.19.2
The error message says your configured feature isn't registered. Probably because you haven't called register(Bus) on your DeferrredRegister?
-
Having troubles while trying to install forge
Update your java to a recent version.
-
Minecraft Forge 1.18.2 is not starting - Minecraft Window doesn't even open
One of your mods is for a different version of forge: [11Okt.2022 16:15:17.967] [main/ERROR] [net.minecraftforge.fml.loading.ModSorter/LOADING]: Missing mandatory dependencies: forge Probably journeymap judging by the name of the file
-
[1.18.2] My capability creates an error
- I need help my server is not starting
You haven't posted the full log, the part you have posted starts after the error.- [1.18.2] Adding Entities
As the compiler is telling you, those constructors don't exist. They do exist on AbstractArrow, but you aren't extending that class. Please don't post basic java questions in this forum. Buy a book or whatever you need to learn the language.- How do I fix Minecraft Safe Mod
I know what version of minecraft/forge you are using. I can see that in the log. Your problem is the version of journeymap you are using is NOT for 1.19.2 https://www.curseforge.com/minecraft/mc-mods/journeymap/files/all?filter-game-version=1738749986%3a73407- How do I fix Minecraft Safe Mod
Use the correct version of journeymap for 1.19.2- I need help my server is not starting
One of your mods has broken network code. You can try adding the following system property to your java/jvm parameters to see if it gives more information in a full stacktrace for that DecoderException -Dforge.logging.mojang.level=debug Otherwise you will have to experiment with removing mods or search your mod's issues pages for known issues. See https://forums.minecraftforge.net/topic/117397-kicked-from-server-cant-log-back-in-happens-after-randoms-actions-eg-eating-zombflesh/#comment-517093 for a known issue and more information. But it could be any of your mods where the mod author has not tested their mod properly in multiplayer mode.- How do I fix Minecraft Safe Mod
Your question is unanswerable, you don't show the errors. i.e. the debug.log- I need help my server is not starting
Remove rubidium, oculus and other broken client side only mods from the server.- [1.18.2] Item.useOn() is not called on custom block class
Your router block also has use() method which takes precedence over the item useOn() If I shift right click to activate the item useOn() I get messages in the chat log. See MultiplayerGameMode.useItemOn() and Forge's RightClickBlock event if you want to change this behaviour.- Forge 1.19.2 43.1.34 crash while initializing the game
Issue with rubidium extras, probably conflicting with another mod. Check you have the latest version then contact the mod author.- org.spongepowered.asm.mixin.transformer.throwables.MixinTransformerError:
Use the correct version of journeymap for 1.19.2- How to create a simple single texture gui
You need to do more research by looking at how vanilla does things. And as I said before, you will find many answers to some of your questions already in these forums.A Also BookViewScreen is just one example of a vanilla screen you can look at. Pick one that most closely resembles what you are trying to do. I am not going to spoon feed the code to you. It is your responsibility to write your mod. I will tell you (since it is probably not obvious if you haven't seen it before) that blit() like other render methods gets some of its "parameters" from the static RenderSystem calls that change the opengl rendering state. e.g. RenderSystem.setShaderTexture() specifies which texture to use in later calls.- Failed to start the minecraft server java.lang.IllegalArgumentException: Unsupported class file major version 63
I do so see you trying to use optifine on the server which is pointless. All it will do is potentially break things there. 🙂- Failed to start the minecraft server java.lang.IllegalArgumentException: Unsupported class file major version 63
"It doesn't work" is not an answerable question.- Failed to start the minecraft server java.lang.IllegalArgumentException: Unsupported class file major version 63
Use java 17- Problem with a self filling fluid capability item
Look at DyeItem.interactLivingEntity() or one of the other vanilla items for the correct pattern. In particular pay attention to the use of isClientSide/sidedSuccess(). I think your code only modifies the capability on the client?- [1.19] Create a new Attribute for entities
Look at what ForgeMod does for its attributes.- [1.19] Add a new Attribute
https://forge.gemwire.uk/wiki/Making_Entities- [1.18.2] Item.useOn() is not called on custom block class
I don't see how the relevant code for your question even compiles? @Override public InteractionResult useOn(UseOnContext pContext) { System.out.println("TEST"); // level is not defined here return InteractionResult.sidedSuccess(level.isClientSide()); } Please show the real code, preferably by uploading it to github so we can try it for ourselves, but at least see all the relevant context.- How to create a simple single texture gui
Have a look at DynamicTexture/NativeImage for creating dynamic textures. You can see how to register the result (give it a ResourceLocation) with the TextureManager in for example PackSelectionScreen.loadPackIcon() Once that is done, you can blit() it onto the screen like any other texture. Look at for example BookViewScreen.render() for the some blit() code, which also renders some text - font.draw(). From your description, it sounds like the code for minecraft Map items would be more relevant, e.g. MapRenderer? But that is more complex since it handles rendering the map in the player's hand. How to show screens is a question that has been asked a million times in these forums. So you can use search for all the alternatives. But it is basically Minecraft.getInstance().setScreen() from your chosen interaction method. - I need help my server is not starting
IPS spam blocked by CleanTalk.
Important Information
By using this site, you agree to our Terms of Use.