Hi,
I am currently working on a new idea for a mod, but have gotten a little stumped. I want it to be that when an item is dropped (by a player or machine, such as a dropper) the item would despawn and a mob would spawn in its place. I know this should be simple but I am completely stumped. I have been trying to accomplish this with a ItemTossEvent, which is semi-successful.
@SubscribeEvent
public void ironNuggetDrop(ItemTossEvent e){
World world = e.getEntity().world;
Item item = e.getEntityItem().getEntityItem().getItem();
BlockPos pos = e.getEntityItem().getPosition();
if(!world.isRemote){
if(item == Items.APPLE){
spawnSkelly(world, pos);
e.getEntityItem().isDead = true;
}
}else{
e.getPlayer().sendMessage(new TextComponentString("it works, you dropped it"));
}
}
private void spawnSkelly(World worldIn, BlockPos pos){
EntitySkeleton skelly = new EntitySkeleton (worldIn);
skelly.setPosition(pos.getX() + 0.5, pos.getY() + 1, pos.getZ() + 0.5);
worldIn.spawnEntity(skelly);
}
There is a couple of issues however:
1) The item immediately despawns, so you do not even see it. Which I want it to be there for like a second if possible.
2) It does not work with droppers and such.
3) The mobs are spawning in random orientation instead of where the item lands, which is what I wanted.
So I went into another option which is to create a custom EntityThrowable. This kind of works, except I could not get a custom particle to work so it still shows nothing and a mob just spawns. And it also does not work with droppers.
Any help would be greatly appreciated
Thanks
OC