FancyMenu Extras

Adds extra features to FancyMenu, including some that were removed in FM 3.9.x

FancyMenu Extras

A mod which adds extra utility features to FancyMenu, and adds back things which were removed in FancyMenu 3.9.x.

What does FancyMenu Extras do?

In 3.9.0, FancyMenu removed certain things that I found useful:

  • No more underlined text in text elements, because FM switched to markdown which doesn't support underlined text
  • No more scoreboard placeholders
  • No more placeholders related to tags and teams.

FancyMenu Extras adds these back!

Make text underlined with [ul]/[/ul] (e.g. [ul]Underlined Text[/ul])

Get your scoreboard placeholders back (Important: these placeholders will only work reliably if FancyMenu Extras is installed both on the server and client. Without FME on the server, the client only receives data for scoreboard objectives that are set in a display slot).

Enjoy 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

Scoreboard:

  • Scoreboard Score (scoreboard_score) - Returns the score of a player for a given scoreboard objective.
  • Scoreboard Objectives List (scoreboard_objectives_list) - Returns a separated list of all scoreboard objective names.
  • 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).
  • Scoreboard Display Slot (scoreboard_display_slot) - Returns the name of the objective currently displayed in the given display slot.
  • Scoreboard Display Slot (scoreboard_display_slot) - Returns the name of the objective currently displayed in the given display slot.
  • Scoreboard Has Score (scoreboard_has_score) - Returns true if the given player has a score for the given objective, false otherwise.
  • Scoreboard Objective Display Name (scoreboard_objective_display_name) - Returns the display name of a scoreboard objective.
  • Scoreboard Objective Criteria (scoreboard_objective_criteria) - Returns the criteria of a scoreboard objective (e.g. dummy, playerKillCount).
  • Scoreboard Objective Render Type (scoreboard_objective_render_type) - Returns the render type of a scoreboard objective — either integer or hearts.
  • Scoreboard Player Scores List (scoreboard_player_scores_list) - Returns a formatted, separated list of all scores a player has across every objective.
  • Scoreboard Objective Count (scoreboard_objective_count) - Returns the total number of scoreboard objectives.

Team:

  • Player Team (player_team) - Returns the scoreboard team name of the specified player. Returns empty if the player is not on a team.

Tag:

  • 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.
  • Player Has Tag (player_has_tag) - Returns true if the named player has the given tag (as applied by /tag), false otherwise.
  • Player Tags List (player_tags_list) - Returns a sorted, separated list of all tags on the named player.

Usage Guide

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 holder
  • objective: 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 holder
  • objective: 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 holder
  • separator: 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 objective
  • score: A score value or range:
    • 5 — exactly 5
    • 3..7 — between 3 and 7 inclusive
    • 3.. — 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 check
  • tag_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 check
  • separator: Text to join tag names with (default: ", ")

Example output: my_tag, other_tag, third_tag

License

CC BY-NC-SA 4.0

The FancyMenu Extras Team

profile avatar
  • 1
    Followers
  • 7
    Projects
  • 6.6K
    Downloads

More from joel4848View all