Consider speed when both Aim and Speed are on roughly equal levels #1
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
As long as aim is > speed, consider the % difference between these 2.
Ratio = Speed / Aim
If Ratio < 0.2, take 10% of speed and use that as full value
If 0.2 < Ratio < 0.5, take 33% of speed and use that as full value
If 0.5 < Ratio < 0.75, take 50% of Speed and use that as full value
if 0.75 < Ratio < 0.85, take 66% of Speed and use that as full value
If 0.85 < Ratio, take 80% of speed and use that as full value
fixed