Placeholders - AlonsoAliaga/AlonsoTags GitHub Wiki
Placeholders
Available placeholders for PlaceholdersAPI.
%alonsotags_developer%
Returns plugin developer.
Example: AlonsoAliaga
%alonsotags_version%
Returns plugin version.
Example: 0.1-BETA
%alonsotags_tag_of_IDENTIFIER% (π° PREMIUM ONLY - Added in 2.1-BETA-PRO)
Returns the tag from the specified tag IDENTIFIER.
Example: "%alonsotags_tag_of_rekt-tag%" => "[REKT]"
%alonsotags_recognition_title_of_IDENTIFIER% (π° PREMIUM ONLY - Added in 2.1-BETA-PRO)
Returns the recognition title from the specified tag IDENTIFIER.
Example: "%alonsotags_recognition_title_of_rekt-tag%" => "π Serial Killer π"
%alonsotags_total_tags% (π° Added in 2.3-BETA[-PRO])
Returns the current amount of tags in the server.
Example: "250"
%alonsotags_unlocked_tags% (π° Added in 2.3-BETA[-PRO])
Returns the current amount of unlocked tags by the player.
Example: "130"
%alonsotags_total_tags% (π° Added in 2.3-BETA[-PRO])
Returns the current amount of locked tags the player has.
Example: "120"
%alonsotags_tag%
Returns current player tag. (Do not use)
Example: "[REKT]"
%alonsotags_tag_chat%
Returns current player tag with chat format specified in config.yml
Example: "[REKT] "
%alonsotags_tag_tab%
Returns current player tag with tab format specified in config.yml
Example: " [REKT]"
%alonsotags_tag_identifier%
Returns current player tag identifier with identifier format specified in config.yml
Example: rekt-tag
%alonsotags_tag_scoreboard%
Returns current player tag with scoreboard format specified in config.yml
Example: "[REKT]"
%alonsotags_tag_description% (π° Added in 2.1.3-BETA[-PRO])
Returns current player tag description from tags.yml in "Description" section.
Example: "Β§7This is a tag description!"
%alonsotags_recognition_title% (π° PREMIUM ONLY - Added in 2.1-BETA-PRO)
Returns current player recognition title with default format specified in config.yml
Example: "π Monster Hunter π"
%alonsotags_recognition_title_chat% (π° PREMIUM ONLY - Added in 2.1-BETA-PRO)
Returns current player recognition title with chat format specified in config.yml
Example: "π Monster Hunter π" or "No title"
%alonsotags_recognition_title_name_tag% (π° PREMIUM ONLY - Added in 2.1-BETA-PRO)
Returns current player recognition title with name tag format specified in config.yml
Example: "π Monster Hunter π" or empty line (by default)
%alonsotags_recognition_title_scoreboard % (π° PREMIUM ONLY - Added in 2.1-BETA-PRO)
Returns current player recognition title with scoreboard format specified in config.yml
Example: "π Monster Hunter π" or "No title"
%alonsotags_has_unlocked_tag-identifier% (π° Added in 2.2.1-BETA[-PRO])
Returns if player has a tag unlocked. (Permission or purchased)
Example: %alonsotags_has_unlocked_rekt-tag% can return true
or false
%alonsotags_restoreall_PLACEHOLDER WITHOUT PERCENTAGE% (π° Added in 2.1-BETA)
- Returns the original string before colors were parsed. HEX colors are included.
Example: %alonsotags_restoreall_vault_prefix% returnsΒ§xΒ§aΒ§bΒ§cΒ§dΒ§eΒ§fΒ§lModerator
then it will convert it to&#abcdef&lModerator
β οΈ This is extremely useful if a placeholder you have make weird things with colors.
%alonsotags_legacyrestoreall_PLACEHOLDER WITHOUT PERCENTAGE% (π° Added in 2.1-BETA)
- Returns the original string before colors were parsed (Weird legacy format). HEX colors are included.
Example: %alonsotags_legacyrestoreall_vault_prefix% returns&x&a&b&c&d&e&fModerator
then it will convert it to&#abcdefModerator
β οΈ This is extremely useful if a placeholder you have make weird things with colors.
%alonsotags_addampersandhex_PLACEHOLDER WITHOUT PERCENTAGE% (π° Added in 2.1-BETA)
- Fixes placeholders that return hex colors in #rrggbb format.
Example: %alonsotags_addampersandhex_vault_prefix% returns#abcdefModerator
then it will convert it to&#abcdefModerator
β οΈ This is extremely useful if a placeholder you have make weird things with colors.
%alonsotags_removeampersandhex_PLACEHOLDER WITHOUT PERCENTAGE% (π° Added in 2.1-BETA)
- Modifies placeholders output that return hex colors in &#rrggbb format if you need it.
Example: %alonsotags_removeampersandhex_vault_prefix% returns&#abcdefModerator
then it will convert it to#abcdefModerator
β οΈ This is extremely useful if a placeholder you have make weird things with colors.