home *** CD-ROM | disk | FTP | other *** search
- function initGame()
- {
- this.mouse_press_flg = false;
- this.stage_num = 1;
- this.score = 0;
- if(this.game_mode == 1)
- {
- this.neko = 10;
- }
- else
- {
- this.neko = 99;
- }
- this.dispScore();
- }
- function dispScore()
- {
- this.mc_score.disp_num(this.score);
- this.mc_hiscore.disp_num(this.hiscore);
- }
- function addScore(n)
- {
- this.score += n;
- if(this.score >= this.hiscore)
- {
- this.hiscore = this.score;
- }
- this.mc_score.disp_num(this.score);
- this.mc_hiscore.disp_num(this.hiscore);
- }
- this.hiscore = 0;
- this.last_stage_num = 6;
-