placeholder_contains

Passes when the resolved placeholder value contains the specified string.

Categories: meta

Required arguments

Key(s)DescriptionType
placeholderThe placeholder string to resolve and check.STRING

Optional arguments

Key(s)DescriptionTypeDefault
valueThe substring to search for within the resolved placeholder.STRING
ignore_caseWhether the substring match should be case-insensitive.BOOLEANfalse

Example

conditions:
  - id: placeholder_contains
    args:
      placeholder: %player_name%
      value: <value> # ← Optional
      ignore_case: true # ← Optional