Jump to content

Saksham4106

Members
  • Posts

    23
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

Saksham4106's Achievements

Tree Puncher

Tree Puncher (2/8)

2

Reputation

  1. ClientRegistry.registerKeyBinding(myKey); also you need to register your key bindings like this in FMLClientSetupEvent i believe
  2. 'init' method still needs a @SubscribeEvent
  3. event method should be static
  4. it should be in src/main/resources/data/minecraft/tags/blocks and should be named doors.json
  5. try to wait some more i had a potato pc and it sometimes took 10 minutes to do all the atlas stitching for a light modpack with only 80 mods
  6. MCreator 🤢
  7. update to latest versions to get support
  8. update to a recent version
  9. Sorry But no support for 1.12.2 you should update to 1.15 or 1.16
  10. k..,. just saying that your item's class should extend Item if you didn't do that
  11. @Override public ActionResult<ItemStack> onItemRightClick(World worldIn, PlayerEntity playerIn, Hand handIn) { playerIn.setHealth(0); return super.onItemRightClick(worldIn, playerIn, handIn); }
  12. no inside your backpack item class you'll need to just override onItemRightClick and then do player.setHealth(0); inside that method
  13. oh nvm that was dumb i didn't see you are making an event you can just override onItemRightClick in your item's class
×
×
  • Create New...

Important Information

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