You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I tried to modify the maximum Fraction Digits of the effective distance by modifying targetbars.js. But I found in debugging that the effective distance returned by the trigger event is an integer. Is there any other way to modify this maximum Fraction Digits? I really like to output at the farthest distance, so that when dealing with the mechanism, it will not run too far and lose damage. That’s why I had this idea, and wanted to know if I could be accurate to decimals instead of rounding up. thx
The text was updated successfully, but these errors were encountered:
The effective distance is an integer in memory, unfortunately.
If you want to fix this, I think you'd need to dig up the memory offset of the combatant radius and add it to CombatantMemory. Then you could calculate EffectiveDistance by using the Distance calculation and subtracting the radius.
You can use distance instead of effective distance in the short term to figure out how far to run from the center of the mob rather than its edge.
I tried to modify the maximum Fraction Digits of the effective distance by modifying targetbars.js. But I found in debugging that the effective distance returned by the trigger event is an integer. Is there any other way to modify this maximum Fraction Digits? I really like to output at the farthest distance, so that when dealing with the mechanism, it will not run too far and lose damage. That’s why I had this idea, and wanted to know if I could be accurate to decimals instead of rounding up. thx
The text was updated successfully, but these errors were encountered: