home *** CD-ROM | disk | FTP | other *** search
- _global.fotemps = _global.fotemps + 1;
- _global.temps = Math.round(_global.fotemps / 24);
- if(_global.temps < 60)
- {
- _global.distance = 60000 - Math.round(_global.fotemps / 24 * 1000);
- }
- else
- {
- _global.distance = 0;
- }
- distance = _global.distance;
- temps = _global.temps;
- _global.tabTirVaisseau = new Array();
- var i = 0;
- while(i < _global.maxTirVaisseau)
- {
- if(this.tirVaisseauClip["tirVaisseau" + i])
- {
- _global.tabTirVaisseau.push(i);
- }
- i++;
- }
- _global.tabTirEnnemi = new Array();
- var i = 0;
- while(i < _global.maxTirEnnemi)
- {
- if(this.tirEnnemiClip["tirEnnemi" + i])
- {
- _global.tabTirEnnemi.push(i);
- }
- i++;
- }
- this.effaceTexte();
- this.gotoAndPlay(this._currentframe - 1);
-