diff --git a/.github/label-commenter-config.yml b/.github/label-commenter-config.yml index 4b3c23b..03fe45e 100644 --- a/.github/label-commenter-config.yml +++ b/.github/label-commenter-config.yml @@ -86,7 +86,7 @@ labels: We would like to inform you, that you are now able to directly commit your changes to the wiki through a Pull request. When doing so, make sure you follow these steps: - - The Pull request targets the [`docs/wiki`](https://github.com/PlaceholderAPI/PlaceholderAPI/tree/docs/wiki) branch of the Repository. + - The Pull request is based on AND targets the [`docs/wiki`](https://github.com/PlaceholderAPI/PlaceholderAPI/tree/docs/wiki) branch of the Repository. - You only made changes to the files inside the [`wiki`](https://github.com/PlaceholderAPI/PlaceholderAPI/tree/docs/wiki/wiki) folder. - You followed the general Styling Guidelines mentioned in the wiki's [README](https://github.com/PlaceholderAPI/PlaceholderAPI/blob/docs/wiki/wiki/README.md) file. diff --git a/.github/release.yml b/.github/release.yml new file mode 100644 index 0000000..3e9450a --- /dev/null +++ b/.github/release.yml @@ -0,0 +1,24 @@ +# +# This file is used to automatically draft new release changelogs in GitHub. +# Read more: https://docs.github.com/en/repositories/releasing-projects-on-github/automatically-generated-release-notes +# +changelog: + exclude: + labels: + - 'Action: No Changelog' + categories: + - title: 'Breaking Changes' + labels: + - 'Type: Breaking' + - title: 'Additions' + labels: + - 'Type: New Feature' + - title: 'Changes' + labels: + - 'Type: Enhancement' + - title: 'Fixes' + labels: + - 'Type: Bugfix' + - title: 'Other changes' + labels: + - '*' # Catch every other PR not labeled with an "exclude" label. diff --git a/.github/workflows/pr_build_jars.yml b/.github/workflows/pr_build_jars.yml index ba543f6..61dccd0 100644 --- a/.github/workflows/pr_build_jars.yml +++ b/.github/workflows/pr_build_jars.yml @@ -10,13 +10,13 @@ on: jobs: testBuilds: - name: "Test-compile against Java 8, 11 and 16" - runs-on: ubuntu-latest strategy: fail-fast: false max-parallel: 4 matrix: java-version: [8, 11, 16] + name: "Compile jar against ${{ matrix.java-version }}" + runs-on: ubuntu-latest steps: - name: "Checkout Code" uses: actions/checkout@v2 diff --git a/.github/workflows/wiki.yml b/.github/workflows/wiki.yml index 02864b8..0320ed7 100644 --- a/.github/workflows/wiki.yml +++ b/.github/workflows/wiki.yml @@ -27,26 +27,10 @@ jobs: - name: 'Checkout Code' uses: actions/Checkout@v2 - name: 'Update Wiki' - uses: docker://decathlon/wiki-page-creator-action:latest + uses: Andrew-Chen-Wang/github-wiki-action@v2 env: - # - # We can use the E-Mail and Name of the GitHub Actions account - # for our convenience. - # - ACTION_MAIL: 'actions@github.com' - ACTION_NAME: 'github-actions[bot]' - # - # We (sadly) have to use a PAT (Personal Access Token) for this action. - # - GH_PAT: '${{ secrets.WORKFLOWPAT }}' - OWNER: 'PlaceholderAPI' - REPO_NAME: 'PlaceholderAPI' - # - # We only want to target files in the wiki folder - # - MD_FOLDER: 'wiki' - WIKI_PUSH_MESSAGE: '${{ github.event.commits[0].message }}' - # - # We skip/ignore the README.md file in the Wiki folder - # - SKIP_MD: README.md + WIKI_DIR: wiki/ + GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} + GH_MAIL: 'actions@github.com' + GH_NAME: 'github-actions[bot]' + EXCLUDED_FILES: 'README.md' diff --git a/README.md b/README.md index 2ea8404..e67ad20 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ [ciImg]: http://ci.extendedclip.com/buildStatus/icon?job=PlaceholderAPI [APIversionImg]: https://img.shields.io/nexus/placeholderapi/me.clip/placeholderapi?server=https%3A%2F%2Frepo.extendedclip.com&label=API%20Version -[logo]: https://i.imgur.com/Ea4PURv.png +[logo]: https://raw.githubusercontent.com/PlaceholderAPI/PlaceholderAPI/master/wiki/img/papi-logo.png [contributing]: https://github.com/PlaceholderAPI/PlaceholderAPI/blob/master/.github/CONTRIBUTING.md [placeholderexpansion]: https://github.com/PlaceholderAPI/PlaceholderAPI/wiki/PlaceholderExpansion @@ -30,7 +30,7 @@ Support for specific plugins are provided either by the plugin itself or through expansions. The expansions may be downloaded in-game through the PAPI Expansion Cloud. There are currently over 150+ expansions that support a wide variety of plugins, such as Essentials, Factions, LuckPerms, and Vault. -PlaceholderAPI has been downloaded over 500,000 times and has been used concurrently on over 20,000 servers, which makes it a must-have for a server of any type or scale. +PlaceholderAPI has been downloaded over 750,000 times and has been used concurrently on over 35,000 servers, which makes it a must-have for a server of any type or scale. ## Contribute If you would like to contribute towards PlaceholderAPI should you take a look at our [Contributing file][contributing] for the ins and outs on how you can do that and what you need to keep in mind. diff --git a/build.gradle b/build.gradle index 5df263f..172866c 100644 --- a/build.gradle +++ b/build.gradle @@ -18,23 +18,23 @@ repositories { mavenCentral() mavenLocal() - maven({ url = "https://repo.codemc.org/repository/maven-public" }) + maven({ url = "https://repo.codemc.org/repository/maven-public/" }) maven({ url = "https://hub.spigotmc.org/nexus/content/repositories/snapshots/" }) } dependencies { implementation "org.bstats:bstats-bukkit:2.2.1" - implementation "net.kyori:adventure-platform-bukkit:4.0.0-SNAPSHOT" + implementation "net.kyori:adventure-platform-bukkit:4.0.0" compileOnly "org.spigotmc:spigot-api:1.17.1-R0.1-SNAPSHOT" - compileOnly "org.jetbrains:annotations:19.0.0" + compileOnly "org.jetbrains:annotations:22.0.0" - testImplementation "org.openjdk.jmh:jmh-core:1.23" - testImplementation "org.openjdk.jmh:jmh-generator-annprocess:1.23" + testImplementation "org.openjdk.jmh:jmh-core:1.32" + testImplementation "org.openjdk.jmh:jmh-generator-annprocess:1.32" - testImplementation "org.junit.jupiter:junit-jupiter-engine:5.6.2" - testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:5.6.2" + testImplementation "org.junit.jupiter:junit-jupiter-engine:5.8.1" + testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:5.8.1" } processResources { diff --git a/src/main/java/me/clip/placeholderapi/PlaceholderHook.java b/src/main/java/me/clip/placeholderapi/PlaceholderHook.java index 9a051aa..55b2930 100644 --- a/src/main/java/me/clip/placeholderapi/PlaceholderHook.java +++ b/src/main/java/me/clip/placeholderapi/PlaceholderHook.java @@ -23,9 +23,10 @@ package me.clip.placeholderapi; import org.bukkit.OfflinePlayer; import org.bukkit.entity.Player; import org.jetbrains.annotations.NotNull; +import org.jetbrains.annotations.Nullable; public abstract class PlaceholderHook { - + @Nullable public String onRequest(final OfflinePlayer player, @NotNull final String params) { if (player != null && player.isOnline()) { return onPlaceholderRequest((Player) player, params); @@ -34,6 +35,7 @@ public abstract class PlaceholderHook { return onPlaceholderRequest(null, params); } + @Nullable public String onPlaceholderRequest(final Player player, @NotNull final String params) { return null; } diff --git a/src/main/java/me/clip/placeholderapi/commands/impl/local/CommandDump.java b/src/main/java/me/clip/placeholderapi/commands/impl/local/CommandDump.java index d30699d..7a1ed32 100644 --- a/src/main/java/me/clip/placeholderapi/commands/impl/local/CommandDump.java +++ b/src/main/java/me/clip/placeholderapi/commands/impl/local/CommandDump.java @@ -179,6 +179,10 @@ public final class CommandDump extends PlaceholderCommand { .append(plugin.getServer().getBukkitVersion()) .append('/') .append(plugin.getServer().getVersion()) + .append("\n"); + + builder.append("Java Version: ") + .append(System.getProperty("java.version")) .append("\n\n"); builder.append("Plugin Info:") diff --git a/wiki/Commands.md b/wiki/Commands.md index c1970bd..071ea40 100644 --- a/wiki/Commands.md +++ b/wiki/Commands.md @@ -27,213 +27,213 @@ This page shows all commands, including with a detailed description of what ever - **[Other Commands](#other-commands)** - [`/papi dump`](#papi-dump) + - [`/papi help`](#papi-help) - [`/papi reload`](#papi-reload) + - [`/papi version`](#papi-version) ---- + ### Parse Commands These commands are used to parse placeholders into their respective values. Useful for debugging. -#### `/papi bcparse` -**Description**: -Parses placeholders of a String and broadcasts the result to all players. +- #### `/papi bcparse` + **Description**: + Parses placeholders of a String and broadcasts the result to all players. + + **Arguments**: + * `` - The Player to parse values of the placeholder (Use `me` for yourself). + * `` - The text to parse. + + **Example**: + ``` + /papi bcparse funnycube My name is %player_name%! + ``` -**Arguments**: -* `` - The Player to parse values of the placeholder (Use `me` for yourself). -* `` - The text to parse. +- #### `/papi cmdparse` + **Description**: + Parses placeholders of a String and executes it as a command. -**Example**: -``` -/papi bcparse funnycube My name is %player_name%! -``` + **Arguments**: + - `` - The player to parse placeholders against. Use `me` for yourself. + - `` - The Text to parse and execute as command. Please leave away the `/` of the command. + + **Example**: + ``` + /papi cmdparse funnycube say My name is %player_name%! + ``` + +- #### `/papi parse` + **Description**: + Parses the placeholders in a given text and shows the result. + + **Arguments**: + * `` - The Player to parse values of the placeholder (Use `me` for yourself). + * `` - The text to parse. + + **Example**: + ``` + /papi parse funnycube My group is %vault_group% + ``` + +- #### `/papi parserel` + **Description**: + Parses a relational placeholder. + + **Arguments**: + * `` - The first player. + * `` - the second player to compare with. + * `` - The actual placeholder to parse. + + **Example**: + ``` + /papi parserel funnycube extended_clip %placeholder% + ``` ---- -#### `/papi cmdparse` -**Description**: -Parses placeholders of a String and executes it as a command. -**Arguments**: -- `` - The player to parse placeholders against. Use `me` for yourself. -- `` - The Text to parse and execute as command. Please leave away the `/` of the command. - -**Example**: -``` -/papi cmdparse funnycube say My name is %player_name%! -``` - ----- -#### `/papi parse` -**Description**: -Parses the placeholders in a given text and shows the result. - -**Arguments**: -* `` - The Player to parse values of the placeholder (Use `me` for yourself). -* `` - The text to parse. - -**Example**: -``` -/papi parse funnycube My group is %vault_group% -``` - ----- -#### `/papi parserel` -**Description**: -Parses a relational placeholder. - -**Arguments**: -* `` - The first player. -* `` - the second player to compare with. -* `` - The actual placeholder to parse. - -**Example**: -``` -/papi parserel funnycube extended_clip %placeholder% -``` - ----- ### eCloud Commands These commands all start with `/papi ecloud` and are used for things related about the [[Expansion Cloud]]. -#### `/papi ecloud clear` -**Description**: -Clears the cache for the eCloud. +- #### `/papi ecloud clear` + **Description**: + Clears the cache for the eCloud. + +- #### `/papi ecloud disable` + **Description**: + Disables the connection to the eCloud. + +- #### `/papi ecloud download` + **Description**: + Allows you to download an expansion from the eCloud + + **Arguments**: + - `` - The expansion to download. + - `[version]` - The specific version of the expansion to download (Optional) + + **Example**: + ``` + /papi ecloud download Vault + /papi ecloud download Vault 1.5.2 + ``` + +- #### `/papi ecloud enable` + **Description**: + Enables the connection to the eCloud + +- #### `/papi ecloud info` + **Description**: + Gives information about a specific Expansion. + + **Arguments**: + - `` - The Expansion to retrieve information from. + - `[version]` - The Expansion's version to get information from. + + **Example**: + ``` + /papi ecloud info Vault + ``` + +- #### `/papi ecloud list` + **Description**: + Lists either all Expansions on the eCloud, only those by a specific author or only those that you have [installed](#papi-ecloud-download). + Installed Expansions show as green in the list and Expansions that are installed and have an update available show as gold. + + **Arguments**: + - `|installed>` - List all Expansions, Expansions of a specific author or all Expnansions you have installed. + + **Example**: + ``` + /papi ecloud list all + /papi ecloud list clip + /papi ecloud list installed + ``` + +- #### `/papi ecloud placeholders` + **Description**: + List all placeholders of an Expansion. + + **Arguments**: + - `` - The Expansion to list placeholders of. + + **Example**: + ``` + /papi ecloud placeholders Vault + ``` + +- #### `/papi ecloud refresh` + **Description**: + Refresh the cached data from the eCloud. + +- #### `/papi ecloud status` + **Description**: + Displays the actual Status of the eCloud. ---- -#### `/papi ecloud disable` -**Description**: -Disables the connection to the eCloud. ----- -#### `/papi ecloud download` -**Description**: -Allows you to download an expansion from the eCloud - -**Arguments**: -- `` - The expansion to download. -- `[version]` - The specific version of the expansion to download (Optional) - -**Example**: -``` -/papi ecloud download Vault -/papi ecloud download Vault 1.5.2 -``` - ----- -#### `/papi ecloud enable` -**Description**: -Enables the connection to the eCloud - ----- -#### `/papi ecloud info` -**Description**: -Gives information about a specific Expansion. - -**Arguments**: -- `` - The Expansion to retrieve information from. -- `[version]` - The Expansion's version to get information from. - -**Example**: -``` -/papi ecloud info Vault -``` - ----- -#### `/papi ecloud list` -**Description**: -Lists either all Expansions on the eCloud, only those by a specific author or only those that you have [installed](#papi-ecloud-download). -Installed Expansions show as green in the list and Expansions that are installed and have an update available show as gold. - -**Arguments**: -- `|installed>` - List all Expansions, Expansions of a specific author or all Expnansions you have installed. - -**Example**: -``` -/papi ecloud list all -/papi ecloud list clip -/papi ecloud list installed -``` - ----- -#### `/papi ecloud placeholders` -**Description**: -List all placeholders of an Expansion. - -**Arguments**: -- `` - The Expansion to list placeholders of. - -**Example**: -``` -/papi ecloud placeholders Vault -``` - ----- -#### `/papi ecloud refresh` -**Description**: -Refresh the cached data from the eCloud. - ----- -#### `/papi ecloud status` -**Description**: -Displays the actual Status of the eCloud. - ----- ### Expansion Commands These commands can be used to manage the expansions that you have currently installed. -#### `/papi info` -**Description**: -Gives you information about the specified Expansion. +- #### `/papi info` + **Description**: + Gives you information about the specified Expansion. -**Argument(s)**: -- `` - The Expansion to get info from (Needs to be registered and active). + **Argument(s)**: + - `` - The Expansion to get info from (Needs to be registered and active). + + **Example**: + ``` + /papi info Vault + ``` -**Example**: -``` -/papi info Vault -``` +- #### `/papi list` + **Description**: + Lists all active/registered expansions. + This is different to [/papi ecloud list installed](#papi-ecloud-list) in the fact, that it also includes expansions that were installed through a plugin (That aren't a separate jar-file) and it also doesn't show which one have updates available. + +- #### `/papi register` + **Description**: + Registers an expansion from a specified filename. + This is useful in cases, where you downloaded the expansion manually and don't want to restart the server. + The file needs to be inside `/plugins/PlaceholderAPI/expansions`. + + **Arguments**: + - `` - The file to register (including the file-extension). + + **Example**: + ``` + /papi register MyExpansion.jar + ``` + +- #### `/papi unregister` + **Description**: + Unregisters the specified expansion. + + **Arguments**: + - `` - The expansion to unregister. + + **Example**: + ``` + /papi unregister MyExpansion.jar + ``` ---- -#### `/papi list` -**Description**: -Lists all active/registered expansions. -This is different to [/papi ecloud list installed](#papi-ecloud-list) in the fact, that it also includes expansions that were installed through a plugin (That aren't a separate jar-file) and it also doesn't show which one have updates available. ----- -#### `/papi register` -**Description**: -Registers an expansion from a specified filename. -This is useful in cases, where you downloaded the expansion manually and don't want to restart the server. -The file needs to be inside `/plugins/PlaceholderAPI/expansions`. - -**Arguments**: -- `` - The file to register (including the file-extension). - -**Example**: -``` -/papi register MyExpansion.jar -``` - ----- -#### `/papi unregister` -**Description**: -Unregisters the specified expansion. - -**Arguments**: -- `` - The expansion to unregister. - -**Example**: -``` -/papi unregister MyExpansion.jar -``` - ----- ### Other Commands These are other commands of PlaceholderAPI that don't fit any of the above categories. -#### `/papi dump` -**Description**: -Pastes useful information from PlaceholderAPI such as plugin version, server version and installed expansions to https://paste.helpch.at for simple sharing and support. +- #### `/papi dump` + **Description**: + Pastes useful information from PlaceholderAPI such as plugin version, server version and installed expansions to https://paste.helpch.at for simple sharing and support. -#### `/papi reload` -**Description**: -Reloads the config settings. -You need to use this command after [downloading Expansions](#papi-ecloud-download) from the eCloud or they won't be properly registered. \ No newline at end of file +- #### `/papi help` + **Description**: + Displays all the commands PlaceholderAPI currently offers. + +- #### `/papi reload` + **Description**: + Reloads the config settings. + You need to use this command after [downloading Expansions](#papi-ecloud-download) from the eCloud or they won't be properly registered. + +- #### `/papi version` + **Description**: + Shows the current version and authors of PlaceholderAPI. diff --git a/wiki/Home.md b/wiki/Home.md index 1c5588b..6a24fd0 100644 --- a/wiki/Home.md +++ b/wiki/Home.md @@ -1,5 +1,5 @@

- PlaceholderAPI + PlaceholderAPI

This wiki gives you information on how to create placeholders in your plugin that can be used in other plugins, how to use other placeholders inside your plugin, or how to make an expansion. It also has a list with all available placeholders (Work in progress). @@ -7,10 +7,12 @@ It also has a list with all available placeholders (Work in progress). ### Setup **[[Hook into PlaceholderAPI]]** - [[First steps|Hook-into-PlaceholderAPI#first-steps]] -- [[Adding placeholders to PlaceholderAPI|Hook-into-PlaceholderAPI#adding-placeholders-to-placeholderapi]] - - [[PlaceholderExpansion]] - - [[Without an external plugin|PlaceholderExpansion#without-an-external-plugin]] - - [[With external plugin|PlaceholderExpansion#with-external-plugin]] +- [[Adding placeholders to PlaceholderAPI|PlaceholderExpansion]] + - [[Common Parts|PlaceholderExpansion#common-parts]] + - [[Without an external plugin|PlaceholderExpansion#without-a-plugin]] + - [[With an external Plugin (Separate Jar)|PlaceholderExpansion#with-a-plugin-external-jar]] + - [[With an external Plugin (Internal class)|PlaceholderExpansion#with-a-plugin-internal-class]] + - [[Relational Placeholders|PlaceholderExpansion#relational-placeholders]] - [[Setting placeholders in your plugin|Hook-into-PlaceholderAPI#setting-placeholders-in-your-plugin]] ### Other @@ -18,40 +20,8 @@ It also has a list with all available placeholders (Work in progress). **[[Expansion cloud]]** **[[FAQ]]** **[[Plugins using PlaceholderAPI]]** -**[[Placeholders]]** -- [[PAPI-placeholders|Placeholders#papi-placeholders-1]] - - [[Advancements|Placeholders#advancements]] - - [[Animations|Placeholders#animations]] - - [[Armor|Placeholders#armor]] - - [[ASCII|Placeholders#ASCII]] - - [[BungeeCord|Placeholders#bungeecord]] - - [[CheckItem|Placeholders#checkitem]] - - [[CooldownBar|Placeholders#cooldownbar]] - - [[Formatter|Placeholders#formatter]] - - [[Javascript|Placeholders#javascript]] - - [[ListPlayers|Placeholders#listplayer]] - - [[LocalTime|Placeholders#localtime]] - - [[Math|Placeholders#math]] - - [[MVdW placeholders|Placeholders#mvdw-placeholders]] - - [[OtherPlayer|Placeholders#otherplayer]] - - [[ParseNear|Placeholders#parsenear]] - - [[ParseOther|Placeholders#parseother]] - - [[Pinger|Placeholders#pinger]] - - [[Player|Placeholders#player]] - - [[PlayerList|Placeholders#playerlist]] - - [[Plugin|Placeholders#plugin]] - - [[Progress|Placeholders#progress]] - - [[RainbowColor|Placeholders#rainbowcolor]] - - [[RandomColor|Placeholders#randomcolor]] - - [[RedisBungee|Placeholders#redisbungee]] - - [[RelCon|Placeholders#relcon]] - - [[ScoreboardObjectives|Placeholders#scoreboardobjectives]] - - [[Server|Placeholders#server]] - - [[Sound|Placeholders#sound]] - - [[Spectators|Placeholders#spectators]] - - [[Statistic|Placeholders#statistic]] - -- [[Plugin-placeholders|Placeholders#plugin-placeholders-1]] +**[[Placeholders]]** +- [[Standalone|Placeholders#standalone]] - [[A|Placeholders#a]] - [[B|Placeholders#b]] - [[C|Placeholders#c]] @@ -75,4 +45,33 @@ It also has a list with all available placeholders (Work in progress). - [[U|Placeholders#u]] - [[V|Placeholders#v]] - [[W|Placeholders#w]] + - [[X|Placeholders#x]] + - [[Y|Placeholders#y]] - [[Z|Placeholders#z]] +- [[Plugin-placeholders|Placeholders#plugin-placeholders-1]] + - [[A|Placeholders#a-1]] + - [[B|Placeholders#b-1]] + - [[C|Placeholders#c-1]] + - [[D|Placeholders#d-1]] + - [[E|Placeholders#e-1]] + - [[F|Placeholders#f-1]] + - [[G|Placeholders#g-1]] + - [[H|Placeholders#h-1]] + - [[I|Placeholders#i-1]] + - [[J|Placeholders#j-1]] + - [[K|Placeholders#k-1]] + - [[L|Placeholders#l-1]] + - [[M|Placeholders#m-1]] + - [[N|Placeholders#n-1]] + - [[O|Placeholders#o-1]] + - [[P|Placeholders#p-1]] + - [[Q|Placeholders#q-1]] + - [[R|Placeholders#r-1]] + - [[S|Placeholders#s-1]] + - [[T|Placeholders#t-1]] + - [[U|Placeholders#u-1]] + - [[V|Placeholders#v-1]] + - [[W|Placeholders#w-1]] + - [[X|Placeholders#x-1]] + - [[Y|Placeholders#y-1]] + - [[Z|Placeholders#z-1]] diff --git a/wiki/PlaceholderExpansion.md b/wiki/PlaceholderExpansion.md index a9d785b..2957f8e 100644 --- a/wiki/PlaceholderExpansion.md +++ b/wiki/PlaceholderExpansion.md @@ -1,411 +1,381 @@ +[placeholderexpansion]: https://github.com/PlaceholderAPI/PlaceholderAPI/blob/master/src/main/java/me/clip/placeholderapi/expansion/PlaceholderExpansion.java + +[playerexpansion]: https://github.com/PlaceholderAPI/Player-Expansion +[serverexpansion]: https://github.com/PlaceholderAPI/Server-Expansion +[mathexpansion]: https://github.com/Andre601/Math-expansion + +[relational]: https://github.com/PlaceholderAPI/PlaceholderAPI/blob/master/src/main/java/me/clip/placeholderapi/expansion/Relational.java + ## Overview -This page covers how you can use the `PlaceholderExpansion` to add own placeholders to PlaceholderAPI, which then can be used by other plugins. +This page will cover how you can create your own [`PlaceholderExpansion`][placeholderexpansion] which you can either [[Upload to the eCloud|Expansion cloud]] or integrate into your own plugin. -PlaceholderAPI is using Expansions for its placeholders, with PlaceholderAPI providing the core. Users can download Expansions from the cloud server using commands in-game or by going [here](https://api.extendedclip.com/home/) if they want to use the placeholder. +It's worth noting that PlaceholderAPI relies on expansions being installed. PlaceholderAPI only acts as the core replacing utility while the expansions allow other plugins to use any installed placeholder in their own messages. +You can download Expansions either directly from the eCloud yourself, or download them through the [[download command of PlaceholderAPI|Commands#papi-ecloud-download]]. -## Note -You can either make a separate jar file, to upload it to the expansion-cloud (recommended) or have it as a local class inside your plugin. +## Table of Contents -## Examples -There are multiple methods and ways you can use the PlaceholderExpansion. -Those depend on what you want to display through the placeholders in the end. +- [Getting started](#getting-started) + - [Common Parts](#common-parts) +- [Without a Plugin](#without-a-plugin) +- [With a Plugin (External Jar)](#with-a-plugin-external-jar) +- [With a Plugin (Internal Class)](#with-a-plugin-internal-class) + - [Register the Expansion](#register-the-expansion) +- [Relational Placeholders](#relational-placeholders) + - [Notes about Relational Placeholders](#notes-about-relational-placeholders) -* [Without external plugin](#without-external-plugin) -* [With external plugin](#with-external-plugin) - * [Separate jar](#separate-jar) - * [Internal class](#internal-class) +## Getting started +For starters, you need to decide what type of [`PlaceholderExpansion`][placeholderexpansion] you want to create. There are various ways to create an expansion. This page will cover the most common ones. -### Without an external plugin -This part here covers how you create an expansion that doesn't require any external/additional plugins to function. -Examples of such expansions are: -- [Player expansion](/PlaceholderAPI/Player-Expansion) -- [Math expansion](https://github.com/Andre601/Math-Expansion) -- [Statistics expansion](/PlaceholderAPI/Statistics-Expansion) +### Common Parts +All shown examples will share the same common parts that belong to the [`PlaceholderExpansion`][placeholderexpansion] class. +In order to not repeat the same basic info for each method throughout this page, and to greatly reduce its overall length, we will cover the most basic/necessary ones here. -Since it would be weird (and also make no real sense) to have this inside your plugin, we assume you make a separate jar-file as an expansion. - -To begin, first make the class extend the `PlaceholderExpansion` and add the required methods: +#### Basic PlaceholderExpansion Structure ```java package at.helpch.placeholderapi.example.expansions; import org.bukkit.OfflinePlayer; import me.clip.placeholderapi.expansion.PlaceholderExpansion; -/** - * This class will automatically register as a placeholder expansion - * when a jar including this class is added to the directory - * {@code /plugins/PlaceholderAPI/expansions} on your server. - *
- *
If you create such a class inside your own plugin, you have to - * register it manually in your plugins {@code onEnable()} by using - * {@code new YourExpansionClass().register();} - */ public class SomeExpansion extends PlaceholderExpansion { - /** - * This method should always return true unless we - * have a dependency we need to make sure is on the server - * for our placeholders to work! - * - * @return always true since we do not have any dependencies. - */ @Override - public boolean canRegister(){ - return true; - } - - /** - * The name of the person who created this expansion should go here. - * - * @return The name of the author as a String. - */ - @Override - public String getAuthor(){ + public String getAuthor() { return "someauthor"; } - - /** - * The placeholder identifier should go here. - *
This is what tells PlaceholderAPI to call our onRequest - * method to obtain a value if a placeholder starts with our - * identifier. - *
The identifier has to be lowercase and can't contain _ or % - * - * @return The identifier in {@code %_%} as String. - */ + @Override - public String getIdentifier(){ + public String getIdentifier() { return "example"; } - /** - * This is the version of this expansion. - *
You don't have to use numbers, since it is set as a String. - * - * @return The version as a String. - */ @Override - public String getVersion(){ + public String getVersion() { return "1.0.0"; } - - /** - * This is the method called when a placeholder with our identifier - * is found and needs a value. - *
We specify the value identifier in this method. - *
Since version 2.9.1 can you use OfflinePlayers in your requests. - * - * @param player - * A {@link org.bukkit.OfflinePlayer OfflinePlayer}. - * @param identifier - * A String containing the identifier/value. - * - * @return Possibly-null String of the requested identifier. - */ - @Override - public String onRequest(OfflinePlayer player, String identifier){ - - // %example_placeholder1% - if(identifier.equals("placeholder1")){ - return "placeholder1 works"; - } - - // %example_placeholder2% - if(identifier.equals("placeholder2")){ - return "placeholder2 works"; - } - - // We return null if an invalid placeholder (f.e. %example_placeholder3%) - // was provided - return null; - } } ``` +Let's quickly break down the different methods you have to implement. + +- #### getAuthor + This method allows you to set the name of the expansion's author. +- #### getIdentifier + The identifier is the part in the placeholder that is between the first `%` (Or `{` if bracket placeholders are used) and the first `_`. + Because of that can you not use `%`, `{`, `}` or `_` in youd identifier. + + If you still want to use those symbols can you override the `getName()` method to display a different name. +- #### getVersion + This is a string, which means it can contain more than just a number. This is used to determine if a new update is available or not when the expansion is shared on the eCloud. + For expansions that are part of a plugin, this does not really matter. + +Those are all the neccessary parts for your PlaceholderExpansion. +Any other methods that are part of the [`PlaceholderExpansion`][placeholderexpansion] class are optional and will usually not be used, or will default to a specific value. Please read the Javadoc comments of those methods for more information. + +You must choose between one of these two methods for handling the actual parsing of placeholders: + +- #### onRequest(OfflinePlayer, String) + If not explicitly set, this will automatically call [`onPlaceholderRequest(Player, String)`](#onplaceholderrequestplayer-string). + This method is recommended as it allows the usage of `null` and can therefore be used in placeholders that don't require a valid player to be used. +- #### onPlaceholderRequest(Player, String) + If not set, this method will return `null` which PlaceholderAPI sees as an invalid placeholder. + ---- +## Without a Plugin +An expansion does not always need a plugin to rely on. If the placeholders it provides can return values from just the server itself or some other source (i.e. Java itself), then it can work independently. -### With external plugin -Those examples here applies to people who want to provide information from their own plugin through placeholders from PlaceholderAPI. -There exists a repository showcasing an [example-expansion](/PlaceholderAPI/Example-Expansion) with what you can/should do. +Common examples of such Expansions are: -In our examples do we have the plugin `SomePlugin` and want to show certain placeholders with it. +- [Player Expansion][playerexpansion] +- [Server Expansion][serverexpansion] +- [Math Expansion][mathexpansion] -There are two ways to actually get information from your plugin and they only are different in if you have the expansion as a separate jar-file or as an internal class. +These kinds of expansions don't require any additional plugins to function. +When creating such an expansion is it recommended to use [`onRequest(OfflinePlayer, String)`](#onrequestofflineplayer-string). -#### Separate jar -In our separate jar do we have to make some checks, to be sure, that the required plugin is installed and running. -The below code shows how the class can look like in case the plugin doesn't have a public and easy to access API. +#### Full Example +Please see the [Common parts](#common-parts) section for info on the other methods. ```java package at.helpch.placeholderapi.example.expansions; import org.bukkit.OfflinePlayer; import me.clip.placeholderapi.expansion.PlaceholderExpansion; -import at.helpch.placeholderapi.example.SomePlugin; -/** - * This class will automatically register as a placeholder expansion - * when a jar including this class is added to the directory - * {@code /plugins/PlaceholderAPI/expansions} on your server. - *
- *
If you create such a class inside your own plugin, you have to - * register it manually in your plugins {@code onEnable()} by using - * {@code new YourExpansionClass().register();} - */ public class SomeExpansion extends PlaceholderExpansion { - // We get an instance of the plugin later. - private SomePlugin plugin; - - /** - * Since this expansion requires api access to the plugin "SomePlugin" - * we must check if said plugin is on the server or not. - * - * @return true or false depending on if the required plugin is installed. - */ @Override - public boolean canRegister(){ - return (plugin = (SomePlugin) Bukkit.getPluginManager().getPlugin(getRequiredPlugin())) != null; - } - - /** - * The name of the person who created this expansion should go here. - * - * @return The name of the author as a String. - */ - @Override - public String getAuthor(){ + public String getAuthor() { return "someauthor"; } - - /** - * The placeholder identifier should go here. - *
This is what tells PlaceholderAPI to call our onRequest - * method to obtain a value if a placeholder starts with our - * identifier. - *
The identifier has to be lowercase and can't contain _ or % - * - * @return The identifier in {@code %_%} as String. - */ + @Override - public String getIdentifier(){ - return "someplugin"; - } - - /** - * if the expansion requires another plugin as a dependency, the - * proper name of the dependency should go here. - *
Set this to {@code null} if your placeholders do not require - * another plugin to be installed on the server for them to work. - *
- *
This is extremely important to set your plugin here, since if - * you don't do it, your expansion will throw errors. - * - * @return The name of our dependency. - */ - @Override - public String getRequiredPlugin(){ - return "SomePlugin"; + public String getIdentifier() { + return "example"; } - /** - * This is the version of this expansion. - *
You don't have to use numbers, since it is set as a String. - * - * @return The version as a String. - */ @Override - public String getVersion(){ + public String getVersion() { return "1.0.0"; } - - /** - * This is the method called when a placeholder with our identifier - * is found and needs a value. - *
We specify the value identifier in this method. - *
Since version 2.9.1 can you use OfflinePlayers in your requests. - * - * @param player - * A {@link org.bukkit.Player Player}. - * @param identifier - * A String containing the identifier/value. - * - * @return possibly-null String of the requested identifier. - */ + @Override - public String onPlaceholderRequest(Player player, String identifier){ - - if(p == null){ - return ""; + public String onRequest(OfflinePlayer player, String params) { + if(params.equalsIgnoreCase("name")) { + return player == null ? null : player.getName(); // "name" requires the player to be valid } - - // %someplugin_placeholder1% - if(identifier.equals("placeholder1")){ - return plugin.getConfig().getString("placeholder1", "value doesnt exist"); + + if(params.equalsIgnoreCase("placeholder1")) { + return "Placeholder Text 1"; } - - // %someplugin_placeholder2% - if(identifier.equals("placeholder2")){ - return plugin.getConfig().getString("placeholder2", "value doesnt exist"); + + if(params.equalsIgnoreCase("placeholder2")) { + return "Placeholder Text 2"; } - - // We return null if an invalid placeholder (f.e. %someplugin_placeholder3%) - // was provided - return null; + + return null; // Placeholder is unknown by the Expansion } } ``` ---- -#### Internal class -You can have the class inside your plugin. -This has some advantages but can also have some disadvantages. -If you include a PlaceholderExpansion class in your plugin, you MUST add an override the persist() method to return true -otherwise, if PlaceholderAPI is reloaded, your expansion will be unregistered and lost forever. +## With a Plugin (External Jar) +If your expansion relies on a plugin to provide its placeholder values, you will need to override a few more methods to make sure everything will work correctly. + +Your expansion will need to override the `getRequiredPlugin()` method to return the name of the plugin your expansion depends on. +PlaceholderAPI automatically checks if this method will either return null, or if the name defined results in a non-null plugin. + +It is worth noting that it is a bit more difficult to make a separate jar file that depends on a plugin, as it will require the plugin to have some sort of accessible API in order to get the required values. +One way to bypass this is to override the `canRegister()` method with the following code: + +```java +private SomePlugin plugin = null; // This would be the plugin your expansion depends on + +@Override +public boolean canregister() { + // This sets plugin to the SomePlugin instance you get through the PluginManager + return (plugin = (SomePlugin) Bukkit.getPluginManager().getPlugin(getRequiredPlugin())) != null; +} +``` +Using this code-snippet, you can get a direct instance of the plugin and access things such as config values. +With that said, it is recommended instead to use an API if one is available, as this kind of plugin access is a relatively poor approach. + +#### Full Example +Please see the [Common parts](#common-parts) section for info on the other methods. + +```java +package at.helpch.placeholderapi.example.expansions; + +import at.helpch.placeholderapi.example.SomePlugin; +import org.bukkit.OfflinePlayer; +import me.clip.placeholderapi.expansion.PlaceholderExpansion; + +public class SomeExpansion extends PlaceholderExpansion { + + private SomePlugin plugin; // This instance is assigned in canRegister() + + @Override + public String getAuthor() { + return "someauthor"; + } + + @Override + public String getIdentifier() { + return "example"; + } + + @Override + public String getVersion() { + return "1.0.0"; + } + + @Override + public String getRequiredPlugin() { + return "SomePlugin"; + } + + @Override + public boolean canRegister() { + return (plugin = (SomePlugin) Bukkit.getPluginManager().getPlugin(getRequiredPlugin())) != null; + } + + @Override + public String onRequest(OfflinePlayer player, String params) { + if(params.equalsIgnoreCase("placeholder1")){ + return plugin.getConfig().getString("placeholders.placeholder1", "default1"); + } + + if(params.equalsIgnoreCase("placeholder2")){ + return plugin.getConfig().getString("placeholders.placeholder2", "default2"); + } + + return null; // Placeholder is unknown by the expansion + } +} +``` + +---- +## With a Plugin (Internal Class) +The way expansions are handled when they are part of the plugin itself is fairly similar to when you [make an expansion without a plugin dependency](#without-a-plugin). + +In fact, you don't even have to override the `getRequiredPlugin()` and `canRegister()` methods as it is always guaranteed that the plugin is available. +Something worth noting, however, is that you need to override the `persist()` method and make it return true. This ensures that the expansion won't be unregistered by PlaceholderAPI whenever it is reloaded. + +Finally, you can also use dependency injection as an easier way to access a plugin's methods. +Here is a small code example of how dependency injection may look: + +```java +public class SomeExpansion extends PlaceholderExpansion { + private final SomePlugin plugin; // The instance is created in the constructor and won't be modified, so it can be final + + public SomeExpansion(SomePlugin plugin) { + this.plugin = plugin; + } +} +``` + +#### Full Example +Please see the [Common parts](#common-parts) section for info on the other methods. ```java package at.helpch.placeholderapi.example.expansions; +import at.helpch.placeholderapi.example.SomePlugin; import org.bukkit.OfflinePlayer; import me.clip.placeholderapi.expansion.PlaceholderExpansion; -import at.helpch.placeholderapi.example.SomePlugin; -/** - * This class will be registered through the register-method in the - * plugins onEnable-method. - */ public class SomeExpansion extends PlaceholderExpansion { - private SomePlugin plugin; - - /** - * Since we register the expansion inside our own plugin, we - * can simply use this method here to get an instance of our - * plugin. - * - * @param plugin - * The instance of our plugin. - */ - public SomeExpansion(SomePlugin plugin){ + private final SomePlugin plugin; + + public SomeExpansion(SomePlugin plugin) { this.plugin = plugin; } - - /** - * Because this is an internal class, - * you must override this method to let PlaceholderAPI know to not unregister your expansion class when - * PlaceholderAPI is reloaded - * - * @return true to persist through reloads - */ + @Override - public boolean persist(){ - return true; + public String getAuthor() { + return "someauthor"; + } + + @Override + public String getIdentifier() { + return "example"; } - /** - * Because this is a internal class, this check is not needed - * and we can simply return {@code true} - * - * @return Always true since it's an internal class. - */ @Override - public boolean canRegister(){ - return true; + public String getVersion() { + return "1.0.0"; } - - /** - * The name of the person who created this expansion should go here. - *
For convienience do we return the author from the plugin.yml - * - * @return The name of the author as a String. - */ + @Override - public String getAuthor(){ - return plugin.getDescription().getAuthors().toString(); + public boolean persist() { + return true; // This is required or else PlaceholderAPI will unregister the Expansion on reload } - - /** - * The placeholder identifier should go here. - *
This is what tells PlaceholderAPI to call our onRequest - * method to obtain a value if a placeholder starts with our - * identifier. - *
The identifier has to be lowercase and can't contain _ or % - * - * @return The identifier in {@code %_%} as String. - */ + @Override - public String getIdentifier(){ - return "someplugin"; - } - - /** - * This is the version of the expansion. - *
You don't have to use numbers, since it is set as a String. - * - * For convienience do we return the version from the plugin.yml - * - * @return The version as a String. - */ - @Override - public String getVersion(){ - return plugin.getDescription().getVersion(); - } - - /** - * This is the method called when a placeholder with our identifier - * is found and needs a value. - *
We specify the value identifier in this method. - *
Since version 2.9.1 can you use OfflinePlayers in your requests. - * - * @param player - * A {@link org.bukkit.Player Player}. - * @param identifier - * A String containing the identifier/value. - * - * @return possibly-null String of the requested identifier. - */ - @Override - public String onPlaceholderRequest(Player player, String identifier){ - - if(player == null){ - return ""; + public String onRequest(OfflinePlayer player, String params) { + if(params.equalsIgnoreCase("placeholder1")){ + return plugin.getConfig().getString("placeholders.placeholder1", "default1"); } - - // %someplugin_placeholder1% - if(identifier.equals("placeholder1")){ - return plugin.getConfig().getString("placeholder1", "value doesnt exist"); + + if(params.equalsIgnoreCase("placeholder2")) { + return plugin.getConfig().getString("placeholders.placeholder2", "default2"); } - - // %someplugin_placeholder2% - if(identifier.equals("placeholder2")){ - return plugin.getConfig().getString("placeholder2", "value doesnt exist"); - } - - // We return null if an invalid placeholder (f.e. %someplugin_placeholder3%) - // was provided - return null; + + return null; // Placeholder is unknown by the Expansion } } ``` -As you can see is this method pretty similar to the one without any external plugins, since we can get an instance of our plugin much easier and also have a 100% guarantee that the plugin is installed and running. +### Register the Expansion +To register the expansion, you will need to call the `register()` method yourself. +This should be done in your plugin's `onEnable()` method after you make sure that PlaceholderAPI is installed and enabled. -Our final step now is to register the class and its placeholders. The plugin doesn't do this on its own. -To achieve this, add the following to your `onEnable()` section (Use your expansion name of course): ```java package at.helpch.placeholderapi.example import org.bukkit.Bukkit; import org.bukkit.plugin.java.JavaPlugin; -public class SomePlugin extends JavaPlugin{ +public class SomePlugin extends JavaPlugin { @Override - public void onEnable(){ + public void onEnable() { // Small check to make sure that PlaceholderAPI is installed - if(Bukkit.getPluginManager().getPlugin("PlaceholderAPI") != null){ + if(Bukkit.getPluginManager().getPlugin("PlaceholderAPI") != null) { new SomeExpansion(this).register(); } } } ``` + +---- +## Relational Placeholders +Relational Placeholders are a bit more specific compared to the previous examples. +While they do use the same [common parts](#common-parts) that the other examples do, they have a different method to return placeholders. + +In order to use the relational placeholders feature, you will need to implement the [`Relational`][relational] interface, which in return adds the `onPlaceholderRequest(Player, Player, String)` method to use. + +#### Full Example +Please see the [Common parts](#common-parts) section for info on the other methods. + +In this example, we use the [Internal class setup](#with-a-plugin-internal-jar) and `SomePlugin` has an `areFriends(Player, Player)` method that returns true or false based on if the given players are friends. + +```java +package at.helpch.placeholderapi.example.expansions; + +import at.helpch.placeholderapi.example.SomePlugin; +import org.bukkit.ChatColor; +import org.bukkit.Player; +import me.clip.placeholderapi.expansion.PlaceholderExpansion; +import me.clip.placeholderapi.expansion.Relational; + +public class SomeExpansion extends PlaceholderExpansion implements Relational { + + private final SomePlugin plugin; + + public SomeExpansion(SomePlugin plugin) { + this.plugin = plugin; + } + + @Override + public String getAuthor() { + return "someauthor"; + } + + @Override + public String getIdentifier() { + return "example"; + } + + @Override + public String getVersion() { + return "1.0.0"; + } + + @Override + public boolean persist() { + return true; // This is required or else PlaceholderAPI will unregister the Expansion on reload + } + + @Override + public String onPlaceholderRequest(Player one, Player two, String identifier) { + if(one == null || two == null) + return null; // We require both Players to be online + + if(params.equalsIgnoreCase("friend")) { + if(plugin.areFriends(one, two)) { + return ChatColor.GREEN + one.getName() + " and " + two.getName() + " are friends!"; + } else { + return ChatColor.GREEN + one.getName() + " and " + two.getName() + " are not friends!"; + } + } + + return null; // Placeholder is unknown by the Expansion + } +} +``` + +### Notes about Relational Placeholders +Relational placeholders will always start with `%rel_` to properly identify them. +So in the above example, the full placeholder will look like `%rel_example_friend%`. diff --git a/wiki/Placeholders.md b/wiki/Placeholders.md index e3e7aa8..0190080 100644 --- a/wiki/Placeholders.md +++ b/wiki/Placeholders.md @@ -1,3 +1,8 @@ +[SimpleDateFormat]: http://docs.oracle.com/javase/8/docs/api/java/text/SimpleDateFormat.html +[TimeZoneIDs]: https://garygregory.wordpress.com/2013/06/18/what-are-the-java-timezone-ids/ + +[list]: https://github.com/PlaceholderAPI/PlaceholderAPI/discussions/510 + This is a list of all available placeholders. A download-command for the extension can be found at the area of the placeholder. If the command itself isn't there and `NO DOWNLOAD COMMAND` instead is shown, then it means, that the plugin actually has the placeholders hard-coded into them and doesn't require a manual download of any expansion. @@ -9,4731 +14,5554 @@ If the command itself isn't there and `NO DOWNLOAD COMMAND` instead is shown, th > > You can find a comprehensive guide on how to do this on the [Wiki's README file](https://github.com/PlaceholderAPI/PlaceholderAPI/blob/docs/wiki/wiki/README.md). -## [PAPI-placeholders](#papi-placeholders-1) +- [Standalone](#standalone) + - ### **A** + - **[Advancements](#advancements)** + - **[Animations](#animations)** + - **[Armor](#armor)** + - **[ASCII](#ascii)** + + - ### **B** + - **[BungeeCord](#bungeecord)** + + - ### **C** + - **[CalculateNumbers](#calculatenumbers)** + - **[ChangeOutput](#changeoutput)** + - **[CheckItem](#checkitem)** + - **[CooldownBar](#cooldownbar)** + + - ### **D** + - *No Expansions* + + - ### **E** + - *No Expansions* + + - ### **F** + - **[Formatter](#formatter)** -- **[Advancements](#advancements)** -- **[Animations](#animations)** -- **[Armor](#armor)** -- **[ASCII](#ascii)** -- **[BungeeCord](#bungeecord)** -- **[CheckItem](#checkitem)** -- **[CooldownBar](#cooldownbar)** -- **[Formatter](#formatter)** -- **[Javascript](#javascript)** -- **[ListPlayers](#listplayers)** -- **[LocalTime](#localtime)** -- **[Math](#math)** -- **[MVdW placeholders](#mvdw-placeholders)** -- **[OtherPlayer](#otherplayer)** -- **[ParseNear](#parsenear)** -- **[ParseOther](#parseother)** -- **[Pinger](#pinger)** -- **[Player](#player)** -- **[PlayerList](#playerlist)** -- **[Plugin](#plugin)** -- **[Progress](#progress)** -- **[RainbowColor](#rainbowcolor)** -- **[RandomColor](#randomcolor)** -- **[RedisBungee](#redisbungee)** -- **[RelCon](#relcon)** -- **[RNG](#rng)** -- **[ScoreboardObjectives](#scoreboardobjectives)** -- **[Server](#server)** -- **[Shortcut](#shortcut)** -- **[Sound](#sound)** -- **[Spectators](#spectators)** -- **[SpeedPerSec](#speedpersec)** -- **[Statistic](#statistic)** -- **[Team](#team)** -- **[World](#world)** ----- + - ### **G** + - *No Expansions* -## [Plugin-placeholders](#plugin-placeholders-1) + - ### **H** + - *No Expansions* -## **A** -- **[AAC - AdvancedAntiCheat](#aac)** -- **[AbstractMenus](#abstractmenus)** -- **[AcidIsland](#acidisland)** -- **[Advanced Abilities](#advanced-abilities)** -- **[AdvancedAFK](#advancedafk)** -- **[AdvancedCustomMenu+](#advancedcustommenu)** -- **[AdvancedLottery](#advancedlottery)** -- **[AdvancedModReq](#advancedmodreq)** -- **[ajLeaderboards](#ajleaderboards)** -- **[ajParkour](#ajparkour)** -- **[AlonsoLevels](#alonsolevels)** -- **[Animated Menu](#animated-menu)** -- **[AParkour](#aparkour)** -- **[ASkyBlock](#askyblock)** -- **[AsyncKeepAlive](#asynckeepalive)** -- **[AutoRank](#autorank)** -- **[AutoSell](#autosell)** + - ### **I** + - *No Expansions* + + - ### **J** + - **[Javascript](#javascript)** -## **B** -- **[BankSystem](#banksystem)** -- **[BattleLevels](#battlelevels)** -- **[BeautyQuests](#beautyquests)** -- **[BedWars1058](#bedwars1058)** -- **[BentoBox](#bentobox)** -- **[BetonQuest](#betonquest)** -- **[BlockParty](#blockparty)** -- **[BlockQuest](#blockquest)** -- **[Boxing](#boxing)** -- **[BuildBattlePro](#buildbattlepro)** -- **[BungeePerms](#bungeeperms)** -- **[BuyCraft](#buycraft)** + - ### **K** + - *No Expansions* + + - ### **L** + - **[ListPlayers](#listplayers)** + - **[LocalTime](#localtime)** + + - ### **M** + - **[Math](#math)** + - **[MVdW placeholders](#mvdw-placeholders)** + - **[MySQL](#mysql)** + - **[MySQLTokens](#mysqltokens)** -## **C** -- **[CarlTheCreeper](#carlthecreeper)** -- **[ChatColor+](#chatcolor)** -- **[ChatColor+ Premium](#chatcolor-premium)** -- **[ChatReaction](#chatreaction)** -- **[CheckNameHistory](#checknamehistory)** -- **[Clans](#clans)** -- **[ClansFree](#clansfree)** -- **[Clans-API for Spigot/Clan tag in chat](#clans-api-for-spigotclan-tag-in-chat)** -- **[ClansPro](#clanspro)** -- **[ClanSystem](#clansystem)** -- **[CombatLogX](#combatlogx)** -- **[Compassance](#compassance)** -- **[Country on Join](#country-on-join)** -- **[CraftConomy](#craftconomy)** -- **[CraftingStore.net](#craftingstorenet)** -- **[CursedVIP](#cursedvip)** -- **[Custom Items](#custom-items)** + - ### **N** + - *No Expansions* + + - ### **O** + - **[OtherPlayer](#otherplayer)** + + - ### **P** + - **[ParseNear](#parsenear)** + - **[ParseOther](#parseother)** + - **[Pinger](#pinger)** + - **[Player](#player)** + - **[PlayerList](#playerlist)** + - **[Plugin](#plugin)** + - **[Progress](#progress)** -## **D** -- **[Daily Rewards](#daily-rewards)** -- **[DeliveryMan](#deliveryman)** -- **[DeluxeChat](#deluxechat)** -- **[DeluxeCombat](#deluxecombat)** -- **[DeluxeMenus](#deluxemenus)** -- **[DeluxePM](#deluxepm)** -- **[DeluxeTags](#deluxetags)** -- **[Denizen](#denizen)** -- **[DiscordSRV](#discordsrv)** -- **[Disease](#disease)** -- **[DonateParty](#donateparty)** -- **[Donations Holograms](#donations-holograms)** -- **[DragonSlayer](#dragonslayer)** -- **[DungeonsXL](#dungeonsxl)** + - ### **Q** + - *No Expansions* + + - ### **R** + - **[RainbowColor](#rainbowcolor)** + - **[RandomColor](#randomcolor)** + - **[RandomNumber](#randomnumber)** + - **[RedisBungee](#redisbungee)** + - **[RelCon](#relcon)** + - **[RNG](#rng)** + + - ### **S** + - **[ScoreboardObjectives](#scoreboardobjectives)** + - **[Server](#server)** + - **[Shortcut](#shortcut)** + - **[Sound](#sound)** + - **[SpeedPerSec](#speedpersec)** + - **[Statistic](#statistic)** + - **[String](#string)** + + - ### **T** + - **[Team](#team)** + - **[Teams](#teams)** -## **E** -- **[Economy Bank](#economy-bank)** -- **[Enjin & DonationCraft 2.x](#enjin--donationcraft-2x)** -- **[Envoys](#envoys)** -- **[EpicFriends](#epicfriends)** -- **[EpicLevels](#epiclevels)** -- **[essCore](#esscore)** -- **[Essentials](#essentials)** -- **[EZBlocks](#ezblocks)** -- **[EZPrestige](#ezprestige)** -- **[EZRanksPro](#ezrankspro)** + - ### **U** + - *No Expansions* -## **F** -- **[Factions MCore](#factions-mcore)** -- **[FactionsUUID](#factionsuuid)** -- **[Factions relation placeholders](#factions-relation-placeholders)** -- **[FunnyGuilds](#funnyguilds)** + - ### **V** + - *No Expansions* + + - ### **W** + - **[World](#world)** -## **G** -- **[GAListener](#galistener)** -- **[GangsPlus](#gangsplus)** -- **[GemsEconomy](#gemseconomy)** -- **[GriefDefender](#griefdefender)** -- **[GriefPrevention](#griefprevention)** -- **[Guilds](#guilds)** -- **[GuiRedeemMCMMO](#guiredeemmcmmo)** + - ### **X** + - *No Expansions* -## **H** -- **[Head Database](#head-database)** -- **[Heroes](#heroes)** -- **[HoloBlock](#holoblock)** -- **[HPWizard](#hpwizard)** -- **[Hugs](#hugs)** + - ### **Y** + - *No Expansions* -## **I** -- **[InteractionVisualizer](#interactionvisualizer)** -- **[InteractiveChat](#interactivechat)** -- **[Island Border (ASkyblock / BentoBox / uSkyBlock / AcidIsland)](#island-border-askyblock--bentobox--uskyblock--acidisland)** -- **[IslandRate (ASkyBlock Addon)](#islandrate-askyblock-addon)** -- **[IslandRate (AcidIsland Addon)](#islandrate-acidisland-addon)** -- **[IslandWorld](#islandworld)** - -## **J** -- **[Jobs Reborn](#jobs-reborn)** - -## **K** -- **[Karma](#karma)** -- **[KillStats](#killstats)** -- **[KitPvP](#kitpvp)** -- **[Kingdoms+](#kingdoms)** -- **[KP-PVP](#kp-pvp)** - -## **L** -- **[LastLoginAPI](#lastloginapi)** -- **[LeaderHeads](#leaderheads)** -- **[LegendQuest](#legendquest)** -- **[LemonMobCoins](#lemonmobcoins)** -- **[LuckPerms](#luckperms)** -- **[LWC](#lwc)** - -## **M** -- **[Marcely's Bedwars](#marcelys-bedwars)** -- **[Marriage](#marriage)** -- **[Marriage (Reloaded)](#marriage-reloaded)** -- **[MarriageMaster](#marriagemaster)** -- **[McInfected](#mcinfected)** -- **[McJobs](#mcjobs)** -- **[McMMO](#mcmmo)** -- **[MineChess](#minechess)** -- **[MineCord](#minecord)** -- **[MineCrates](#minecrates)** -- **[MobHunting](#mobhunting)** -- **[Multiverse-Core](#multiverse-core)** -- **[MyCommand](#mycommand)** -- **[MyPet](#mypet)** -- **[MyPrefixSystem](#myprefixsystem)** -- **[MySQL](#mysql)** -- **[MySQLTokens](#mysqltokens)** - -## **N** -- **[Nameless Plugin](#nameless-plugin)** -- **[NameMC-API-ServersMC Plugin](#namemc-api-serversmc)** -- **[Nicknamer](#nicknamer)** -- **[NickReloaded](#nickreloaded)** -- **[Nicky](#nicky)** - -## **O** -- **[OnePlayerSleep](#oneplayersleep)** -- **[OnTime](#ontime)** -- **[OreAnnouncer](#oreannouncer)** -- **[Outpost](#outpost)** - -## **P** -- **[Paintball Battle](#paintball-battle)** -- **[Parkour](#parkour)** -- **[Parties](#parties)** -- **[Party and Friends](#party-and-friends)** -- **[PermissionTimer](#permissiontimer)** -- **[PixelVip](#pixelvip)** -- **[Plan](#plan)** -- **[PlayTime](#playtime)** -- **[PlayerPoints](#playerpoints)** -- **[PlotSquared](#plotsquared)** -- **[PointsAPI](#pointsapi)** -- **[PowerRanks](#powerranks)** -- **[PremiumVanish](#premiumvanish)** -- **[Prison](#prison)** -- **[PrisonMines](#prisonmines)** -- **[PrisonRanksX](#prisonranksx)** -- **[ProCosmetics](#procosmetics)** -- **[ProfessionalBans](#professionalbans)** -- **[ProQuest](#proquest)** -- **[ProtectionStones](#protectionstones)** -- **[PVPLevels](#pvplevels)** -- **[PVP Stats](#pvp-stats)** -- **[PvPStats Plugin](#pvpstats-plugin)** - -## **Q** -- **[Quests](#quests)** -- **[QuestCreator](#questcreator)** -- **[QuickSell](#quicksell)** - -## **R** -- **[RabbitsVSPenguins](#rabbitsvspenguins)** -- **[RageMode](#ragemode)** -- **[Rankup](#rankup)** -- **[RealisticWorldGenerator](#realisticworldgenerator)** -- **[RedProtect](#redprotect)** -- **[ReferralSystem](#referralsystem)** -- **[RestrictedDimensions](#restricteddimensions)** -- **[RocketPlaceholders](#rocketplaceholders)** -- **[RogueParkour](#rogueparkour)** -- **[RoyalCommands](#royalcommands)** -- **[RPGInventory](#rpginventory)** - -## **S** -- **[Seasons](#seasons)** -- **[SellAll](#sellall)** -- **[SignLink](#signlink)** -- **[SimpleClans](#simpleclans)** -- **[SimpleCoins](#simplecoins)** -- **[SimpleCoinsAPI](#simplecoinsapi)** -- **[SimpleKillTracker](#simplekilltracker)** -- **[SimplePrefix](#simpleprefix)** -- **[Simple Suffix](#simple-suffix)** -- **[SkillAPI](#skillapi)** -- **[SkinsRestorer](#skinsrestorer)** -- **[Skript](#skript)** -- **[Skywars](#skywars)** -- **[Skywars X](#skywars-x)** -- **[SkywarsReloaded](#skywarsreloaded)** -- **[Spark](#spark)** -- **[SQLPerms](#sqlperms)** -- **[SQLTokens](#sqltokens)** -- **[Staff Facilities](#staff-facilities)** -- **[Statz](#statz)** -- **[Streaming Drops](#streaming-drops)** -- **[StrikePractice 2](#strikepractice-2)** -- **[stTitles](#sttitles)** -- **[SubServers](#subservers)** -- **[SuperbVote](#superbvote)** -- **[SuperCredits](#supercredits)** -- **[SuperVanish](#supervanish)** - -## **T** -- **[The Time](#the-time)** -- **[ThemePark](#themepark)** -- **[Thirst](#thirst)** -- **[TicketGUI](#ticketgui)** -- **[Timed Rewards](#timed-rewards)** -- **[TimeManager](#timemanager)** -- **[Time Tokens](#time-tokens)** -- **[TNTRun_Reloaded](#tntrun_reloaded)** -- **[TokenEnchant](#tokenenchant)** -- **[TokenManager](#tokenmanager)** -- **[Tokens](#tokens)** -- **[Towny](#towny)** -- **[TownyChat](#townychat)** -- **[TransmuteIt](#transmuteit)** -- **[Treasures](#treasures)** -- **[Trey's Double Jump](#treys-double-jump)** -- **[TrickOrTreat](#trickortreat)** - -## **U** -- **[USkyBlock](#uskyblock)** -- **[UltimateChat](#ultimatechat)** -- **[UltimateVotes](#ultimatevotes)** -- **[UnityGen](#unitygen)** - -## **V** -- **[Vault](#vault)** - - [Economy](#economy) - - [Permissions](#permissions) -- **[ViaVersion](#viaversion)** -- **[VKAutoPickup](#vkautopickup)** -- **[VoteParty](#voteparty)** -- **[VoteRoulette](#voteroulette)** -- **[VotingPlugin](#votingplugin)** - -## **W** -- **[WickedSkyWars](#wickedskywars)** -- **[WorldBorder](#worldborder)** -- **[WorldGuard](#worldguard)** - -## **X** -- **[XLTournaments](#xltournaments)** + - ### **Z** + - *No Expansions* ---- -## PAPI-placeholders -These placeholders are from PlaceholderAPI and don't require any additional plugin to function (unless mentioned). + +- [Plugin-placeholders](#plugin-placeholders) + - ### **A** + - **[AAC - AdvancedAntiCheat](#aac)** + - **[AbstractMenus](#abstractmenus)** + - **[AcidIsland](#acidisland)** + - **[AcidIslandRate](#acidislandrate)** + - **[Advanced Abilities](#advanced-abilities)** + - **[Advanced Achievements](#advanced-achievements)** + - **[AdvancedAFK](#advancedafk)** + - **[AdvancedCustomMenu+](#advancedcustommenu)** + - **[AdvancedLottery](#advancedlottery)** + - **[AdvancedModReq](#advancedmodreq)** + - **[ajLeaderboards](#ajleaderboards)** + - **[ajParkour](#ajparkour)** + - **[AlonsoLevels](#alonsolevels)** + - **[Animated Menu](#animated-menu)** + - **[AParkour](#aparkour)** + - **[ASkyBlock](#askyblock)** + - **[AsyncKeepAlive](#asynckeepalive)** + - **[AutoRank](#autorank)** + - **[AutoSell](#autosell)** + + - ### **B** + - **[BankSystem](#banksystem)** + - **[BattleLevels](#battlelevels)** + - **[BeautyQuests](#beautyquests)** + - **[BedWars1058](#bedwars1058)** + - **[BentoBox](#bentobox)** + - **[BetonQuest](#betonquest)** + - **[BlockParty](#blockparty)** + - **[BlockQuest](#blockquest)** + - **[Boxing](#boxing)** + - **[BuildBattlePro](#buildbattlepro)** + - **[BungeePerms](#bungeeperms)** + - **[BuyCraft](#buycraft)** + + - ### **C** + - **[CarlTheCreeper](#carlthecreeper)** + - **[ChatColor+](#chatcolor)** + - **[ChatColor+ Premium](#chatcolor-premium)** + - **[ChatReaction](#chatreaction)** + - **[CheckNameHistory](#checknamehistory)** + - **[Clans](#clans)** + - **[ClansFree](#clansfree)** + - **[Clans-API for Spigot/Clan tag in chat](#clans-api-for-spigotclan-tag-in-chat)** + - **[ClansPro](#clanspro)** + - **[ClanSystem](#clansystem)** + - **[CombatLogX](#combatlogx)** + - **[Compassance](#compassance)** + - **[Country on Join](#country-on-join)** + - **[CraftConomy](#craftconomy)** + - **[CraftingStore.net](#craftingstorenet)** + - **[CursedVIP](#cursedvip)** + - **[Custom Items](#custom-items)** + + - ### **D** + - **[Daily Rewards](#daily-rewards)** + - **[DeliveryMan](#deliveryman)** + - **[DeluxeChat](#deluxechat)** + - **[DeluxeCombat](#deluxecombat)** + - **[DeluxeMenus](#deluxemenus)** + - **[DeluxePM](#deluxepm)** + - **[DeluxeTags](#deluxetags)** + - **[Denizen](#denizen)** + - **[DiscordSRV](#discordsrv)** + - **[Disease](#disease)** + - **[DonateParty](#donateparty)** + - **[Donations Holograms](#donations-holograms)** + - **[DragonSlayer](#dragonslayer)** + - **[DungeonsXL](#dungeonsxl)** + + - ### **E** + - **[Economy Bank](#economy-bank)** + - **[Enjin & DonationCraft 2.x](#enjin--donationcraft-2x)** + - **[Envoys](#envoys)** + - **[EpicFriends](#epicfriends)** + - **[EpicLevels](#epiclevels)** + - **[essCore](#esscore)** + - **[Essentials](#essentials)** + - **[EZBlocks](#ezblocks)** + - **[EZPrestige](#ezprestige)** + - **[EZRanksPro](#ezrankspro)** + + - ### **F** + - **[Factions MCore](#factions-mcore)** + - **[FactionsUUID](#factionsuuid)** + - **[Factions relation placeholders](#factions-relation-placeholders)** + - **[FunnyGuilds](#funnyguilds)** + + - ### **G** + - **[GAListener](#galistener)** + - **[GangsPlus](#gangsplus)** + - **[GemsEconomy](#gemseconomy)** + - **[GriefDefender](#griefdefender)** + - **[GriefPrevention](#griefprevention)** + - **[Guilds](#guilds)** + - **[GuiRedeemMCMMO](#guiredeemmcmmo)** + + - ### **H** + - **[Head Database](#head-database)** + - **[Heroes](#heroes)** + - **[HoloBlock](#holoblock)** + - **[HPWizard](#hpwizard)** + - **[Hugs](#hugs)** + + - ### **I** + - **[InteractionVisualizer](#interactionvisualizer)** + - **[InteractiveChat](#interactivechat)** + - **[Island Border (ASkyblock / BentoBox / uSkyBlock / AcidIsland)](#island-border)** + - **[IslandRate (ASkyBlock Addon)](#islandrate)** + - **[IslandWorld](#islandworld)** + + - ### **J** + - **[Jobs Reborn](#jobs-reborn)** + + - ### **K** + - **[Karma](#karma)** + - **[KillStats](#killstats)** + - **[KitPvP](#kitpvp)** + - **[KingdomsX](#kingdomsx)** + - **[KP-PVP](#kp-pvp)** + + - ### **L** + - **[Lands](#lands)** + - **[LastLoginAPI](#lastloginapi)** + - **[LeaderHeads](#leaderheads)** + - **[LegendQuest](#legendquest)** + - **[LemonMobCoins](#lemonmobcoins)** + - **[LevelledMobs](#levelledmobs)** + - **[LevelUp](#levelup)** + - **[LuckPerms](#luckperms)** + - **[LWC](#lwc)** + + - ### **M** + - **[Marcely's Bedwars](#marcelys-bedwars)** + - **[Marriage](#marriage)** + - **[Marriage (Reloaded)](#marriage-reloaded)** + - **[MarriageMaster](#marriagemaster)** + - **[McInfected](#mcinfected)** + - **[McJobs](#mcjobs)** + - **[McMMO](#mcmmo)** + - **[MineChess](#minechess)** + - **[MineCord](#minecord)** + - **[MineCrates](#minecrates)** + - **[MobHunting](#mobhunting)** + - **[Multiverse-Core](#multiverse-core)** + - **[MyCommand](#mycommand)** + - **[MyPet](#mypet)** + - **[MyPrefixSystem](#myprefixsystem)** + + - ### **N** + - **[Nameless Plugin](#nameless-plugin)** + - **[NameMC-API-ServersMC Plugin](#namemc-api-serversmc)** + - **[Nicknamer](#nicknamer)** + - **[NickReloaded](#nickreloaded)** + - **[Nicky](#nicky)** + + - ### **O** + - **[OnePlayerSleep](#oneplayersleep)** + - **[OnTime](#ontime)** + - **[OpEconomy](#opeconomy)** + - **[OreAnnouncer](#oreannouncer)** + - **[OreMarket](#oremarket)** + - **[Outpost](#outpost)** + + - ### **P** + - **[Paintball Battle](#paintball-battle)** + - **[Parkour](#parkour)** + - **[Parties](#parties)** + - **[Party and Friends](#party-and-friends)** + - **[PermissionTimer](#permissiontimer)** + - **[PixelVip](#pixelvip)** + - **[Plan](#plan)** + - **[PlayTime](#playtime)** + - **[PlayerPoints](#playerpoints)** + - **[PlotSquared](#plotsquared)** + - **[PointsAPI](#pointsapi)** + - **[PowerRanks](#powerranks)** + - **[PremiumVanish](#premiumvanish)** + - **[Prison](#prison)** + - **[PrisonMines](#prisonmines)** + - **[PrisonRanksX](#prisonranksx)** + - **[ProCosmetics](#procosmetics)** + - **[ProfessionalBans](#professionalbans)** + - **[ProQuest](#proquest)** + - **[ProtectionStones](#protectionstones)** + - **[PVPLevels](#pvplevels)** + - **[PVP Stats](#pvp-stats)** + - **[PvPStats Plugin](#pvpstats-plugin)** + + - ### **Q** + - **[Quests](#quests)** + - **[QuestCreator](#questcreator)** + - **[QuickSell](#quicksell)** + + - ### **R** + - **[RabbitsVSPenguins](#rabbitsvspenguins)** + - **[RageMode](#ragemode)** + - **[Rankup](#rankup)** + - **[RealisticWorldGenerator](#realisticworldgenerator)** + - **[RedProtect](#redprotect)** + - **[ReferralSystem](#referralsystem)** + - **[RestrictedDimensions](#restricteddimensions)** + - **[RocketPlaceholders](#rocketplaceholders)** + - **[RogueParkour](#rogueparkour)** + - **[RoyalCommands](#royalcommands)** + - **[RPGInventory](#rpginventory)** + - **[RTP](#rtp)** + + - ### **S** + - **[Seasons](#seasons)** + - **[SellAll](#sellall)** + - **[SignLink](#signlink)** + - **[SimpleClans](#simpleclans)** + - **[SimpleCoins](#simplecoins)** + - **[SimpleCoinsAPI](#simplecoinsapi)** + - **[SimpleKillTracker](#simplekilltracker)** + - **[SimplePrefix](#simpleprefix)** + - **[Simple Suffix](#simple-suffix)** + - **[SkillAPI](#skillapi)** + - **[SkinsRestorer](#skinsrestorer)** + - **[Skript](#skript)** + - **[Skywars](#skywars)** + - **[Skywars X](#skywars-x)** + - **[SkywarsReloaded](#skywarsreloaded)** + - **[Spark](#spark)** + - **[SQLPerms](#sqlperms)** + - **[SQLTokens](#sqltokens)** + - **[Staff Facilities](#staff-facilities)** + - **[Staff++](#staffplusplus)** + - **[Statz](#statz)** + - **[Streaming Drops](#streaming-drops)** + - **[StrikePractice 2](#strikepractice-2)** + - **[stTitles](#sttitles)** + - **[SubServers](#subservers)** + - **[SuperbVote](#superbvote)** + - **[SuperCredits](#supercredits)** + - **[SuperVanish](#supervanish)** + + - ### **T** + - **[The Time](#the-time)** + - **[ThemePark](#themepark)** + - **[Thirst](#thirst)** + - **[TicketGUI](#ticketgui)** + - **[Timed Rewards](#timed-rewards)** + - **[TimeManager](#timemanager)** + - **[Time Tokens](#time-tokens)** + - **[TNTRun_Reloaded](#tntrun_reloaded)** + - **[TokenEnchant](#tokenenchant)** + - **[TokenManager](#tokenmanager)** + - **[Tokens](#tokens)** + - **[TokensPlus](#tokensplus)** + - **[Towny](#towny)** + - **[TownyChat](#townychat)** + - **[TransmuteIt](#transmuteit)** + - **[Treasures](#treasures)** + - **[Trey's Double Jump](#treys-double-jump)** + - **[TrickOrTreat](#trickortreat)** + - **[Two Factor Authentication](#twofactorauthentication)** + + - ### **U** + - **[USkyBlock](#uskyblock)** + - **[UltimateChat](#ultimatechat)** + - **[UltimateClaims](#ultimateclaims)** + - **[UltimateVotes](#ultimatevotes)** + - **[UnityGen](#unitygen)** + + - ### **V** + - **[Vault](#vault)** + - [Economy](#economy) + - [Permissions](#permissions) + - **[VenturaCalendar](#venturacalendar)** + - **[ViaVersion](#viaversion)** + - **[VKAutoPickup](#vkautopickup)** + - **[VoteParty](#voteparty)** + - **[VoteRoulette](#voteroulette)** + - **[VotingPlugin](#votingplugin)** + + - ### **W** + - **[WickedSkyWars](#wickedskywars)** + - **[WorldBorder](#worldborder)** + - **[WorldGuard](#worldguard)** + + - ### **X** + - **[XLTournaments](#xltournaments)** + + - ### **Y** + - *No Expansions* + + - ### **Z** + - *No Expansions* + +---- +## Standalone +Expansions listed here don't need any plugin or extra library to function properly, unless mentioned otherwise. +A majority of these Expansions are maintained by the PlaceholderAPI team and can be considered *official*. - ### **Advancements** -> /papi ecloud download Advancements + > /papi ecloud download Advancements + + More info about this expansion can be found on the [GitHub-Repository](https://github.com/matahombres/Advancements). + + ``` + %Advancements_% + %Advancements_player_;% + %Advancements_list% + %Advancements_list_% + %Advancements_playerList_% + %Advancements_playerList_,% + %Advancements_listFormat% + %Advancements_playerListFormat_% + %Advancements_completedAmount% + %Advancements_completedAmount_% + %Advancements_playerCompletedAmount_% + %Advancements_playerCompletedAmount_,% + %Advancements_remainingAmount% + %Advancements_remainingAmount_% + %Advancements_playerRemainingAmount_% + %Advancements_playerRemainingAmount_,% + ``` -More info about this expansion can be found on the [GitHub-Repository](https://github.com/matahombres/Advancements). -``` -%Advancements_% -%Advancements_player_;% -%Advancements_playerList_% -%Advancements_playerList_,% -%Advancements_playerListFormat_% -%Advancements_completedAmount_% -%Advancements_completedAmount_,% -%Advancements_remainingAmount_% -%Advancements_remainingAmount_,% -``` ---- - ### **Animations** -> /papi ecloud download Animations - -```html -%animations_Text% -%animations_Text% -%animations_Text% -``` - -Please note: When using placeholders within the animation text, you must use the bracket variant. -Use `{player_name}` instead of `%player_name%` within the tags. - -Please visit the [dedicated wiki](https://github.com/Niall7459/KiteBoard-Documentation/wiki/Animations-and-Modifiers) for all available tags. + > /papi ecloud download Animations + + ```html + %animations_Text% + %animations_Text% + %animations_Text% + ``` + + Please note: When using placeholders within the animation text, you must use the bracket variant. + Use `{player_name}` instead of `%player_name%` within the ` ` tags. + + Please visit the [dedicated wiki](https://github.com/Niall7459/KiteBoard-Documentation/wiki/Animations-and-Modifiers) for all available tags. ---- - ### **Armor** -> /papi ecloud download Armor + > /papi ecloud download Armor + + Gives you info about your armor + + ``` + Chose one value that's inside () and replace SLOT with one of the following: helmet, chestplate, leggings, boots. + + %armor_amount_SLOT% + %armor_color_(red/green/blue/hex)_SLOT% + %armor_durability_(left/max)_SLOT% + %armor_has_SLOT% + %armor_material_SLOT% + %armor_maxamount_SLOT% + ``` -Gives you info about your armor - -``` -Chose one value that's inside () and replace SLOT with one of the following: helmet, chestplate, leggings, boots. - -%armor_amount_SLOT% -%armor_color_(red/green/blue/hex)_SLOT% -%armor_durability_(left/max)_SLOT% -%armor_has_SLOT% -%armor_material_SLOT% -%armor_maxamount_SLOT% -``` ---- - ### **ASCII** -> /papi ecloud download ascii - -Returns the [ASCII Value](http://www.asciitable.com/) based on input - -``` -%ascii_% -``` - -Ex: `%ascii_37%` returns `%` + > /papi ecloud download ASCII + + Returns the [ASCII Value](http://www.asciitable.com/) based on input + + ``` + %ascii_% + ``` + + Ex: `%ascii_37%` returns `%` ---- - ### **BungeeCord** -> /papi ecloud download Bungee + > /papi ecloud download Bungee + + Allows you to show, how many players are online on the entire network, or just on a specific server. + + ``` + %bungee_total% + %bungee_% + ``` -Allows you to show, how many players are online on the entire network, or just on a specific server. +---- + +- ### **CalculateNumbers** + > NO DOWNLOAD COMMAND + + Download the jar from [broken1arrow/CalculateNumbers/releases](https://github.com/broken1arrow/CalculateNumbers/releases) + + The idea with this expansion is that you should be able to charge dynamically, + for example in the deluxe menu. For tools, weapons + and armor when players need to + repair their belongings. Has also added optional so you can also combine it with + rank plugin if + you have one. + + Use decimal,to get two decimal digits. + + ``` + %number_numbervalue,tool:{a placeholder from your ranking plugin}% + %number_numbervalue,decimal,tool:{a placeholder from your ranking plugin}% + %number_numbervalue,armor:{a placeholder from your ranking plugin}% + %number_numbervalue,decimal,armor:{a placeholder from your ranking plugin}% + ``` + +---- + +- ### **ChangeOutput** + > /papi ecloud download changeitem + + Alows you to change the output based on what other placeholders return + + ``` + %changeoutput_____% + ``` + + * `` + * equals - match the input exactly + * ignorecase - match the input while ignoring cases + * ignorecolor - match the input while ignoring colour codes + * contains - check if the match contains input + * \>= - check if the input is larger than or equal to the matcher + * \> - check if the input is larger than the matcher + * <= - check if the input is less than or equal to the matcher + * < - check if the input is less than the matcher + * `` - this is your text that you wish to replace + * `` - this is the text we will be looking for to meet the conditions + * `` - if the input meets the condition, this text will be displayed + * `` - if the input does not meet the condition, this text will be displayed instead + + *All arguments can be replaced with other placeholders, wrapped in* `{}` -``` -%bungee_total% -%bungee_% -``` ---- - ### **CheckItem** -> /papi ecloud download CheckItem - -Allows you to check the inventory of a player for a certain item. - -``` -- `%checkitem_,,<...>%` - Returns if user has the item -- `%checkitem_amount_,,<...>%` - Returns amount of items the user has -- `%checkitem_remove_,,<...>%` - Removes the items from the players inventory - Can be used with amount, it just has to be after. (Ex. `%checkitem_amount_remove_<...>%`) Please be careful as it does REMOVE ITEMS FOR GOOD -- `%checkitem_give_,,<...>%` - Gives the player items. Returns true if successful, returns the number of items NOT given if unsuccessful. (When unsuccessful items can still be given, it just might not be all of them) -``` - -**Modifiers** -You can combine different modifiers to check for different values. -Available modifiers are: -- `namecontains:` - Checks if the item's display name contains ``* \*\* -- `namestartswith:` - Checks if the item's display name starts with ``* \*\* -- `nameequals:` - Checks if the item's display name equals ``* \*\* ^ -- `mat:` - Checks if the item is `` (For example: `STONE`) ^ -- `amt:` - Checks if the player has `` of items ^ -- `data:` - Checks if the item has data `` (Example: Red wool has `14` as data (`WOOL:14`)). -This is only for 1.12 and older! ^ -- `custommodeldata:` - Checks if the item has CustomModelData `` This is only for 1.14 and newer! ^ -- `lorecontains:` - Checks if the item's lore contains ``* -- `loreequals:` - Checks if the item's lore equals `` Lines are separated by `|` ^ -- `matcontains:` - Checks if the item's material contains ``* -- `enchantments:;` (`=lvl` is optional) (Uses vanilla minecraft enchantment names) ^ -- `enchanted` - Checks if the item is enchanted (with anything) -- `potiontype:` - Checks if the item has the potiontype ([Click here for potion types](https://hub.spigotmc.org/javadocs/spigot/org/bukkit/potion/PotionType.html)) ^ -- `potionextended:` - Checks if a potion is extended ^ -- `potionupgraded:` - Checks if a potion is upgraded ^ -- `strict` - Requires `mat:` modifier. Strictly checks the name and lore for an item. (If a Stone named `Test` is in your inventory, and you're using `%checkitem_mat:stone,strict%`, it will return false) -- `inhand` - Check if the item is in the player's hand (Also checks off-hand) - -*Case-sensitive - -**Only one can be used - -^Supported by the `give` placeholder - -To use Commas in strings you must escape them using `\` (Ex: `loreequals:Milk\, Eggs\, Bread`) - -**Placeholders are supported, but they need to be in brackets! (Ex: `%player_name%` would be `{player_name}`** + > /papi ecloud download CheckItem + + Allows you to check the inventory of a player for a certain item. + + ``` + %checkitem_,,<...>% - Returns if user has the item + %checkitem_amount_,,<...>% - Returns amount of items the user has + %checkitem_remove_,,<...>% - Removes the items from the players inventory - Can be used with amount, it just has to be after. (Ex. `%checkitem_amount_remove_<...>%`) Please be careful as it does REMOVE ITEMS FOR GOOD + %checkitem_give_,,<...>% - Gives the player items. Returns true if successful, returns the number of items NOT given if unsuccessful. (When unsuccessful items can still be given, it just might not be all of them) + ``` + + **Modifiers** + You can combine different modifiers to check for different values. + Available modifiers are: + - `namecontains:` + Checks if the item's display name contains ``* \*\* + - `namestartswith:` + Checks if the item's display name starts with ``* \*\* + - `nameequals:` + Checks if the item's display name equals ``* \*\* ^ + - `mat:` + Checks if the item is `` (For example: `STONE`) ^ + - `amt:` + Checks if the player has `` of items ^ + - `data:` + Checks if the item has data `` (Example: Red wool has `14` as data (`WOOL:14`)). + This is only for 1.12 and older! ^ + - `custommodeldata:` + Checks if the item has CustomModelData `` + This is only for 1.14 and newer! ^ + - `lorecontains:` + Checks if the item's lore contains ``* + - `loreequals:` + Checks if the item's lore equals `` Lines are separated by `|` ^ + - `matcontains:` + Checks if the item's material contains ``* + - `enchantments:;` + Checks if the item's enchantments contains `` with an optional `=level` + Uses vanilla minecraft enchantment names ^ + - `enchanted` + Checks if the item is enchanted (with anything) + - `potiontype:` + Checks if the item has the potiontype ([Click here for potion types](https://hub.spigotmc.org/javadocs/spigot/org/bukkit/potion/PotionType.html)) ^ + - `potionextended:` + Checks if a potion is extended ^ + - `potionupgraded:` + Checks if a potion is upgraded ^ + - `strict` + Requires `mat:` modifier. Strictly checks the name and lore for an item. (If a Stone named `Test` is in your inventory, and you're using `%checkitem_mat:stone,strict%`, it will return false) + - `inhand` + Check if the item is in the player's hand. `inhand` will check *both* hands. You can add `:main` or `:off` to specify. (Ex: `inhand:main`) + - `inslot` + Check if the item is in a specific slot ([Click here for valid slots](https://proxy.spigotmc.org/d3e11b631e22f45fc07c3fcd1c7000b2245fed78?url=http%3A%2F%2Fi.imgur.com%2F3YCrfC8.png)) + + **Notes:** + - * means case-sensitive + - ** means only one can be used + - ^ means that the modifier supports the `give` placeholder + - To use Commas in strings you must escape them using `\` (Ex: `loreequals:Milk\, Eggs\, Bread`) + - **Placeholders are supported, but they need to be in brackets! (Ex: `%player_name%` would be `{player_name}`** ---- - ### **CooldownBar** -> /papi ecloud download CooldownBar + > /papi ecloud download CooldownBar + + More info about this expansion can be found on the [GitHub-Repository](https://github.com/aBo0oDyy/CooldownBar-Expansion). + + ``` + %cooldownbar_{placeholder}% + %cooldownbar_{placeholder}_p:% + %cooldownbar_{placeholder}_i:% + %cooldownbar_{placeholder}_r:% + %cooldownbar_{placeholder}_l:% + %cooldownbar_{placeholder}_c:% + %cooldownbar_{placeholder}_rdy:% + %cooldownbar_{essentials_kit_time_until_available_tools}_p:&aâ– _i:&eâ– _r:&7â– _l:5_c:100_rdy:&aReadytoclaim!% + %cooldownbar_percentage_{placeholder}% + %cooldownbar_percentage_{placeholder}_c:% + %cooldownbar_percentage_{placeholder}_d:% + %cooldownbar_percentage_{essentials_kit_time_until_available_tools}_c:120_d:0% + ``` -More info about this expansion can be found on the [GitHub-Repository](https://github.com/aBo0oDyy/CooldownBar-Expansion). - -``` -%cooldownbar_{placeholder}% -%cooldownbar_{placeholder}_p:% -%cooldownbar_{placeholder}_i:% -%cooldownbar_{placeholder}_r:% -%cooldownbar_{placeholder}_l:% -%cooldownbar_{placeholder}_c:% -%cooldownbar_{placeholder}_rdy:% -%cooldownbar_{essentials_kit_time_until_available_tools}_p:&aâ– _i:&eâ– _r:&7â– _l:5_c:100_rdy:&aReadytoclaim!% -%cooldownbar_percentage_{placeholder}% -%cooldownbar_percentage_{placeholder}_c:% -%cooldownbar_percentage_{placeholder}_d:% -%cooldownbar_percentage_{essentials_kit_time_until_available_tools}_c:120_d:0% -``` ---- - ### **Formatter** -> /papi ecloud download Formatter - -More info about this expansion can be found on the [GitHub-Repository](https://github.com/Andre601/Formatter-Expansion). - -``` -%formatter_number_format_% -%formatter_number_format_[locale]:[format]_% - -%formatter_number_time_% -%formatter_number_time_seconds_% # Handles number as seconds -%formatter_number_time_secs_% # Handles number as seconds -%formatter_number_time_minutes_% # Handles number as minutes -%formatter_number_time_mins_% # Handles number as minutes -%formatter_number_time_hours_% # Handles number as hours -%formatter_number_time_hrs_% # Handles number as hours - -%formatter_replace___% -%formatter_text_substring__% -%formatter_text_uppercase_% -%formatter_text_lowercase_% -``` + > /papi ecloud download Formatter + + More info about this expansion can be found on the [GitHub-Repository](https://github.com/Andre601/Formatter-Expansion). + + `[]` is optional and `<>` is required. + + ``` + %formatter_number_format_% + %formatter_number_format_[locale]:[format]_% + + %formatter_number_from:_to:_% # Converts from one time unit to another + + %formatter_number_time_% + %formatter_number_time_fromSeconds_% # Handles number as seconds + %formatter_number_time_fromSecs_% # Handles number as seconds + %formatter_number_time_fromMinutes_% # Handles number as minutes + %formatter_number_time_fromMins_% # Handles number as minutes + %formatter_number_time_fromHours_% # Handles number as hours + %formatter_number_time_fromHrs_% # Handles number as hours + + %formatter_text_replace___% + %formatter_text_substring_[start]:[end]_% + %formatter_text_uppercase_% + %formatter_text_lowercase_% + ``` ---- - ### **Javascript** -> /papi ecloud download Javascript + > /papi ecloud download Javascript + + Gives you a way, to use javascript, to give a different output, depending on conditions. + + ``` + %javascript_% + ``` -Gives you a way, to use javascript, to give a different output, depending on conditions. - -``` -%javascript_% -``` ---- - ### **ListPlayers** -> /papi ecloud download ListPlayers + > /papi ecloud download ListPlayers + + Lists players with a certain permission or in a certain world... 'nuf said. + + ``` + %listplayers_with_perm_% + %listplayers_in_world_% + ``` -Lists players with a certain permission or in a certain world... 'nuf said. - -``` -%listplayers_with_perm_% -%listplayers_in_world_% -``` ---- - ### **LocalTime** -> /papi ecloud download LocalTime - -``` -%localtime_time% -%localtime_time_% -%localtime_timezone_% -%localtime_timezone_,% -``` - -- [Simple Date Format](http://docs.oracle.com/javase/7/docs/api/java/text/SimpleDateFormat.html) -- [TimeZone ID](https://garygregory.wordpress.com/2013/06/18/what-are-the-java-timezone-ids/) + > /papi ecloud download LocalTime + + ``` + %localtime_time% + %localtime_time_% + %localtime_timezone_% + %localtime_timezone_,% + ``` + + Please read the [SimpleDateFormat] Javadoc page about possible formats and [this post][TimeZoneIDs] about available time zone IDs for ``. ---- - ### **Math** -> /papi ecloud download Math + > /papi ecloud download Math + + Lets you make simple or advanced calculations. + Any placeholder that returns a number is supported (Use `{placeholder}` instead of `%placeholder%`) + + Supports all calculations you can do with [EvalEx](https://github.com/uklimaschewski/EvalEx). + Note that the `%` can't be used within the placeholder and that you have to use `[prc]` instead. + + ``` + %math_% + %math_[precision]:[rounding]_% + ``` -Lets you make simple or advanced calculations. -Placeholders are supported (You have to use `{}` instead of `%`). - -Supports all calculations you can do with [EvalEx](https://github.com/uklimaschewski/EvalEx). -Note that the `%` can't be used within the placeholder and that you have to to use `[prc]` instead. - -``` -%math_% -%math_[precision]:[rounding]_% -``` ---- - ### **MVdW Placeholders** -> /papi ecloud download MVdW + > /papi ecloud download MVdW + + Lets you use placeholders from [MVdWPlaceholderAPI](https://www.spigotmc.org/resources/11182/). + MVdWPlaceholderAPI and one of **[Maxims plugins](https://www.spigotmc.org/resources/2691/)**, that use it, are required! + A list of his placeholders can be found [here](https://www.spigotmc.org/wiki/mvdw-placeholders/) + + ``` + %mvdw_% + ``` -Lets you use placeholders from [MVdWPlaceholderAPI](https://www.spigotmc.org/resources/11182/). -MVdWPlaceholderAPI and one of **[Maxims plugins](https://www.spigotmc.org/resources/2691/)**, that use it, are required! -A list of his placeholders can be found [here](https://www.spigotmc.org/wiki/mvdw-placeholders/) - -``` -%mvdw_% -``` ----- - -- ### **OtherPlayer** -> /papi ecloud download OtherPlayer - -Lets you get placeholders for other players. (Not the one that triggers the action) - -``` -%otherplayer_displayname_% -%otherplayer_gamemode_% -%otherplayer_hasperm__perm_% -%otherplayer_haspotioneffect__effect_% -%otherplayer_health_% -%otherplayer_hunger_% -%otherplayer_iteminhand_% -%otherplayer_ip_% -%otherplayer_level_% -%otherplayer_locx_% -%otherplayer_locy_% -%otherplayer_locz_% -%otherplayer_oxygen_% -%otherplayer_spells_% -%otherplayer_uuid_% -%otherplayer_world_% -``` ----- - ----- -- ### **ParseNear** -> /papi ecloud download ParseNear - -Lets you parse any placeholder for the closest player. Will return blank if no player is found. - -``` -%parsenear_% # Parses placeholder for closest player -%parsenear__% # Parses placeholder for closest player in a radius -``` ----- - -- ### **ParseOther** -> /papi ecloud download ParseOther - -Lets you parse any placeholder for another player. -You can use placeholders in place of `username`. -Make sure to include the `{}` brackets, as it won't work without them. - -``` -%parseother_{username}_{placeholder_without_percent_signs}% -``` ----- - -- ### **Pinger** -> /papi ecloud download Pinger - -Lets you ping a server through an IP or domain (with port), to check the online-status and to receive some information. -The placeholders have a "warmup" time of around one or two minutes after installing the expansion. - -**Note**: These placeholders have a separate update-delay in the config.yml of PlaceholderAPI - -Replace `testplugins.com:25565` with your own server/IP. -``` -%pinger_gameversion_testplugins.com:25565% -%pinger_version_testplugins.com:25565% -%pinger_online_testplugins.com:25565% -%pinger_isonline_testplugins.com:25565% -%pinger_max_testplugins.com:25565% -%pinger_players_testplugins.com:25565% -%pinger_motd_testplugins.com:25565% -%pinger_pingversion_testplugins.com:25565% -``` -`%pinger_online_testplugins.com:25565%` and `%pinger_isonline_testplugins.com:25565%` do the exact same thing. - ----- - -- ### **Player** -> /papi ecloud download Player - -Gives you various placeholders for the player, that triggers the action. - -``` -%player_allow_flight% -%player_bed_x% -%player_bed_y% -%player_bed_z% -%player_bed_world% -%player_biome% -%player_can_pickup_items% -%player_colored_ping% -%player_compass_world% -%player_compass_x% -%player_compass_y% -%player_compass_z% -%player_custom_name% -%player_direction% -%player_displayname% -%player_exp% -%player_exp_to_level% -%player_first_join_date% -%player_fly_speed% -%player_food_level% -%player_gamemode% -%player_has_empty_slot% -%player_empty_slots% -%player_has_permission_% -%player_health% -%player_health_rounded% -%player_health_scale% -%player_ip% -%player_online% -%player_is_op% -%player_item_in_hand% -%player_item_in_hand_name% -%player_item_in_hand_data% -%player_item_in_hand_level_% -%player_item_in_offhand% -%player_item_in_offhand_name% -%player_item_in_offhand_data% -%player_item_in_offhand_level_% -%player_last_damage% -%player_level% -%player_max_air% -%player_max_health% -%player_max_health_rounded% -%player_max_no_damage_ticks% -%player_minutes_lived% -%player_name% -%player_no_damage_ticks% -%player_ping% -%player_ping_% -%player_remaining_air% -%player_saturation% -%player_seconds_lived% -%player_sleep_ticks% -%player_ticks_lived% -%player_time% -%player_time_offset% -%player_total_exp% -%player_uuid% -%player_walk_speed% -%player_world% -%player_world_time_12% -%player_world_time_24% -%player_x% -%player_y% -%player_z% -``` - ----- - -- ### **PlayerList** -> /papi ecloud download PlayerList - -### List Players - -Returns the player list matching the specified syntax - -``` -%playerlist_,,,,% -``` - -**Type:** -- `all` - Matches all players -- `online` - Matches online players -- `offline` - Matches offline players - -**Subtypes:** -- `normal` - Matches all players. Requires no `` -- `perm` - Matches all players that match the permission defined by ``. Supports multiple permissions separated by `+` (`perm.1+perm.2`) -- `world` - Matches all players in the world defined by ``. Supports multiple worlds separated by `+` (`world+world_nether`) -- `nearby` - Matches all players in a certain radius defined by `` - -**Include:** -- `yes` - Include the player -- `no` - Exclude the player - -**Output:** -- `list` - Returns a list of players separated by `, `. You can also change the separator with `list-`.* -- `amount` - Returns amount of players matched -- `` - Returns the player at the specified index - - -**Examples:** -``` -%playerlist_all,normal,yes,list% # Tanguygab, cj89898, funnycube, clip, Frcsty, GabyTM, ItsMeGlare -%playerlist_online,perm,yes,amount,staff.admin% # 2 -%playerlist_online,world,yes,2,buildingworld+spawnworld%` # cj89898, funnycube -%playerlist_online,nearby,yes,list,5% # Tanguygab, cj89898, clip -%playerlist_online,nearby,no,list,5% # Tanguygab, clip -%playerlist_online,nearby,no,list--,20% # Tanguygab-clip-Terfs -``` - -*You can also use `[placeholder]` for papi placeholders in addition to the javascript `{placeholder}`* - -*Note: `Offline` and `All` only support the `Normal` subtype.* -**Since `,` is used to separate the different parts of the placeholder, use `\.` instead if you want to display a `,`.** - ----- - -- ### **Plugin** -> /papi ecloud download Plugin - -Returns information about the specified plugin. - -``` -%plugin_isenabled_% -%plugin_isdisabled_% -%plugin_exists_% -``` ----- - -- ### **Progress** -> /papi ecloud download progress - -More info about this expansion can be found on the [GitHub-Repository](https://github.com/aBo0oDyy/Progress-Expansion). - -``` -%progress_bar_{placeholder}% -%progress_bar_{placeholder}_c:% -%progress_bar_{placeholder}_p:% -%progress_bar_{placeholder}_r:% -%progress_bar_{placeholder}_l:% -%progress_bar_{placeholder}_m:% -%progress_bar_{placeholder}_fullbar:% - -%progress_bar_{placeholder}_c:&aâ– _p:&eâ– _r:&7â– _l:10_m:100_fullbar:&aCompleted!% -``` ----- - -- ### **RainbowColor** -> /papi ecloud download RainbowColor - -More info about the expansion can be found on the [GitHub-Repository](https://github.com/aBo0oDyy/RainbowColor-Expansion). - -``` -%RainbowColor_% -%RainbowColor_custom_,,_% - -e.g. %RainbowColor_custom_a,f,e,b_This is an example% -``` ----- - -- ### **RandomColor** -> /papi ecloud download RandomColor - -More info about the expansion can be found on the [GitHub-Repository](https://github.com/Andre601/RandomColor). - -``` -%randomcolor_all% -%randomcolor_color% -%randomcolor_combined% -%randomcolor_format% -%randomcolor_selected_% -``` ----- - -- ### **RedisBungee** -> /papi ecloud download RedisBungee - -Same like the BungeeCord-placeholders, but for RedisBungee - -``` -%redisbungee_total% -%redisbungee_% -``` ----- - -- ### **RelCon** -> /papi ecloud download RelCon - -More info about the expansion can be found on the [GitHub-Repository](https://github.com/PlaceholderAPI/RelCon-Expansion). - -``` -%rel_relcon_player___[text2]% -%rel_relcon_player__% -%rel_relcon_viewer___[text2]% -%rel_relcon_viewer__% -``` ----- - -- ### **RNG** -> /papi ecloud download RNG - -More info about the expansion can be found on the [GitHub-Repository](https://github.com/Kqliber/Expansion-RNG). - -``` -%rng_random% -%rng_,% -``` ----- - -- ### **ScoreboardObjectives** -> /papi ecloud download ScoreboardObjectives - -Get info from a scoreboard objective. - -``` -%objective_score_% -%objective_score__[otherEntry]% -``` -**Note**: `[otherEntry]` can be another player name, Offline Player name, or non-player Entry - ----- - -- ### **Server** -> /papi ecloud download Server - -Lets you get information about the server. - -``` -%server_name% -%server_online% -%server_version% -%server_max_players% -%server_unique_joins% -%server_uptime% -%server_ram_used% -%server_ram_free% -%server_ram_total% -%server_ram_max% -%server_tps% -%server_tps_1% -%server_tps_5% -%server_tps_15% -%server_tps_1_colored% -%server_tps_5_colored% -%server_tps_15_colored% -%server_online_% -%server_has_whitelist% -%server_total_chunks% -%server_total_living_entities% -%server_total_entities% -%server_time_% -%server_countdown__% - Boolean, if code is active + %opeconomy_max_uses_code_% - Shows max uses for code + %opeconomy_uses_code_% - Shows uses for code + %opeconomy_reward_code_% - Shows reward for entering code + ``` -``` -%ontime_last_login% -%ontime_last_vote% -%ontime_time_played_month% -%ontime_referrals_month% -%ontime_votes_month% -%ontime_time_played_today% -%ontime_referrals_today% -%ontime_votes_today% -%ontime_time_played_total% -%ontime_points_total% -%ontime_referrals_total% -%ontime_votes_total% -%ontime_time_played_week% -%ontime_referrals_week% -%ontime_votes_week% -``` ---- - ### **[OreAnnouncer](https://www.spigotmc.org/resources/33464/)** -> NO DOWNLOAD COMMAND + > NO DOWNLOAD COMMAND + + You can find an up-to-date list of placeholders on the [OreAnnouncer Wiki](https://alessiodp.com/docs/oreannouncer/placeholders#outside). -You can find an up-to-date list of the placeholders in [their wiki](https://alessiodp.com/docs/oreannouncer/placeholders#outside). +---- + +- ### **[OreMarket](https://www.spigotmc.org/resources/91015/)** + > NO DOWNLOAD COMMAND + + ``` + %oremarket_change_% + %oremarket_cost_% + %oremarket_name_% + %oremarket_percent_% + %oremarket_stock_% + %oremarket_value_% + ``` ---- - ### **[Outpost](https://www.spigotmc.org/resources/38657/)** -> NO DOWNLOAD COMMAND + > NO DOWNLOAD COMMAND + + ``` + %outpost_data_id_% + %outpost_data_name_% + %outpost_data_world_% + %outpost_data_region_% + %outpost_conqueror_owner_% + %outpost_conqueror_invader_% + %outpost_conqueror_percentage_% + %outpost_perks_money_% + %outpost_perks_exp_% + ``` -``` -%outpost_data_id_% -%outpost_data_name_% -%outpost_data_world_% -%outpost_data_region_% -%outpost_conqueror_owner_% -%outpost_conqueror_invader_% -%outpost_conqueror_percentage_% -%outpost_perks_money_% -%outpost_perks_exp_% -``` ---- - ### **[Paintball Battle](https://www.spigotmc.org/resources/76676/)** -> NO DOWNLOAD COMMAND + > NO DOWNLOAD COMMAND + + ``` + %paintball_wins% + %paintball_loses% + %paintball_ties% + %paintball_kills% + %paintball_coins% + ``` -``` -%paintball_wins% -%paintball_loses% -%paintball_ties% -%paintball_kills% -%paintball_coins% -``` ---- - ### **[Parkour](https://www.spigotmc.org/resources/23685/)** -> NO DOWNLOAD COMMAND + > NO DOWNLOAD COMMAND + + ``` + %parkour_course_completed_% + %parkour_course_completions_% + %parkour_course_record__deaths% + %parkour_course_record__milliseconds% + %parkour_course_record__player% + %parkour_course_record__time% + %parkour_course_views% + %parkour_current_checkpoint% + %parkour_current_course_checkpoints% + %parkour_current_course_completed% + %parkour_current_course_deaths% + %parkour_current_course_name% + %parkour_current_course_personal_best_deaths% + %parkour_current_course_personal_best_milliseconds% + %parkour_current_course_personal_best_player% + %parkour_current_course_personal_best_time% + %parkour_current_course_record_deaths% + %parkour_current_course_record_milliseconds% + %parkour_current_course_record_player% + %parkour_current_course_record_time% + %parkour_current_course_timer% + %parkour_global_course_count% + %parkour_global_player_count% + %parkour_global_version% + %parkour_leaderboard___deaths% + %parkour_leaderboard___milliseconds% + %parkour_leaderboard___player% + %parkour_leaderboard___time% + %parkour_player_courses_completed% + %parkour_player_courses_uncompleted% + %parkour_player_last_completed% + %parkour_player_last_joined% + %parkour_player_level% + %parkour_player_parkoins% + %parkour_player_personal_best__deaths% + %parkour_player_personal_best__milliseconds% + %parkour_player_personal_best__player% + %parkour_player_personal_best__time% + %parkour_player_prize_delay_% + %parkour_player_rank% + %parkour_topten__% + ``` -``` -%parkour_course_completed_% -%parkour_course_completions_% -%parkour_course_record__deaths% -%parkour_course_record__milliseconds% -%parkour_course_record__player% -%parkour_course_record__time% -%parkour_course_views% -%parkour_current_checkpoint% -%parkour_current_course_checkpoints% -%parkour_current_course_completed% -%parkour_current_course_deaths% -%parkour_current_course_name% -%parkour_current_course_personal_best_deaths% -%parkour_current_course_personal_best_milliseconds% -%parkour_current_course_personal_best_player% -%parkour_current_course_personal_best_time% -%parkour_current_course_record_deaths% -%parkour_current_course_record_milliseconds% -%parkour_current_course_record_player% -%parkour_current_course_record_time% -%parkour_current_course_timer% -%parkour_global_course_count% -%parkour_global_player_count% -%parkour_global_version% -%parkour_leaderboard___deaths% -%parkour_leaderboard___milliseconds% -%parkour_leaderboard___player% -%parkour_leaderboard___time% -%parkour_player_courses_completed% -%parkour_player_courses_uncompleted% -%parkour_player_last_completed% -%parkour_player_last_joined% -%parkour_player_level% -%parkour_player_parkoins% -%parkour_player_personal_best__deaths% -%parkour_player_personal_best__milliseconds% -%parkour_player_personal_best__player% -%parkour_player_personal_best__time% -%parkour_player_prize_delay_% -%parkour_player_rank% -%parkour_topten__% -``` ---- - ### **[Parties](https://www.spigotmc.org/resources/3709/)** -> NO DOWNLOAD COMMAND + > NO DOWNLOAD COMMAND + + ``` + %parties_color_code% + %parties_color_command% + %parties_color_name% + %parties_desc% + %parties_kills% + %parties_motd% + %parties_party% + %parties_rank_chat% + %parties_rank_name% + ``` -``` -%parties_color_code% -%parties_color_command% -%parties_color_name% -%parties_desc% -%parties_kills% -%parties_motd% -%parties_party% -%parties_rank_chat% -%parties_rank_name% -``` ---- - ### **[Party and Friends](https://www.spigotmc.org/resources/11633/)** -> NO DOWNLOAD COMMAND + > NO DOWNLOAD COMMAND + + ``` + %friendsapi_friendcount% + %friendsapi_friendrequestcount% + %friendsapi_onlinefriendcount% + ``` -``` -%friendsapi_friendcount% -%friendsapi_friendrequestcount% -%friendsapi_onlinefriendcount% -``` ---- - ### **[PermissionTimer](https://www.mc-market.org/resources/14050/)** -> /papi ecloud download PermissionTimer + > /papi ecloud download PermissionTimer + + ``` + %pt_all% + %pt_perm_#% + %pt_timeleft_#% + ``` -``` -%pt_all% -%pt_perm_#% -%pt_timeleft_#% -``` ---- - ### **[PixelVip](https://www.spigotmc.org/resources/30438/)** -> NO DOWNLOAD COMMAND + > NO DOWNLOAD COMMAND + + ``` + %pixelvip_expiration_millis% + %pixelvip_expiration_desc% + %pixelvip_active_vip% + ``` -``` -%pixelvip_expiration_millis% -%pixelvip_expiration_desc% -%pixelvip_active_vip% -``` ---- - ### **[Plan](https://www.spigotmc.org/resources/plan-player-analytics.32536/)** -> NO DOWNLOAD COMMAND + > NO DOWNLOAD COMMAND + + The plugin provides placeholders for statistics stored in the plugin for players and the server. + + Check [Plan Wiki](https://github.com/plan-player-analytics/Plan/wiki/PlaceholderAPI) for the placeholders list. -The plugin provides placeholders for statistics stored in the plugin for players and the server. - -Check [Plan Wiki](https://github.com/plan-player-analytics/Plan/wiki/PlaceholderAPI) for the placeholders list. - ---- +---- - ### **[PlayTime](https://www.spigotmc.org/resources/26016/)** -> /papi ecloud download PlayTime + > /papi ecloud download PlayTime + + ``` + %playtime_player% + %playtime_time% + %playtime_timesjoined% + %playtime_serveruptime% + ``` -``` -%playtime_player% -%playtime_time% -%playtime_timesjoined% -%playtime_serveruptime% -``` ---- - ### **[PlayerPoints](http://dev.bukkit.org/bukkit-plugins/playerpoints/)** -> /papi ecloud download PlayerPoints + > /papi ecloud download PlayerPoints + + ``` + %playerpoints_points% + ``` -``` -%playerpoints_points% -``` ---- - ### **[PlotSquared](https://www.spigotmc.org/resources/77506/)** -> NO DOWNLOAD COMMAND + > NO DOWNLOAD COMMAND + + ``` + %plotsquared_currentplot_alias% + %plotsquared_currentplot_owner% + %plotsquared_currentplot_members% + %plotsquared_currentplot_members_added% + %plotsquared_currentplot_members_added_list% + %plotsquared_currentplot_members_trusted% + %plotsquared_currentplot_members_trusted_list% + %plotsquared_currentplot_members_denied% + %plotsquared_currentplot_members_denied_list% + %plotsquared_currentplot_world_name% + %plotsquared_currentplot_can_build% + %plotsquared_has_plot_% + %plotsquared_currentplot_x% + %plotsquared_currentplot_y% + %plotsquared_currentplot_xy% + %plotsquared_currentplot_rating% + %plotsquared_currentplot_biome% + %plotsquared_has_plot% + %plotsquared_has_build_rights% + %plotsquared_plot_count% + %plotsquared_plot_count_% + %plotsquared_allowed_plot_count% + %plotsquared_currentplot_localflag_% + %plotsquared_currentplot_flag_% + %plotsquared_currentplot_creationdate% + ``` -``` -%plotsquared_currentplot_alias% -%plotsquared_currentplot_owner% -%plotsquared_currentplot_members% -%plotsquared_currentplot_members_added% -%plotsquared_currentplot_members_trusted% -%plotsquared_currentplot_members_denied% -%plotsquared_world_name% -%plotsquared_has_plot_% -%plotsquared_currentplot_x% -%plotsquared_currentplot_y% -%plotsquared_currentplot_xy% -%plotsquared_currentplot_rating% -%plotsquared_currentplot_biome% -%plotsquared_has_plot% -%plotsquared_has_build_rights% -%plotsquared_plot_count% -%plotsquared_plot_count_% -%plotsquared_allowed_plot_count% -%plotsquared_currentplot_localflag_% -%plotsquared_currentplot_flag_% -``` ---- - ### **[PointsAPI](https://www.spigotmc.org/resources/13957/)** -> NO DOWNLOAD COMMAND + > NO DOWNLOAD COMMAND + + ``` + %pointsapi_points% + ``` -``` -%pointsapi_points% -``` ---- - ### **[PowerRanks](https://www.spigotmc.org/resources/64696/)** -> NO DOWNLOAD COMMAND + > NO DOWNLOAD COMMAND + + ``` + %powerranks_rank% + %powerranks_prefix% + %powerranks_suffix% + %powerranks_subrankprefix% + %powerranks_subranksuffix% + %powerranks_chatcolor% + %powerranks_namecolor% + %powerranks_usertag% + %powerranks_world% + %powerranks_playtime% + ``` -``` -%powerranks_rank% -%powerranks_prefix% -%powerranks_suffix% -%powerranks_subrankprefix% -%powerranks_subranksuffix% -%powerranks_chatcolor% -%powerranks_namecolor% -%powerranks_usertag% -%powerranks_world% -%powerranks_playtime% -``` ---- - ### **[PremiumVanish](https://www.spigotmc.org/resources/14404/)** -> NO DOWNLOAD COMMAND - -``` -%premiumvanish_isvanished% -%premiumvanish_vanishedplayers% -%premiumvanish_playercount% -%premiumvanish_playercountwithoutshowintab% -%premiumvanish_bungeeplayercount% -%premiumvanish_bungeeplayercount@% -%premiumvanish_target% -%premiumvanish_uselevel% -%premiumvanish_seelevel% -``` -`` is the name of the server it should show the playercount of. + > NO DOWNLOAD COMMAND + + ``` + %premiumvanish_isvanished% + %premiumvanish_vanishedplayers% + %premiumvanish_playercount% + %premiumvanish_playercountwithoutshowintab% + %premiumvanish_bungeeplayercount% + %premiumvanish_bungeeplayercount@% + %premiumvanish_target% + %premiumvanish_uselevel% + %premiumvanish_seelevel% + ``` + + `` is the name of the server it should show the player count of. ---- - ### **[Prison](https://www.spigotmc.org/resources/1223/)** -> NO DOWNLOAD COMMAND - -Each placeholder has a shorter alias, which follows the primary placeholder below. - -**Player rank placeholders:** Must be used directly with a player, such as with player chat prefixes. -These placeholders can return zero, one, or more rank related values depending upon how many ladders the player is on. - -``` -%prison_rank% -%prison_r% -%prison_rank_tag% -%prison_rt% -%prison_rankup_cost% -%prison_rc% -%prison_rankup_cost_formatted% -%prison_rcf% -%prison_rankup_cost_percent% -%prison_rcp% -%prison_rankup_cost_bar% -%prison_rcb% -%prison_rankup_cost_remaining% -%prison_rcr% -%prison_rankup_cost_remaining_formatted% -%prison_rcrf% -%prison_rankup_rank% -%prison_rr% -%prison_rankup_rank_tag% -%prison_rrt% -``` - -**Player rank placeholders for individual ladders:** Must be used directly with a player. -Use the ladder name, all lowercase, in place of ``, and it will return zero or one rank related values. + > NO DOWNLOAD COMMAND -``` -%prison_rank_% -%prison_r_% -%prison_rank_tag_% -%prison_rt_% -%prison_rankup_cost_% -%prison_rc_% -%prison_rankup_cost_formatted_% -%prison_rcf_% -%prison_rankup_cost_percent_% -%prison_rcp_% -%prison_rankup_cost_bar_% -%prison_rcb_% -%prison_rankup_cost_remaining_% -%prison_rcr_% -%prison_rankup_cost_remaining_formatted_% -%prison_rcrf_% -%prison_rankup_rank_% -%prison_rr_% -%prison_rankup_rank_tag_% -%prison_rrt_% -%prison_player_balance% -%prison_pb% -%prison_player_balance_% -%prison_pb_% -``` - -**Mine relate placeholders:** -Use the mine name, all lowercase, in place of ``. + Each placeholder has a shorter alias, which follows the primary placeholder below. -``` -%prison_mines_name_% -%prison_mn_% -%prison_mines_tag_% -%prison_mt_% -%prison_mines_interval_% -%prison_mi_% -%prison_mines_interval_formatted_% -%prison_mif_% -%prison_mines_timeleft_% -%prison_mtl_% -%prison_mines_timeleft_bar_% -%prison_mtlb_% -%prison_mines_timeleft_formatted_% -%prison_mtlf_% -%prison_mines_size_% -%prison_ms_% -%prison_mines_remaining_% -%prison_mr_% -%prison_mines_remaining_bar_% -%prison_mrb_% -%prison_mines_percent_% -%prison_mp_% -%prison_mines_player_count_% -%prison_mpc_% -%prison_mines_blocks_mined_% -%prison_mbm_% -%prison_mines_reset_count_% -%prison_mrc_% -``` - -**Player-mine related placeholders:** Must be used with a player. -These placeholders will only return non-blank values when the player is in a mine and the results will be for that mine. - -``` -%prison_mines_name_playermines% -%prison_mn_pm% -%prison_mines_tag_playermines% -%prison_mt_pm% -%prison_mines_interval_playermines% -%prison_mi_pm% -%prison_mines_interval_formatted_playermines% -%prison_mif_pm% -%prison_mines_timeleft_playermines% -%prison_mtl_pm% -%prison_mines_timeleft_bar_playermines% -%prison_mtlb_pm% -%prison_mines_timeleft_formatted_playermines% -%prison_mtlf_pm% -%prison_mines_size_playermines% -%prison_ms_pm% -%prison_mines_remaining_playermines% -%prison_mr_pm% -%prison_mines_remaining_bar_playermines% -%prison_mrb_pm% -%prison_mines_percent_playermines% -%prison_mp_pm% -%prison_mines_player_count_playermines% -%prison_mpc_pm% -%prison_mines_blocks_mined_playermines% -%prison_mbm_pm% -%prison_mines_reset_count_playermines% -%prison_mrc_pm% -``` + **Player rank placeholders:** + Must be used directly with a player, such as with player chat prefixes. + These placeholders can return zero, one, or more rank related values depending upon how many ladders the player is on. + + ``` + %prison_rank% + %prison_r% + %prison_rank_tag% + %prison_rt% + %prison_rankup_cost% + %prison_rc% + %prison_rankup_cost_formatted% + %prison_rcf% + %prison_rankup_cost_percent% + %prison_rcp% + %prison_rankup_cost_bar% + %prison_rcb% + %prison_rankup_cost_remaining% + %prison_rcr% + %prison_rankup_cost_remaining_formatted% + %prison_rcrf% + %prison_rankup_rank% + %prison_rr% + %prison_rankup_rank_tag% + %prison_rrt% + ``` + + **Player rank placeholders for individual ladders:** + Must be used directly with a player. + Use the ladder name, all lowercase, in place of ``, and it will return zero or one rank related values. + + ``` + %prison_rank_% + %prison_r_% + %prison_rank_tag_% + %prison_rt_% + %prison_rankup_cost_% + %prison_rc_% + %prison_rankup_cost_formatted_% + %prison_rcf_% + %prison_rankup_cost_percent_% + %prison_rcp_% + %prison_rankup_cost_bar_% + %prison_rcb_% + %prison_rankup_cost_remaining_% + %prison_rcr_% + %prison_rankup_cost_remaining_formatted_% + %prison_rcrf_% + %prison_rankup_rank_% + %prison_rr_% + %prison_rankup_rank_tag_% + %prison_rrt_% + %prison_player_balance% + %prison_pb% + %prison_player_balance_% + %prison_pb_% + ``` + + **Mine relate placeholders:** + Use the name of the mine, all lowercase, in place of ``. + + ``` + %prison_mines_name_% + %prison_mn_% + %prison_mines_tag_% + %prison_mt_% + %prison_mines_interval_% + %prison_mi_% + %prison_mines_interval_formatted_% + %prison_mif_% + %prison_mines_timeleft_% + %prison_mtl_% + %prison_mines_timeleft_bar_% + %prison_mtlb_% + %prison_mines_timeleft_formatted_% + %prison_mtlf_% + %prison_mines_size_% + %prison_ms_% + %prison_mines_remaining_% + %prison_mr_% + %prison_mines_remaining_bar_% + %prison_mrb_% + %prison_mines_percent_% + %prison_mp_% + %prison_mines_player_count_% + %prison_mpc_% + %prison_mines_blocks_mined_% + %prison_mbm_% + %prison_mines_reset_count_% + %prison_mrc_% + ``` + + **Player-mine related placeholders:** + Must be used with a player. + These placeholders will only return non-blank values when the player is in a mine, and the results will be for that mine. + + ``` + %prison_mines_name_playermines% + %prison_mn_pm% + %prison_mines_tag_playermines% + %prison_mt_pm% + %prison_mines_interval_playermines% + %prison_mi_pm% + %prison_mines_interval_formatted_playermines% + %prison_mif_pm% + %prison_mines_timeleft_playermines% + %prison_mtl_pm% + %prison_mines_timeleft_bar_playermines% + %prison_mtlb_pm% + %prison_mines_timeleft_formatted_playermines% + %prison_mtlf_pm% + %prison_mines_size_playermines% + %prison_ms_pm% + %prison_mines_remaining_playermines% + %prison_mr_pm% + %prison_mines_remaining_bar_playermines% + %prison_mrb_pm% + %prison_mines_percent_playermines% + %prison_mp_pm% + %prison_mines_player_count_playermines% + %prison_mpc_pm% + %prison_mines_blocks_mined_playermines% + %prison_mbm_pm% + %prison_mines_reset_count_playermines% + %prison_mrc_pm% + ``` ---- - ### **[PrisonMines](https://www.spigotmc.org/resources/4046/)** -> /papi ecloud download PrisonMines + > /papi ecloud download PrisonMines + + ``` + # Mine-specific placeholders + %prisonmines_blocks_mined_% + %prisonmines_percent_mined_% + %prisonmines_percent_left_% + %prisonmines_time_until_reset_% + %prisonmines_has_timed_reset_% + %prisonmines_has_percentage_reset_% + + # Player specific placeholders (Use Mine at the player's location) + %prisonmines_name% + %prisonmines_blocks_mined% + %prisonmines_percent_mined% + %prisonmines_percent_left% + %prisonmines_time_until_reset% + %prisonmines_has_timed_reset% + %prisonmines_has_percentage_reset% + ``` -Mine-specific placeholders (For a single mine) -``` -%prisonmines_blocks_mined_% -%prisonmines_percent_mined_% -%prisonmines_percent_left_% -%prisonmines_time_until_reset_% -%prisonmines_has_timed_reset_% -%prisonmines_has_percentage_reset_% -``` - -Player-specific placeholder (Gets mine at the current location) -``` -%prisonmines_name% -%prisonmines_blocks_mined% -%prisonmines_percent_mined% -%prisonmines_percent_left% -%prisonmines_time_until_reset% -%prisonmines_has_timed_reset% -%prisonmines_has_percentage_reset% -``` ---- - ### **[PrisonRanksX](https://www.spigotmc.org/resources/55899)** -> NO DOWNLOAD COMMAND + > NO DOWNLOAD COMMAND + + ``` + %prisonranksx_currentrank_name% + %prisonranksx_currentrank_displayname% + %prisonranksx_rankup_name% + %prisonranksx_rankup_displayname% + %prisonranksx_rankup_progress% + %prisonranksx_rankup_progress_double% + %prisonranksx_rankup_percentage% + %prisonranksx_rankup_cost% + %prisonranksx_rankup_cost_formatted% + %prisonranksx_prestige_name% + %prisonranksx_prestige_displayname% + %prisonranksx_nextprestige_cost% + %prisonranksx_nextprestige_cost_formatted% + %prisonranksx_money% + ``` -``` -%prisonranksx_currentrank_name% -%prisonranksx_currentrank_displayname% -%prisonranksx_rankup_name% -%prisonranksx_rankup_displayname% -%prisonranksx_rankup_progress% -%prisonranksx_rankup_progress_double% -%prisonranksx_rankup_percentage% -%prisonranksx_rankup_cost% -%prisonranksx_rankup_cost_formatted% -%prisonranksx_prestige_name% -%prisonranksx_prestige_displayname% -%prisonranksx_nextprestige_cost% -%prisonranksx_nextprestige_cost_formatted% -%prisonranksx_money% -``` ---- - ### **[ProCosmetics](https://www.spigotmc.org/resources/49106/)** -> NO DOWNLOAD COMMAND + > NO DOWNLOAD COMMAND + + ``` + %procosmetics_coins% + %procosmetics_cosmetics_activated% + %procosmetics_treasures_% + ``` -``` -%procosmetics_coins% -%procosmetics_cosmetics_activated% -%procosmetics_treasures_% -``` ---- - ### **[ProfessionalBans](https://www.spigotmc.org/resources/63657/)** -> NO DOWNLOAD COMMAND + > NO DOWNLOAD COMMAND + + ``` + %professionalbans_onlinetime% + %professionalbans_firstjoin% + %professionalbans_reports% + ``` -``` -%professionalbans_onlinetime% -%professionalbans_firstjoin% -%professionalbans_reports% -``` ---- - ### **[ProQuest](https://www.spigotmc.org/resources/18249/)** -> NO DOWNLOAD COMMAND + > NO DOWNLOAD COMMAND + + ``` + %proquests_completed_quests% + %proquests_active_quests% + %proquests_monthly_points% + %proquests_total_points% + %proquests_progress_bar_% + %proquests_progress_% + %proquests_total_% + ``` -``` -%proquests_completed_quests% -%proquests_active_quests% -%proquests_monthly_points% -%proquests_total_points% -%proquests_progress_bar_% -%proquests_progress_% -%proquests_total_% -``` ---- - ### **[ProtectionStones](https://www.spigotmc.org/resources/61797/)** -> NO DOWNLOAD COMMAND - -You can find an up-to-date list of the placeholders in [their wiki](https://github.com/espidev/ProtectionStones/wiki/Placeholders). + > NO DOWNLOAD COMMAND + + You can find an up-to-date list of placeholders in the [ProtectionStones Wiki](https://github.com/espidev/ProtectionStones/wiki/Placeholders). ---- - ### **[PvPLevels](https://www.spigotmc.org/resources/20807/)** -> NO DOWNLOAD COMMAND + > NO DOWNLOAD COMMAND + + ``` + %pvplevels_kills% + %pvplevels_deaths% + %pvplevels_xp% + %pvplevels_level% + %pvplevels_kdr% + %pvplevels_killstreak% + %pvplevels_xp_required% + %pvplevels_xp_progress% + %pvplevels_xp_progress_style% + %pvplevels_prefix% + %pvplevels_group% + ``` -``` -%pvplevels_kills% -%pvplevels_deaths% -%pvplevels_xp% -%pvplevels_level% -%pvplevels_kdr% -%pvplevels_killstreak% -%pvplevels_xp_required% -%pvplevels_xp_progress% -%pvplevels_xp_progress_style% -%pvplevels_prefix% -%pvplevels_group% -``` ---- - ### **[PVP Stats](http://dev.bukkit.org/bukkit-plugins/pvp-stats/)** -> NO DOWNLOAD COMMAND + > NO DOWNLOAD COMMAND + + ``` + %pvpstats_kills% + %pvpstats_deaths% + %pvpstats_elo% + %pvpstats_killstreak% + %pvpstats_maxstreak% + ``` -``` -%pvpstats_kills% -%pvpstats_deaths% -%pvpstats_elo% -%pvpstats_killstreak% -%pvpstats_maxstreak% -``` ---- - ### **[PvPStats Plugin](https://www.spigotmc.org/resources/69984/)** -> NO DOWNLOAD COMMAND + > NO DOWNLOAD COMMAND + + ``` + %pvpstats_kills% + %pvpstats_deaths% + %pvpstats_killstreak% + %pvpstats_kdr% + ``` -``` -%pvpstats_kills% -%pvpstats_deaths% -%pvpstats_killstreak% -%pvpstats_kdr% -``` ---- - ### **[Quests](https://www.spigotmc.org/resources/3711/)** -> /papi ecloud download Quests + > /papi ecloud download Quests + + ``` + %quests_player_quest_points% + %quests_player_has_journal% + %quests_player_current_quest_amount% + %quests_player_completed_quest_amount% + %quests_player_current_quest_names% + %quests_player_completed_quest_names% + %quests_player_current_objectives_% + %quests_player_has_current_quest_% + %quests_player_has_completed_quest_% + %quests_player_cooldown_time_remaining_% + %quests_player_current_stage_number_% + %quests_player_can_accept_quest_% + %quests_player_meets_requirements_to_start_% + ``` -``` -%quests_player_quest_points% -%quests_player_has_journal% -%quests_player_current_quest_amount% -%quests_player_completed_quest_amount% -%quests_player_current_quest_names% -%quests_player_completed_quest_names% -%quests_player_current_objectives_% -%quests_player_has_current_quest_% -%quests_player_has_completed_quest_% -%quests_player_cooldown_time_remaining_% -%quests_player_current_stage_number_% -%quests_player_can_accept_quest_% -%quests_player_meets_requirements_to_start_% -``` ---- -- ### **[QuestCreator](https://www.spigotmc.org/resources/38734/)** -> NO DOWNLOAD COMMAND -``` -%questcreator_status_[model id]% -%questcreator_completion_[model id]% -%questcreator_cooldownmillis_[model id]% -%questcreator_cooldown_[model id]% -%questcreator_lastcompletionmillis_[model id]% -%questcreator_lastcompletion_[model id]% -%questcreator_variable_[variable name]% -%questcreator_hasjournaltoggle% -``` +- ### **[QuestCreator](https://www.spigotmc.org/resources/38734/)** + > NO DOWNLOAD COMMAND + + ``` + %questcreator_status_[model id]% + %questcreator_completion_[model id]% + %questcreator_cooldownmillis_[model id]% + %questcreator_cooldown_[model id]% + %questcreator_lastcompletionmillis_[model id]% + %questcreator_lastcompletion_[model id]% + %questcreator_variable_[variable name]% + %questcreator_hasjournaltoggle% + ``` + ---- - ### **[QuickSell](https://www.spigotmc.org/resources/6107/)** -> /papi ecloud download QuickSell + > /papi ecloud download QuickSell + + ``` + %quicksell_booster% + %quicksell_booster_time% + ``` -``` -%quicksell_booster% -%quicksell_booster_time% -``` ---- - ### **[RecentFind (Treasures Add-on)](https://www.spigotmc.org/resources/33366/)** -> NO DOWNLOAD COMMAND - -``` -%treasuresrecentfind_find_number_% -%treasuresrecentfind_from_first_% -``` -1 is most recent, 2 is second most, 3 third most, etc. + > NO DOWNLOAD COMMAND + + ``` + %treasuresrecentfind_find_number_% + %treasuresrecentfind_from_first_% + ``` + 1 is most recent, 2 is second most, 3 third most, etc. ---- - ### **[RabbitsVSPenguins](https://www.spigotmc.org/resources/65277/)** -> NO DOWNLOAD COMMAND + > NO DOWNLOAD COMMAND + + ``` + %rvp_arenaplayers_count_< arena >% + %rvp_arena_status_< arena >% + %rvp_kills% + %rvp_loses% + %rvp_ties% + %rvp_wins% + ``` -``` -%rvp_arenaplayers_count_< arena >% -%rvp_arena_status_< arena >% -%rvp_kills% -%rvp_loses% -%rvp_ties% -%rvp_wins% -``` ---- - ### **[RageMode](https://www.spigotmc.org/resources/69169/)** -> NO DOWNLOAD COMMAND + > NO DOWNLOAD COMMAND + + ``` + %ragemode_kills% + %ragemode_axe_kills% + %ragemode_direct_arrow_kills% + %ragemode_explosion_kills% + %ragemode_knife_kills% + %ragemode_deaths% + %ragemode_axe_deaths% + %ragemode_direct_arrow_deaths% + %ragemode_explosion_deaths% + %ragemode_knife_deaths% + %ragemode_current_streak% + %ragemode_longest_streak% + %ragemode_points% + %ragemode_games% + %ragemode_wins% + %ragemode_kd% + %ragemode_rank% + ``` -``` -%ragemode_kills% -%ragemode_axe_kills% -%ragemode_direct_arrow_kills% -%ragemode_explosion_kills% -%ragemode_knife_kills% -%ragemode_deaths% -%ragemode_axe_deaths% -%ragemode_direct_arrow_deaths% -%ragemode_explosion_deaths% -%ragemode_knife_deaths% -%ragemode_current_streak% -%ragemode_longest_streak% -%ragemode_points% -%ragemode_games% -%ragemode_wins% -%ragemode_kd% -%ragemode_rank% -``` ---- - ### **[Rankup](https://www.spigotmc.org/resources/17933/)** -> NO DOWNLOAD COMMAND + > NO DOWNLOAD COMMAND + + ``` + %rankup_current_rank% + %rankup_next_rank% + %rankup_current_prestige% + %rankup_next_prestige% + %rankup_money% + %rankup_money_formatted% + %rankup_prestige_money% + %rankup_prestige_money_formatted% + %rankup_money_left% + %rankup_money_left_formatted% + %rankup_percent_left% + %rankup_percent_left_formatted% + %rankup_percent_done_formatted% + %rankup_requirement_[_]% + %rankup_rank_requirement__[_]% + %rankup_rank_money_% + %rankup_rank_money__left% + %rankup_rank_requirement__money_percent_[done/left]% + ``` -``` -%rankup_current_rank% -%rankup_next_rank% -%rankup_current_prestige% -%rankup_next_prestige% -%rankup_money% -%rankup_money_formatted% -%rankup_prestige_money% -%rankup_prestige_money_formatted% -%rankup_money_left% -%rankup_money_left_formatted% -%rankup_percent_left% -%rankup_percent_left_formatted% -%rankup_percent_done_formatted% -%rankup_requirement_[_]% -%rankup_rank_requirement__[_]% -%rankup_rank_money_% -%rankup_rank_money__left% -%rankup_rank_requirement__money_percent_[done/left]% -``` ---- - ### **[RealisticWorldGenerator](https://www.spigotmc.org/resources/15905/)** -> NO DOWNLOAD COMMAND + > NO DOWNLOAD COMMAND + + ``` + %rwg_schematicAmount% + %rwg_schematics% + %rwg_biome% + %rwg_position1% + %rwg_position2% + ``` -``` -%rwg_schematicAmount% -%rwg_schematics% -%rwg_biome% -%rwg_position1% -%rwg_position2% -``` ---- - ### **[RedProtect](http://otmc.org/resources/15841/)** -> NO DOWNLOAD COMMAND + > NO DOWNLOAD COMMAND + + ``` + %redprotect_player_in_region% + %redprotect_player_used_claims% + %redprotect_player_used_blocks% + %redprotect_player_total_claims% + %redprotect_player_total_blocks% + %redprotect_region_flag_value_% + ``` -``` -%redprotect_player_in_region% -%redprotect_player_used_claims% -%redprotect_player_used_blocks% -%redprotect_player_total_claims% -%redprotect_player_total_blocks% -%redprotect_region_flag_value_% -``` ---- - ### **[ReferralSystem](https://www.spigotmc.org/resources/29709/)** -> NO DOWNLOAD COMMAND + > NO DOWNLOAD COMMAND + + ``` + %rs_points% + %rs_referrals% + ``` -``` -%rs_points% -%rs_referrals% -``` ---- - ### **[RestrictedDimensions](https://www.spigotmc.org/resources/80574/)** -> NO DOWNLOAD COMMAND + > NO DOWNLOAD COMMAND + + ``` + %restricteddimensions_has_access_% + ``` -``` -%restricteddimensions_has_access_% -``` ---- - ### **[RocketPlaceholders](https://www.spigotmc.org/resources/82678/)** -> NO DOWNLOAD COMMAND + > NO DOWNLOAD COMMAND + + ``` + %rp_% + ``` -``` -%rp_% -``` - -`` is the name you configured in the config.yml of this plugin. -[Read More](https://lorenzo0111.gitbook.io/rocekt-plugins/rocketplaceholders/configure) + `` is the name you configured in the config.yml of this plugin. + [Read More](https://docs.rocketplugins.space/rocketplaceholders/configure) ---- - ### **[RogueParkour](https://www.spigotmc.org/resources/26563/)** -> /papi ecloud download rogueparkour-temporary + > /papi ecloud download rogueparkour-temporary + + ``` + %RogueParkour-temporary_top_;% + %RogueParkour-temporary_get_% + ``` -``` -%RogueParkour-temporary_top_;% -%RogueParkour-temporary_get_% -``` ---- - ### **[RoyalCommands](https://www.spigotmc.org/resources/4113/)** -> NO DOWNLOAD COMMAND + > NO DOWNLOAD COMMAND + + ``` + %royalcommands_nickname% + ``` -``` -%royalcommands_nickname% -``` ---- - ### **[RPGInventory](https://www.spigotmc.org/resources/12498/)** -> NO DOWNLOAD COMMAND + > NO DOWNLOAD COMMAND + + ``` + %rpginv_damage_bonus% + %rpginv_bow_damage_bonus% + %rpginv_hand_damage_bonus% + %rpginv_crit_damage_bonus% + %rpginv_crit_chance% + %rpginv_armor_bonus% + %rpginv_speed_bonus% + %rpginv_jump_bonus% + ``` + +---- + +- ### **[RTP](https://www.spigotmc.org/resources/94812/)** + > NO DOWNLOAD COMMAND + + ``` + %rtp_player_status% + %rtp_total_queue_length% + %rtp_public_queue_length% + %rtp_personal_queue_length% + %rtp_teleport_world% + %rtp_teleport_x% + %rtp_teleport_y% + %rtp_teleport_z% + ``` -``` -%rpginv_damage_bonus% -%rpginv_bow_damage_bonus% -%rpginv_hand_damage_bonus% -%rpginv_crit_damage_bonus% -%rpginv_crit_chance% -%rpginv_armor_bonus% -%rpginv_speed_bonus% -%rpginv_jump_bonus% -``` ---- - ### **[Seasons](https://www.spigotmc.org/resources/39298/)** -> NO DOWNLOAD COMMAND - -``` -%seasons_season% -%seasons_season_[world]% -%seasons_weather% -%seasons_weather_[world]% -%seasons_day% -%seasons_day_[world]% -``` -Replace `[world]` with the name of a loaded world. -*Placeholders ending in a `[world]` will retrieve information from the specified world -instead of the player's current world.* + > NO DOWNLOAD COMMAND + + ``` + %seasons_season% + %seasons_season_[world]% + %seasons_weather% + %seasons_weather_[world]% + %seasons_day% + %seasons_day_[world]% + ``` + + Replace `[world]` with the name of a loaded world. + *Placeholders ending in a `[world]` will retrieve information from the specified world instead of the player's current world.* ---- - ### **[SellAll](https://www.spigotmc.org/resources/1221/)** -> NO DOWNLOAD COMMAND + > NO DOWNLOAD COMMAND + + ``` + %sellall_multiplier% + %sellall_multitime% + ``` -``` -%sellall_multiplier% -%sellall_multitime% -``` ---- - ### **[SignLink](https://www.spigotmc.org/resources/39593/)** -> NO DOWNLOAD COMMAND - -``` -%sl_[variable name]% -``` -Replace `[variable name]` with the name of the signlink variable + > NO DOWNLOAD COMMAND + + ``` + %sl_[variable name]% + ``` + + Replace `[variable name]` with the name of the signlink variable. ---- - ### **[SimpleClans](https://www.spigotmc.org/resources/71242/)** -> NO DOWNLOAD COMMAND + > NO DOWNLOAD COMMAND -You can find an up-to-date list of the placeholders in [their wiki](https://simpleclans.gitbook.io/simpleclans/other/placeholderapi-support). + You can find an up-to-date list of placeholders in the [SimpleClans Wiki](https://simpleclans.gitbook.io/simpleclans/other/placeholderapi-support). ---- - ### **[SimpleCoins](https://dev.bukkit.org/projects/simplecoins) -> NO DOWNLOAD COMMAND + > NO DOWNLOAD COMMAND + + ``` + %simplecoins_balane% + %simplecoins_currency_name% + ``` -``` -%simplecoins_balane% -%simplecoins_currency_name% -``` ---- - ### **[SimpleCoinsAPI](https://www.spigotmc.org/resources/1432/)** -> NO DOWNLOAD COMMAND + > NO DOWNLOAD COMMAND + + ``` + %simplecoinsapi_coins% + ``` -``` -%simplecoinsapi_coins% -``` ---- - ### **[SimpleKillTracker](https://www.spigotmc.org/resources/17651/)** -> NO DOWNLOAD COMMAND + > NO DOWNLOAD COMMAND + + ``` + %simplekilltracker_kills% + %simplekilltracker_deaths% + %simplekilltracker_kdr% + ``` -``` -%simplekilltracker_kills% -%simplekilltracker_deaths% -%simplekilltracker_kdr% -``` ---- - ### **[SimplePrefix](http://dev.bukkit.org/bukkit-plugins/simple-prefix/)** -> /papi ecloud download SimplePrefix + > /papi ecloud download SimplePrefix + + ``` + %simpleprefix_prefix% + %simpleprefix_suffix% + ``` -``` -%simpleprefix_prefix% -%simpleprefix_suffix% -``` ---- - ### **[Simple Suffix](http://dev.bukkit.org/bukkit-plugins/simple-suffix/)** -> NO DOWNLOAD COMMAND + > NO DOWNLOAD COMMAND + + ``` + %simplesuffix_prefix% + %simplesuffix_suffix% + ``` -``` -%simplesuffix_prefix% -%simplesuffix_suffix% -``` ---- - ### **[SkillAPI](https://www.spigotmc.org/resources/4824/)** -> /papi ecloud download SkillAPI + > /papi ecloud download SkillAPI + + ``` + %skillapi_attribute_points% + %skillapi_mana% + %skillapi_max_mana% + %skillapi_skill_level_% + %skillapi_skill_points_% + %skillapi_skill_cost_% + %skillapi_skill_levelreq_% + %skillapi_skill_is_maxed_% + %skillapi_skill_message_% + %skillapi_skill_type_% + %skillapi_skill_req_% + ``` + + The following placeholders are the same as above but instead of specifying the skillName, you can specify a number from 1 to pretty much infinity (amount of skills a player has) which will show the information related to the players 1st, 2nd, 3rd skill and so on... + ``` + %skillapi_player_skill_points_<#>% + %skillapi_player_skill_level_<#>% + %skillapi_player_skill_levelreq_<#>% + %skillapi_player_skill_name_<#>% + %skillapi_player_skill_message_<#>% + %skillapi_player_skill_req_<#>% + %skillapi_player_skill_type_<#>% + %skillapi_player_skill_can_autolevel_<#>% + %skillapi_player_skill_can_cast_<#>% + ``` -``` -%skillapi_attribute_points% -%skillapi_mana% -%skillapi_max_mana% -%skillapi_skill_level_% -%skillapi_skill_points_% -%skillapi_skill_cost_% -%skillapi_skill_levelreq_% -%skillapi_skill_is_maxed_% -%skillapi_skill_message_% -%skillapi_skill_type_% -%skillapi_skill_req_% -``` - -The following placeholders are the same as above but instead of specifying the skillName, you can specify a number from 1 to pretty much infinity (amount of skills a player has) which will show the information related to the players 1st, 2nd, 3rd skill and so on... -``` -%skillapi_player_skill_points_<#>% -%skillapi_player_skill_level_<#>% -%skillapi_player_skill_levelreq_<#>% -%skillapi_player_skill_name_<#>% -%skillapi_player_skill_message_<#>% -%skillapi_player_skill_req_<#>% -%skillapi_player_skill_type_<#>% -%skillapi_player_skill_can_autolevel_<#>% -%skillapi_player_skill_can_cast_<#>% -``` ---- - ### **[SkinsRestorer](https://www.spigotmc.org/resources/2124/)** -> /papi ecloud download SkinsRestorer + > /papi ecloud download SkinsRestorer + + ``` + %skinsrestorer_getSkinName% + ``` -``` -%skinsrestorer_getSkinName% -``` ---- - ### **[Skript](https://github.com/bensku/Skript)** -> /papi ecloud download skript + > /papi ecloud download skript + + ``` + %skript_% + ``` -``` -%skript_% -``` ---- - ### **[SkyWars](hhttps://www.spigotmc.org/resources/6525/)** -> NO DOWNLOAD COMMAND + > NO DOWNLOAD COMMAND + + ``` + %skywars_coins% + %skywars_stats_deaths% + %skywars_stats_kills% + %skywars_stats_wins% + %skywars_stats_played% + %skywars_stats_arrow_shot% + %skywars_stats_arrow_hit% + %skywars_stats_blocks_broken% + %skywars_stats_blocks_placed% + %skywars_stats_distance_walked% + %skywars_stats_time_played% + %skywars_glass% + %skywars_arena_name% + %skywars_arena_max_players% + %skywars_arena_ingame_players% + ``` -``` -%skywars_coins% -%skywars_stats_deaths% -%skywars_stats_kills% -%skywars_stats_wins% -%skywars_stats_played% -%skywars_stats_arrow_shot% -%skywars_stats_arrow_hit% -%skywars_stats_blocks_broken% -%skywars_stats_blocks_placed% -%skywars_stats_distance_walked% -%skywars_stats_time_played% -%skywars_glass% -%skywars_arena_name% -%skywars_arena_max_players% -%skywars_arena_ingame_players% -``` ---- - ### **[SkyWars X](hhttps://www.spigotmc.org/resources/28120/)** -> NO DOWNLOAD COMMAND + > NO DOWNLOAD COMMAND + + ``` + %skywars_players_count% + %skywars_parties_count% + %skywars_lobby_players_count% + %skywars_arenas_count% + %skywars_kits_count% + %skywars_trails_count% + %skywars_cages_count% + %skywars_kills% + %skywars_deaths% + %skywars_wins% + %skywars_modifier% + %skywars_projectiles_launched% + %skywars_projectiles_hit% + %skywars_player_exp% + %skywars_player_rank% + %skywars_blocks_placed% + %skywars_blocks_broken% + %skywars_arena% + %skywars_party_leader% + %skywars_selected_kit% + %skywars_selected_trail% + %skywars_selected_cage% + %skywars_selected_cage% + %skywars_coins% + ``` -``` -%skywars_players_count% -%skywars_parties_count% -%skywars_lobby_players_count% -%skywars_arenas_count% -%skywars_kits_count% -%skywars_trails_count% -%skywars_cages_count% -%skywars_kills% -%skywars_deaths% -%skywars_wins% -%skywars_modifier% -%skywars_projectiles_launched% -%skywars_projectiles_hit% -%skywars_player_exp% -%skywars_player_rank% -%skywars_blocks_placed% -%skywars_blocks_broken% -%skywars_arena% -%skywars_party_leader% -%skywars_selected_kit% -%skywars_selected_trail% -%skywars_selected_cage% -%skywars_selected_cage% -%skywars_coins% -``` ---- - ### **[SkywarsReloaded](https://www.spigotmc.org/resources/3796/)** -> NO DOWNLOAD COMMAND + > NO DOWNLOAD COMMAND + + ``` + # Deprecated in old versions + %skywarsreloaded_score% + %skywarsreloaded_wins% + %skywarsreloaded_kills% + %skywarsreloaded_deaths% + %skywarsreloaded_games% + %skywarsreloaded_games_played% + %skywarsreloaded_map_name% + %skywarsreloaded_selected_kit% + %skywarsreloaded_blocks% + %skywarsreloaded_timevote% + %skywarsreloaded_time_vote% + %skywarsreloaded_opvote% + %skywarsreloaded_op_vote% + + # Tested on version (5.4.2) + %swr_wins% + %swr_losses% + %swr_kills% + %swr_deaths% + %swr_xp% + %swr_level% + %swr_games_played% + %swr_kill_death% + %swr_win_loss% + ``` -``` -%skywarsreloaded_score% -%skywarsreloaded_wins% -%skywarsreloaded_kills% -%skywarsreloaded_deaths% -%skywarsreloaded_games% -%skywarsreloaded_games_played% -%skywarsreloaded_map_name% -%skywarsreloaded_selected_kit% -%skywarsreloaded_blocks% -%skywarsreloaded_timevote% -%skywarsreloaded_time_vote% -%skywarsreloaded_opvote% -%skywarsreloaded_op_vote% -``` ---- - ### **[Spark](https://github.com/lucko/spark)** -> NO DOWNLOAD COMMAND + > NO DOWNLOAD COMMAND + + ``` + %spark_tps% + %spark_tps_5s% + %spark_tps_10s% + %spark_tps_1m% + %spark_tps_5m% + %spark_tps_15m% + %spark_cpu_system% + %spark_cpu_system_10s% + %spark_cpu_system_1m% + %spark_cpu_system_15m% + %spark_cpu_process% + %spark_cpu_process_10s% + %spark_cpu_process_1m% + %spark_cpu_process_15m% + %spark_tickduration% + %spark_tickduration_10s% + %spark_tickduration_1m% + ``` -``` -%spark_tps% -%spark_tps_5s% -%spark_tps_10s% -%spark_tps_1m% -%spark_tps_5m% -%spark_tps_15m% -%spark_cpu_system% -%spark_cpu_system_10s% -%spark_cpu_system_1m% -%spark_cpu_system_15m% -%spark_cpu_process% -%spark_cpu_process_10s% -%spark_cpu_process_1m% -%spark_cpu_process_15m% -%spark_tickduration% -%spark_tickduration_10s% -%spark_tickduration_1m% -``` ---- - ### **[SQLPerms](https://www.spigotmc.org/resources/1462/)** -> NO DOWNLOAD COMMAND + > NO DOWNLOAD COMMAND + + ``` + %sqlperms_rank_% + %sqlperms_prefix_% + ``` -``` -%sqlperms_rank_% -%sqlperms_prefix_% -``` ---- - ### **[SQLTokens](https://www.spigotmc.org/resources/3482/)** -> NO DOWNLOAD COMMANDS + > NO DOWNLOAD COMMANDS + + ``` + %sqltokens_tokens% + ``` -``` -%sqltokens_tokens% -``` ---- - ### **[Staff Facilities](https://www.spigotmc.org/resources/13097/)** -> /papi ecloud download StaffFacilities + > /papi ecloud download StaffFacilities + + ``` + %stafffacilities_bungeetotal% + %stafffacilities_staffonline% + %stafffacilities_onlineplayers% + %stafffacilities_dutysize% + %stafffacilities_ischatmuted% + %stafffacilities_playergamemode% + %stafffacilities_isplayerfrozen% + %stafffacilities_maintenancemode% + %stafffacilities_amountofreports% + %stafffacilities_onduty% + %stafffacilities_ongodmode% + %stafffacilities_onfly% + %stafffacilities_vanished% + %stafffacilities_fakeleaved% + %stafffacilities_watchovered% + %stafffacilities_staffwatched% + %stafffacilities_staffvanished% + %stafffacilities_tab_duty% + %stafffacilities_tab_fakeleave% + %stafffacilities_tab_freeze% + %stafffacilities_tab_staffvanish% + %stafffacilities_tab_vanish% + ``` -``` -%stafffacilities_bungeetotal% -%stafffacilities_staffonline% -%stafffacilities_onlineplayers% -%stafffacilities_dutysize% -%stafffacilities_ischatmuted% -%stafffacilities_playergamemode% -%stafffacilities_isplayerfrozen% -%stafffacilities_maintenancemode% -%stafffacilities_amountofreports% -%stafffacilities_onduty% -%stafffacilities_ongodmode% -%stafffacilities_onfly% -%stafffacilities_vanished% -%stafffacilities_fakeleaved% -%stafffacilities_watchovered% -%stafffacilities_staffwatched% -%stafffacilities_staffvanished% -%stafffacilities_tab_duty% -%stafffacilities_tab_fakeleave% -%stafffacilities_tab_freeze% -%stafffacilities_tab_staffvanish% -%stafffacilities_tab_vanish% +---- + +- ### **[Staff++](https://www.spigotmc.org/resources/staff.83562/)** +> /papi ecloud download staffplusplus + +All placeholders are listed here: https://wiki.staffplusplus.org/integrations/papi-expansion -``` ---- - ### **[Statz](https://www.spigotmc.org/resources/25969/)** -> /papi ecloud download Statz + > /papi ecloud download Statz + + ``` + %statz_deaths% + %statz_blocks_broken% + %statz_blocks_placed% + %statz_blocks_broken_% + %statz_blocks_placed_% + %statz_blocks_broken_% + %statz_blocks_placed_% + %statz_caught_items% + %statz_crafted_items% + %statz_damage_taken% + %statz_distance_traveled% + %statz_distance_traveled_allworlds_% + %statz_distance_traveled_% + %statz_distance_traveled_:% + %statz_food_eaten% + %statz_food_eaten_% + %statz_joins% + %statz_mobs_killed% + %statz_mobs_killed_% + %statz_players_killed% + %statz_time_formated_dhm% + %statz_time_formated_dh% + %statz_time_formated_d% + %statz_time_day% + %statz_time_hour% + %statz_time_minute% + %statz_time_played% + %statz_times_shorn% + %statz_villager_trades% + %statz_villager_trades_% + %statz_xp_gained% + ``` -``` -%statz_deaths% -%statz_blocks_broken% -%statz_blocks_placed% -%statz_blocks_broken_% -%statz_blocks_placed_% -%statz_blocks_broken_% -%statz_blocks_placed_% -%statz_caught_items% -%statz_crafted_items% -%statz_damage_taken% -%statz_distance_traveled% -%statz_distance_traveled_allworlds_% -%statz_distance_traveled_% -%statz_distance_traveled_:% -%statz_food_eaten% -%statz_food_eaten_% -%statz_joins% -%statz_mobs_killed% -%statz_mobs_killed_% -%statz_players_killed% -%statz_time_formated_dhm% -%statz_time_formated_dh% -%statz_time_formated_d% -%statz_time_day% -%statz_time_hour% -%statz_time_minute% -%statz_time_played% -%statz_times_shorn% -%statz_villager_trades% -%statz_villager_trades_% -%statz_xp_gained% -``` ---- - ### **[Streaming Drops](https://www.spigotmc.org/resources/76996/)** -> NO DOWNLOAD COMMAND + > NO DOWNLOAD COMMAND + + ``` + %streamingdrops_dropsamount% + %streamingdrops_generaldropsamount% + %streamingdrops_globallivetag% + %streamingdrops_nextdroptime% + %streamingdrops_senddrops% + %streamingdrops_streamerlivetag% + %streamingdrops_topdropsprefix% + %streamingdrops_twitch% + ``` -``` -%streamingdrops_dropsamount% -%streamingdrops_generaldropsamount% -%streamingdrops_globallivetag% -%streamingdrops_nextdroptime% -%streamingdrops_senddrops% -%streamingdrops_streamerlivetag% -%streamingdrops_topdropsprefix% -%streamingdrops_twitch% -``` ---- - ### **[StrikePractice 2](https://www.spigotmc.org/resources/46906/)** -> NO DOWNLOAD COMMAND + > NO DOWNLOAD COMMAND + + ``` + %strikepractice_players% + %strikepractice_next_event_name% + %strikepractice_next_event_time% + %strikepractice_in_fight% + %strikepractice_in_queue% + %strikepractice_in_ranked_queue% + %strikepractice_in_unranked_queue% + %strikepractice_online_staff% + %strikepractice_tps% + %strikepractice_time% + + # Per Player/Event placeholders + %strikepractice_ping% + %strikepractice_kills% + %strikepractice_deaths% + %strikepractice_premiummatches% + %strikepractice_brackets_wins% + %strikepractice_lms_wins% + %strikepractice_party_vs_party_wins% + %strikepractice_player% + %strikepractice_custom_name% + %strikepractice_display_name% + %strikepractice_world% + %strikepractice_global_elo% + %strikepractice_elo_rank% + %strikepractice_elo_% + %strikepractice_party_members% + %strikepractice_party_owner% + %strikepractice_enderpearl_cooldown% + %strikepractice_is_enderpearl_cooldown% + %strikepractice_arena% + %strikepractice_kit% + %strikepractice_raw_arena% + %strikepractice_raw_kit% + %strikepractice_ranked% + %strikepractice_is_cooldown_(tag)% + %strikepractice_cooldown _(tag)% + %strikepractice_duration% + %strikepractice_total_duration% + %strikepractice_opponent% + %strikepractice_opponent_ping% + %strikepractice_cps% + %strikepractice_opponent_cps% + %strikepractice_total_rounds% + %strikepractice_round% + %strikepractice_own_wins% + %strikepractice_opponent_wins% + %strikepractice_is_bestof% + %strikepractice_build% + %strikepractice_ffa_players% + %strikepractice_ffa_rollback% + %strikepractice_[sumo/juggernaut/koth/lms/brackets]_started% + %strikepractice_enemy_team_members% + %strikepractice_own_team_members% + %strikepractice_enemy_team_left% + %strikepractice_own_team_left% + %strikepractice_search_range1% + %strikepractice_search_range1% + %strikepractice_queuetype% + %strikepractice_wait_time% + %strikepractice_current_fight_player1% + %strikepractice_current_fight_player2% + %strikepractice_player1_ping% + %strikepractice_player2_ping% + %strikepractice_player1_cps% + %strikepractice_player2_cps% + %strikepractice_players_left% + %strikepractice_total_players% + %strikepractice_estimated_time_left% + %strikepractice_alive% + %strikepractice_timer% + %strikepractice_capper% + %strikepractice_capper_team% + %strikepractice_juggernaut% + %strikepractice_limits_update% + %strikepractice_rankeds_left% + %strikepractice_rank% + %strikepractice_unrankeds_left% + + %strikepractice_top_[stats][number]% + %strikepractice_top_[stats][number]_value% + ``` -``` -%strikepractice_players% -%strikepractice_next_event_name% -%strikepractice_next_event_time% -%strikepractice_in_fight% -%strikepractice_in_queue% -%strikepractice_in_ranked_queue% -%strikepractice_in_unranked_queue% -%strikepractice_online_staff% -%strikepractice_tps% -%strikepractice_time% -``` - -Per Player/Event placeholders: -``` -%strikepractice_ping% -%strikepractice_kills% -%strikepractice_deaths% -%strikepractice_premiummatches% -%strikepractice_brackets_wins% -%strikepractice_lms_wins% -%strikepractice_party_vs_party_wins% -%strikepractice_player% -%strikepractice_custom_name% -%strikepractice_display_name% -%strikepractice_world% -%strikepractice_global_elo% -%strikepractice_elo_rank% -%strikepractice_elo_% -%strikepractice_party_members% -%strikepractice_party_owner% -%strikepractice_enderpearl_cooldown% -%strikepractice_is_enderpearl_cooldown% -%strikepractice_arena% -%strikepractice_kit% -%strikepractice_raw_arena% -%strikepractice_raw_kit% -%strikepractice_ranked% -%strikepractice_is_cooldown_(tag)% -%strikepractice_cooldown _(tag)% -%strikepractice_duration% -%strikepractice_total_duration% -%strikepractice_opponent% -%strikepractice_opponent_ping% -%strikepractice_cps% -%strikepractice_opponent_cps% -%strikepractice_total_rounds% -%strikepractice_round% -%strikepractice_own_wins% -%strikepractice_opponent_wins% -%strikepractice_is_bestof% -%strikepractice_build% -%strikepractice_ffa_players% -%strikepractice_ffa_rollback% -%strikepractice_[sumo/juggernaut/koth/lms/brackets]_started% -%strikepractice_enemy_team_members% -%strikepractice_own_team_members% -%strikepractice_enemy_team_left% -%strikepractice_own_team_left% -%strikepractice_search_range1% -%strikepractice_search_range1% -%strikepractice_queuetype% -%strikepractice_wait_time% -%strikepractice_current_fight_player1% -%strikepractice_current_fight_player2% -%strikepractice_player1_ping% -%strikepractice_player2_ping% -%strikepractice_player1_cps% -%strikepractice_player2_cps% -%strikepractice_players_left% -%strikepractice_total_players% -%strikepractice_estimated_time_left% -%strikepractice_alive% -%strikepractice_timer% -%strikepractice_capper% -%strikepractice_capper_team% -%strikepractice_juggernaut% -%strikepractice_limits_update% -%strikepractice_rankeds_left% -%strikepractice_rank% -%strikepractice_unrankeds_left% - -%strikepractice_top_[stats][number]% -%strikepractice_top_[stats][number]_value% -``` ---- - ### **[stTitles](https://www.spigotmc.org/resources/8310/)** -> NO DOWNLOAD COMMANDS + > NO DOWNLOAD COMMANDS + + ``` + %sttitles_name% + %sttitles_id% + %sttitles_display% + %sttitles_content% + ``` -``` -%sttitles_name% -%sttitles_id% -%sttitles_display% -%sttitles_content% -``` ---- - ### **[SubServers](https://github.com/ME1312/SubServers-2)** -> NO DOWNLOAD COMMAND + > NO DOWNLOAD COMMAND + + ``` + %subservers_proxies()% + %subservers_proxy.displayname()% + %subservers_proxy.type()_{Master Proxy, Proxy}% + %subservers_proxy.players()% + %subservers_proxy.subdata()_{Connected, Disconnected}% + %subservers_proxy.subdata.channels()% + %subservers_proxy.subdata.subchannels()% + %subservers_proxy.signature()% + + %subservers_hosts()% + %subservers_host.displayname()% + %subservers_host.available()_{Available, Unavailable}% + %subservers_host.enabled()_{Enabled, Disabled}% + %subservers_host.address()% + %subservers_host.creator.templates()% + %subservers_host.creator.template.displayname(,