Progress thread|| Contains :Progress/help/moddingtalk Thread

Status
Not open for further replies.

EnderSpace

Member
Oct 29, 2013
508
69
18
The Edges of Space
Can anyone code grass? this is what ive got:
Code:
public void updateTick(World par1World, int par2, int par3, int par4, Random par5Random)
{
    if (!par1World.isRemote)
    {
        if (par1World.getBlockLightValue(par2, par3 + 1, par4) < 4 && par1World.getBlockLightOpacity(par2, par3 + 1, par4) > 2)
        {
            par1World.setBlock(par2, par3, par4, Block.dirt.blockID);
        }
        else if (par1World.getBlockLightValue(par2, par3 + 1, par4) >= 9)
        {
            for (int l = 0; l < 4; ++l)
            {
                int i1 = par2 + par5Random.nextInt(3) - 1;
                int j1 = par3 + par5Random.nextInt(5) - 3;
                int k1 = par4 + par5Random.nextInt(3) - 1;
                int l1 = par1World.getBlockId(i1, j1 + 1, k1);

                if (par1World.getBlockId(i1, j1, k1) == Block.dirt.blockID && par1World.getBlockLightValue(i1, j1 + 1, k1) >= 4 && par1World.getBlockLightOpacity(i1, j1 + 1, k1) <= 2)
                {
                    par1World.setBlock(i1, j1, k1, PandoraMain.pandoragrass.blockID);
                }
            }
        }
    }
}
i think me
 

IceClimber11

Member
Aug 30, 2013
195
9
28
28
The Matrix
www.IceClimber11.tk
UPDATE!
Currently on vacation. I've made lots I progress.
The hotel I'm in does not have complementary wifi.
Updated:
>Textures. (Everything got retextured, to something worth looking at)
>all blocks are functional now
>working on blocks for second Biome.

see ya later!
 

MoltonMontro

Member
Nov 4, 2013
715
110
43
downloaded it dident work XD also this isent the first addon there was another one who got banned.
We do not tolerate such absurdness! That add-on is banned, thus it will not exist in the rankings.

Post some progress, Unk, Ender. We wouldn't want your addon to be deleted because you have no progress shown here.
 
Jan 8, 2014
1,049
-108
14
44
Sweden not really swedish im dutch
We do not tolerate such absurdness! That add-on is banned, thus it will not exist in the rankings.

Post some progress, Unk, Ender. We wouldn't want your addon to be deleted because you have no progress shown here.
We recoded tons of stuff and in a week we are going to start planet coding. Thats why we deleted the old threads. also i will say the banned word.

4space
 
Status
Not open for further replies.

Share this page