FancyMenu Extras

Quick rating

FancyMenu Extras

No reviews yet

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

Mod Loaders
Fabric
Minecraft

Community voices

Reviews

Versions
Loading versions…
Match includes

Click once to include, again to exclude, again to clear

Rating Any
Any 0.5 1.0 1.5 2.0 2.5 3.0 3.5 4.0 4.5 5.0
Min
Max
Play Status
Reviews
Time Played
hrs+
Verified developers only
Has developer response
List view
Grid view
Compact view
Sort by
Date
Rating
Helpful
Unhelpful
Edited
Sort ascending
Delete this review?

This removes your review from the project. You can write a new review after.

Review submitted for moderation

Your review has been sent to moderators, who will check that it meets our guidelines before it appears publicly.

No reviews yet. Be the first to review this project!

Get it on

Available Platforms

Compatibility

Supported Environments

Dev Environment
Client Optional
Server Optional

About

Project Details

Type
Mod
License
Creative Commons Attribution Non Commercial Share Alike 4.0 International
Latest Version
fancymenu-extras-1.1.0+1.21.1.jar
Authors
CurseForge
Modrinth

For authors

Embed Badge

If you're the author of this project, you can embed a live badge anywhere that supports HTML or Markdown. It updates automatically whenever ratings change.

Custom banner text
ModDex rating badge preview

Use HTML for any page that supports it, or Markdown for README files and Markdown-based descriptions.

Identifiers

Platform IDs

CurseForge ID
Modrinth ID

Resources

External Links

Source Issues Wiki Discord

About

Description

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

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

Screenshots

Gallery

This project has no gallery images yet.

Versions

Files

Relations

Project Relations

More like this

Similar Mods

Suggestions use data such as tags, dependencies, dependents, descriptions, titles, and more to rank how much they overlap with this mod.

On ModDex

Community snapshot

0
Ratings
0
Followers
0
In stacks

By the numbers

Statistics

<1,000
Total Downloads
CurseForge
<1,000
Modrinth
<1,000
Last Updated
CurseForge
Created
CurseForge
Modrinth
Last synced
When ModDex last fetched this project from CurseForge or Modrinth. Every project is re-checked on a schedule, and any project that ships a new file is synced automatically within hours of the release.
New file updates sync automatically
How syncing works