eBaum's World High Score System
Making a game compatible with the eBaum's World high score and tournament
system is very simple. All that is required is that at the end of your game
the score should be submitted to '/arcade/addscore/score=[yourScoreVariable]'.
Where [yourScoreVariable] is the name of the variable being used in your
actionscript. To be compatible with the tournament system the submitting of
the score should happen automatically at the end of the game, to prevent the
user from playing again.
As an example you could add the following to your actionscript at the end of the game:
if (_url.indexOf('ebaumsworld.com') != -1) {
getUrl('/arcade/addscore/score=' + [yourScoreVariable], "_self", "POST");
}
Scores that are submitted as a decimal value instead of a whole number will be
rounded up to the nearest whole number. Also, currently the high score system
only handles games where higher score is better. So golf style games are
not supported at this time.