> For the complete documentation index, see [llms.txt](https://spintowin.superiormc.cn/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://spintowin.superiormc.cn/jian-ti-zhong-wen-2/configs/tiao-jian.md).

# 条件

### World

只会在指定世界才能满足。

如果有多个世界，请使用 `;;` 隔开。

<pre><code><strong>- 'world: World1;;World2'
</strong></code></pre>

### Permission

玩家必须拥有以下所有权限节点：

如果有多个权限节点，请使用 `;;` 隔开。

<pre><code><strong>- 'permission: permission.1;;permission.2'
</strong></code></pre>

### Placeholder

玩家的 PlaceholderAPI 某个变量必须满足指定条件，该条件由三部分组成，不可缺少其中之一，每个部分用 `;;` 隔开。格式是 `<PlaceholderAPI 变量符>;;<条件字符>;;<需求值>`.

条件字符可以设置为:

* \>=
* <=
* \>
* <
* \== (字符串的等于)
* \= (数字的等于)
* \*= (仅字符串) 包含关系，例如 str \*= string 为真，但是 example \*= ple 为假。

```
- 'placeholder: %player_points%;;>=;;200'
```
