The scoring system for League 2023 is based on leaderboard positions. The higher your run sits on the category leaderboard, the more points you'll earn.
In general, each rank you climb will earn you one extra point. However, once you enter the top 10, you'll get two points per rank. And when you enter the top 5, you'll get three points per rank.
Whatever your rank, you'll always earn some points. Exactly how many depends on the category. Longer categories pay out a few more points than shorter ones, to account for the extra effort that goes into learning and practicing longer categories.
The exact calculation used is shown in the formula below. You can try it out for yourself, using the calculator tool, further down the page.
For more information on scoring, head over to the SM64 Romhacks Discord server.
league_pb_rank
- the position of your league PB on the league category leaderboardnumber_of_league_participants
- the total number of participants in the leagueleague_pb_in_milliseconds
- the total time of your league PB, in millisecondsleague_pb_in_seconds_floor
- the total time of your league PB, in seconds, rounded downleague_pb_in_seconds_ceiling
- the total time of your league PB, in seconds, rounded upinitial_pb_in_milliseconds
- the total time of your initial PB, in millisecondsinitial_pb_in_seconds_floor
- the total time of your initial PB, in seconds, rounded downinitial_pb_in_seconds_ceiling
- the total time of your initial PB, in seconds, rounded upa * b
- a
multiplied by b
a ** b
- a
to the power of b
a // b
- how many full lots of a
fit into b
(also known as "integer divide")a % b
- a
modulo b
min(a, b, ...)
- the lowest of a, b, ...
max(a, b, ...)
- the highest of a, b, ...
abs(a)
- the absolute value of a
baseline = 10
rank_bonus_1 = max(0, number_of_league_participants + 1 - league_pb_rank)
rank_bonus_2 = max(0, 11 - league_pb_rank)
rank_bonus_3 = max(0, 6 - league_pb_rank)
final_score = baseline + rank_bonus_1 + rank_bonus_2 + rank_bonus_3