FelisMalum
Well-known member
- Joined
- Mar 7, 2022
- RedCents
- 439¢
- Pronouns
- She/Her
My rog kept /stick (Any) on the mobs. Took a little digging but the ${DefaultStick} wasnt setting exactly right.
Code:
modmelee.inc ln21 is:
/noparse /declare DefaultStick string outer hold ${If[${Target.Height}<5,9,${Math.Calc[${Target.Height}+3].Int}]} ${If[!${Me.GroupSize} || ${Melee.AggroMode},moveback,${If[${Melee.BackStabbing},behind,!front]}]} ${If[${Me.Underwater},uw,]}
Result:hold 10 moveback
Now:
/noparse /declare DefaultStick string outer hold ${If[${Target.Height}<5,9,${Math.Calc[${Target.Height}+3].Int}]} ${If[!${Me.GroupSize} || ${Melee.AggroMode},moveback,]} ${If[${Melee.BackStabbing},behind,!front,]} ${If[${Me.Underwater},uw,]}
Result:hold 10 moveback behind

