Everything posted by warjort
-
[1.19.2] The game crashed whilst rendering screen Error: java.lang.IndexOutOfBoundsException: Index 55 out of bounds for length
The actual error is with the curios mod screen. But it could also be caused by whatever is providing that zpf000$onRender mixin. Unfortunately, the mod author didn't give the mixin a name that identifies which mod it is. Candidates are the ones I have underlined, i.e. balm, ae2, mousetweaks, smoothswapping and ipnext Check you have the latest version of these mods and then contact the mod authors.
-
Datapack error whe trying to create a world in a custom 1.18.2 modpack
Issue with bookshelf mod. Check you have the latest version the contact the mod author.
-
Datapack error whe trying to create a world in a custom 1.18.2 modpack
We need to see the error in the logs/debug.log
-
Way to get info about block's level range
Editing the question to the remove the reference to "autonomous agents" doesn't change the fact that the information requested is mostly used to write bots. Anyway, here's a dicussion of why what are asking is pretty much impossible in general for modern minecraft: https://forums.minecraftforge.net/topic/118158-1182-getting-ore-rarities/#comment-519809
-
DawnCraft server crash
Check you have the latest version then contact the mod author.
-
Way to get info about block's level range
Cheats/bots are not supported in this forum.
-
Cant figure out what's wrong with this 1.19.2 error
- AllTheMods8 World perma crashes on launch after previous crash HELP PLEASE
Issue with resourcefulllib Check you have the latest version then contact the mod author.- I'm trying to make a server pack for my modpack but i keep getting this error whenever i try to join please help
It's long because that property makes mojang's code log all the debug information. You can turn off that debug now, by removing the property. The problem is with immersive portals. Check you have the latest version then contact the mod author.- I'm trying to make a server pack for my modpack but i keep getting this error whenever i try to join please help
logs/debug.log You should check it contains that NullPointerException error message before posting it to make sure you have set that property correctly.- [SOLVED][1.19.2] ListTag nbtpos how to store a pos value as int[] array in a nbt listtag
It's not clear what you mean by "minecrafts structure_block" but I guess what you are referring to/looking for is? StructureTemplate.Palette.save(CompoundTag) That has code to put a ListTag in the compound tag, see newIntegerList()- J have problem with my mod . Help me please !
You can't have uppercase characters or spaces in ResourceLocations. That includes file names in your mod's resource/data packs.- Help me pls!!!
Remove optifine and confirm you don't get the same error. Forge by itself doesn't have this error.- I can't start my minecraft server (Better MC)
You are not the first to report this issue with multicraft and BetterMC All I can tell you is that one of the mods is hard crashing the game with a broken mixin. There is no other information in the error information, it doesn't say which mod. You need to speak to the BetterMC modpack developers or multicraft. If you find out what the real problem is, please report it back here for others.- Automaticlly accept all mod items and blocks into creative tab
Don't you have your own DeferredRegister that contains your items? public static final DeferredRegister<Item> MY_ITEMS = DeferredRegister.create(ForgeRegistries.ITEMS, MODID); then for (RegistryObject<Item> itemRegistration : MY_ITEMS.getEntries()) { var item = itemRegistration.get(); // do stuff } You also have the issue that you are adding every item to every tab. You need to check: event.getTab() is the tab you want.- 1.19.2 forge 43.2.4 exit code 1 what's wrong with my game
If the mod is not called fabrication or maybe c_tweaks. I don't know. The mod author hasn't named their mixin file in a standard way so we don't know which mod it is. You could use a zip program to look inside each mod jar and see which has a "fabrication.mixins.json" file.- [1.19.2] capture some blocks get the data, convert that data to nbt, then save the nbt as a textfile.nbt
Path worldSaveDirectory = minecraftServer.getWorldPath(LevelResource.ROOT); Should get you the current save?- Exception in server tick loop
That log is private.- Nedd help pls with this error
Looks like an issue with the netherdungeons mod. But it could also be something strange with whatever that enemyexpproofofconcept/GhoulSpitEntity is given its name?- Unknown Error when starting Server, Client runs fine with same mods
NOTE: you need to put the full path in qoutes in the run.bat if it contains spaces.- Unknown Error when starting Server, Client runs fine with same mods
You need to add java 17 to your PATH in the windows environment settings. I would have expected the java 17 installation to do that for you. Maybe you need to relogin/reboot to make it update? Otherwise, you can modify the run.bat and change where it says java to be the full path to the java.exe of your java 17 installation.- Unknown Error when starting Server, Client runs fine with same mods
run.bat or run.sh depending on your operating system- I'm trying to make a server pack for my modpack but i keep getting this error whenever i try to join please help
Google says this: https://atlauncher.com/help/extra-arguments The only launcher officially supported in these forums is the mojang one. Anything else, you have to ask them.- (My own forge 1.18.2 server) When I run using .bat file, it says this. When I press any key as told, command prompt closes.
Yes. Minecraft remembers which dimensions are needed in the world/level.dat file. So another option is to use an nbt editor to remove them from that file. But you might also have other references to uninstalled mods elsewhere in the chunk data, e.g. biomes, structures, etc.- Unknown Error when starting Server, Client runs fine with same mods
Use java 17, mixin does not support java 19 - AllTheMods8 World perma crashes on launch after previous crash HELP PLEASE
Important Information
By using this site, you agree to our Terms of Use.