placeholder_contains
Passes when the resolved placeholder value contains the specified string.
Categories: meta
Required arguments
| Key(s) | Description | Type |
|---|---|---|
placeholder | The placeholder string to resolve and check. | STRING |
Optional arguments
| Key(s) | Description | Type | Default |
|---|---|---|---|
value | The substring to search for within the resolved placeholder. | STRING | |
ignore_case | Whether the substring match should be case-insensitive. | BOOLEAN | false |
Example
conditions:
- id: placeholder_contains
args:
placeholder: %player_name%
value: <value> # ← Optional
ignore_case: true # ← Optional