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

Hello everyone, I've just started modding minecraft today so I apologize if this question sounds a bit silly. I've finished the basic tutorials and started coding my own item. The idea is that when you kill mobs their souls get stored in the item and when you right click, you can respawn them back into the world. I managed to successfully get it to work except for two things. One, the function is getting called twice or at least I think it is. Two, one of the mobs spawned just freezes there not doing anything.

Wand Code:

public class ReAniWand extends Item{
public ReAniWand()
{
	setRegistryName("reAnimationWand");
	setUnlocalizedName("reAnimationWand");
	GameRegistry.register(this);
}

@SideOnly(Side.CLIENT)
public void initModel()
{
	ModelLoader.setCustomModelResourceLocation(this, 0, new ModelResourceLocation(getRegistryName(), "inventory"));
}

@Override
public void onCreated(ItemStack itemStack, World world,EntityPlayer player)
{
	itemStack.setTagCompound(new NBTTagCompound());	
	itemStack.getTagCompound().setInteger("MobCounter", 0);
	itemStack.getTagCompound().setString("Mob0", "h");
	itemStack.getTagCompound().setString("Mob1", "h");
	itemStack.getTagCompound().setString("Mob2", "h");
}

@Override
public ActionResult<ItemStack> onItemRightClick(ItemStack itemStackIn, World worldIn, EntityPlayer playerIn, EnumHand hand)
    {
	if(itemStackIn.getTagCompound().getInteger("MobCounter") > 0)
	{
		int mobCounter = itemStackIn.getTagCompound().getInteger("MobCounter");
		final int spawnRange = 4;
		--mobCounter;
		EntityLiving entity = null;
		entity = (EntityLiving)EntityList.createEntityByName(itemStackIn.getTagCompound().getString
                       ("Mob"+Integer.toString(mobCounter)), worldIn);
		entity.setLocationAndAngles((double)playerIn.getPosition().getX() + 
                      (worldIn.rand.nextDouble() - worldIn.rand.nextDouble()) * (double)spawnRange + 0.5D,
	      (double)(playerIn.getPosition().getY() + worldIn.rand.nextInt(3)), 
	      (double)playerIn.getPosition().getZ() + 
                      (worldIn.rand.nextDouble() - worldIn.rand.nextDouble()) * (double)spawnRange + 0.5D, 
	      MathHelper.wrapAngleTo180_float(worldIn.rand.nextFloat() * 360.0F), 0.0F);
	      entity.rotationYawHead = entity.rotationYaw;
              entity.renderYawOffset = entity.rotationYaw;
              worldIn.spawnEntityInWorld(entity);
              entity.playLivingSound();
              itemStackIn.getTagCompound().setInteger("MobCounter", mobCounter);
	}
        return new ActionResult(EnumActionResult.PASS, itemStackIn);
    }
}

Tracking Event Code:

public class EventTrackMob {

@SubscribeEvent
public void myEvent(LivingDeathEvent e)
{
	if(e.getEntity().isCreatureType(EnumCreatureType.MONSTER, false) 
                && e.getSource().getEntity() != null && e.getSource().getEntity() instanceof EntityPlayer)
	{
		EntityPlayer player = (EntityPlayer)e.getSource().getEntity();
		for(int i=0;i<9;i++)
			if(player.inventory.mainInventory[i] != null && 
                                player.inventory.mainInventory[i].getItem() instanceof ReAniWand)
			{
				if(player.inventory.mainInventory[i].getTagCompound().getInteger("MobCounter") < 3)
				{
					int mobCounter = player.inventory.mainInventory[i].getTagCompound().getInteger("MobCounter");
					String whichMob = "Mob"+Integer.toString(mobCounter++);
					player.inventory.mainInventory[i].getTagCompound().setString
                                                (whichMob, e.getEntity().getClass().getSimpleName().substring(6));
					player.inventory.mainInventory[i].getTagCompound().setInteger("MobCounter",mobCounter);
					break;
				}
			}
	}
}
}

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.