Everything posted by warjort
-
Crash when creating/opening a world
Optifine issue. Use the latest preview release.
-
[SOLVED] 1.19 Custom Entity not rendering
You haven't overriden EntityRenderer.render() So the only thing the game will draw is the nametag.
-
How to Make a Simple Message Screen Appear When Right Clicking With an Item
https://docs.minecraftforge.net/en/latest/gui/screens/
-
[1.18.2] Any events fired after resources are loaded
RegisterClientReloadListenersEvent
-
Error: org.spongepowered.asm.mixin.transformer.throwables.MixinTransformerError: An unexpected critical error was encountered
Issue with the oculus mod. Check you have the latest version then contact the mod author.
-
[1.18.2] Check if block at given position is grass/foliage/water
It is in the standard hex encoding for RGB. 0xRRGGBB e.g. 0xFF0000 is pure red. Minecraft's NativeImage class has some utility methods.
-
ticking player [1.18.2] crash
Issue with the epicfight mod. Check you have the latest version then contact the mod author.
-
Maiden's Merrrymaking Error loading mods
Check you have the latest version of that mod, then contact the mod author. They will likely want to see the full error from the log, not just the snippet you posted.
-
[1.18.2] Check if block at given position is grass/foliage/water
No, that is the color when it is drawn on a map item. If you want the custom color of a block, look at the BlockColors class e.g. BlockColors.getColor(BlockState, Level, BlockPos) The instance the game uses is a private field in the Minecraft class, so you will need to use an access transformer. https://forge.gemwire.uk/wiki/Access_Transformers
-
Okulus + Rubidium = crash (1.19.2)
Then it is the oculus mod itself. Or whatever is using "iris" in its mixin names.
-
Getting this error
Looks like an issue with the essentials mod There are lots of errors for that mod. It looks like you have a development (deofuscated) version of that mod? e.g. Check you have the latest version then contact the mod author
-
Process crashed with exit code -1073740791 what mod did this?
That error indiciates an issue with native code. So it won't be a mod. You probably have a file beginning "hs_err_pid" in your minecraft folder from the time of the crash. If you do, just post the first 20 lines that shows the error. So we can see if it identifies what is crashing.
-
Error: org.spongepowered.asm.mixin.transformer.throwables.MixinTransformerError: An unexpected critical error was encountered
Duplicate.
-
Dedicated Personal Minecraft Forge Server Mod Mismatch
10Dec2022 14:56:50.847] [Render thread/ERROR] [net.minecraftforge.registries.GameData/REGISTRIES]: Unidentified mapping from registry minecraft:block kubejs:magical_soil: 10727 mysticalagriculture:allthemodium_crop: 12496 mysticalagriculture:azure_silver_crop: 12495 mysticalagriculture:crimson_iron_crop: 12493 mysticalagriculture:unobtainium_crop: 12492 mysticalagriculture:vibranium_crop: 12494 [10Dec2022 14:56:50.847] [Render thread/ERROR] [net.minecraftforge.registries.GameData/REGISTRIES]: Unidentified mapping from registry minecraft:item kubejs:magical_soil: 14823 mysticalagriculture:allthemodium_essence: 16864 mysticalagriculture:allthemodium_seeds: 16995 mysticalagriculture:azure_silver_essence: 16863 mysticalagriculture:azure_silver_seeds: 16994 mysticalagriculture:crimson_iron_essence: 16861 mysticalagriculture:crimson_iron_seeds: 16992 mysticalagriculture:unobtainium_essence: 16860 mysticalagriculture:unobtainium_seeds: 16991 mysticalagriculture:vibranium_essence: 16862 mysticalagriculture:vibranium_seeds: 16993 [10Dec2022 14:56:50.848] [Render thread/ERROR] [net.minecraftforge.network.HandshakeHandler/FMLHANDSHAKE]: Missing registry data for impl connection: minecraft:item: kubejs:magical_soil minecraft:item: mysticalagriculture:allthemodium_essence minecraft:item: mysticalagriculture:allthemodium_seeds minecraft:item: mysticalagriculture:azure_silver_essence minecraft:item: mysticalagriculture:azure_silver_seeds minecraft:item: mysticalagriculture:crimson_iron_essence minecraft:item: mysticalagriculture:crimson_iron_seeds minecraft:item: mysticalagriculture:unobtainium_essence minecraft:item: mysticalagriculture:unobtainium_seeds minecraft:item: mysticalagriculture:vibranium_essence minecraft:item: mysticalagriculture:vibranium_seeds minecraft:block: kubejs:magical_soil minecraft:block: mysticalagriculture:allthemodium_crop minecraft:block: mysticalagriculture:azure_silver_crop minecraft:block: mysticalagriculture:crimson_iron_crop minecraft:block: mysticalagriculture:unobtainium_crop minecraft:block: mysticalagriculture:vibranium_crop The server and client disagree on which blocks/items should exist. Kubejs and mysticalagriculture are mentioned. I would guess for at least the kubejs ones the issue is some javascript you have on the server but not the client?
-
Error: org.spongepowered.asm.mixin.transformer.throwables.MixinTransformerError: An unexpected critical error was encountered
Issue with the valhelsia core mod. Others have said it is a conflict with optifine.
-
Crash before start
Issue with tip the scales mod, check you have the latest version then contact the mod author.
-
[1.19.2] Set ranged attack damage of bows and crossbows
There is no attribute for damage with projectiles. Look at for example at BowItem.releaseUsing() and AbstractArrow.onHitEntity() to understand how it works. You can see the damage is a function of the baseDamage and the velocity (deltaMovement) of the arrow. The baseDamage can be affected by the POWER_ARROWS (power) enchantment and the velocity is affected by whether the bow is fully charged at firing. If I was going to try do what you are doing, I would create my own Attribute. You can look at ForgeMod for how to do it. https://github.com/MinecraftForge/MinecraftForge/blob/ec3abdea1455fc8c4e0f440d77e2dc24f880a4a6/src/main/java/net/minecraftforge/common/ForgeMod.java#L150 That way it is easy to identify and doesn't conflict with whatever other random stuff other mods are doing. You can use the EntityJoinLevel event to trap when an arrow gets fired (check it is a real creation and not just a load from disk). Arrow Entity -> getOwner() -> getItemInHand() would tell you which weapon the projectile was fired from (you need to check it is not from a dispenser or something else) Then you can do Arrow.setBaseDamage() in a similar way to how the power enchantment works. Personally, I think just adding the enchantment would be easier. So I wouldn't try to do it this way. 🙂
-
All the Mods 8 modpack struggling to work // org.spongepowered.asm.mixin.transformer.throwables.MixinTransformerError: An unexpe
Conflict between iris and oculus. Check you have the latest version then contact the mod author.
-
[1.18.2] Block Gradients for World Features
Look at the Feature class and the classes that implement it. That is the thing you need to implement (and register) to create your own basic world gen. The ConfiguredFeature just makes a Feature reusable by giving it parameters, e.g. what the leaves block should be.
-
forge 1.19.2 keeps crashing with error code 1
That doesn't show any forge or mod error either. It doesn't show you starting minecraft. It does contain lots of warnings/errors like: There are many others. This suggests your launcher configuration files are corrupted/invalid? Since it looks like you are using curseforge, you should ask them how to fix it. https://support.curseforge.com/en/support/home
-
error during mod loading
Looks like an issue with "oh the biomes you will go" (byg) configuration for productive bees and advanced peripherals villagers. I guess you uninstalled those mods? Check the byg docs or ask the mod author how to fix it.
-
[1.18.2] Check if block at given position is grass/foliage/water
You mean tags? e.g. blockState.is(BlockTags.FLOWERS) https://forge.gemwire.uk/wiki/Tags But I think you will find what you are talking about works the opposite way. i.e. A grass block asks the biome what color it should be when it is being drawn.
-
forge 1.19.2 keeps crashing with error code 1
That doesn't show any error. If it is the full log, post a link to the launcher_log.txt after the crash (before you restart the launcher).
-
Forge 1.19.3 build issue
I doubt the 1.19.2 parchment mappings work with 1.19.3? You should ask wherever they provide support, or try the official mappings.
-
java.lang.NoClassDefFoundError: mezz/jei/Internal
Post a link to your logs/debug.log so we can see the full error.
IPS spam blocked by CleanTalk.