Addict
Well-known member
- Joined
- Aug 18, 2019
- RedCents
- 570¢
Is it possible to get the assist radius of a mob? I can do something like this I think to check the mobs around my target but I don't know their assist radius:
Where ${npcRadiusCheck} is some user defined number that I am just currently guessing to be 55. I am not even sure if different mobs have different assist ranges..
Code:
Sub validate_single_pull
/declare locX int local ${Spawn[id ${Target.ID}].X}
/declare locY int local ${Spawn[id ${Target.ID}].Y}
/declare addCount int local ${SpawnCount[loc ${locX} ${locY} radius ${npcRadiusCheck} npc targetable noalert 1]}
/if (${addCount} > 1) /return TRUE
/return FALSE
Where ${npcRadiusCheck} is some user defined number that I am just currently guessing to be 55. I am not even sure if different mobs have different assist ranges..


(though at first thought it doesn't sound too complicated but it always is..)