home *** CD-ROM | disk | FTP | other *** search
- _root.ParticleCounter += 1;
- _root.StationEnergy += 10;
- _root.ScoreCounter += Math.round(this._x / 100) * _root.ComboMultiplier;
- _root.ComboTimer = 30;
- _root.ComboMultiplier = _root.ComboMultiplier + 1;
- _root.ComboShowX = _X;
- _root.ComboShowY = _Y;
- _root.ComboViewer.gotoAndPlay(2);
- this.onEnterFrame = function()
- {
- this._x += (_root.Device._x - this._x) / 10;
- this._y += (_root.Device._y - this._y) / 10;
- if(this.hitTest(_root.Device))
- {
- this.unloadMovie();
- }
- };
-