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.

Danebi

Members
  • Joined

  • Last visited

Everything posted by Danebi

  1. Try to run jarfix.
  2. This isn't in your client setup event.
  3. Post the debug.log.
  4. In your .minecraft\logs folder.
  5. Post the debug.log.
  6. It should be lower case, i think. Also, it is crossed out because the constructor of DeferredRegister is deprecated. You should use DeferredRegister::create.
  7. How are you starting the server?
  8. Post the debug.log.
  9. In your .minecraft\logs folder.
  10. https://mcforge.readthedocs.io/en/latest/events/intro/
  11. Post the debug.log.
  12. The file is unavailable to me. Paste it to gist github.
  13. Are you using twitch?
  14. Post the debug.log.
  15. Your code prints both "Hey" and "Hey 2" because after you print "Hey", count is increased and also the second statement is true. For what you want to do you can try with something like this: private String[] array = {"Hey", "Hey 2"}; private int count = 0; @Override public ActionResult<ItemStack> onItemRightClick(World worldIn, PlayerEntity playerIn, Hand handIn) { if (!worldIn.isRemote()) { playerIn.sendMessage(new StringTextComponent(array[count])); count++; return new ActionResult<>(ActionResultType.SUCCESS, playerIn.getHeldItem(handIn)); } return new ActionResult<>(ActionResultType.SUCCESS, playerIn.getHeldItem(handIn)); } If you want to make it loop between the Strings you can use an if statement to reset count.
  16. Delete this file: C:\Users\conne\AppData\Roaming\.minecraft\config\fml.toml.
  17. The debug.log is a file in the .minecraft\logs folder. Paste it on github gist and link it here.
  18. Post the debug.log.
  19. Post the debug.log (It's a file located in your .minecraft\logs folder).
  20. We do not offer help for mcreator. Also.. 1.7 is no longer support. Update to a modern version to receive support.

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.