Live Sample: Better Level Selection In Video Games

Players of online video games will have experienced a phenomenon: An annoying habit of multiplater games to select the same level for a given group of players, regardless of them having played that same map for the last 2 or 3 games. Even in games where the group of players stay together between matches. Sometimes especially in games where the group of players stays together between matches.

And while confirmation bias will play a major role in this phenomenon, there is a better way to select a level which this example will demonstrate. By weighting the selection of levels by the time since the players in a given group has played the various levels, a much more varied level selection process can be created.

Also, this example widget was built in Vue as a basic competancy demonstrator.

Player Histories Sample Data

  • Player {{player}}:
    • Level {{level}}: {{count}}

Calculating Level Weights

The simplest solution would be to add the level scores together of all players in the group, and pick the level with the highest score. Reset that level's score to zero for each player, and then increment the scores of the remaining levels by 1. That would be entirely satisfactory to most players.

  • Level {{level}}: {{score}}

Should a degree of randomness be desired, it would be very easy to add a random factor to the scores of levels when determening a level to play. This examples uses a 0 to 5 range, and are randomly generated on page load and on level reset.

  • Random-ish Level {{level}}: {{score}} ({{levelScores[level]}}+{{levelRands[level]}})

It is also common practise for game developers to wish to prioritize or deprioritize certain pieces of content for their users, including levels. If this is desired, it is also simple to add or subtract fixed weight values to the weight scores of any given level.

  • Weighted Level {{level}}: {{score}} ({{levelScores[level]}}+{{levelWeights[level]}})

Of course, both techniques can easily be used at the same time.

  • Final Level {{level}}: {{score}} ({{levelScores[level]}}+{{levelWeights[level]}}+{{levelRands[level]}})

Summary

In the event of ties at the top score, the tie-breaking can be random or arbitrary. This example defaults to the highest alphabetical level, as the "newest" level and presumed to be the most desired to be featured to the players by the developer.

Using the current data, the next level is:

Level {{getNextLevel()}}

After the is completed, continue the process by resetting the played level's score to zero for all involved players, and incrementing all other level scores for the players by 1.

Cycle Levels

This technique increases in value and effectiveness the longer a group of players continues to play together, and with the amount of available levels in the game for the players to play.