home *** CD-ROM | disk | FTP | other *** search
- function initStage()
- {
- this.neko_mc_list = [];
- this.gotoAndPlay("stage" + String(_parent.stage_num));
- this.txt1 = "stage " + _parent.stage_num;
- this.neko_end_cnt = 0;
- this.neko_goal_cnt = 0;
- }
- function gameStart()
- {
- i = 1;
- while(i <= 10)
- {
- this["mc_neko" + i].entryStartRun();
- i++;
- }
- }
- function start_timer()
- {
- var _loc2_ = new Date();
- this.start_ms = _loc2_.getTime();
- }
- function get_past_time()
- {
- var _loc3_ = new Date();
- var _loc2_ = _loc3_.getTime() - this.start_ms;
- return _loc2_;
- }
- this.initStage();
- this.stop();
-