Skip to main content
Targets every player within N blocks of the mob. The radius goes in square brackets:

When to use it

This is the bread and butter of boss design: AoE attacks, warnings to nearby players, greetings, area buffs and debuffs.
Note the pattern in smash: the warning ring is drawn at the mob (@self), then the blast hits everyone in range half a second later. Telegraph wide, hit narrow.

Details

  • The radius is measured from the mob’s position at the moment the line runs.
  • It resolves to zero, one or many players. The mechanic runs once per player. No players in range means the line does nothing.
  • Pick the radius per line, not per mob. A warning can reach 30 blocks while the damage only reaches 5, like the example above.
To include non-player entities, use @entitiesRadius. To target only non-players, use @mobsRadius.