home *** CD-ROM | disk | FTP | other *** search
- i = 1;
- playercounter = numscores + 1;
- while(numscores >= i)
- {
- currentscore = int(eval("score" + i));
- if(scorebox >= currentscore && 0 < scorebox)
- {
- playercounter -= 1;
- HighScore = true;
- NewPlayerScore = scorebox;
- }
- i++;
- }
- if(HighScore)
- {
- gotoAndPlay(8);
- }
- else
- {
- gotoAndPlay(7);
- }
-