Jump to content

How to make a check other blocks in a radius help?


zoropirates

Recommended Posts

Hey,

I'm making this block called the Terra Stone and I've gotten it to speed up the growth of plants around it, but it only works with blocks right next to it, how can I make the radius it works in larger? Here's my code:

 

package net.minecraft.src;

import java.util.Random;

public class TileEntityTerraStone extends TileEntity
{
public Block terraBlock;

Random rand = new Random();

public void updateAdjacentCrop(World world, int x, int y, int z)
{

	int blockId = world.getBlockId(x, y, z);
	 if (Block.blocksList[world.getBlockId(x, y, z)] instanceof BlockCrops)
	{
		if(rand.nextInt(1) == 0);
	}
}

	public void updateAdjacentSapling(World world, int x, int y, int z)
{
	int blockId = world.getBlockId(x, y, z);
	 if (Block.blocksList[world.getBlockId(x, y, z)] instanceof BlockSapling)
	{
		if(rand.nextInt(1) == 0);
	}
}
}

Link to comment
Share on other sites

just create a searching method that start at xyz and miniz 4 from the xz coord. then work you way too xz plus 4 using a few "for"statements with an "if" statement in the middle.

 

something like this

public Block findBlock(int x,int y,int x, int blockid,int radius)
{
x-=radius;
y-=1;
z-=radius;
for(int k =0; k < 2; k++)
{
for(int j =0; j < radius; j++)
{
for(int i =0; i < radius; i++)
{
Block block = worldObj.getblock(xyz);
if(block.blockID == blockID)
{
return block;
z++;
}
x++;
}
y++;
}
}

Link to comment
Share on other sites

Just one small issue with that one: It will only find the first one, because it stops at the "return" statement.

 

I think that was the whole point of that piece of code, but you can just simply change the return statement to do what ever you want it to do. You could return a whole List/Array of the blocks or just an Integer (

int

), which returns the amount of the blocks it can find with the same Block ID. There is so much you can do with that little function :D

Link to comment
Share on other sites

Just one small issue with that one: It will only find the first one, because it stops at the "return" statement.

 

I think that was the whole point of that piece of code, but you can just simply change the return statement to do what ever you want it to do. You could return a whole List/Array of the blocks or just an Integer (

int

), which returns the amount of the blocks it can find with the same Block ID. There is so much you can do with that little function :D

yep thought i give an example and let everyone else work out what they want it too do. I use a similar version of this for harvesting wood that why it returns the first instance. It follows the same idea of Buildcraft quarry going from one top corner to another bottom corner. I have another version that will find every last instance of a block then mark it for harvesting.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Announcements



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • Hello everyone, I'm making this post to seek help for my modded block, It's a special block called FrozenBlock supposed to take the place of an old block, then after a set amount of ticks, it's supposed to revert its Block State, Entity, data... to the old block like this :  The problem I have is that the system breaks when handling multi blocks (I tried some fix but none of them worked) :  The bug I have identified is that the function "setOldBlockFields" in the item's "setFrozenBlock" function gets called once for the 1st block of multiblock getting frozen (as it should), but gets called a second time BEFORE creating the first FrozenBlock with the data of the 1st block, hence giving the same data to the two FrozenBlock :   Old Block Fields set BlockState : Block{minecraft:black_bed}[facing=east,occupied=false,part=head] BlockEntity : net.minecraft.world.level.block.entity.BedBlockEntity@73681674 BlockEntityData : id:"minecraft:bed",x:3,y:-60,z:-6} Old Block Fields set BlockState : Block{minecraft:black_bed}[facing=east,occupied=false,part=foot] BlockEntity : net.minecraft.world.level.block.entity.BedBlockEntity@6d1aa3da BlockEntityData : {id:"minecraft:bed",x:2,y:-60,z:-6} Frozen Block Entity set BlockState : Block{minecraft:black_bed}[facing=east,occupied=false,part=foot] BlockPos{x=3, y=-60, z=-6} BlockEntity : net.minecraft.world.level.block.entity.BedBlockEntity@6d1aa3da BlockEntityData : {id:"minecraft:bed",x:2,y:-60,z:-6} Frozen Block Entity set BlockState : Block{minecraft:black_bed}[facing=east,occupied=false,part=foot] BlockPos{x=2, y=-60, z=-6} BlockEntity : net.minecraft.world.level.block.entity.BedBlockEntity@6d1aa3da BlockEntityData : {id:"minecraft:bed",x:2,y:-60,z:-6} here is the code inside my custom "freeze" item :    @Override     public @NotNull InteractionResult useOn(@NotNull UseOnContext pContext) {         if (!pContext.getLevel().isClientSide() && pContext.getHand() == InteractionHand.MAIN_HAND) {             BlockPos blockPos = pContext.getClickedPos();             BlockPos secondBlockPos = getMultiblockPos(blockPos, pContext.getLevel().getBlockState(blockPos));             if (secondBlockPos != null) {                 createFrozenBlock(pContext, secondBlockPos);             }             createFrozenBlock(pContext, blockPos);             return InteractionResult.SUCCESS;         }         return super.useOn(pContext);     }     public static void createFrozenBlock(UseOnContext pContext, BlockPos blockPos) {         BlockState oldState = pContext.getLevel().getBlockState(blockPos);         BlockEntity oldBlockEntity = oldState.hasBlockEntity() ? pContext.getLevel().getBlockEntity(blockPos) : null;         CompoundTag oldBlockEntityData = oldState.hasBlockEntity() ? oldBlockEntity.serializeNBT() : null;         if (oldBlockEntity != null) {             pContext.getLevel().removeBlockEntity(blockPos);         }         BlockState FrozenBlock = setFrozenBlock(oldState, oldBlockEntity, oldBlockEntityData);         pContext.getLevel().setBlockAndUpdate(blockPos, FrozenBlock);     }     public static BlockState setFrozenBlock(BlockState blockState, @Nullable BlockEntity blockEntity, @Nullable CompoundTag blockEntityData) {         BlockState FrozenBlock = BlockRegister.FROZEN_BLOCK.get().defaultBlockState();         ((FrozenBlock) FrozenBlock.getBlock()).setOldBlockFields(blockState, blockEntity, blockEntityData);         return FrozenBlock;     }  
    • It is an issue with quark - update it to this build: https://www.curseforge.com/minecraft/mc-mods/quark/files/3642325
    • Remove Instant Massive Structures Mod from your server     Add new crash-reports with sites like https://paste.ee/  
    • Update your drivers: https://www.amd.com/en/support/graphics/amd-radeon-r9-series/amd-radeon-r9-200-series/amd-radeon-r9-280x
  • Topics

×
×
  • Create New...

Important Information

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