get all targets in a sphere around an entity utilizes targetfind on the entity with parameters for aoe type, validtargets, etc
11 lines
203 B
Lua
11 lines
203 B
Lua
-----------------------------------
|
|
-- AOE_RADIUS enum
|
|
-- Defines the origin (center) of the AoE
|
|
-----------------------------------
|
|
xi = xi or {}
|
|
|
|
xi.aoeRadius =
|
|
{
|
|
ATTACKER = 1,
|
|
TARGET = 2,
|
|
}
|