home *** CD-ROM | disk | FTP | other *** search
- _global.comboLogic = function()
- {
- if(_root.comboMeter)
- {
- this.gotoAndStop(_root.hitCount);
- targetx = _root.game.player._x - _root.playerDir * 70;
- targety = _root.game.player._y - 20;
- _root.comboCount = _root.comboCount - 1;
- if(_root.comboCount < 0)
- {
- this._alpha -= 10;
- if(this._alpha < 0)
- {
- _root.comboMeter = false;
- _root.score += _root.hitCount * 10;
- _root.hitCount = 0;
- }
- }
- else if(this._alpha < 100)
- {
- this._alpha += (100 - this._alpha) / 4;
- }
- }
- else
- {
- this._alpha = 0;
- targetx = _root.game.player._x + _root.playerDir * 70;
- targety = _root.game.player._y - 20;
- }
- this._x += (targetx - this._x) * 1.8;
- this._y += (targety - this._y) * 1.8;
- };
-