Everything posted by warjort
-
World gen taking forever to load in Dawncraft
https://forums.minecraftforge.net/topic/89239-excessively-asked-questions-eaq/#comment-415820
-
Can someone explain how to fix this Crash it happens everytime I try to enter my world
https://github.com/AlexModGuy/Ice_and_Fire/issues/4744
-
essential mod / Forge 1.19.4 Error -1
Broken config file. If you don't have a backup, delete the file and it will be recreated with default values.
-
Solved
That's not how this forum works. If your question is unanswerable then it will likely just get ignored. You need to show everything relevant to reproduce the problem by posting it on github. I can tell you that you should use the EntityRenderersEvent.RegisterRenderers to register entity renderers, not FMLClientSetup. Beyond, that I have no idea what your problem is from the little information you post.
-
Launcher Crash Exit Code 1
https://forums.minecraftforge.net/topic/123416-exit-code-1/?do=findComment&comment=536369
-
I keep getting this and it keeps lagging the server very much and cant craft and items keep dissapearing
Check you have the latest version then contact the mod author.
-
my game is crashing please help
If its not optifine then maybe it is some other mod messing around with shaders or the player model? e.g. I can see possibly Probably the only way you will find it is by experimenting with removing mods until the problem goes away. Backup your world(s) before removing mods.
-
[1.19.4, SOLVED] Left-click charging mechanics for custom weapon
Left click is for block breaking not item use. Block breaking has a different progress mechanic.
-
Problems with registries
That is not how you defer object construction. That creates the object during class initialisation, could be called anytime. This creates the object when forge calls the supplier.get() at the correct time for registration public static RegistryObject<MobEffect> FLY_REGISTERED_OBJECT=MOB_EFFECTS.register("fly", () -> new FlyingEffect(MobEffectCategory.BENEFICIAL, 3124687)); You need to make sure you understand how suppliers (deferred code) work. They are used everywhere by forge and vanilla.
-
Game just crashing with exit code 1 while its starting
You know you can search for the word "ERROR" in your log files just as well as I can?
-
is it possible to lock a custom recipe in a custom crafting block behind an advancement
Why would I have information on a feature that is not part of vanilla or forge? Something similar by a mod: https://www.curseforge.com/minecraft/mc-mods/recipe-stages
-
Game just crashing with exit code 1 while its starting
- [1.19.2 ]The game crashed whilst unexpected error Error: java.lang.NullPointerException...
Check you have the latest version then contact the mod author. But my guess would be some issue/incompatiblity with Optifine?- Problems with registries
Read the link I posted. Repeating that and many other posts: Instead of storing the MobEffect directly in the item, store the RegistryObject<MobEffect> or Supplier<MobEffect> and only use get() on that when you actually need it. A RegistryObject is just a utility object that does all the Registry/ResourceKey/ResourceLocation handling for you and probably more efficiently than you can write it by hand.- Game just crashing with exit code 1 while its starting
You are trying to use mods for minecraft 1.19 with 1.18.2 It also looks like you are missing a few mods like autoreglib, moonlight, konkrete and architectury?- 1.18.2 cannot invoke "net.minecraft.network.FriendlyByteBuf.m_130135_()" because "extraData" is null[SOLVED]
I don't see where line 21 could possibly be from what you posted? In general, if you post random code in the forums most people will just ignore your question unless the problem is obvious from what you post. So don't post snippets in the forum, put all the relevant code necessary to reproduce the problem on github. In this case, you don't show 2 of the most important pieces. The code that opens the menu or how you register the MenuType. https://docs.minecraftforge.net/en/latest/gui/menus/#opening-a-menu- is it possible to lock a custom recipe in a custom crafting block behind an advancement
I think you need to research how recipes work - pun intended ๐ If this is a custom recipe for a custom block you can do whatever you like. But if this is a subclass of one of the vanilla recipes, the Recipe.matches() probably won't give you a way to get the Player via the container so you won't be able to check if they have the advancements.- Help me, I don't know why my modpack is crashing
Isn't that what that bug report says? You have to remove the midnlight lib mod to see the real error because it obscures it.- Problems with registries
Yes. See the recent discussion here or one of the many others in this forum about using Suppliers (deferred access) https://forums.minecraftforge.net/topic/123444-forge-error-on-run/?do=findComment&comment=536470- org.spongepowered.asm.mixin.transformer.throwables.MixinTransformerError: An unexpected critical error was encountered
Check you have the latest version then contact the mod or modpack authors.- [1.19.2] How to send message to all players?
As the title of this forum says, this is a support forum. That is, it is for people with real problems. It is not a way for you to use us as a search engine. Research how Mojang does this, e.g. the SayCommand and if you really are stuck instead of just lazy, you can ask again here.- Error when starting minecraft
Cracked clients are not supported here.- can someone pls help me?
Why are you using rubidium on the server? Just remove it and any other client side only mods. Or report the bug to the mod authors. But good luck getting them to fix it. ๐- Get world saved data on client for a screen [1.19.2]
You are responsible for synchronizing server data to the client for display. https://forge.gemwire.uk/wiki/Main_Page - "the handling information" section e.g. the vanilla MapItem serializes its SavedData map data to the client using the ClientBoundMapItemDataPacket- Minecraft custom player animation
From the wiki: https://forge.gemwire.uk/wiki/Custom_Item_Animations This is a support forum. It is for people with real problems. It is not a way for you to use others as a search engine. - [1.19.2 ]The game crashed whilst unexpected error Error: java.lang.NullPointerException...
IPS spam blocked by CleanTalk.
Important Information
By using this site, you agree to our Terms of Use.