TutorialsLeaderboards

Tutorial: Leaderboards

Leaderboards show authenticated high scores for public games. Guests can submit scores for session tracking, but only signed-in players appear on public boards.

Submit a score

from conjure import *
from conjure.platform import submit_score
 
score = 1250
result = submit_score(score)
 
if result.new_high_score:
    print("New best score")

Pick a scoring rule

Use one clear score per run. Higher values rank above lower values. Submit after a level ends, when the player loses, or when the game has a stable result.

What next

Use save data for personal progress and publishing before sharing the game.