Everything posted by warjort
-
When i launch minecraft it shows an error
You are missing the mrcrayfish framework mod.
-
1.19.3 custom modpack crashes
Most 1.19.2 mods won't work with 1.19.3 Mojang changed how the Creative Mode Inventory Screen works and mods need to update to the new way.
-
Cannot find symbol variable ROCK
If you are posting compiler errors, you are in the wrong forum. You want a "learning java" forum. You are also posting a question about an unsupported (in this forum) version of minecraft. https://forums.minecraftforge.net/topic/91712-supported-version-directory/
-
Custom Dimenson with Custom Chunk generator
Here's an example from the vanilla datapack I linked to earlier: https://github.com/misode/mcmeta/blob/e7034dbd1f202250fbae9e6e155a5d76e3d30450/data/minecraft/dimension/the_end.json#L4 or this is how that DebugLevelSource is specified in a WorldPreset https://github.com/misode/mcmeta/blob/e7034dbd1f202250fbae9e6e155a5d76e3d30450/data/minecraft/worldgen/world_preset/debug_all_block_states.json#L6 You have now reached my limit of wanting to help you. You seem to expect to be treated like a baby. i.e. you want me to feed you with a spoon instead of you feeding yourself.
-
Custom Dimenson with Custom Chunk generator
I don't see the point of providing you with links to documentation if you don't read them.
-
game crashin when entering world
Issue with oculus. Check you have the latest version the contact the mod author.
-
Forge 1.19.2 crashes on launch with exit code 1
If that really is the full log, post a link to your launcher_log.txt directly after the crash without restarting the launcher.
-
Game run, mod load but no item are added
https://github.com/YouStones/chemcraft/blob/adf573c6661fdf81feaad4c3e2c235e0ea9fceac/src/main/java/com/example/chemcraft/setup/ModItems.java#L13 You are registering your item to Registrations.ITEMS. But the DeferredRegister you are registering with forge is ModItem.ITEMS
-
Custom Dimenson with Custom Chunk generator
It is you that specifies how the chunk generator gets constructed in the codec you register. i.e. which parameters it needs either from the json or other sources Compare for example the previously mentioned DebugLevelSource that takes a single (hardcoded) biome vs the full NoisedChunkBasedGenerator that takes a BiomeSource and noise settings. If you want a codec that takes no parameters look at for example the NoneFeatureConfiguration.CODEC Codecs in general: https://forge.gemwire.uk/wiki/Codecs You don't create the level. The level uses you based on your generator being configured for the Dimension/WorldPreset.
-
Whenever i load into my modded minecraft server, i can play for around 5-10 seconds and then my game crashes.
This is crash in the java virtual machine. You need to report this to Microsoft. Or you can try a different version of java, e.g. https://adoptium.net/
-
I'm playing all the mods 8 and when I open my world i get this code. hope you can help, thanks!
Issue with your graphics driver. Make sure you are using the latest version of the driver. Sometimes if a new version of the driver has introduced bugs, downgrading to a previous version of the driver can fix problems. Otherwise contact nvidia.
-
Custom Dimenson with Custom Chunk generator
All this effort over something that is 2 or 3 lines of code. Other people seem to be able to work it out just fine? https://github.com/search?q=CHUNK_GENERATOR_REGISTRY&type=code
-
Custom Dimenson with Custom Chunk generator
From the link I posted above: There is no need to add those extra features for chunk generators so you just use the vanilla resource key.
-
Crash Help Request Again
Issue with the oculus mod. Check you have the latest version then contact the mod author.
-
Minecraft server not working (for the 50th time)
Issue with the extractinator mod. Check you have the latest version then contact the mod author.
-
Custom Dimenson with Custom Chunk generator
Hmmm. You want to modify worldgen, but you don't even know how to register an object in forge? You are going to break people's worlds. ๐ https://forge.gemwire.uk/wiki/Registration The ResourceKey you want is the "suprisingly" named: net.minecraft.core.Registry.CHUNK_GENERATOR_REGISTRY
-
Custom Dimenson with Custom Chunk generator
Like I said, you can create your own ChunkGenerator, register it, then use it. See Mojang's stand up test, DebugLevelSource for something similar to what you describe. Another way is to do something like VoidStartPlatformFeature in a void dimension if you are trying to create some kind of "skyblock". Or you can use a Structure instead.
-
Modname (modfile) has failed to load correctly java.lang.reflect.InvocationTargetException: null
Looks like you are missing the geckolib mod?
-
Custom Dimenson with Custom Chunk generator
You can do this with datapacks. Your mod is a datapack, just add the files to src/main/resources/data Wiki documenting the worldgen json format: https://minecraft.fandom.com/wiki/Custom_world_generation A gui for generating datapack jsons in general: https://misode.github.io/ The vanilla "builtin datapack" if it had been written in json: https://github.com/misode/mcmeta/tree/data/data/minecraft Each json can be done in java code instead. Just register the corresponding object using the standard forge DeferredRegister/RegistryObject mechanism. Things like a new ChunkGenerator implementation need to be written in code. You still register the object(s) in the same way and then reference it from your datapack.
-
every time i open any mod pack through curseforge I get this crash report
One of your config files is invalid/corrupted. You can find it in the config subfolder. If you don't have a backup of the file, you can delete it and it should be recreated with default values.
-
Can't runClient in Eclipse
https://forums.minecraftforge.net/topic/119038-1192-failed-to-run-example-mod-on-fresh-setup/#comment-522788
-
mixin config and missing mandatory dependencies problem
The "minVersion" thing is not a real error. It is really a warning to the developer that mixin cannot check things. If you don't post your updated log we cannot help you. The logs/debug.log so we can see can see which mods you have installed. Forge would normally tell you which mod is requiring the missing dependency and what version it wants. But one of your mods has a broken mixin that is crashing the game before forge can do that. It's probably from the same mod. The debug.log might say which mixin is causing the problem? Failing that, you will need to start again. Add and test mods "one-by-one". That way you will know which mod is causing the problem. It is the mod you just added.
-
Can't start my server on correct Java version.
You can't run a directory. ๐ It should be:
-
Can't start my server on correct Java version.
Replace where it says java with "c:\full path to\java folder\bin\java.exe" where the quotes are important if the directory includes spaces like my example.
-
mixin config and missing mandatory dependencies problem
You are missing or have the wrong versions of structurize and blockui mods. You have 2 mods that want a different (probably more recent?) version of forge.