Jump to content

Durable Item Question


Thornack

Recommended Posts

I have an Item for which I give a maxDamage. I want to make it a durable item where its health decreases everytime you right click it. For some reason the durability doesnt show up. Here is my class minus the imports

 

public class ApplePickingGlove extends CustomItem{
public ApplePickingGlove(){
	super();
	setUnlocalizedName("Apple Picking Glove");
	this.maxStackSize = 1;
	this.setMaxDamage(20);
	this.setNoRepair();
	}

@Override
public ItemStack onItemRightClick(ItemStack itemStack, World world, EntityPlayer player) {

ItemStack itemstack = player.getCurrentEquippedItem();	
if (itemstack != null && itemstack.getItem() == CommonProxy.applePickingGlove){
	ItemStack item = new ItemStack(CommonProxy.applePickingGlove, 2, (itemstack.getItemDamage()+1));

	if (item.getItemDamage() >= item.getMaxDamage()){	
		item.stackSize --;
}


}

	return itemStack;
	}

Link to comment
Share on other sites

I tried

 

@Override
public ItemStack onItemRightClick(ItemStack itemStack, World world, EntityPlayer player) {


if (itemStack != null && itemStack.getItem() == CommonProxy.applePickingGlove){
	itemStack = new ItemStack(CommonProxy.applePickingGlove, 2, (itemStack.getItemDamage()+1));

	if (itemStack.getItemDamage() >= itemStack.getMaxDamage()){	
		itemStack.stackSize --;
}


}

	return itemStack;
	}

 

and still no durability

Link to comment
Share on other sites

And your still doing it wrong...

 

 

Try this:

@Override
public ItemStack onItemRightClick(ItemStack itemStack, World world, EntityPlayer player) {	
if (itemStack != null && itemStack.getItem() == CommonProxy.applePickingGlove){
	if (itemStack.getItemDamage() >= itemStack.getMaxDamage()){	

	}	
}
return itemStack;
}

We all stuff up sometimes... But I seem to be at the bottom of that pot.

Link to comment
Share on other sites

This worked But is there another way

 

@Override
public ItemStack onItemRightClick(ItemStack itemStack, World world, EntityPlayer player) {	
	if (itemStack != null && itemStack.getItem() == CommonProxy.applePickingGlove){
		itemStack.damageItem(1, player);

	}
	return itemStack;
}

Link to comment
Share on other sites

The problem with that method is that I cannot change the amount that durability drops by. I want durability of the item to be affected differently depending on which block the item interacts with. Say drop durability by 5 if you right click cobblestone but drop it by 1 if you right click leaves.

Link to comment
Share on other sites

The problem with that method is that I cannot change the amount that durability drops by. I want durability of the item to be affected differently depending on which block the item interacts with. Say drop durability by 5 if you right click cobblestone but drop it by 1 if you right click leaves.

 

What you want is to use onItemUse().

So

public boolean onItemUse(ItemStack itemStack, EntityPlayer player, World world, int x, int y, int z, int par7, float par8, float par9, float par10) {
     Block target = world.getBlock(x, y, z);
     if (target == Blocks.leaves) {
          itemStack.damageItem(1, player);
     else if (target == Blocks.cobblestone) 
          itemStack.damageItem(5, player);
}

Lead DivineRPG Developer

Link to comment
Share on other sites

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

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Announcements



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • where opportunities abound and promises of financial prosperity beckon from every corner of the internet, the line between opportunity and deception becomes increasingly blurred. As a 38-year-old single mom, I embarked on a journey into the world of cryptocurrency investing, hoping to secure a brighter future for myself and my family. Little did I know, this journey would lead me down a treacherous path fraught with deception and heartbreak. My foray into cryptocurrency investing began with the promise of lucrative returns from a platform claiming to operate within Europe and South Asia. Blinded by optimism and the allure of financial gain, I entrusted my hard-earned savings to this fraudulent company, believing wholeheartedly in its legitimacy. However, my hopes were dashed when I began encountering difficulties with withdrawals and found myself entangled in a web of exorbitant fees and dubious practices. In a desperate bid to salvage what remained of my investment, I turned to a recovery company recommended to me by the very platform that had deceived me. Yet, even in my darkest hour, the deceit persisted, as I soon discovered that the company tasked with recovering my funds was complicit in the deception. Faced with the crushing realization that I had been betrayed once again, I felt a sense of hopelessness engulf me. It was in this moment of despair that I stumbled upon Lee Ultimate Hacker – a shining beacon of hope amidst the darkness of deception. Through a stroke of luck, I came across a blog post singing the praises of this remarkable team, and I knew I had found my savior. With nothing left to lose and everything to gain, I reached out to them, hoping against hope for a chance at redemption. From the outset, Lee Ultimate Hacker proved to be a guiding light in my journey toward financial recovery. Their professionalism, expertise, and unwavering commitment to client satisfaction set them apart from the myriad of recovery services in the digital sphere. With empathy and understanding, they listened to my story and embarked on a mission to reclaim what was rightfully mine. Through their diligent efforts and meticulous attention to detail, Lee Ultimate Hacker succeeded where others had failed, restoring a sense of hope and security in the wake of betrayal. Their dedication to justice and unwavering determination to deliver results ensured that I emerged from the ordeal stronger and more resilient than ever before. Throughout the recovery process, their team remained accessible, transparent, and supportive, offering guidance and reassurance every step of the way. To anyone grappling with devastating financial fraud, I offer a lifeline of hope – trust in Lee Ultimate Hacker to guide you through the storm with expertise and compassion. In a world rife with deception and uncertainty, they stand as a beacon of reliability and trustworthiness, ready to lead you toward financial restitution and a brighter future. If you find yourself in a similar predicament, do not hesitate to reach out to Lee Ultimate Hacker.AT LEEULTIMATEHACKER@ AOL. COM   Support @ leeultimatehacker . com.  telegram:LEEULTIMATE   wh@tsapp +1  (715) 314  -  9248  https://leeultimatehacker.com
    • Sorry, this is the report https://paste.ee/p/OeDj1
    • Please share a link to your crash report on https://paste.ee, as explained in the FAQ
    • This is the crash report [User dumped their crash report directly in their thread, triggering the anti-spam]  
    • Add the crash-report or latest.log (logs-folder) with sites like https://paste.ee/ and paste the link to it here  
  • Topics

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.