Jump to content

Recommended Posts

Posted

The best way, in my opinion, is to:

 

1. Make an NBT tag for the kills to be stored in

2. Detect when the tool successfully kills the mob and add to the NBT tag

3. Use the addInformation method to display the kills

Kain

Posted

Your UltimateGemSword class should look more like this:

 

package yourpackage.examplemod

 

import net.minecraft.everything.*;

 

public class UltimateGemSword extends ItemSword

{

 

public UltimateGemSword(yourparams)

{

 

super(par1, par2Material);

 

}

 

@Override

public void doStuff()

{

 

//example stuff

 

}

 

public void addInformation()

{

 

//example stuff

 

}

 

}

 

 

To my knowledge, I don't think you should be placing methods inside of other methods.

Kain

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.

×
×
  • Create New...

Important Information

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