Compatibility
Minecraft: Java Edition
Platforms
Supported environments
Links
Tags
Creators
Details
More Placeholders
A mod which brings back the Scoreboard, Tag and Team placeholders which were removed in FancyMenu 3.9.0 - but now with server-side support!
What does More Placeholders do?
FancyMenu 3.9.0 removed the Scoreboard placeholders because the client only gets data for a scoreboard if it's set in a display slot. It also removed placeholders related to tags and teams.
More Placeholders adds these back, and also syncs scoreboard and tag data to the client so that the placeholders work!
It also adds a new placeholder: Players With Score (players_with_score). This returns a list of players whose score for a particular objective matches a specified number or range.
Placeholders
Note: Although this mod can be used only on the client, for scoreboard and tag placeholders to work fully the mod must also be installed on the server. Without the server-side install, these placeholders fall back to whatever vanilla syncs, which is limited.
Scoreboard
Scoreboard Score (scoreboard_score)
Returns the score of a player for a given scoreboard objective.
{"placeholder":"scoreboard_score","values":{"player":"Player1","objective":"my_objective"}}
Parameters:
player: The name of the score holderobjective: The name of the scoreboard objective
Example output: 42
Scoreboard Objectives List (scoreboard_objectives_list)
Returns a separated list of all scoreboard objective names.
{"placeholder":"scoreboard_objectives_list","values":{"separator":", "}}
Parameters:
separator: Text to join objective names with (default:", ")
Example output: my_objective, kills, deaths
Scoreboard Tracked Players (scoreboard_tracked_players)
Returns a separated list of all score holders tracked by the scoreboard (i.e. anyone with at least one score).
{"placeholder":"scoreboard_tracked_players","values":{"separator":", "}}
Parameters:
separator: Text to join names with (default:", ")
Example output: Player1, Player2, Steve
Scoreboard Display Slot (scoreboard_display_slot)
Returns the name of the objective currently displayed in the given display slot.
{"placeholder":"scoreboard_display_slot","values":{"slot":"sidebar"}}
Parameters:
slot: The display slot to query. Valid values:list,sidebar,below_name
Example output: my_objective
Scoreboard Has Score (scoreboard_has_score)
Returns true if the given player has a score for the given objective, false otherwise.
{"placeholder":"scoreboard_has_score","values":{"player":"Player1","objective":"my_objective"}}
Parameters:
player: The name of the score holderobjective: The name of the scoreboard objective
Example output: true
Scoreboard Objective Display Name (scoreboard_objective_display_name)
Returns the display name of a scoreboard objective.
{"placeholder":"scoreboard_objective_display_name","values":{"objective":"my_objective"}}
Parameters:
objective: The internal name of the scoreboard objective
Example output: My Objective
Scoreboard Objective Criteria (scoreboard_objective_criteria)
Returns the criteria of a scoreboard objective (e.g. dummy, playerKillCount).
{"placeholder":"scoreboard_objective_criteria","values":{"objective":"my_objective"}}
Parameters:
objective: The name of the scoreboard objective
Example output: dummy
Scoreboard Objective Render Type (scoreboard_objective_render_type)
Returns the render type of a scoreboard objective — either integer or hearts.
{"placeholder":"scoreboard_objective_render_type","values":{"objective":"my_objective"}}
Parameters:
objective: The name of the scoreboard objective
Example output: integer
Scoreboard Player Scores List (scoreboard_player_scores_list)
Returns a formatted, separated list of all scores a player has across every objective.
{"placeholder":"scoreboard_player_scores_list","values":{"player":"Player1","separator":", ","format":"%objective%: %score%"}}
Parameters:
player: The name of the score holderseparator: Text to join entries with (default:", ")format: Format string for each entry. Use%objective%and%score%as placeholders (default:%objective%: %score%)
Example output: my_objective: 42, kills: 7, deaths: 3
Scoreboard Objective Count (scoreboard_objective_count)
Returns the total number of scoreboard objectives.
{"placeholder":"scoreboard_objective_count"}
Example output: 3
Player Team (player_team)
Returns the scoreboard team name of the specified player. Returns empty if the player is not on a team.
{"placeholder":"player_team","values":{"player_name":"Joel4848"}}
Parameters:
player_name: The name of the player to look up
Example output: Pandas
Players With Score (players_with_score)
Returns a separated list of all score holders whose score for a given objective matches a value or range. Uses the same range syntax as Minecraft commands.
{"placeholder":"players_with_score","values":{"objective":"my_objective","score":"1..","separator":", "}}
Parameters:
objective: The name of the scoreboard objectivescore: A score value or range:5— exactly 53..7— between 3 and 7 inclusive3..— 3 or above..7— 7 or below
separator: Text to join names with (default:", ")
Example output: Player1, Player2
World
Player Has Tag (player_has_tag)
Returns true if the named player has the given tag (as applied by /tag), false otherwise.
{"placeholder":"player_has_tag","values":{"player_name":"Steve","tag_name":"my_tag"}}
Parameters:
player_name: The name of the player to checktag_name: The tag to look for
Example output: true
Player Tags List (player_tags_list)
Returns a sorted, separated list of all tags on the named player.
{"placeholder":"player_tags_list","values":{"player_name":"Steve","separator":", "}}
Parameters:
player_name: The name of the player to checkseparator: Text to join tag names with (default:", ")
Example output: my_tag, other_tag, third_tag


