Jump to content

Recommended Posts

Posted

i am trying to detect to call by an id but since the player can change the id, I can't use a switch unless i made 512 different cases which i really hope i don't have to. Right now i have a way these methods

 

	public int getID()
    {
    	return ID;
    }

 

	public boolean isIDSame()
{
	NBTTagCompound var2 = new NBTTagCompound();
	int var1 = this.getID();
	if(var2.getInteger("id") == var1)
	{
		return true;
	}
	else
	{
		return false;
	}
}

Posted

Your isIDSame() method makes no sense. You're creating a new, empty NBTTagCompound and then trying to get an integer out of it. The result of that is always going to be the default value of 0.

 

You're going to have to explain more clearly what you want to achieve. Are you trying to recognise an item belonging to a different mod? Or one of your own items whose ID can be changed in a config file? Something else?

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



×
×
  • Create New...

Important Information

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