Jump to content
View in the app

A better way to browse. Learn more.

Forge Forums

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (โ‹ฎ) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

warjort

Members
  • Joined

  • Last visited

Everything posted by warjort

  1. Some problems with your byg config files: e.g. one is You probably uninstalled immersiveenginnering and now the config is invalid? Look at the error message for a complete list of problems.
  2. The MDK is an archive not a program. You unzip it. Or use jar -xf file-name which is the same thing as unzipping.
  3. Only providing snippets of code out of context and no error message means you are unlikely to get help. And directly registering features hasn't been the correct thing to do since at least minecraft 1.18.1
  4. Add some debug for the results of your Block.asItem() calls. I bet at least one of the is "minecraft:air", i.e. not registered/found so its count will be zero. I would also guess that your ITEMS.getValues() contains those BlockItems anyway. Otherwise how are they are registered? So the Block part is duplicate work.
  5. That debug.log is from 30 minutes before your crash: 10:46:14 (crash) vs 10:09:40 (debug.log)
  6. The modern way to register CreativeModeTabs is: https://github.com/MinecraftForge/MinecraftForge/blob/f03adc840e031b0c772e07ddda4ab910e367469a/src/main/java/net/minecraftforge/event/CreativeModeTabEvent.java#L56 e.g. from the forge tests https://github.com/MinecraftForge/MinecraftForge/blob/44c689f1712fcfb7ccb13262d1c02f0a880055be/src/test/java/net/minecraftforge/debug/CreativeModeTabTest.java
  7. Posting code snippets out of context and not showing the error isn't going to get you much help. We have no psychic powers.
  8. You are trying to use the 1.19.4 version of appleskin with minecraft 1.19.2 That isn't going to work well.
  9. The visuality mod is trying to use a class that no longer exists in minecraft 1.19.3 Check you have the latest version then contact the mod author.
  10. One of your mods has a broken mixin. The error does not say which one. The logs/debug.log might?
  11. Use java 17, mixin does not support java 19
  12. Always post a link to the full debug.log. This suggests you have a mod for the wrong version of minecraft. You don't even say which version you are using.
  13. Issue with the tempad mod. Check you have the latest version then contact the mod author.
  14. This is a crash in your graphics driver. Check it is up-to-date then contact nvidia. Sometimes vendors introduce bugs into their drivers, so if you already have the latest version, you can try downgrading to the previous version of the driver.
  15. Looks like an issue with the fabrication mod. Check you have the latest version then contact the mod author.
  16. Please don't post logs in the forum. Use a file upload site. Also, did you actually look at the log before posting? This log already has a summary of errors at the bottom. e.g. This is a client side only mod trying to load classes on the server. You can remove it from the server. There are other similar errors if you read the log.
  17. Sounds like a conflict between these mods then? Check you have the latest versions then contact the mod authors.
  18. This is why you shouldn't just copy code/paste and instead try to understand what you are doing. The code for this can be found in: net.minecraft.world.level.levelgen.structure.templatesystem.StructureTemplateManager net.minecraft.nbt.NbtIo net.minecraft.nbt.NbtUtils You are already using some of these for reading the data. The writes are in the same place. BTW: What you are trying to do sounds similar to what the JigsawBlock does?
  19. https://forge.gemwire.uk/wiki/Events There are about 3,000 examples on github: https://github.com/search?l=Java&q=EntityRenderersEvent&type=Code
  20. Replace where it says java in the run.bat with "C:\Program Files\Java\jdk-17\bin\java.exe" The quotes are important since your directory name includes spaces. This means this script will use your java 17 installation while everything else uses the java 19 from your environment settings.
  21. It's not something I have ever done myself. I've done it with BlockItems like Shulker boxes, but that's different because vanilla has special handling for BlockEntity data stored in BlockItems. I would suggest finding a mod that does something similar to what you want? e.g. https://github.com/P3pp3rF1y/SophisticatedBackpacks/blob/cab406e07d10563f6fa648c1882dfad0ddde8cfd/src/main/java/net/p3pp3rf1y/sophisticatedbackpacks/backpack/BackpackItem.java#L284 The most important methods will be: Item.use() -> opens the gui menu Item.initCapabilities() -> adds an ItemHandlerCapability to the item's ItemStacks, i.e. an inventory There is obviously more to it than this, but these are the basic entry points you can start from. Maybe you can find a simpler example than sophisticated backpacks? ๐Ÿ™‚
  22. I'm not seeing that mixin error in the log you posted. The last bit of mixin processing before you receive the disconnect from the server are these: So it could be any of those mods. Interspersed with this are some messages about unused uniforms These are probably unrelated, but a possibility is the problem is caused by some bad interaction between flywheel (create's rendering mod) and oculus/rubidium. Maybe you can try turning off flywheel's backend? https://forums.minecraftforge.net/topic/119518-exit-code-1073740940/#comment-524102 But at this point I am just guessing. Without seeing a log with the mixin debug messages and the real error at the same time, it's impossible to say what is really causing it.
  23. There is no error in that log which suggests one of the mods is hard crashing during the mixin processing. You need to post the launcher_log.txt so we can see that error. This message suggests you have at least one mod that is for an older/wrong version of minecraft This is the wrong way to be build a modpack. Dumping random mods in your mod folder and expecting us to fix it for you is not why this forum exists. You should add mods individually or in small groups and test it works. That way when you get an error you know the problem is in one of the mods you just added. Otherwise eventually you are going to hit an error that it is not obvious from the log which mod is causing it and then we won't be tell you which of the many of the mods you have installed is causing it. So you will have to rebuild your modpack from scratch anyway to find it.

Important Information

By using this site, you agree to our Terms of Use.

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions โ†’ Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.