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.

Jacat218

Members
  • Joined

  • Last visited

  1. This is so frustrating. I have been trying to figure this out for months.
  2. I am not working on 1.7.10 I am on 1.8 that code is from a old failed project i have. what code do you need to help I am not new to modding but I may have tried to learn to many programming languages at one time I am also 13 and want to be a software engineer. If there any way you can help Thanks
  3. Would this work for the forming of the multiblock. public void onNeighborBlockChange(World world, int x, int y, int z , Block neighborBlock){ updateMutiBlockStructure(world, x, y, z); } public void onBlockAdded(World world, int x, int y, int z){ updateMutiBlockStructure(world, x, y, z); } public void updateMutiBlockStructure(World world, int x, int y, int z){ isMutiBlockStructure(world, x, y, z); } public boolean isMutiBlockStructure(World world, int x1, int y1, int z1){ boolean mStructure = false; boolean currentCheckStructure = true; for(int x2 = 0; x2 < 3; x2++){ for(int z2 = 0; z2 < 3; z2++){ if(!mStructure){ currentCheckStructure = true; for(int x3 = 0; x3 < 3; x3++){ for(int y3 = 0; y3 < 1; y3++){ for(int z3 = 0; z3 < 3; z3++){ if(currentCheckStructure && !world.getBlock(x1+x2-x3, y1+y3, z1+z2-z3).equals(ModBlocks.blockLaunchPad)){ currentCheckStructure = false; } } } } if(currentCheckStructure){ for(int x3 = 0; x3 < 3; x3++){ for(int y3 = 0; y3 < 1; y3++){ for(int z3 = 0; z3 < 3; z3++){ world.setBlockMetadataWithNotify(x1+x2-x3, y1+y3, z1+z2-z3, x3*3+z3+1, 2); } } } } } mStructure = currentCheckStructure; } } if(mStructure) return true; if(world.getBlockMetadata(x1, y1, z1) > 0) world.setBlockMetadataWithNotify(x1, y1, z1, 0, 3); return false; }
  4. Yes but how do I do that I have tried many different ways but they keep failing.
  5. Thanks but how do i get it to share inventory with a gui.
  6. Hello I am trying to make a multi block for my mod. The multi block I am trying to make changes model when formed it also has a gui that stores the data to a master. If this is at all possible please help I have been working on this for a month and i have deleted my project multiple times i just restarted and I am getting frustrated. Thanks

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.