Skip 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. Crash in your graphics driver. Here's a link to a possible fix, otherwise contact AMD. https://forums.minecraftforge.net/topic/117925-forge-1192-43147-crashing-on-startup-with-exit-code-1/#comment-519007
  2. Recent topic on the subject: https://forums.minecraftforge.net/topic/118060-1192-rendering-ghost-blocks
  3. That error doesn't identify the mod causing the problem. Post a link to your logs/debug.log so we can see the full error and also try without optifine.
  4. That code is for minecraft 1.8 and hacking away minecraft's authentication is not something we support in this forum anyway. If you want to login in a dev environment, you can use a mod like reauth. https://www.curseforge.com/minecraft/mc-mods/reauth Or if you don't trust that mod with your password, you can copy its code into a mod of your own.
  5. You are trying to use parchment for 1.19.2 with 1.19.3?
  6. Have you tried using your debugger to see why your model is not rendering anything? Personally, I know little to nothing about entity models, and even if I did, I am not going to try to parse what your model is actually doing to find the error. You using your debugger will be much faster and you will learn how it works while doing it. I can also tell this is one of those "I will write my entity from scratch" things. The minecraft Entity has like a million policy methods which if you don't use them properly your entity will be broken. Another reason why I am not going to try parse your code to see what you are missing. Copy a vanilla entity and when you have confirmed it works, change it to your needs. That way you will know which part is broken, it is the part you just changed.
  7. Remove the mods that are forks of each other, and hence have the same name, e.g. rei and jei (both are jei) or jade and wthit (both are waila forks).
  8. Neither mixins or your version of minecraft is supported in these forums. But there is another way (the following shows adding a button to the inventory screen in modern supported versions of minecraft) https://forums.minecraftforge.net/topic/117992-tooltip-depth/#comment-519260
  9. If that really is the correct log? You are missing geckolib.
  10. Issue with the silentcompat mod, check you have the latest version then contact the mod author.
  11. There's no error in that log either. It doesn't show it trying to start minecraft. If you restart the launcher after the crash it will clear that log, so we won't see the error. But if that really is all there is, it looks like a problem with curseforge not installing forge properly. You can ask them how to diagnose/fix what is wrong here: https://support.curseforge.com/en/support/home Or you can try a clean reinstall of curseforge.
  12. There's no error in that log. Post a link to your launcher_log.txt It should be in C:\Users\********\curseforge\minecraft\Install
  13. Because the less boilerplate and wiring code I have to write, the less errors I can make. 🙂
  14. https://forge.gemwire.uk/wiki/Networking_with_Entities
  15. Works for me, I'm not going to try and debug your random code snippets out of context. @EventBusSubscriber(modid = MODID, bus = Bus.MOD, value = Dist.CLIENT) public class ClientForgeModLoadingTest { @SubscribeEvent public static void reloadListeners(RegisterClientReloadListenersEvent event) { LOGGER.info("------------------> HERE"); event.registerReloadListener(new SimplePreparableReloadListener<Unit>() { @Override protected Unit prepare(ResourceManager resourceManager, ProfilerFiller profiller) { LOGGER.info("------------------> PREPARE"); return Unit.INSTANCE; } @Override protected void apply(Unit ignored, ResourceManager resourceManager, ProfilerFiller profiller) { LOGGER.info("------------------> APPLY"); } }); } }
  16. Optifine issue. Use the latest preview release.
  17. You haven't overriden EntityRenderer.render() So the only thing the game will draw is the nametag.
  18. https://docs.minecraftforge.net/en/latest/gui/screens/
  19. RegisterClientReloadListenersEvent
  20. Issue with the oculus mod. Check you have the latest version then contact the mod author.
  21. It is in the standard hex encoding for RGB. 0xRRGGBB e.g. 0xFF0000 is pure red. Minecraft's NativeImage class has some utility methods.
  22. Issue with the epicfight mod. Check you have the latest version then contact the mod author.
  23. 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.

Important Information

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

Account

Navigation

Search

Search

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.