kasperpeulen / euclidthegame

A geometry game based on Euclid's Elements.
euclidthegame.org
MIT License
447 stars 74 forks source link

Can't submit the score #296

Closed e3e6 closed 10 years ago

e3e6 commented 10 years ago

I've completed all the levels, but I can't submit the score.

You have doStuff function that do submit if totascore is more than 30.

function doStuff()
      {
        var nameElement = document.getElementById("someInput");
        var theName = nameElement.value;
        if (totalscore > 30){

But my totalscore is equivalent to count of golden medals which can't be bigger than 27. Image of Wrong totalscore

kasperpeulen commented 10 years ago

The maximum golden medals is 50. One for the tutorial, one for the first Level. And from Level 2 you can earn 2 golden medals for each level. One for the primitive record and one for the normal record.

The reason that I only allow scores to be submitted higher than 30, is because I don't have a good system yets that automatically checks the score and manages it. So, basicly the score gets send to my email, and if I see some records in your score, I change the record, and if I see that your score is higher than the current scores I will add you to the highscores.

I used to get 100's of mails a day, and most where useless of course, so now I filter only for scores that have a change to be in the top 10 highscore.

e3e6 commented 10 years ago

The maximum golden medals is 50. And from Level 2 you can earn 2 golden medals for each level.

Oh, I haven't thought about that. It probably would be better to add some notification like "You score is too small to be submitted". Thank you for the response.