List
If a player doesn't have enough to meet any D=yes
requirement, none will be taken.
Scroll down for soft-dependent requirements.
Subreq
indicates the requirement uses sub-requirement syntax.
Deduct
indicates the requirement will deduct the specified amount from the player.
Name | Format | Subreq | Deduct | Description | Example |
---|---|---|---|---|---|
money | number | no | yes | Takes the specified amount from the player's balance. | money 1000 |
moneyh | number | no | no | Checks the player's balance for at least the specified amount. | moneyh 10000 |
xp-level | number | no | yes | Takes the specified amount of xp-levels from the player. | xp-level 30 |
xp-levelh | number | no | no | Checks the player's xp-levels for at least the specified amount. | xp-levelh 50 |
playtime-minutes | number | no | no | How long a player has been online, in minutes. Uses the Minecraft statistic. | playtime-minutes 120 |
group | text | no | no | Requires a player to be in at least one of a list of groups, separated by spaces. | group vip mvp |
permission | text | no | no | Requires player to have at least one of a list of permissions, separated by spaces. | permission permission.one permission.two |
world | text | no | no | Requires a player to be in any of the worlds listed, separated by spaces. | world my_world_nether my_world_the_end |
player-kills | number | no | no | Players killed. Uses the Minecraft statistic. | player-kills 15 |
total-mob-kills | number | no | no | The total amount of mob kills a player has. | total-mob-kills 500 |
mob-kills | number | yes | no | Mobs of the specified type killed. Uses the Minecraft statistic. | mob-kills Skeleton 100 |
item | number | yes | yes | The amount of items a player currently has. | item DIAMOND 64 |
itemh | number | yes | no | As prior, but does not deduct the items. | itemh GLASS 64 |
use-item | number | yes | no | The amount of times a player has used an item. | use-item DIAMOND_SWORD 200 |
block-break | number | yes | no | The amount of times a player has broken a block | block-break STONE 1000 |
craft-item | number | yes | no | The amount of times a player has crafted an item | craft-item STONE_BRICKS 256 |
advancement | text | no | no | Checks for a specific Minecraft advancement | advancement story/obtain_armor |
Soft-Dependent Requirements
What are Soft-dependent Requirements?
These requirements expect another plugin dependency to be installed as well. If you don't have the plugin you're using a requirement from installed, THEY WILL NOT WORK
Name | Format | Subreq | Deduct | Description | Example |
---|---|---|---|---|---|
placeholder | text | no | no | Operation can be any of:= , < , > , <= , >= , == Compares the PAPI with the string via the operation. = doesn't convertthe data type of the string or placeholder. All other operations will convert to a double first. | placeholder %papi_placeholder% <operation> string placeholder %server_tps% >= 19 |
mcmmo | number | yes | no | Requires a player to have a certain level in an McMMO Skill also named here. | mcmmo skillname number mcmmo archery 1000 |
mcmmo-power-level | number | no | no | Requires a player to have a certain power level in McMMO. | mcmmo-power-level 500 |
advancedachievements-achievement | text | no | no | At least one of certain advanced achievements, separated by spaces. | advancedachievements-achievement own_shop start_town |
advancedachievements-total | text | no | no | The total number of advanced achievements a player has. | advancedachievements-total 20 |
votingplugin-votes | text | no | no | The amount of votes a player has, counted by VotingPlugin. | votingplugin-votes 10 |
towny-resident | bool | no | no | Requires a player to (not) be a resident of a town. | towny-resident true |
towny-mayor | bool | no | no | Requires a player to (not) be a mayor of a town. | towny-mayor true |
towny-king | bool | no | no | Requires a player to (not) be a king of a nation. | towny-king true |
towny-mayor-residents | number | no | no | The amount of residents a player's town has (need to be mayor). | towny-mayor-residents 10 |
towny-king-residents | number | no | no | The amount of residents a player's nation has (need to be king). | towny-king-residents 10 |
towny-king-towns | number | no | no | The amount of towns a player's nation has (need to be king). | towny-king-towns 10 |
tokenmanager-tokens | number | no | yes | The amount of tokens from the plugin TokenManager. | tokenmanager-tokens 10 |
tokenmanager-tokensh | number | no | no | As above, without deduction | tokenmanager-tokensh 10 |