Feature - Enhancement #1300
AutoTarget - Filter By Height
0%
Description
Can you please add an additional slider bar to allow Y-Axis filtering? Targetting mobs that are "levels" above or below you is very annoying.
Updated by bjcasey almost 10 years ago
You can add the following code to go with the new slider bar variable. Change lines 58 to 62 with the following:
if ${Target.ID} != ${ValidTargetID}
{
;// echo ${Time}: Y-Axis Check: ${Math.Abs[${Me.ToActor.Y}-${Actor[id,${ValidTargetID}].Y}]} <= ${slider_autotarget_scanradius_Y}
if ${Math.Abs[${Me.ToActor.Y}-${Actor[id,${ValidTargetID}].Y}]} <= ${slider_autotarget_scanradius_Y}
target ${ValidTargetID}
}
}
Updated by Kannkor over 8 years ago
- Status changed from New to Implemented
Oh... this is what you meant by you gave me the code to do it "a long time ago"...
Implemented none the less!