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

I have a throwable item, and when the entity that you get from throwing the item hits the ground, it needs to drop the exact item that you threw. I already can spawn a normal ItemStack, but it doesn't have NBT data or anything from my addInformation in my Item class.

 

This is my line to throw the entity in my Item file:

world.spawnEntityInWorld(new EntityKanokaTeleportation(world, entityPlayer));

 

and Here's my Entity File:

package com.eastonium.bionicle.kanoka;

import com.eastonium.bionicle.Bionicle;

import net.minecraft.block.Block;
import net.minecraft.entity.EntityLivingBase;
import net.minecraft.entity.item.EntityItem;
import net.minecraft.entity.player.EntityPlayerMP;
import net.minecraft.entity.projectile.EntityThrowable;
import net.minecraft.item.ItemStack;
import net.minecraft.nbt.NBTTagCompound;
import net.minecraft.util.MathHelper;
import net.minecraft.util.MovingObjectPosition;
import net.minecraft.world.World;
import net.minecraftforge.event.entity.living.EnderTeleportEvent;

public class EntityKanokaTeleportation extends EntityThrowable
{	
public EntityKanokaTeleportation(World par1World)
{
	super(par1World);
}

public EntityKanokaTeleportation(World par1World, EntityLivingBase par2EntityLivingBase)
{
	super(par1World, par2EntityLivingBase);
}

public EntityKanokaTeleportation(World par1World, double par2, double par4, double par6)
{
	super(par1World, par2, par4, par6);
}

/**
 * Called when this EntityThrowable hits a block or entity.
 */
protected void onImpact(MovingObjectPosition par1MovingObjectPosition)
{		
	if (!this.worldObj.isRemote)
	{
		ItemStack discDrop = new ItemStack(Bionicle.kanokaTeleportation); //This doesn't have any NBT data when it is dropped
		if(this.worldObj.getGameRules().getGameRuleBooleanValue("doTileDrops") && par1MovingObjectPosition.entityHit == null){
			this.worldObj.spawnEntityInWorld(new EntityItem(this.worldObj, this.posX, this.posY, this.posZ, discDrop));
		}
		this.setDead();
	}
}
}

 

is there a way I can send the info from the item I threw into the entity so it knows what to spawn as the new item?

And how?

Can you add an extra parameter to your entity?

You could probably do it so

world.spawnEntityInWorld(new EntityKanokaTeleportation(world, entityPlayer, stack.getTagCompound())); 

If you are calling it in the use item method in Item and have access to the ItemStack

And then set a variable in your entity to the tagcompound, then when it lands. After you've created the item stack you can do

discDrop.setTagCompound(this.thetagcompound)

 

So your entity would now look like this

 

package com.eastonium.bionicle.kanoka;

import com.eastonium.bionicle.Bionicle;

import net.minecraft.block.Block;
import net.minecraft.entity.EntityLivingBase;
import net.minecraft.entity.item.EntityItem;
import net.minecraft.entity.player.EntityPlayerMP;
import net.minecraft.entity.projectile.EntityThrowable;
import net.minecraft.item.ItemStack;
import net.minecraft.nbt.NBTTagCompound;
import net.minecraft.util.MathHelper;
import net.minecraft.util.MovingObjectPosition;
import net.minecraft.world.World;
import net.minecraftforge.event.entity.living.EnderTeleportEvent;

public class EntityKanokaTeleportation extends EntityThrowable
{	

private NBTCompound theTagCompound;

public EntityKanokaTeleportation(World par1World)
{
	super(par1World);
}

public EntityKanokaTeleportation(World par1World, EntityLivingBase par2EntityLivingBase, NBTTagCompound tagCompound)
{
	super(par1World, par2EntityLivingBase);
	this.theTagCompound = tagcompound;
}

public EntityKanokaTeleportation(World par1World, double par2, double par4, double par6)
{
	super(par1World, par2, par4, par6);
}

/**
 * Called when this EntityThrowable hits a block or entity.
 */
protected void onImpact(MovingObjectPosition par1MovingObjectPosition)
{		
	if (!this.worldObj.isRemote)
	{
		ItemStack discDrop = new ItemStack(Bionicle.kanokaTeleportation); //This doesn't have any NBT data when it is dropped
		if(this.theTagCompound != null) {
			discDrop.setTagCompound(this.theTagCompound);
		}

		if(this.worldObj.getGameRules().getGameRuleBooleanValue("doTileDrops") && par1MovingObjectPosition.entityHit == null){
			this.worldObj.spawnEntityInWorld(new EntityItem(this.worldObj, this.posX, this.posY, this.posZ, discDrop));
		}
		this.setDead();
	}
}
}

 

I'm Sparkst3r, that kid who makes Sphax textures.

Well hi there. :D

  • Author

Thank you soo much! It worked perfectly!

I had tried to do something similar, but I didn't know about the NBT compound thing, so that's what I needed!

Thanks again!

Case Solved!

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.