Archetype Level

Description

Matches the player's archetype level in a given group. Useful for gating progression-based content.

The level attribute accepts a ranged value, so you can compare for equality or against a range:

  • level=5 — exactly 5
  • level=>10 — greater than 10
  • level=<5 — less than 5
  • level=5to15 — between 5 and 15 inclusive

Attributes

Attribute Aliases Description Default
level l The level to check, as a ranged value. Falls back to the unkeyed argument if omitted required
group g The archetype group CLASS
archetype type, a, class, c If set, checks the level of this specific archetype rather than whichever archetype is currently active (active archetype in group)

Examples

Conditions:
- archetypelevel{group=CLASS;level=>10} true
- archetypelevel{group=CLASS;archetype=Wizard;level=20to30} true

Aliases

  • classlevel
Updated Aug 19, 2026