Conditions

Visibility Conditions

Conditions are based on expressions containing one or more operators. You can use both Placeholders from PlaceholderAPI and internals from the Value GUI (%value%).

Item Visibility Conditions

Logical Operators

Operator
Description

==

An equality relationship between two elements can be represented using the double-equals sign

!=

A not equals B

>=

A greater than or equal B

<=

A less than or equal B

<

A less than B

>

A greater than B

||

OR, at least one condition needs to be true Example: A <= B || B == B B == B: True A <= B: False Result: True

&&

AND, a pair of conditions needs to be true Example: A <= B && B == B B == B: True A <= B: False Result: False

Examples

"%value% <= 5 && %player_name% == Michael"

"%playerpoints_value% > 1 || %your_favorite_placeholder% != 0"

Resources

Last updated