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

where are masks coded ? i cant find them in items or blocks?

Use examples, i have aspergers.

Examples make sense to me.

where are masks coded ? i cant find them in items or blocks?

 

You need to explain what you are talking about my friend, what is this masks you speak of?

If you guys dont get it.. then well ya.. try harder...

  • Author

sorry heads, like creeper head, steve head, etc.

Use examples, i have aspergers.

Examples make sense to me.

A quick search of the package "net.minecraft.item;" should have given you the answer.

Looking at Item.java you can see most items listed.

also there's an class called ItemSkull within the above mentioned package, which I haven't opened but from the name I'm sure it's the one you are looking for ;)

 

If you guys dont get it.. then well ya.. try harder...

In that case, useful classes would include: BlockSkull, TileEntitySkull and TileEntitySkullRenderer.

  • Author

ok thankyou, two questions now on the related subject;

 

@ForgeSubscribe
	public void onDeath(LivingDeathEvent e){
	if(e.entity instanceof EntityPlayer && !e.entity.worldObj.isRemote){
	Entity killed = e.entity;
	Entity killer = e.source.getEntity();
	killed.dropItem(ashtonsmod.Manure.itemID, 1);
	killed.dropItem(Item.bone.itemID, 1);
	killed.dropItem(ashtonsmod.Flesh.itemID, 1);
	killed.dropItem(Item.skull.itemID, 1);
	}

1) i am trying to make the player spawn items on death and this works however i would like to make it so that it spawns on of these not all of them, do i need an array list or somesuch? and how would i do this? ( i would also like to add percentage chance to the drops)

2) skulls are a meta data item and this code drops a skele skull not a steve skull so how would i make it drop a steve skull? in crafting you add , metadatanumber after the item but dropitem only allows one number which in this case is the amount?

Use examples, i have aspergers.

Examples make sense to me.

Make an random number, based upon that make it do the killed.dropItem line?

if (randomNumber == 1)
killed.dropItem(ashtonsmod.Manure.itemID, 1);
else if(randomNumber == 2)
killed.dropItem(Item.bone.itemID, 1);

 

etc.

If you guys dont get it.. then well ya.. try harder...

  • Author

COMPLETE!!! (fireworks in the background)

 

@ForgeSubscribe
	public void onDeath(LivingDeathEvent e){
	if(e.entity instanceof EntityPlayer && !e.entity.worldObj.isRemote){
	Entity killed = e.entity;
	Entity killer = e.source.getEntity();
	    Random randomGenerator = new Random();
	    	int ran = randomGenerator.nextInt(25);
	if (ran == 1 ||ran == 2 ||ran == 3 ||ran == 4 ||ran == 5 ||ran == 6 ||ran == 7){
	killed.dropItem(ashtonsmod.Manure.itemID, 1);}
	if (ran == 8 ||ran == 9 ||ran == 10 ||ran == 11 ||ran == 12 ||ran == 13 ||ran == 14){
	killed.dropItem(Item.bone.itemID, 1);}
	if (ran == 20 ||ran == 21 ||ran == 22 ||ran == 23 ||ran == 24){
	killed.dropItem(ashtonsmod.Flesh.itemID, 1);}
	if (ran == 25){
	ItemStack charskull = new ItemStack(Item.skull, 1, 3);
	killed.entityDropItem(charskull, 1);}
	    
	}}

 

i also figured out how to change the meta data of the skull

Use examples, i have aspergers.

Examples make sense to me.

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.