Conditional

Criteria: Condition

Simple criteria that check if the player meets the given conditions every so often.

Attributes

Attribute Description Default
CheckInterval How often the conditions are checked (in ticks) 20
Sync Whether the check should run synchronously false
Conditions A list of Mythic conditions to check against. Most conditions from MythicMobs, and add-ons, or other compatible plugins should work, although there may be some edge cases that don't (and these usually wouldn't make sense to use anyway)

Examples

SOME_ACHIEVEMENT:
  Criteria:
    A_CONDITIONAL_CRITERIA:
      Type: CONDITIONAL
      CheckInterval: 100
      Conditions:
      - inRegion someRegion
      - health{amount=1}
Updated Aug 19, 2026