Entities Near Origin

Description

Targets all entities in the given radius around the origin of the metaskill.
This targeter is an extension of the EntitiesInRadius Targeter and can, as such, use any of its attributes

Attributes

This targeter has no unique attributes, but can use the EntitiesInRadius's ones

Examples

In this example, when the created projectile ends for whatever reason, it will damage every living entity in a 2 block radius around itself

  Skills:
  - projectile{...;
    onTick=[
      - effect:particles @origin
    ];
    onEnd=[
      - damage{a=10} @ENO{r=2}
    ]
    } @target

Aliases

  • NearOrigin
  • ENO
Updated Aug 19, 2026