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.

Featured Replies

Posted

Well...

 

I made a custom dimension staff item, that should fill the whole portal with my portal block...

It just adds one single portal block above the portal "case", not filling the whole portal :/

 

Here my code:

 

ItemDimensionStaff:

 

 

package LnJ.mods.ObsidiaCraft.common.JaffaDaff;
import net.minecraft.block.Block;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.item.Item;
import net.minecraft.item.ItemStack;
import net.minecraft.src.*;
import net.minecraft.world.World;

import java.util.Random;

import LnJ.mods.ObsidiaCraft.CommonProxy;
import LnJ.mods.ObsidiaCraft.Major;

public class ItemDimensionStaff extends Item
{
public ItemDimensionStaff(int i)
{
	super(i);
	this.setCreativeTab(Major.obsidiaTab);
	maxStackSize = 1;
	setMaxDamage(7);
}

@Override
public boolean onItemUse(ItemStack par1ItemStack, EntityPlayer par2EntityPlayer, World par3World, int par4, int par5, int par6, int par7, float par8, float par9, float par10)
    {
	if(par1ItemStack.getItemDamage() > par1ItemStack.getMaxDamage())
	{
		--par1ItemStack.stackSize;
	}

    	 if (par7 == 0)
         {
             --par5;
         }

         if (par7 == 1)
         {
        	 ++par5;
         }

         if (par7 == 2)
         {
             --par6;
         }

         if (par7 == 3)
         {
             ++par6;
         }

         if (par7 == 4)
         {
             --par4;
         }

         if (par7 == 5)
         {
             ++par4;
         }
    	
        if (par2EntityPlayer.canPlayerEdit(par4, par5, par6, par7, par1ItemStack))
        {
            int var11 = par3World.getBlockId(par4, par5, par6);

            if (var11 == 0)
            {
            	if(par3World.doesBlockHaveSolidTopSurface(par4, par5 - 1, par6))
            	{
            		int var12 = par3World.getBlockId(par4, par5 - 1, par6);
            		if(var12 == Block.sandStone.blockID)
            		{
            			par1ItemStack.setItemDamage(par1ItemStack.getItemDamage() + 1);
            			par3World.setBlockWithNotify(par4, par5, par6, Major.ObsidiPortal.blockID);
            		}
            	}
            }
            return true;
        }
        else
        {
        	return false;
        }
    }

public String getTextureFile()
    {
        return CommonProxy.textures;
    }
}

 

 

 

BlockObsidiPortal

 

 

package LnJ.mods.ObsidiaCraft.common.JaffaDaff;
import net.minecraft.block.Block;
import net.minecraft.block.BlockPortal;
import net.minecraft.block.material.Material;
import net.minecraft.entity.Entity;
import net.minecraft.entity.player.EntityPlayerMP;
import net.minecraft.src.*;
import net.minecraft.util.AxisAlignedBB;
import net.minecraft.world.IBlockAccess;
import net.minecraft.world.Teleporter;
import net.minecraft.world.World;
import net.minecraft.world.WorldProvider;

import java.util.List;
import java.util.ArrayList;
import java.util.Random;

import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;

import LnJ.mods.ObsidiaCraft.CommonProxy;
import LnJ.mods.ObsidiaCraft.Major;

public class BlockObsidiPortal extends BlockPortal
{
    public BlockObsidiPortal(int par1, int par2)
    {
        super(par1, par2);
        this.setHardness(20.0F);
        this.setResistance(6000.0F);
        this.setLightValue(1F);

    }

public void updateTick(World par1World, int par2, int par3, int par4, Random par5Random)
{

}

public void onNeighborBlockChange(World par1World, int par2, int par3, int par4, int par5)
{
	byte var6 = 0;
	byte var7 = 1;

	if (par1World.getBlockId(par2 - 1, par3, par4) == this.blockID || par1World.getBlockId(par2 + 1, par3, par4) == this.blockID)
	{
		var6 = 1;
		var7 = 0;
	}

	int var8;

	for (var8 = par3; par1World.getBlockId(par2, var8 - 1, par4) == this.blockID; --var8)
	{
		;
	}

	if (par1World.getBlockId(par2, var8 - 1, par4) != Block.sandStone.blockID)
	{
		par1World.setBlockWithNotify(par2, par3, par4, 0);
	}
	else
	{
		int var9;

		for (var9 = 1; var9 < 4 && par1World.getBlockId(par2, var8 + var9, par4) == this.blockID; ++var9)
		{
			;
		}

		if (var9 == 3 && par1World.getBlockId(par2, var8 + var9, par4) == Block.sandStone.blockID)
		{
			boolean var10 = par1World.getBlockId(par2 - 1, par3, par4) == this.blockID || par1World.getBlockId(par2 + 1, par3, par4) == this.blockID;
			boolean var11 = par1World.getBlockId(par2, par3, par4 - 1) == this.blockID || par1World.getBlockId(par2, par3, par4 + 1) == this.blockID;

			if (var10 && var11)
			{
				par1World.setBlockWithNotify(par2, par3, par4, 0);
			}
			else
			{
				if ((par1World.getBlockId(par2 + var6, par3, par4 + var7) != Block.sandStone.blockID || par1World.getBlockId(par2 - var6, par3, par4 - var7) != this.blockID) && (par1World.getBlockId(par2 - var6, par3, par4 - var7) != Block.sandStone.blockID || par1World.getBlockId(par2 + var6, par3, par4 + var7) != this.blockID))
				{
					par1World.setBlockWithNotify(par2, par3, par4, 0);
				}
			}
		}
		else
		{
			par1World.setBlockWithNotify(par2, par3, par4, 0);
		}
	}
}
    
    @Override
    public void onBlockAdded(World par1World, int par2, int par3, int par4)
    {
        if (par1World.provider.dimensionId > 0 || par1World.getBlockId(par2, par3 - 1, par4) != Block.sandStone.blockID)
        {
            if (!par1World.doesBlockHaveSolidTopSurface(par2, par3 - 1, par4))
            {
                par1World.setBlockWithNotify(par2, par3, par4, 0);
                tryToCreatePortal(par1World, par2, par3, par4);
            }
        }
    }

@Override
public void onEntityCollidedWithBlock(World par1World, int par2, int par3, int par4, Entity par5Entity)
{
	if (par5Entity.ridingEntity == null && par5Entity.riddenByEntity == null)
	{
		if (par5Entity instanceof EntityPlayerMP)
		{
			EntityPlayerMP thePlayer = (EntityPlayerMP) par5Entity;
			if (par5Entity.dimension != Major.dimensionId)
			{
				thePlayer.mcServer.getConfigurationManager().transferPlayerToDimension(thePlayer, Major.dimensionId, new ObsidiaTeleporter(thePlayer.mcServer.worldServerForDimension(Major.dimensionId)));
			}
			else
			{
				thePlayer.mcServer.getConfigurationManager().transferPlayerToDimension(thePlayer, 0, new ObsidiaTeleporter(thePlayer.mcServer.worldServerForDimension(0)));
			}
		}
	}
}

public String getTextureFile()
{
        return CommonProxy.textures;
}

 @SideOnly(Side.CLIENT)

    /**
     * A randomly called display update to be able to add particles or other items for display
     */
    public void randomDisplayTick(World par1World, int par2, int par3, int par4, Random par5Random)
    {
        if (par5Random.nextInt(100) == 0)
        {
            par1World.playSound((double)par2 + 0.5D, (double)par3 + 0.5D, (double)par4 + 0.5D, "portal.portal", 0.5F, par5Random.nextFloat() * 0.4F + 0.8F, true);
        }

        for (int var6 = 0; var6 < 4; ++var6)
        {
            double var7 = (double)((float)par2 + par5Random.nextFloat());
            double var9 = (double)((float)par3 + par5Random.nextFloat());
            double var11 = (double)((float)par4 + par5Random.nextFloat());
            double var13 = 0.0D;
            double var15 = 0.0D;
            double var17 = 0.0D;
            int var19 = par5Random.nextInt(2) * 2 - 1;
            var13 = ((double)par5Random.nextFloat() - 0.5D) * 0.5D;
            var15 = ((double)par5Random.nextFloat() - 0.5D) * 0.5D;
            var17 = ((double)par5Random.nextFloat() - 0.5D) * 0.5D;

            if (par1World.getBlockId(par2 - 1, par3, par4) != this.blockID && par1World.getBlockId(par2 + 1, par3, par4) != this.blockID)
            {
                var7 = (double)par2 + 0.5D + 0.25D * (double)var19;
                var13 = (double)(par5Random.nextFloat() * 2.0F * (float)var19);
            }
            else
            {
                var11 = (double)par4 + 0.5D + 0.25D * (double)var19;
                var17 = (double)(par5Random.nextFloat() * 2.0F * (float)var19);
            }

            par1World.spawnParticle("portal", var7, var9, var11, var13, var15, var17);
        }
    }
}

 

 

  • Author

That's what i'm actually doing automaticly with this code:

 

for (var7 = 0; var7 < 2; ++var7)
            {
                for (var8 = 0; var8 < 3; ++var8)
                {
                    par1World.setBlockWithNotify(par2 + var5 * var7, par3 + var8, par4 + var6 * var7, Major.ObsidiPortal.blockID);
                }
            }

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...

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.