It would be good to have a new ranking method for multi, where you can select a specific number of points (N) and rank based on time, only including the results with N points.
We should add a number input (FormNumberInput.tsx) to all Multi-Blind rankings pages (event.format === "multi"). This input should allow all integer numbers from 2 to infinity. On the onBlur event of this input, the user should be redirected to the rankings page with a new filter applied to it: ?multiPoints=.... getRankings() should then filter out all results that have a different number of points (see the exports page for more detail on the multi format; utilityFunctions.test.ts has some examples of Multi-Blind attempts, as stored in the DB).
Example: to get all 10 points results, look for attempts >= 998900000000000 and < 999000000000000.
It would be good to have a new ranking method for multi, where you can select a specific number of points (N) and rank based on time, only including the results with N points.
We should add a number input (
FormNumberInput.tsx) to all Multi-Blind rankings pages (event.format === "multi"). This input should allow all integer numbers from 2 to infinity. On theonBlurevent of this input, the user should be redirected to the rankings page with a new filter applied to it:?multiPoints=....getRankings()should then filter out all results that have a different number of points (see the exports page for more detail on the multi format;utilityFunctions.test.tshas some examples of Multi-Blind attempts, as stored in the DB).Example: to get all 10 points results, look for attempts >= 998900000000000 and < 999000000000000.