home *** CD-ROM | disk | FTP | other *** search
- waiting = false;
- ends_message = "END: " + end_no;
- score_message = ends_message + totals_message;
- ball = 1;
- while(totalballs >= ball)
- {
- in_zone[ball] = true;
- realx[ball] = -999 * ball;
- realy[ball] = -999 * ball;
- stone_status[ball] = "bright";
- ball++;
- }
- stoneboard.display_stones();
- player_no = 1;
- first_play = "computer";
- stone_in_use = 0;
- if(end_no == 2)
- {
- if(user_score < computer_score)
- {
- trace("computer 1st");
- player_no = 1;
- first_play = "computer";
- }
- else
- {
- trace("human 1st");
- player_no = 0;
- first_play = "user";
- }
- }
-