Jump to content

Recommended Posts

Posted

I have a mod that can run commands. But I cannot catch the result of the command it runs. When my mod edits the scoreboard of an entity, it should have a way to get the current score of a specific objective of that entity. I do not need a way to edit the score, as I can just use commands for that. I have an algorithm that works for players, but I do not know how to get the score from an entity (I have used scores on entities using command blocks before, so I know it is possible). My algorithm is here:

 

/**
	 * Get the specified score of the specified entity. Will create objective if it does not exist.
	 * 
	 * @param world
	 * @param entity
	 * @param objective
	 * @param value
	 */
	public static int getScore(World world, Entity entity, String objective) {
		return world.getScoreboard().getOrCreateScore(entity.getName(), world.getScoreboard().getObjective(objective)).getScorePoints();
	}

 

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.