Jump to content

How would one go about creating a self replicating block?


nintendofan9797

Recommended Posts

I wanted to create a block, that will destroy a world, so I can balance out the OP stuff that I have in my mod. For example, I created a very valuable ore, and it is rather OP, so if I make it only generate in the "corrupted biome" and then if the player didn't get to it fast enough, they would lose it to the "corruption block". I have already got a timer working (one that will initiate the spread code, every couple of ticks (it chooses a random integer between 0 and 250), then will tick up to it. When it reaches the integer, it will reset the counter, then choose another integer.) It will also call the spreading code.

 

I was wondering, now I have this, how can I make it check for and replace blocks.

 

 

Any help is much appreciated.

Link to comment
Share on other sites

Yep. I got it:

 

If anyone wants the code:

 

if (!par1World.isRemote){
                for (int var6 = 0; var6 < 4; ++var6)
                {
                    int var7 = par2 + par5Random.nextInt(3) - 1;
                    int var8 = par3 + par5Random.nextInt(5) - 3;
                    int var9 = par4 + par5Random.nextInt(3) - 1;	                   
                    if (par1World.getBlockId(var7, var8, var9) != 0){
                    par1World.setBlockWithNotify(var7, var8, var9, <your block here>);
                    par1World.setBlockWithNotify(par2, par3, par4, 0);

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



×
×
  • Create New...

Important Information

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