STORY   LOOP   FURRY   PORN   GAMES
• C •   SERVICES [?] [R] RND   POPULAR
Archived flashes:
228131
/disc/ · /res/     /show/ · /fap/ · /gg/ · /swf/P0001 · P2561 · P5121

<div style="position:absolute;top:-99px;left:-99px;"><img src="http://swfchan.com:57475/68641908?noj=FRM68641908-15DC" width="1" height="1"></div>

MindShock Fighting Engine.swf

This is the info page for
Flash #76122

(Click the ID number above for more basic data on this flash file.)


Text
RESPAWN

BOSS TEST

<p align="left"><font face="Arial Black" size="12" color="#ffffff" letterSpacing="0.000000" kerning="1">(Combo)</font></p>

<p align="left"><font face="Impact" size="12" color="#ffffff" letterSpacing="0.000000" kerning="1">(Combo)</font></p>

KO

<p align="left"><font face="Impact" size="12" color="#ffffff" letterSpacing="0.000000" kerning="1">KO</font></p>

<p align="left"><font face="Impact" size="12" color="#ffffff" letterSpacing="0.000000" kerning="1">KO</font></p>

ActionScript [AS1/AS2]

Frame 9
_root.firing = 0; _root.airfiring = 0; _root.p2firing = 0; _root.enemyhit = 0; _root.kills = 0; _root.bgflash = 0; _root.SP = 0; _root.Combo = 0; _root.ComboTimer = 0; _root.KO = 0;
Frame 10
stop();
Instance of Symbol 39 MovieClip in Frame 10
onClipEvent (enterFrame) { if (_root.bgflash == 1) { gotoAndStop (2); } else { gotoAndStop (1); } }
Instance of Symbol 41 MovieClip in Frame 10
onClipEvent (enterFrame) { this._x = _root.guy._x; }
Instance of Symbol 176 MovieClip "guy" in Frame 10
onClipEvent (load) { this.hp = 100; this.atk = 40; this.attdmg = 100; this.def = 50; this.speed = 15; this.moving = 0; this.falling = 0; this.jumping = 0; this.jumps = 2; this.dbljump = 0; this.gravity = 4; this.fallspeed = 0; this.specialmax = 3; this.special = 0; this.alive = 1; this.attacking = 0; this.canatt = 1; this.canhit = 0; this.stanceidle = 0; this.crouch = 0; this.counter = 0; this.countering = 0; this.counterhit = 0; this.blocking = 0; this.blockhit = 0; this.dash = 0; this.throwing = 0; this.throwhit = 0; this.attLP = 0; this.attHP = 0; this.attLK = 0; this.attHK = 0; this.attALP = 0; this.attAHP = 0; this.attALK = 0; gotoAndStop (1); this.btnLP = 90; this.btnHP = 65; this.btnLK = 88; this.btnHK = 83; this.btnCounter = 81; this.btnBlock = 87; } onClipEvent (enterFrame) { if (this.alive == 1) { if (this.hp < 100) { this.hp = this.hp + 0.1; } if (_root.enemyhit == 1) { gotoAndStop (9); this.counter = 0; this.attLP = 0; this.attHP = 0; this.attLK = 0; this.attHK = 0; this.moving = 0; this.crouch = 0; this.attacking = 0; this.countering = 0; this.blocking = 0; this.throwing = 0; this.throwhit = 0; if (Key.isDown(87)) { if ((this.canatt == 1) && (this._y < 400)) { this.counter = 0; this.blocking = 1; this.attLP = 0; this.attHP = 0; this.attLK = 0; this.attHK = 0; this.stanceidle = 0; this.moving = 0; this.attacking = 0; this.canhit = 0; this.throwing = 0; } } } else if (this._y < 400) { this.crouch = 0; if (Key.isDown(90)) { if (this.canatt == 1) { this.attacking = 1; this.attdmg = this.atk * 1; this.attALP = 1; this.attALK = 0; this.attAHP = 0; this.attLP = 0; this.attHP = 0; this.attLK = 0; this.attHK = 0; this.stanceidle = 0; this.moving = 0; this.blocking = 0; this.throwing = 0; } } if (Key.isDown(88)) { if (this.canatt == 1) { this.attacking = 1; this.attdmg = this.atk * 1; this.attALP = 0; this.attALK = 1; this.attAHP = 0; this.attLP = 0; this.attHP = 0; this.attLK = 0; this.attHK = 0; this.stanceidle = 0; this.moving = 0; this.blocking = 0; this.throwing = 0; } } if (Key.isDown(65)) { if (((this.canatt == 1) && (_root.SP > 9)) && (_root.airfiring == 0)) { this.attacking = 1; this.attdmg = this.atk * 1; this.attALP = 0; this.attALK = 0; this.attAHP = 1; this.attLP = 0; this.attHP = 0; this.attLK = 0; this.attHK = 0; this.stanceidle = 0; this.moving = 0; this.blocking = 0; this.throwing = 0; } } if (this.jumping == 0) { this.fallspeed = this.fallspeed + this.gravity; this._y = this._y + this.fallspeed; if (this.attALP == 0) { gotoAndStop (2); } this.falling = 1; if (Key.isDown(37)) { if (this._x > 0) { this._x = this._x - this.speed; } this._xscale = -100; } if (Key.isDown(39)) { if (this._x < 700) { this._x = this._x + this.speed; this._xscale = 100; } } } else if (this.jumping == 1) { this.fallspeed = this.fallspeed + this.gravity; this._y = this._y + this.fallspeed; if (((this.attALP == 0) && (this.attAHP == 0)) && (this.attALK == 0)) { gotoAndStop (5); } this.falling = 1; if (Key.isDown(37)) { if (this._x > 0) { this._x = this._x - this.speed; if (this.dash == 1) { this._x = this._x - this.speed; } } this._xscale = -100; } if (Key.isDown(39)) { if (this._x < 700) { this._x = this._x + this.speed; if (this.dash == 1) { this._x = this._x + this.speed; } } this._xscale = 100; } if (this.attALP == 1) { gotoAndStop (21); } if (this.attAHP == 1) { gotoAndStop (22); } if (this.attALK == 1) { gotoAndStop (25); if (this._xscale == -100) { this._x = this._x - 15; } else { this._x = this._x + 15; } } if (Key.isDown(38)) { if (this.dbljump == 2) { this.dbljump = 1; this.fallspeed = -40; gotoAndStop (3); gotoAndStop (2); this.jumping = 0; this.blocking = 0; } } } } else { if (this.hp < 1) { this.alive = 0; this.blocking = 0; this.countering = 0; this.counterhit = 0; this.throwing = 0; } if (this.attALP == 1) { this.canhit = 0; this.attALP = 0; } if (this.attALK == 1) { this.canhit = 0; this.attALK = 0; this.attacking = 0; } if (this.attAHP == 1) { this.canhit = 0; this.attAHP = 0; } this._y = 401; this.jumping = 0; this.dbljump = 1; if (Key.isDown(87)) { if (this.canatt == 1) { this.throwing = 0; this.counter = 0; this.countering = 0; this.counterhit = 0; this.blocking = 1; this.attLP = 0; this.attHP = 0; this.attLK = 0; this.attHK = 0; this.stanceidle = 0; this.moving = 0; this.attacking = 0; this.canhit = 0; this.dash = 0; } } if (Key.isDown(32)) { if (this.canatt == 1) { this.attacking = 1; this.throwing = 1; this.counter = 0; this.countering = 0; this.counterhit = 0; this.blocking = 0; this.attLP = 0; this.attHP = 0; this.attLK = 0; this.attHK = 0; this.stanceidle = 0; this.moving = 0; this.attacking = 0; this.canhit = 0; this.dash = 0; } } if (Key.isDown(81)) { if (this.canatt == 1) { if (Key.isDown(37) || (Key.isDown(39))) { this.throwing = 0; this.counter = 0; this.dash = 1; this.blocking = 0; this.attLP = 0; this.attHP = 0; this.attLK = 0; this.attHK = 0; this.stanceidle = 0; this.moving = 0; this.attacking = 0; this.canhit = 0; this.countering = 0; } else { this.throwing = 0; this.counter = 1; this.blocking = 0; this.attLP = 0; this.attHP = 0; this.attLK = 0; this.attHK = 0; this.stanceidle = 0; this.moving = 0; this.attacking = 0; this.canhit = 0; this.dash = 0; } } } if (Key.isDown(90)) { if (this.canatt == 1) { this.throwing = 0; this.attacking = 1; this.blocking = 0; this.attdmg = this.atk * 1; this.attLP = 1; this.attHP = 0; this.attLK = 0; this.attHK = 0; this.stanceidle = 0; this.moving = 0; this.falling = 0; this.jumping = 0; this.dash = 0; } } if (Key.isDown(88)) { if (this.canatt == 1) { this.throwing = 0; this.attacking = 1; this.blocking = 0; this.attdmg = this.atk * 1.2; this.attLP = 0; this.attHP = 0; this.attLK = 1; this.attHK = 0; this.stanceidle = 0; this.moving = 0; this.falling = 0; this.jumping = 0; this.dash = 0; } } if (Key.isDown(83)) { if (this.canatt == 1) { this.throwing = 0; this.attacking = 1; this.blocking = 0; this.attdmg = this.atk * 2.5; this.attLP = 0; this.attHP = 0; this.attLK = 0; this.attHK = 1; this.stanceidle = 0; this.moving = 0; this.falling = 0; this.jumping = 0; this.canatt = 0; this.dash = 0; } } if (Key.isDown(65)) { if ((this.canatt == 1) && (_root.firing == 0)) { this.throwing = 0; this.attacking = 1; this.blocking = 0; this.attdmg = this.atk * 1; this.attLP = 0; this.attHP = 1; this.attLK = 0; this.attHK = 0; this.stanceidle = 0; this.moving = 0; this.falling = 0; this.jumping = 0; this.canatt = 0; this.dash = 0; } } if (Key.isDown(38) && (this.attHK != 1)) { this.throwing = 0; this.fallspeed = -40; this.blocking = 0; this._y = 395; this.jumping = 1; this.falling = 1; this.stanceidle = 0; this.attacking = 0; this.dash = 0; } if (Key.isDown(37)) { if (this.attacking == 0) { if (this._x > 0) { if (this.crouch == 1) { this._x = this._x - (this.speed / 2); } else { this._x = this._x - this.speed; } this.stanceidle = 0; this.moving = 1; } this._xscale = -100; } } else if (Key.isDown(39)) { if (this.attacking == 0) { if (this._x < 700) { if (this.crouch != 0) { this._x = this._x + (this.speed / 2); } else { this._x = this._x + this.speed; } this.stanceidle = 0; this.moving = 1; } this._xscale = 100; } } else { this.moving = 0; this.dash = 0; this.stanceidle = 1; } if (Key.isDown(40)) { if (this.crouch == 0) { this.crouch = 2; this.dash = 0; } } if (this.counter == 1) { this.attLP = 0; this.attHP = 0; this.attLK = 0; this.attHK = 0; this.stanceidle = 0; this.moving = 0; this.falling = 0; this.jumping = 0; if (this.counterhit == 0) { gotoAndStop (19); } else { gotoAndStop (20); } } if (this.blocking == 1) { this.attLP = 0; this.attHP = 0; this.attLK = 0; this.attHK = 0; this.stanceidle = 0; this.moving = 0; this.falling = 0; this.jumping = 0; gotoAndStop (23); } if (this.attHK == 0) { if (this.attLP == 1) { if (this.crouch == 1) { gotoAndStop (16); } else { this.crouch = 0; gotoAndStop (7); } this.stanceidle = 0; this.moving = 0; } if (this.attHP == 1) { if (this.crouch == 1) { gotoAndStop (17); } else { this.crouch = 0; gotoAndStop (8); } this.stanceidle = 0; this.moving = 0; } if (this.attLK == 1) { if (this.crouch == 1) { gotoAndStop (18); } else { this.crouch = 0; gotoAndStop (10); } this.stanceidle = 0; this.moving = 0; } } if (this.attHK == 1) { gotoAndStop (11); this.stanceidle = 0; this.moving = 0; this.attacking = 1; this.crouch = 0; } if (this.throwing == 1) { if (this.throwhit == 1) { gotoAndStop (27); } else { gotoAndStop (26); } this.attacking = 1; this.canatt = 0; this.stanceidle = 0; this.moving = 0; } if ((this.falling == 1) && (this.jumping == 0)) { gotoAndStop (3); this.fallspeed = 0; this.moving = 0; this.stanceidle = 0; } if (this.stanceidle == 1) { if (this.crouch == 2) { gotoAndStop (13); } else if (this.crouch == 1) { gotoAndStop (12); if (Key.isDown(40)) { } else { this.crouch = 3; } } else if (this.crouch == 3) { gotoAndStop (14); } else { gotoAndStop (1); this.crouch = 0; } this.falling = 0; } if ((this.moving == 1) && (this.dash == 0)) { if (this.crouch == 1) { gotoAndStop (15); } else { gotoAndStop (6); } } if (this.dash == 1) { gotoAndStop (24); this.canatt = 0; } if (this.attacking == 0) { this.attLP = 0; this.attHP = 0; this.attLK = 0; this.attHK = 0; this.canatt = 1; } } } else { gotoAndStop (4); this.counter = 0; this.countering = 0; this.counterhit = 0; } }
Instance of Symbol 223 MovieClip in Frame 10
onClipEvent (load) { this.hp = 300; this.attack = 7; this.defense = random(80); this.alive = 1; this.moving = 0; this.attacking = 0; this.strategy = 0; this.strategytime = 5; this.hit = 0; this.inrange = 0; this.counterhit = 0; this.blockhit = 0; this.blocking = 0; this.thrown = 0; this.throwhit = 0; } onClipEvent (enterFrame) { if (this.alive == 1) { if (this.counterhit == 1) { gotoAndStop (7); } else if (this.blockhit == 1) { gotoAndStop (8); } else if (this.thrown == 1) { gotoAndStop (10); } else { if (this.hitTest(_root.guy) && (this.attacking == 0)) { this.inrange = 1; } if (this.hitTest(_root.fireball)) { this.hit = 3; this.hp = this.hp - _root.fireball.damage; _root.fireball.gotoAndStop(2); } if (this.hitTest(_root.airfireball)) { this.hit = 3; this.hp = this.hp - _root.airfireball.damage; } if ((this.hitTest(_root.guy) && (_root.guy.canhit == 1)) && (_root.guy.throwhit != 1)) { if (_root.guy.throwing == 1) { _root.guy.throwhit = 1; this.blocking = 0; this.blockhit = 0; this.moving = 0; this.attacking = 0; this.strategy = 2; this.strategytime = 150; this.thrown = 1; } else if (this.blocking == 0) { this.hit = 1; _root.guy.canhit = 0; this.hp = (this.hp - _root.guy.attdmg) - this.defense; } else { this.blocking = 0; this.blockhit = 1; this.moving = 0; this.attacking = 0; this.strategy = 3; } } if (this.hit != 0) { gotoAndStop (2); this.moving = 0; this.attacking = 0; this.inrange = 0; } else { if (this.blocking == 1) { this.attacking = 0; this.inrange = 0; this.moving = 0; } if (this.inrange == 1) { this.attacking = 1; this.inrange = 0; this.moving = 0; } if (this.attacking == 1) { gotoAndStop (6); this.moving = 0; this.inrange = 0; } else if ((this.moving == 1) || (this.moving == 2)) { gotoAndStop (3); this.inrange = 0; } else if (this.blocking == 1) { gotoAndStop (9); } else { gotoAndStop (1); } } this.strategytime = this.strategytime - 1; if (this.strategy < 2) { this.moving = 0; this.blocking = 0; } else if (this.strategy < 3) { this.moving = 1; this.blocking = 0; } else if (this.strategy < 4) { this.moving = 2; this.blocking = 0; } else if (this.strategy < 5) { this.moving = 0; this.blocking = 1; } if (this.strategytime < 0) { this.strategy = random(5); this.strategytime = random(40); if (this.strategy == 3) { this.strategytime = random(20); } } if ((this.hit == 0) && (this.attacking == 0)) { if (this.moving == 1) { if (_root.guy._x < this._x) { this._x = this._x - 5; this._xscale = 100; } else { this._x = this._x + 5; this._xscale = -100; } } if (this.moving == 2) { if (_root.guy._x < this._x) { this._x = this._x + 2; this._xscale = 100; } else { this._x = this._x - 2; this._xscale = -100; } } } if (this.hp < 1) { if ((_root.guy.attHK == 1) || (_root.guy.attHP == 1)) { this.alive = 2; } else { this.alive = 0; } } } } else { if (this.alive == 2) { gotoAndStop (5); } else { gotoAndStop (4); } this.hit = 0; } }
Instance of Symbol 223 MovieClip in Frame 10
onClipEvent (load) { this.hp = 300; this.attack = 7; this.defense = random(80); this.alive = 1; this.moving = 0; this.attacking = 0; this.strategy = 0; this.strategytime = 5; this.hit = 0; this.inrange = 0; this.counterhit = 0; this.blockhit = 0; this.blocking = 0; this.thrown = 0; this.throwhit = 0; } onClipEvent (enterFrame) { if (this.alive == 1) { if (this.counterhit == 1) { gotoAndStop (7); } else if (this.blockhit == 1) { gotoAndStop (8); } else if (this.thrown == 1) { gotoAndStop (10); } else { if (this.hitTest(_root.guy) && (this.attacking == 0)) { this.inrange = 1; } if (this.hitTest(_root.fireball)) { this.hit = 3; this.hp = this.hp - _root.fireball.damage; _root.fireball.gotoAndStop(2); } if (this.hitTest(_root.airfireball)) { this.hit = 3; this.hp = this.hp - _root.airfireball.damage; } if ((this.hitTest(_root.guy) && (_root.guy.canhit == 1)) && (_root.guy.throwhit != 1)) { if (_root.guy.throwing == 1) { _root.guy.throwhit = 1; this.blocking = 0; this.blockhit = 0; this.moving = 0; this.attacking = 0; this.strategy = 2; this.strategytime = 150; this.thrown = 1; } else if (this.blocking == 0) { this.hit = 1; _root.guy.canhit = 0; this.hp = (this.hp - _root.guy.attdmg) - this.defense; } else { this.blocking = 0; this.blockhit = 1; this.moving = 0; this.attacking = 0; this.strategy = 3; } } if (this.hit != 0) { gotoAndStop (2); this.moving = 0; this.attacking = 0; this.inrange = 0; } else { if (this.blocking == 1) { this.attacking = 0; this.inrange = 0; this.moving = 0; } if (this.inrange == 1) { this.attacking = 1; this.inrange = 0; this.moving = 0; } if (this.attacking == 1) { gotoAndStop (6); this.moving = 0; this.inrange = 0; } else if ((this.moving == 1) || (this.moving == 2)) { gotoAndStop (3); this.inrange = 0; } else if (this.blocking == 1) { gotoAndStop (9); } else { gotoAndStop (1); } } this.strategytime = this.strategytime - 1; if (this.strategy < 2) { this.moving = 0; this.blocking = 0; } else if (this.strategy < 3) { this.moving = 1; this.blocking = 0; } else if (this.strategy < 4) { this.moving = 2; this.blocking = 0; } else if (this.strategy < 5) { this.moving = 0; this.blocking = 1; } if (this.strategytime < 0) { this.strategy = random(5); this.strategytime = random(40); if (this.strategy == 3) { this.strategytime = random(20); } } if ((this.hit == 0) && (this.attacking == 0)) { if (this.moving == 1) { if (_root.guy._x < this._x) { this._x = this._x - 5; this._xscale = 100; } else { this._x = this._x + 5; this._xscale = -100; } } if (this.moving == 2) { if (_root.guy._x < this._x) { this._x = this._x + 2; this._xscale = 100; } else { this._x = this._x - 2; this._xscale = -100; } } } if (this.hp < 1) { if ((_root.guy.attHK == 1) || (_root.guy.attHP == 1)) { this.alive = 2; } else { this.alive = 0; } } } } else { if (this.alive == 2) { gotoAndStop (5); } else { gotoAndStop (4); } this.hit = 0; } }
Instance of Symbol 223 MovieClip in Frame 10
onClipEvent (load) { this.hp = 300; this.attack = 7; this.defense = random(80); this.alive = 1; this.moving = 0; this.attacking = 0; this.strategy = 0; this.strategytime = 5; this.hit = 0; this.inrange = 0; this.counterhit = 0; this.blockhit = 0; this.blocking = 0; this.thrown = 0; this.throwhit = 0; } onClipEvent (enterFrame) { if (this.alive == 1) { if (this.counterhit == 1) { gotoAndStop (7); } else if (this.blockhit == 1) { gotoAndStop (8); } else if (this.thrown == 1) { gotoAndStop (10); } else { if (this.hitTest(_root.guy) && (this.attacking == 0)) { this.inrange = 1; } if (this.hitTest(_root.fireball)) { this.hit = 3; this.hp = this.hp - _root.fireball.damage; _root.fireball.gotoAndStop(2); } if (this.hitTest(_root.airfireball)) { this.hit = 3; this.hp = this.hp - _root.airfireball.damage; } if ((this.hitTest(_root.guy) && (_root.guy.canhit == 1)) && (_root.guy.throwhit != 1)) { if (_root.guy.throwing == 1) { _root.guy.throwhit = 1; this.blocking = 0; this.blockhit = 0; this.moving = 0; this.attacking = 0; this.strategy = 2; this.strategytime = 150; this.thrown = 1; } else if (this.blocking == 0) { this.hit = 1; _root.guy.canhit = 0; this.hp = (this.hp - _root.guy.attdmg) - this.defense; } else { this.blocking = 0; this.blockhit = 1; this.moving = 0; this.attacking = 0; this.strategy = 3; } } if (this.hit != 0) { gotoAndStop (2); this.moving = 0; this.attacking = 0; this.inrange = 0; } else { if (this.blocking == 1) { this.attacking = 0; this.inrange = 0; this.moving = 0; } if (this.inrange == 1) { this.attacking = 1; this.inrange = 0; this.moving = 0; } if (this.attacking == 1) { gotoAndStop (6); this.moving = 0; this.inrange = 0; } else if ((this.moving == 1) || (this.moving == 2)) { gotoAndStop (3); this.inrange = 0; } else if (this.blocking == 1) { gotoAndStop (9); } else { gotoAndStop (1); } } this.strategytime = this.strategytime - 1; if (this.strategy < 2) { this.moving = 0; this.blocking = 0; } else if (this.strategy < 3) { this.moving = 1; this.blocking = 0; } else if (this.strategy < 4) { this.moving = 2; this.blocking = 0; } else if (this.strategy < 5) { this.moving = 0; this.blocking = 1; } if (this.strategytime < 0) { this.strategy = random(5); this.strategytime = random(40); if (this.strategy == 3) { this.strategytime = random(20); } } if ((this.hit == 0) && (this.attacking == 0)) { if (this.moving == 1) { if (_root.guy._x < this._x) { this._x = this._x - 5; this._xscale = 100; } else { this._x = this._x + 5; this._xscale = -100; } } if (this.moving == 2) { if (_root.guy._x < this._x) { this._x = this._x + 2; this._xscale = 100; } else { this._x = this._x - 2; this._xscale = -100; } } } if (this.hp < 1) { if ((_root.guy.attHK == 1) || (_root.guy.attHP == 1)) { this.alive = 2; } else { this.alive = 0; } } } } else { if (this.alive == 2) { gotoAndStop (5); } else { gotoAndStop (4); } this.hit = 0; } }
Instance of Symbol 223 MovieClip in Frame 10
onClipEvent (load) { this.hp = 300; this.attack = 7; this.defense = random(80); this.alive = 1; this.moving = 0; this.attacking = 0; this.strategy = 0; this.strategytime = 5; this.hit = 0; this.inrange = 0; this.counterhit = 0; this.blockhit = 0; this.blocking = 0; this.thrown = 0; this.throwhit = 0; } onClipEvent (enterFrame) { if (this.alive == 1) { if (this.counterhit == 1) { gotoAndStop (7); } else if (this.blockhit == 1) { gotoAndStop (8); } else if (this.thrown == 1) { gotoAndStop (10); } else { if (this.hitTest(_root.guy) && (this.attacking == 0)) { this.inrange = 1; } if (this.hitTest(_root.fireball)) { this.hit = 3; this.hp = this.hp - _root.fireball.damage; _root.fireball.gotoAndStop(2); } if (this.hitTest(_root.airfireball)) { this.hit = 3; this.hp = this.hp - _root.airfireball.damage; } if ((this.hitTest(_root.guy) && (_root.guy.canhit == 1)) && (_root.guy.throwhit != 1)) { if (_root.guy.throwing == 1) { _root.guy.throwhit = 1; this.blocking = 0; this.blockhit = 0; this.moving = 0; this.attacking = 0; this.strategy = 2; this.strategytime = 150; this.thrown = 1; } else if (this.blocking == 0) { this.hit = 1; _root.guy.canhit = 0; this.hp = (this.hp - _root.guy.attdmg) - this.defense; } else { this.blocking = 0; this.blockhit = 1; this.moving = 0; this.attacking = 0; this.strategy = 3; } } if (this.hit != 0) { gotoAndStop (2); this.moving = 0; this.attacking = 0; this.inrange = 0; } else { if (this.blocking == 1) { this.attacking = 0; this.inrange = 0; this.moving = 0; } if (this.inrange == 1) { this.attacking = 1; this.inrange = 0; this.moving = 0; } if (this.attacking == 1) { gotoAndStop (6); this.moving = 0; this.inrange = 0; } else if ((this.moving == 1) || (this.moving == 2)) { gotoAndStop (3); this.inrange = 0; } else if (this.blocking == 1) { gotoAndStop (9); } else { gotoAndStop (1); } } this.strategytime = this.strategytime - 1; if (this.strategy < 2) { this.moving = 0; this.blocking = 0; } else if (this.strategy < 3) { this.moving = 1; this.blocking = 0; } else if (this.strategy < 4) { this.moving = 2; this.blocking = 0; } else if (this.strategy < 5) { this.moving = 0; this.blocking = 1; } if (this.strategytime < 0) { this.strategy = random(5); this.strategytime = random(40); if (this.strategy == 3) { this.strategytime = random(20); } } if ((this.hit == 0) && (this.attacking == 0)) { if (this.moving == 1) { if (_root.guy._x < this._x) { this._x = this._x - 5; this._xscale = 100; } else { this._x = this._x + 5; this._xscale = -100; } } if (this.moving == 2) { if (_root.guy._x < this._x) { this._x = this._x + 2; this._xscale = 100; } else { this._x = this._x - 2; this._xscale = -100; } } } if (this.hp < 1) { if ((_root.guy.attHK == 1) || (_root.guy.attHP == 1)) { this.alive = 2; } else { this.alive = 0; } } } } else { if (this.alive == 2) { gotoAndStop (5); } else { gotoAndStop (4); } this.hit = 0; } }
Instance of Symbol 223 MovieClip in Frame 10
onClipEvent (load) { this.hp = 300; this.attack = 7; this.defense = random(80); this.alive = 1; this.moving = 0; this.attacking = 0; this.strategy = 0; this.strategytime = 5; this.hit = 0; this.inrange = 0; this.counterhit = 0; this.blockhit = 0; this.blocking = 0; this.thrown = 0; this.throwhit = 0; } onClipEvent (enterFrame) { if (this.alive == 1) { if (this.counterhit == 1) { gotoAndStop (7); } else if (this.blockhit == 1) { gotoAndStop (8); } else if (this.thrown == 1) { gotoAndStop (10); } else { if (this.hitTest(_root.guy) && (this.attacking == 0)) { this.inrange = 1; } if (this.hitTest(_root.fireball)) { this.hit = 3; this.hp = this.hp - _root.fireball.damage; _root.fireball.gotoAndStop(2); } if (this.hitTest(_root.airfireball)) { this.hit = 3; this.hp = this.hp - _root.airfireball.damage; } if ((this.hitTest(_root.guy) && (_root.guy.canhit == 1)) && (_root.guy.throwhit != 1)) { if (_root.guy.throwing == 1) { _root.guy.throwhit = 1; this.blocking = 0; this.blockhit = 0; this.moving = 0; this.attacking = 0; this.strategy = 2; this.strategytime = 150; this.thrown = 1; } else if (this.blocking == 0) { this.hit = 1; _root.guy.canhit = 0; this.hp = (this.hp - _root.guy.attdmg) - this.defense; } else { this.blocking = 0; this.blockhit = 1; this.moving = 0; this.attacking = 0; this.strategy = 3; } } if (this.hit != 0) { gotoAndStop (2); this.moving = 0; this.attacking = 0; this.inrange = 0; } else { if (this.blocking == 1) { this.attacking = 0; this.inrange = 0; this.moving = 0; } if (this.inrange == 1) { this.attacking = 1; this.inrange = 0; this.moving = 0; } if (this.attacking == 1) { gotoAndStop (6); this.moving = 0; this.inrange = 0; } else if ((this.moving == 1) || (this.moving == 2)) { gotoAndStop (3); this.inrange = 0; } else if (this.blocking == 1) { gotoAndStop (9); } else { gotoAndStop (1); } } this.strategytime = this.strategytime - 1; if (this.strategy < 2) { this.moving = 0; this.blocking = 0; } else if (this.strategy < 3) { this.moving = 1; this.blocking = 0; } else if (this.strategy < 4) { this.moving = 2; this.blocking = 0; } else if (this.strategy < 5) { this.moving = 0; this.blocking = 1; } if (this.strategytime < 0) { this.strategy = random(5); this.strategytime = random(40); if (this.strategy == 3) { this.strategytime = random(20); } } if ((this.hit == 0) && (this.attacking == 0)) { if (this.moving == 1) { if (_root.guy._x < this._x) { this._x = this._x - 5; this._xscale = 100; } else { this._x = this._x + 5; this._xscale = -100; } } if (this.moving == 2) { if (_root.guy._x < this._x) { this._x = this._x + 2; this._xscale = 100; } else { this._x = this._x - 2; this._xscale = -100; } } } if (this.hp < 1) { if ((_root.guy.attHK == 1) || (_root.guy.attHP == 1)) { this.alive = 2; } else { this.alive = 0; } } } } else { if (this.alive == 2) { gotoAndStop (5); } else { gotoAndStop (4); } this.hit = 0; } }
Instance of Symbol 223 MovieClip in Frame 10
onClipEvent (load) { this.hp = 300; this.attack = 7; this.defense = random(80); this.alive = 1; this.moving = 0; this.attacking = 0; this.strategy = 0; this.strategytime = 5; this.hit = 0; this.inrange = 0; this.counterhit = 0; this.blockhit = 0; this.blocking = 0; this.thrown = 0; this.throwhit = 0; } onClipEvent (enterFrame) { if (this.alive == 1) { if (this.counterhit == 1) { gotoAndStop (7); } else if (this.blockhit == 1) { gotoAndStop (8); } else if (this.thrown == 1) { gotoAndStop (10); } else { if (this.hitTest(_root.guy) && (this.attacking == 0)) { this.inrange = 1; } if (this.hitTest(_root.fireball)) { this.hit = 3; this.hp = this.hp - _root.fireball.damage; _root.fireball.gotoAndStop(2); } if (this.hitTest(_root.airfireball)) { this.hit = 3; this.hp = this.hp - _root.airfireball.damage; } if ((this.hitTest(_root.guy) && (_root.guy.canhit == 1)) && (_root.guy.throwhit != 1)) { if (_root.guy.throwing == 1) { _root.guy.throwhit = 1; this.blocking = 0; this.blockhit = 0; this.moving = 0; this.attacking = 0; this.strategy = 2; this.strategytime = 150; this.thrown = 1; } else if (this.blocking == 0) { this.hit = 1; _root.guy.canhit = 0; this.hp = (this.hp - _root.guy.attdmg) - this.defense; } else { this.blocking = 0; this.blockhit = 1; this.moving = 0; this.attacking = 0; this.strategy = 3; } } if (this.hit != 0) { gotoAndStop (2); this.moving = 0; this.attacking = 0; this.inrange = 0; } else { if (this.blocking == 1) { this.attacking = 0; this.inrange = 0; this.moving = 0; } if (this.inrange == 1) { this.attacking = 1; this.inrange = 0; this.moving = 0; } if (this.attacking == 1) { gotoAndStop (6); this.moving = 0; this.inrange = 0; } else if ((this.moving == 1) || (this.moving == 2)) { gotoAndStop (3); this.inrange = 0; } else if (this.blocking == 1) { gotoAndStop (9); } else { gotoAndStop (1); } } this.strategytime = this.strategytime - 1; if (this.strategy < 2) { this.moving = 0; this.blocking = 0; } else if (this.strategy < 3) { this.moving = 1; this.blocking = 0; } else if (this.strategy < 4) { this.moving = 2; this.blocking = 0; } else if (this.strategy < 5) { this.moving = 0; this.blocking = 1; } if (this.strategytime < 0) { this.strategy = random(5); this.strategytime = random(40); if (this.strategy == 3) { this.strategytime = random(20); } } if ((this.hit == 0) && (this.attacking == 0)) { if (this.moving == 1) { if (_root.guy._x < this._x) { this._x = this._x - 5; this._xscale = 100; } else { this._x = this._x + 5; this._xscale = -100; } } if (this.moving == 2) { if (_root.guy._x < this._x) { this._x = this._x + 2; this._xscale = 100; } else { this._x = this._x - 2; this._xscale = -100; } } } if (this.hp < 1) { if ((_root.guy.attHK == 1) || (_root.guy.attHP == 1)) { this.alive = 2; } else { this.alive = 0; } } } } else { if (this.alive == 2) { gotoAndStop (5); } else { gotoAndStop (4); } this.hit = 0; } }
Instance of Symbol 223 MovieClip in Frame 10
onClipEvent (load) { this.hp = 300; this.attack = 7; this.defense = random(80); this.alive = 1; this.moving = 0; this.attacking = 0; this.strategy = 0; this.strategytime = 5; this.hit = 0; this.inrange = 0; this.counterhit = 0; this.blockhit = 0; this.blocking = 0; this.thrown = 0; this.throwhit = 0; } onClipEvent (enterFrame) { if (this.alive == 1) { if (this.counterhit == 1) { gotoAndStop (7); } else if (this.blockhit == 1) { gotoAndStop (8); } else if (this.thrown == 1) { gotoAndStop (10); } else { if (this.hitTest(_root.guy) && (this.attacking == 0)) { this.inrange = 1; } if (this.hitTest(_root.fireball)) { this.hit = 3; this.hp = this.hp - _root.fireball.damage; _root.fireball.gotoAndStop(2); } if (this.hitTest(_root.airfireball)) { this.hit = 3; this.hp = this.hp - _root.airfireball.damage; } if ((this.hitTest(_root.guy) && (_root.guy.canhit == 1)) && (_root.guy.throwhit != 1)) { if (_root.guy.throwing == 1) { _root.guy.throwhit = 1; this.blocking = 0; this.blockhit = 0; this.moving = 0; this.attacking = 0; this.strategy = 2; this.strategytime = 150; this.thrown = 1; } else if (this.blocking == 0) { this.hit = 1; _root.guy.canhit = 0; this.hp = (this.hp - _root.guy.attdmg) - this.defense; } else { this.blocking = 0; this.blockhit = 1; this.moving = 0; this.attacking = 0; this.strategy = 3; } } if (this.hit != 0) { gotoAndStop (2); this.moving = 0; this.attacking = 0; this.inrange = 0; } else { if (this.blocking == 1) { this.attacking = 0; this.inrange = 0; this.moving = 0; } if (this.inrange == 1) { this.attacking = 1; this.inrange = 0; this.moving = 0; } if (this.attacking == 1) { gotoAndStop (6); this.moving = 0; this.inrange = 0; } else if ((this.moving == 1) || (this.moving == 2)) { gotoAndStop (3); this.inrange = 0; } else if (this.blocking == 1) { gotoAndStop (9); } else { gotoAndStop (1); } } this.strategytime = this.strategytime - 1; if (this.strategy < 2) { this.moving = 0; this.blocking = 0; } else if (this.strategy < 3) { this.moving = 1; this.blocking = 0; } else if (this.strategy < 4) { this.moving = 2; this.blocking = 0; } else if (this.strategy < 5) { this.moving = 0; this.blocking = 1; } if (this.strategytime < 0) { this.strategy = random(5); this.strategytime = random(40); if (this.strategy == 3) { this.strategytime = random(20); } } if ((this.hit == 0) && (this.attacking == 0)) { if (this.moving == 1) { if (_root.guy._x < this._x) { this._x = this._x - 5; this._xscale = 100; } else { this._x = this._x + 5; this._xscale = -100; } } if (this.moving == 2) { if (_root.guy._x < this._x) { this._x = this._x + 2; this._xscale = 100; } else { this._x = this._x - 2; this._xscale = -100; } } } if (this.hp < 1) { if ((_root.guy.attHK == 1) || (_root.guy.attHP == 1)) { this.alive = 2; } else { this.alive = 0; } } } } else { if (this.alive == 2) { gotoAndStop (5); } else { gotoAndStop (4); } this.hit = 0; } }
Instance of Symbol 223 MovieClip in Frame 10
onClipEvent (load) { this.hp = 300; this.attack = 7; this.defense = random(80); this.alive = 1; this.moving = 0; this.attacking = 0; this.strategy = 0; this.strategytime = 5; this.hit = 0; this.inrange = 0; this.counterhit = 0; this.blockhit = 0; this.blocking = 0; this.thrown = 0; this.throwhit = 0; } onClipEvent (enterFrame) { if (this.alive == 1) { if (this.counterhit == 1) { gotoAndStop (7); } else if (this.blockhit == 1) { gotoAndStop (8); } else if (this.thrown == 1) { gotoAndStop (10); } else { if (this.hitTest(_root.guy) && (this.attacking == 0)) { this.inrange = 1; } if (this.hitTest(_root.fireball)) { this.hit = 3; this.hp = this.hp - _root.fireball.damage; _root.fireball.gotoAndStop(2); } if (this.hitTest(_root.airfireball)) { this.hit = 3; this.hp = this.hp - _root.airfireball.damage; } if ((this.hitTest(_root.guy) && (_root.guy.canhit == 1)) && (_root.guy.throwhit != 1)) { if (_root.guy.throwing == 1) { _root.guy.throwhit = 1; this.blocking = 0; this.blockhit = 0; this.moving = 0; this.attacking = 0; this.strategy = 2; this.strategytime = 150; this.thrown = 1; } else if (this.blocking == 0) { this.hit = 1; _root.guy.canhit = 0; this.hp = (this.hp - _root.guy.attdmg) - this.defense; } else { this.blocking = 0; this.blockhit = 1; this.moving = 0; this.attacking = 0; this.strategy = 3; } } if (this.hit != 0) { gotoAndStop (2); this.moving = 0; this.attacking = 0; this.inrange = 0; } else { if (this.blocking == 1) { this.attacking = 0; this.inrange = 0; this.moving = 0; } if (this.inrange == 1) { this.attacking = 1; this.inrange = 0; this.moving = 0; } if (this.attacking == 1) { gotoAndStop (6); this.moving = 0; this.inrange = 0; } else if ((this.moving == 1) || (this.moving == 2)) { gotoAndStop (3); this.inrange = 0; } else if (this.blocking == 1) { gotoAndStop (9); } else { gotoAndStop (1); } } this.strategytime = this.strategytime - 1; if (this.strategy < 2) { this.moving = 0; this.blocking = 0; } else if (this.strategy < 3) { this.moving = 1; this.blocking = 0; } else if (this.strategy < 4) { this.moving = 2; this.blocking = 0; } else if (this.strategy < 5) { this.moving = 0; this.blocking = 1; } if (this.strategytime < 0) { this.strategy = random(5); this.strategytime = random(40); if (this.strategy == 3) { this.strategytime = random(20); } } if ((this.hit == 0) && (this.attacking == 0)) { if (this.moving == 1) { if (_root.guy._x < this._x) { this._x = this._x - 5; this._xscale = 100; } else { this._x = this._x + 5; this._xscale = -100; } } if (this.moving == 2) { if (_root.guy._x < this._x) { this._x = this._x + 2; this._xscale = 100; } else { this._x = this._x - 2; this._xscale = -100; } } } if (this.hp < 1) { if ((_root.guy.attHK == 1) || (_root.guy.attHP == 1)) { this.alive = 2; } else { this.alive = 0; } } } } else { if (this.alive == 2) { gotoAndStop (5); } else { gotoAndStop (4); } this.hit = 0; } }
Instance of Symbol 249 MovieClip "fireball" in Frame 10
onClipEvent (load) { this.speed = 25; this.damage = 20; this.exists = 1; this.aim = _root.guy._xscale; gotoAndStop (1); } onClipEvent (enterFrame) { if (_root.firing == 1) { this.aim = _root.guy._xscale; this._xscale = _root.guy._xscale; this._x = _root.guy._x + (50 * (this.aim / 100)); this._y = _root.guy._y - 70; _root.firing = 2; } if ((this._x > 750) || (this._x < -50)) { _root.firing = 0; this.gotoAndStop(1); } this._x = this._x + (this.speed * (this.aim / 100)); }
Instance of Symbol 249 MovieClip "airfireball" in Frame 10
onClipEvent (load) { this.speed = 15; this.fallspeed = 15; this.damage = 10; this.exists = 1; this.aim = _root.guy._xscale; gotoAndStop (4); } onClipEvent (enterFrame) { if (_root.airfiring == 1) { this.aim = _root.guy._xscale; this._xscale = _root.guy._xscale; this._x = _root.guy._x + (50 * (this.aim / 100)); this._y = _root.guy._y - 70; _root.airfiring = 2; } if ((this._x > 750) || (this._x < -50)) { _root.airfiring = 0; this._y = 810; this.gotoAndStop(3); } if (this._y < 400) { this._x = this._x + (this.speed * (this.aim / 100)); this._y = this._y + this.fallspeed; } else if (this._y < 799) { gotoAndStop (4); } }
Instance of Symbol 275 MovieClip in Frame 10
onClipEvent (enterFrame) { if (_root.Combo > 3) { gotoAndStop (2); _root.ComboTimer = _root.ComboTimer - 2; } if (_root.ComboTimer < 1) { _root.Combo = 0; gotoAndStop (1); } }
Frame 12
stop();
Instance of Symbol 39 MovieClip in Frame 12
onClipEvent (enterFrame) { if (_root.bgflash == 1) { gotoAndStop (2); } else { gotoAndStop (1); } }
Instance of Symbol 41 MovieClip in Frame 12
onClipEvent (enterFrame) { this._x = _root.guy._x; }
Instance of Symbol 176 MovieClip "guy" in Frame 12
onClipEvent (load) { this.hp = 100; this.atk = 100; this.attdmg = 100; this.def = 50; this.speed = 15; this.moving = 0; this.falling = 0; this.jumping = 0; this.jumps = 2; this.dbljump = 0; this.gravity = 4; this.fallspeed = 0; this.specialmax = 3; this.special = 0; this.alive = 1; this.attacking = 0; this.canatt = 1; this.canhit = 0; this.stanceidle = 0; this.crouch = 0; this.counter = 0; this.countering = 0; this.counterhit = 0; this.blocking = 0; this.blockhit = 0; this.dash = 0; this.throwing = 0; this.throwhit = 0; this.attLP = 0; this.attHP = 0; this.attLK = 0; this.attHK = 0; this.attALP = 0; this.attAHP = 0; this.attALK = 0; gotoAndStop (1); this.btnLP = 90; this.btnHP = 65; this.btnLK = 88; this.btnHK = 83; this.btnCounter = 81; this.btnBlock = 87; } onClipEvent (enterFrame) { if (this.alive == 1) { if (this.hp < 100) { this.hp = this.hp + 0.1; } if (_root.enemyhit == 1) { gotoAndStop (9); this.counter = 0; this.attLP = 0; this.attHP = 0; this.attLK = 0; this.attHK = 0; this.moving = 0; this.crouch = 0; this.attacking = 0; this.countering = 0; this.blocking = 0; this.throwing = 0; this.throwhit = 0; if (Key.isDown(87)) { if ((this.canatt == 1) && (this._y < 400)) { this.counter = 0; this.blocking = 1; this.attLP = 0; this.attHP = 0; this.attLK = 0; this.attHK = 0; this.stanceidle = 0; this.moving = 0; this.attacking = 0; this.canhit = 0; this.throwing = 0; } } } else if (this._y < 400) { this.crouch = 0; if (Key.isDown(90)) { if (this.canatt == 1) { this.attacking = 1; this.attdmg = this.atk * 1; this.attALP = 1; this.attALK = 0; this.attAHP = 0; this.attLP = 0; this.attHP = 0; this.attLK = 0; this.attHK = 0; this.stanceidle = 0; this.moving = 0; this.blocking = 0; this.throwing = 0; } } if (Key.isDown(88)) { if (this.canatt == 1) { this.attacking = 1; this.attdmg = this.atk * 1; this.attALP = 0; this.attALK = 1; this.attAHP = 0; this.attLP = 0; this.attHP = 0; this.attLK = 0; this.attHK = 0; this.stanceidle = 0; this.moving = 0; this.blocking = 0; this.throwing = 0; } } if (Key.isDown(65)) { if (((this.canatt == 1) && (_root.SP > 9)) && (_root.airfiring == 0)) { this.attacking = 1; this.attdmg = this.atk * 1; this.attALP = 0; this.attALK = 0; this.attAHP = 1; this.attLP = 0; this.attHP = 0; this.attLK = 0; this.attHK = 0; this.stanceidle = 0; this.moving = 0; this.blocking = 0; this.throwing = 0; } } if (this.jumping == 0) { this.fallspeed = this.fallspeed + this.gravity; this._y = this._y + this.fallspeed; if (this.attALP == 0) { gotoAndStop (2); } this.falling = 1; if (Key.isDown(37)) { if (this._x > 0) { this._x = this._x - this.speed; } this._xscale = -100; } if (Key.isDown(39)) { if (this._x < 700) { this._x = this._x + this.speed; this._xscale = 100; } } } else if (this.jumping == 1) { this.fallspeed = this.fallspeed + this.gravity; this._y = this._y + this.fallspeed; if (((this.attALP == 0) && (this.attAHP == 0)) && (this.attALK == 0)) { gotoAndStop (5); } this.falling = 1; if (Key.isDown(37)) { if (this._x > 0) { this._x = this._x - this.speed; if (this.dash == 1) { this._x = this._x - this.speed; } } this._xscale = -100; } if (Key.isDown(39)) { if (this._x < 700) { this._x = this._x + this.speed; if (this.dash == 1) { this._x = this._x + this.speed; } } this._xscale = 100; } if (this.attALP == 1) { gotoAndStop (21); } if (this.attAHP == 1) { gotoAndStop (22); } if (this.attALK == 1) { gotoAndStop (25); if (this._xscale == -100) { this._x = this._x - 15; } else { this._x = this._x + 15; } } if (Key.isDown(38)) { if (this.dbljump == 2) { this.dbljump = 1; this.fallspeed = -40; gotoAndStop (3); gotoAndStop (2); this.jumping = 0; this.blocking = 0; this.attHK = 0; } } } } else { if (this.hp < 1) { this.alive = 0; this.blocking = 0; this.countering = 0; this.counterhit = 0; this.throwing = 0; } if (this.attALP == 1) { this.canhit = 0; this.attALP = 0; } if (this.attALK == 1) { this.canhit = 0; this.attALK = 0; this.attacking = 0; } if (this.attAHP == 1) { this.canhit = 0; this.attAHP = 0; } this._y = 401; this.jumping = 0; this.dbljump = 1; if (Key.isDown(87)) { if (this.canatt == 1) { this.throwing = 0; this.counter = 0; this.countering = 0; this.counterhit = 0; this.blocking = 1; this.attLP = 0; this.attHP = 0; this.attLK = 0; this.attHK = 0; this.stanceidle = 0; this.moving = 0; this.attacking = 0; this.canhit = 0; this.dash = 0; } } if (Key.isDown(32)) { if (this.canatt == 1) { this.attacking = 1; this.throwing = 1; this.counter = 0; this.countering = 0; this.counterhit = 0; this.blocking = 0; this.attLP = 0; this.attHP = 0; this.attLK = 0; this.attHK = 0; this.stanceidle = 0; this.moving = 0; this.attacking = 0; this.canhit = 0; this.dash = 0; } } if (Key.isDown(81)) { if (this.canatt == 1) { if (Key.isDown(37) || (Key.isDown(39))) { this.throwing = 0; this.counter = 0; this.dash = 1; this.blocking = 0; this.attLP = 0; this.attHP = 0; this.attLK = 0; this.attHK = 0; this.stanceidle = 0; this.moving = 0; this.attacking = 0; this.canhit = 0; this.countering = 0; } else { this.throwing = 0; this.counter = 1; this.blocking = 0; this.attLP = 0; this.attHP = 0; this.attLK = 0; this.attHK = 0; this.stanceidle = 0; this.moving = 0; this.attacking = 0; this.canhit = 0; this.dash = 0; } } } if (Key.isDown(90)) { if (this.canatt == 1) { this.throwing = 0; this.attacking = 1; this.blocking = 0; this.attdmg = this.atk * 1; this.attLP = 1; this.attHP = 0; this.attLK = 0; this.attHK = 0; this.stanceidle = 0; this.moving = 0; this.falling = 0; this.jumping = 0; this.dash = 0; } } if (Key.isDown(88)) { if (this.canatt == 1) { this.throwing = 0; this.attacking = 1; this.blocking = 0; this.attdmg = this.atk * 1.2; this.attLP = 0; this.attHP = 0; this.attLK = 1; this.attHK = 0; this.stanceidle = 0; this.moving = 0; this.falling = 0; this.jumping = 0; this.dash = 0; } } if (Key.isDown(83)) { if (this.canatt == 1) { this.throwing = 0; this.attacking = 1; this.blocking = 0; this.attdmg = this.atk * 2.5; this.attLP = 0; this.attHP = 0; this.attLK = 0; this.attHK = 1; this.stanceidle = 0; this.moving = 0; this.falling = 0; this.jumping = 0; this.canatt = 0; this.dash = 0; } } if (Key.isDown(65)) { if ((this.canatt == 1) && (_root.firing == 0)) { this.throwing = 0; this.attacking = 1; this.blocking = 0; this.attdmg = this.atk * 1; this.attLP = 0; this.attHP = 1; this.attLK = 0; this.attHK = 0; this.stanceidle = 0; this.moving = 0; this.falling = 0; this.jumping = 0; this.canatt = 0; this.dash = 0; } } if (Key.isDown(38)) { this.throwing = 0; this.fallspeed = -40; this.blocking = 0; this._y = 395; this.attHK = 0; this.jumping = 1; this.falling = 1; this.stanceidle = 0; this.attacking = 0; this.dash = 0; } if (Key.isDown(37)) { if (this.attacking == 0) { if (this._x > 0) { if (this.crouch == 1) { this._x = this._x - (this.speed / 2); } else { this._x = this._x - this.speed; } this.stanceidle = 0; this.moving = 1; } this._xscale = -100; } } else if (Key.isDown(39)) { if (this.attacking == 0) { if (this._x < 700) { if (this.crouch != 0) { this._x = this._x + (this.speed / 2); } else { this._x = this._x + this.speed; } this.stanceidle = 0; this.moving = 1; } this._xscale = 100; } } else { this.moving = 0; this.dash = 0; this.stanceidle = 1; } if (Key.isDown(40)) { if (this.crouch == 0) { this.crouch = 2; this.dash = 0; } } if (this.counter == 1) { this.attLP = 0; this.attHP = 0; this.attLK = 0; this.attHK = 0; this.stanceidle = 0; this.moving = 0; this.falling = 0; this.jumping = 0; if (this.counterhit == 0) { gotoAndStop (19); } else { gotoAndStop (20); } } if (this.blocking == 1) { this.attLP = 0; this.attHP = 0; this.attLK = 0; this.attHK = 0; this.stanceidle = 0; this.moving = 0; this.falling = 0; this.jumping = 0; gotoAndStop (23); } if (this.attHK == 0) { if (this.attLP == 1) { if (this.crouch == 1) { gotoAndStop (16); } else { this.crouch = 0; gotoAndStop (7); } this.stanceidle = 0; this.moving = 0; } if (this.attHP == 1) { if (this.crouch == 1) { gotoAndStop (17); } else { this.crouch = 0; gotoAndStop (8); } this.stanceidle = 0; this.moving = 0; } if (this.attLK == 1) { if (this.crouch == 1) { gotoAndStop (18); } else { this.crouch = 0; gotoAndStop (10); } this.stanceidle = 0; this.moving = 0; } } if (this.attHK == 1) { gotoAndStop (11); this.stanceidle = 0; this.moving = 0; this.attacking = 1; this.crouch = 0; } if (this.throwing == 1) { if (this.throwhit == 1) { gotoAndStop (27); } else { gotoAndStop (26); } this.attacking = 1; this.canatt = 0; this.stanceidle = 0; this.moving = 0; } if ((this.falling == 1) && (this.jumping == 0)) { gotoAndStop (3); this.fallspeed = 0; this.moving = 0; this.stanceidle = 0; } if (this.stanceidle == 1) { if (this.crouch == 2) { gotoAndStop (13); } else if (this.crouch == 1) { gotoAndStop (12); if (Key.isDown(40)) { } else { this.crouch = 3; } } else if (this.crouch == 3) { gotoAndStop (14); } else { gotoAndStop (1); this.crouch = 0; } this.falling = 0; } if ((this.moving == 1) && (this.dash == 0)) { if (this.crouch == 1) { gotoAndStop (15); } else { gotoAndStop (6); } } if (this.dash == 1) { gotoAndStop (24); this.canatt = 0; } if (this.attacking == 0) { this.attLP = 0; this.attHP = 0; this.attLK = 0; this.attHK = 0; this.canatt = 1; } } } else { gotoAndStop (4); this.counter = 0; this.countering = 0; this.counterhit = 0; } }
Instance of Symbol 320 MovieClip "boss" in Frame 12
onClipEvent (load) { this.hpmax = 1000; this.hp = 1000; this.hit = 0; this.canhit = 0; this.attacking = 0; this.attack = 0; this.strategy = 0; this.strategytime = 5; this.teleport = 0; } onClipEvent (enterFrame) { if (this.hp > 1) { if (this.attacking != 1) { if (_root.guy._x < this._x) { this._xscale = 100; } else { this._xscale = -100; } } if (((this.hitTest(_root.guy) && (_root.guy.canhit == 1)) && (this.teleport != 1)) && (this.attacking != 1)) { this.hit = 1; this.hp = this.hp - (_root.guy.attdmg / 50); } else if (this.hitTest(_root.guy) && (_root.guy.canhit == 1)) { this.hp = this.hp - (_root.guy.attdmg / 50); } else if ((this.hitTest(_root.fireball) && (this.teleport != 1)) && (this.attacking != 1)) { this.hit = 1; this.hp = this.hp - (_root.fireball.damage / 3); _root.fireball.gotoAndStop(2); } else if ((this.hitTest(_root.airfireball) && (this.teleport != 1)) && (this.attacking != 1)) { this.hit = 1; this.hp = this.hp - (_root.airfireball.damage / 3); } else { this.hit = 0; } if (this.hit == 1) { gotoAndStop (2); } else if (this.teleport == 1) { gotoAndStop (3); } else if (this.attacking == 1) { if (this.attack == "Missile") { gotoAndStop (4); } else if (this.attack == "Crash") { gotoAndStop (5); } } else { gotoAndStop (1); } if (this.strategytime < 0) { this.strategy = random(5); this.strategytime = random(40); this.attacking = 0; if (this.strategy < 1) { this.teleport = 1; } else if (this.strategy < 2) { this.attacking = 1; this.attack = "Missile"; this.strategytime = 66; } else if (this.strategy < 3) { this.attacking = 1; this.attack = "Crash"; this.strategytime = 82; } else { this.teleport = 0; } } this.strategytime = this.strategytime - 1; } else { gotoAndStop (6); } }
Instance of Symbol 223 MovieClip in Frame 12
onClipEvent (load) { this.hp = 300; this.attack = 5; this.defense = random(50); this.alive = 1; this.moving = 0; this.attacking = 0; this.strategy = 0; this.strategytime = 5; this.hit = 0; this.inrange = 0; this.counterhit = 0; this.blockhit = 0; this.blocking = 0; this.thrown = 0; this.throwhit = 0; } onClipEvent (enterFrame) { if (this.alive == 1) { if (this.counterhit == 1) { gotoAndStop (7); } else if (this.blockhit == 1) { gotoAndStop (8); } else if (this.thrown == 1) { gotoAndStop (10); } else { if (this.hitTest(_root.guy) && (this.attacking == 0)) { this.inrange = 1; } if (this.hitTest(_root.fireball)) { this.hit = 3; this.hp = this.hp - _root.fireball.damage; _root.fireball.gotoAndStop(2); } if (this.hitTest(_root.airfireball)) { this.hit = 3; this.hp = this.hp - _root.airfireball.damage; } if ((this.hitTest(_root.guy) && (_root.guy.canhit == 1)) && (_root.guy.throwhit != 1)) { if (_root.guy.throwing == 1) { _root.guy.throwhit = 1; this.blocking = 0; this.blockhit = 0; this.moving = 0; this.attacking = 0; this.strategy = 2; this.strategytime = 150; this.thrown = 1; } else if (this.blocking == 0) { this.hit = 1; _root.guy.canhit = 0; this.hp = (this.hp - _root.guy.attdmg) - this.defense; } else { this.blocking = 0; this.blockhit = 1; this.moving = 0; this.attacking = 0; this.strategy = 3; } } if (this.hit != 0) { gotoAndStop (2); this.moving = 0; this.attacking = 0; this.inrange = 0; } else { if (this.blocking == 1) { this.attacking = 0; this.inrange = 0; this.moving = 0; } if (this.inrange == 1) { this.attacking = 1; this.inrange = 0; this.moving = 0; } if (this.attacking == 1) { gotoAndStop (6); this.moving = 0; this.inrange = 0; } else if ((this.moving == 1) || (this.moving == 2)) { gotoAndStop (3); this.inrange = 0; } else if (this.blocking == 1) { gotoAndStop (9); } else { gotoAndStop (1); } } this.strategytime = this.strategytime - 1; if (this.strategy < 2) { this.moving = 0; this.blocking = 0; } else if (this.strategy < 3) { this.moving = 1; this.blocking = 0; } else if (this.strategy < 4) { this.moving = 2; this.blocking = 0; } else if (this.strategy < 5) { this.moving = 0; this.blocking = 1; } if (this.strategytime < 0) { this.strategy = random(5); this.strategytime = random(40); if (this.strategy == 3) { this.strategytime = random(20); } } if ((this.hit == 0) && (this.attacking == 0)) { if (this.moving == 1) { if (_root.guy._x < this._x) { this._x = this._x - 5; this._xscale = 100; } else { this._x = this._x + 5; this._xscale = -100; } } if (this.moving == 2) { if (_root.guy._x < this._x) { this._x = this._x + 2; this._xscale = 100; } else { this._x = this._x - 2; this._xscale = -100; } } } if (this.hp < 1) { if ((_root.guy.attHK == 1) || (_root.guy.attHP == 1)) { this.alive = 2; } else { this.alive = 0; } } } } else { if (this.alive == 2) { gotoAndStop (5); } else { gotoAndStop (4); } this.hit = 0; } }
Instance of Symbol 223 MovieClip in Frame 12
onClipEvent (load) { this.hp = 300; this.attack = 5; this.defense = random(50); this.alive = 1; this.moving = 0; this.attacking = 0; this.strategy = 0; this.strategytime = 5; this.hit = 0; this.inrange = 0; this.counterhit = 0; this.blockhit = 0; this.blocking = 0; this.thrown = 0; this.throwhit = 0; } onClipEvent (enterFrame) { if (this.alive == 1) { if (this.counterhit == 1) { gotoAndStop (7); } else if (this.blockhit == 1) { gotoAndStop (8); } else if (this.thrown == 1) { gotoAndStop (10); } else { if (this.hitTest(_root.guy) && (this.attacking == 0)) { this.inrange = 1; } if (this.hitTest(_root.fireball)) { this.hit = 3; this.hp = this.hp - _root.fireball.damage; _root.fireball.gotoAndStop(2); } if (this.hitTest(_root.airfireball)) { this.hit = 3; this.hp = this.hp - _root.airfireball.damage; } if ((this.hitTest(_root.guy) && (_root.guy.canhit == 1)) && (_root.guy.throwhit != 1)) { if (_root.guy.throwing == 1) { _root.guy.throwhit = 1; this.blocking = 0; this.blockhit = 0; this.moving = 0; this.attacking = 0; this.strategy = 2; this.strategytime = 150; this.thrown = 1; } else if (this.blocking == 0) { this.hit = 1; _root.guy.canhit = 0; this.hp = (this.hp - _root.guy.attdmg) - this.defense; } else { this.blocking = 0; this.blockhit = 1; this.moving = 0; this.attacking = 0; this.strategy = 3; } } if (this.hit != 0) { gotoAndStop (2); this.moving = 0; this.attacking = 0; this.inrange = 0; } else { if (this.blocking == 1) { this.attacking = 0; this.inrange = 0; this.moving = 0; } if (this.inrange == 1) { this.attacking = 1; this.inrange = 0; this.moving = 0; } if (this.attacking == 1) { gotoAndStop (6); this.moving = 0; this.inrange = 0; } else if ((this.moving == 1) || (this.moving == 2)) { gotoAndStop (3); this.inrange = 0; } else if (this.blocking == 1) { gotoAndStop (9); } else { gotoAndStop (1); } } this.strategytime = this.strategytime - 1; if (this.strategy < 2) { this.moving = 0; this.blocking = 0; } else if (this.strategy < 3) { this.moving = 1; this.blocking = 0; } else if (this.strategy < 4) { this.moving = 2; this.blocking = 0; } else if (this.strategy < 5) { this.moving = 0; this.blocking = 1; } if (this.strategytime < 0) { this.strategy = random(5); this.strategytime = random(40); if (this.strategy == 3) { this.strategytime = random(20); } } if ((this.hit == 0) && (this.attacking == 0)) { if (this.moving == 1) { if (_root.guy._x < this._x) { this._x = this._x - 5; this._xscale = 100; } else { this._x = this._x + 5; this._xscale = -100; } } if (this.moving == 2) { if (_root.guy._x < this._x) { this._x = this._x + 2; this._xscale = 100; } else { this._x = this._x - 2; this._xscale = -100; } } } if (this.hp < 1) { if ((_root.guy.attHK == 1) || (_root.guy.attHP == 1)) { this.alive = 2; } else { this.alive = 0; } } } } else { if (this.alive == 2) { gotoAndStop (5); } else { gotoAndStop (4); } this.hit = 0; } }
Instance of Symbol 249 MovieClip "fireball" in Frame 12
onClipEvent (load) { this.speed = 25; this.damage = 20; this.exists = 1; this.aim = _root.guy._xscale; gotoAndStop (1); } onClipEvent (enterFrame) { if (_root.firing == 1) { this.aim = _root.guy._xscale; this._xscale = _root.guy._xscale; this._x = _root.guy._x + (50 * (this.aim / 100)); this._y = _root.guy._y - 70; _root.firing = 2; } if ((this._x > 750) || (this._x < -50)) { _root.firing = 0; this.gotoAndStop(1); } this._x = this._x + (this.speed * (this.aim / 100)); }
Instance of Symbol 249 MovieClip "airfireball" in Frame 12
onClipEvent (load) { this.speed = 15; this.fallspeed = 15; this.damage = 10; this.exists = 1; this.aim = _root.guy._xscale; gotoAndStop (4); } onClipEvent (enterFrame) { if (_root.airfiring == 1) { this.aim = _root.guy._xscale; this._xscale = _root.guy._xscale; this._x = _root.guy._x + (50 * (this.aim / 100)); this._y = _root.guy._y - 70; _root.airfiring = 2; } if ((this._x > 750) || (this._x < -50)) { _root.airfiring = 0; this._y = 810; this.gotoAndStop(3); } if (this._y < 400) { this._x = this._x + (this.speed * (this.aim / 100)); this._y = this._y + this.fallspeed; } else if (this._y < 799) { gotoAndStop (4); } }
Instance of Symbol 275 MovieClip in Frame 12
onClipEvent (enterFrame) { if (_root.Combo > 3) { gotoAndStop (2); _root.ComboTimer = _root.ComboTimer - 2; } if (_root.ComboTimer < 1) { _root.Combo = 0; gotoAndStop (1); } }
Symbol 21 Button
on (release) { _root.play(); }
Symbol 22 MovieClip Frame 1
_root.stop(); PercentLoaded = (_root.getBytesLoaded() / _root.getBytesTotal()) * 100; if (PercentLoaded != 100) { bar._xscale = PercentLoaded; } else { gotoAndStop ("loaded"); }
Symbol 22 MovieClip Frame 2
gotoAndPlay (1);
Symbol 38 MovieClip Frame 15
_root.bgflash = 0;
Instance of Symbol 47 MovieClip in Symbol 62 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.guy.hp > 0) { _parent.gotoAndStop(Math.round(101 - _root.guy.hp)); } else { _parent.gotoAndStop(100); } }
Instance of Symbol 64 MovieClip in Symbol 89 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.guy.hp > 0) { _parent.gotoAndStop(Math.round(101 - _root.guy.hp)); } else { _parent.gotoAndStop(100); } }
Symbol 92 MovieClip Frame 19
gotoAndPlay (8);
Symbol 94 MovieClip Frame 9
_parent.falling = 0; _parent.stanceidle = 1;
Symbol 106 MovieClip Frame 20
stop();
Instance of Symbol 96 MovieClip in Symbol 106 MovieClip Frame 20
onClipEvent (enterFrame) { if (_root.enemyhit == 1) { _parent.gotoAndPlay(21); _root.enemyhit = 0; } }
Symbol 106 MovieClip Frame 27
gotoAndStop (20);
Symbol 108 MovieClip Frame 8
_parent.dbljump = 2;
Symbol 108 MovieClip Frame 19
gotoAndPlay (8);
Symbol 119 MovieClip Frame 3
_parent.canhit = 1;
Symbol 119 MovieClip Frame 5
_parent.canhit = 0;
Symbol 119 MovieClip Frame 7
_parent.attacking = 0; _parent.attLP = 0;
Symbol 125 MovieClip Frame 7
_parent.canhit = 1; _root.fbname = fb + random(500); if (_root.SP > 9) { _root.firing = 1; _root.SP = _root.SP - 10; }
Symbol 125 MovieClip Frame 10
_parent.canhit = 0;
Symbol 125 MovieClip Frame 16
_parent.attacking = 0; _parent.attHP = 0;
Symbol 134 MovieClip Frame 2
_root.SP = _root.SP + 5;
Symbol 134 MovieClip Frame 7
_root.enemyhit = 0;
Symbol 136 MovieClip Frame 3
_parent.canhit = 1;
Symbol 136 MovieClip Frame 5
_parent.canhit = 0;
Symbol 136 MovieClip Frame 7
_parent.attacking = 0; _parent.attLK = 0;
Symbol 137 MovieClip Frame 3
_parent.canhit = 1;
Symbol 137 MovieClip Frame 5
_parent.canhit = 0;
Symbol 137 MovieClip Frame 15
_parent.attacking = 0; _parent.attHK = 0;
Symbol 140 MovieClip Frame 5
_parent.crouch = 1;
Symbol 141 MovieClip Frame 5
_parent.crouch = 0;
Symbol 144 MovieClip Frame 3
_parent.canhit = 1;
Symbol 144 MovieClip Frame 5
_parent.canhit = 0;
Symbol 144 MovieClip Frame 7
_parent.attacking = 0; _parent.attLP = 0;
Symbol 145 MovieClip Frame 6
_parent.canhit = 1;
Symbol 145 MovieClip Frame 8
_parent.canhit = 0;
Symbol 145 MovieClip Frame 10
_parent.attacking = 0; _parent.attLP = 0;
Symbol 146 MovieClip Frame 4
_parent.canhit = 1;
Symbol 146 MovieClip Frame 6
_parent.canhit = 0;
Symbol 146 MovieClip Frame 7
_parent.attacking = 0; _parent.attLP = 0;
Symbol 147 MovieClip Frame 3
_parent.countering = 1;
Symbol 147 MovieClip Frame 8
_parent.countering = 0;
Symbol 147 MovieClip Frame 20
_parent.counter = 0;
Symbol 163 MovieClip Frame 7
if (_root.guy._xscale == -100) { _root.guy._x = _root.guy._x - 45; } else { _root.guy._x = _root.guy._x + 45; } _root.bgflash = 1;
Symbol 163 MovieClip Frame 8
if (_root.guy._xscale == -100) { _root.guy._x = _root.guy._x - 45; } else { _root.guy._x = _root.guy._x + 45; }
Symbol 163 MovieClip Frame 9
if (_root.guy._xscale == -100) { _root.guy._x = _root.guy._x - 45; } else { _root.guy._x = _root.guy._x + 45; }
Symbol 163 MovieClip Frame 10
if (_root.guy._xscale == -100) { _root.guy._x = _root.guy._x - 45; } else { _root.guy._x = _root.guy._x + 45; }
Symbol 163 MovieClip Frame 11
if (_root.guy._xscale == -100) { _root.guy._x = _root.guy._x - 45; } else { _root.guy._x = _root.guy._x + 45; }
Symbol 163 MovieClip Frame 20
_parent.counter = 0; _parent.counterhit = 0; _parent.countering = 0;
Symbol 165 MovieClip Frame 5
_root.guy.canhit = 1;
Symbol 165 MovieClip Frame 6
_parent.fallspeed = 0;
Symbol 165 MovieClip Frame 7
_parent.fallspeed = _parent.fallspeed - 5;
Symbol 165 MovieClip Frame 8
_parent.fallspeed = _parent.fallspeed - 5;
Symbol 165 MovieClip Frame 9
_parent.fallspeed = _parent.fallspeed - 5;
Symbol 165 MovieClip Frame 10
_root.guy.canhit = 0; _parent.attALP = 0; _parent.attacking = 0;
Symbol 166 MovieClip Frame 6
_parent.fallspeed = _parent.fallspeed - 10;
Symbol 166 MovieClip Frame 7
_parent.fallspeed = _parent.fallspeed - 10;
Symbol 166 MovieClip Frame 8
_parent.fallspeed = _parent.fallspeed - 10; _root.airfiring = 1; _root.SP = _root.SP - 10;
Symbol 166 MovieClip Frame 9
_parent.fallspeed = _parent.fallspeed - 10;
Symbol 166 MovieClip Frame 10
_root.guy.canhit = 0; _parent.attAHP = 0; _parent.attacking = 0;
Symbol 167 MovieClip Frame 2
this.counter = 0; this.countering = 0; this.counterhit = 0;
Symbol 167 MovieClip Frame 9
if (Key.isDown(87)) { gotoAndPlay (5); }
Symbol 167 MovieClip Frame 13
_parent.blocking = 0;
Symbol 170 MovieClip Frame 1
if (_parent._xscale == -100) { _parent._x = _parent._x - 5; } else { _parent._x = _parent._x + 5; } _parent.falling = 0;
Symbol 170 MovieClip Frame 2
if (_parent._xscale == -100) { _parent._x = _parent._x - 15; } else { _parent._x = _parent._x + 15; }
Symbol 170 MovieClip Frame 3
if (_parent._xscale == -100) { _parent._x = _parent._x - 25; } else { _parent._x = _parent._x + 25; }
Symbol 170 MovieClip Frame 4
if (_parent._xscale == -100) { _parent._x = _parent._x - 20; } else { _parent._x = _parent._x + 20; }
Symbol 170 MovieClip Frame 5
if (_parent._xscale == -100) { _parent._x = _parent._x - 15; } else { _parent._x = _parent._x + 15; }
Symbol 170 MovieClip Frame 6
if (_parent._xscale == -100) { _parent._x = _parent._x - 10; } else { _parent._x = _parent._x + 10; }
Symbol 170 MovieClip Frame 7
if (_parent._xscale == -100) { _parent._x = _parent._x - 5; } else { _parent._x = _parent._x + 5; }
Symbol 170 MovieClip Frame 8
if (_parent._xscale == -100) { _parent._x = _parent._x - 3; } else { _parent._x = _parent._x + 3; }
Symbol 170 MovieClip Frame 9
if (_parent._xscale == -100) { _parent._x = _parent._x - 1; } else { _parent._x = _parent._x + 1; }
Symbol 170 MovieClip Frame 10
_root.guy.dash = 0; _root.guy.attacking = 0; _root.guy.moving = 1;
Symbol 172 MovieClip Frame 2
_root.guy.canhit = 1;
Symbol 172 MovieClip Frame 3
_parent.fallspeed = 5;
Symbol 172 MovieClip Frame 4
_parent.fallspeed = 10; stop();
Symbol 173 MovieClip Frame 6
_parent.canhit = 1;
Symbol 173 MovieClip Frame 10
_parent.canhit = 0;
Symbol 173 MovieClip Frame 20
_parent.canatt = 1; _parent.throwing = 0; _parent.throwhit = 0; _parent.attacking = 0;
Symbol 175 MovieClip Frame 20
_parent.canatt = 1; _parent.throwing = 0; _parent.throwhit = 0; _parent.attacking = 0; _parent.canhit = 0;
Instance of Symbol 184 MovieClip in Symbol 195 MovieClip Frame 1
onClipEvent (enterFrame) { if (_parent._parent._parent.hp > 0) { _parent.gotoAndStop(101 - Math.round(_parent._parent._parent.hp / 3)); } else { _parent.gotoAndStop(100); } }
Symbol 202 MovieClip Frame 1
if (_parent._xscale == 100) { _parent._x = _parent._x + 5; } else { _parent._x = _parent._x - 5; } if (_parent.hit != 2) { _parent.hit = 2; }
Symbol 202 MovieClip Frame 2
_root.Combo = _root.Combo + 1; _root.ComboTimer = 90; if (_parent._xscale == 100) { _parent._x = _parent._x + 4; } else { _parent._x = _parent._x - 4; }
Instance of Symbol 201 MovieClip in Symbol 202 MovieClip Frame 2
onClipEvent (load) { gotoAndStop(1 + random(3)); } onClipEvent (enterFrame) { if (_parent._parent.hit == 1) { _parent.gotoAndPlay(1); } }
Symbol 202 MovieClip Frame 3
if (_parent._xscale == 100) { _parent._x = _parent._x + 3; } else { _parent._x = _parent._x - 3; }
Symbol 202 MovieClip Frame 4
if (_parent._xscale == 100) { _parent._x = _parent._x + 2; } else { _parent._x = _parent._x - 2; }
Symbol 202 MovieClip Frame 5
if (_parent._xscale == 100) { _parent._x = _parent._x + 1; } else { _parent._x = _parent._x - 1; }
Symbol 202 MovieClip Frame 13
_parent.hit = 0;
Symbol 205 MovieClip Frame 2
_root.Combo = _root.Combo + 1; _root.ComboTimer = 90; _parent.attacking = 0; _root.KO = _root.KO + 1; _root.kills = _root.kills + 1; _root.SP = _root.SP + 5;
Symbol 205 MovieClip Frame 108
_parent._x = random(800) - 200;
Symbol 205 MovieClip Frame 120
_parent.alive = 1; _parent.hp = 300; _parent.defense = random(60);
Symbol 206 MovieClip Frame 2
_root.Combo = _root.Combo + 1; _root.ComboTimer = 90; _parent.attacking = 0; _root.KO = _root.KO + 1; _root.kills = _root.kills + 1; _root.SP = _root.SP + 5;
Symbol 206 MovieClip Frame 108
_parent._x = random(800) - 200;
Symbol 206 MovieClip Frame 120
_parent.alive = 1; _parent.hp = 300; _parent.defense = random(60);
Symbol 208 MovieClip Frame 12
if ((_root.guy.countering == 1) && (_parent.hitTest(_root.guy))) { _parent.counterhit = 1; _root.guy.counterhit = 1; } else if ((_root.guy.blocking == 1) && (_parent.hitTest(_root.guy))) { _parent.blockhit = 1; } else if (_parent.hitTest(_root.guy) || (_root.guy.alive == 0)) { _root.enemyhit = 1; _root.guy.hp = _root.guy.hp - _parent.attack; }
Symbol 208 MovieClip Frame 29
if ((_root.guy.countering == 1) && (_parent.hitTest(_root.guy))) { _parent.counterhit = 1; _root.guy.counterhit = 1; } else if ((_root.guy.blocking == 1) && (_parent.hitTest(_root.guy))) { _parent.blockhit = 1; } else if (_parent.hitTest(_root.guy) || (_root.guy.alive == 0)) { _root.enemyhit = 1; _root.guy.hp = _root.guy.hp - _parent.attack; }
Symbol 208 MovieClip Frame 32
_parent.attacking = 0; _parent.inrange = 0;
Symbol 216 MovieClip Frame 2
_root.Combo = _root.Combo + 1; _root.ComboTimer = 90;
Symbol 216 MovieClip Frame 7
_root.Combo = _root.Combo + 1; _root.ComboTimer = 90;
Symbol 216 MovieClip Frame 8
_root.Combo = _root.Combo + 1; _root.ComboTimer = 90;
Symbol 216 MovieClip Frame 9
_root.Combo = _root.Combo + 1; _root.ComboTimer = 90;
Symbol 216 MovieClip Frame 10
_root.Combo = _root.Combo + 1; _root.ComboTimer = 90;
Symbol 216 MovieClip Frame 11
_root.Combo = _root.Combo + 1; _root.ComboTimer = 90;
Symbol 216 MovieClip Frame 13
_parent.alive = 0; _parent.counterhit = 0;
Symbol 220 MovieClip Frame 1
if (_parent._xscale == 100) { _parent._x = _parent._x + 5; } else { _parent._x = _parent._x - 5; }
Symbol 220 MovieClip Frame 2
if (_parent._xscale == 100) { _parent._x = _parent._x + 4; } else { _parent._x = _parent._x - 4; }
Symbol 220 MovieClip Frame 3
if (_parent._xscale == 100) { _parent._x = _parent._x + 3; } else { _parent._x = _parent._x - 3; }
Symbol 220 MovieClip Frame 4
if (_parent._xscale == 100) { _parent._x = _parent._x + 2; } else { _parent._x = _parent._x - 2; }
Symbol 220 MovieClip Frame 5
if (_parent._xscale == 100) { _parent._x = _parent._x + 1; } else { _parent._x = _parent._x - 1; }
Symbol 220 MovieClip Frame 14
_parent.attacking = 0; _parent.inrange = 0; _parent.blockhit = 0;
Symbol 222 MovieClip Frame 11
if (_parent._xscale == 100) { _parent._x = _parent._x + 40; } else { _parent._x = _parent._x - 40; }
Symbol 222 MovieClip Frame 12
if (_parent._xscale == 100) { _parent._x = _parent._x + 40; } else { _parent._x = _parent._x - 40; }
Symbol 222 MovieClip Frame 13
if (_parent._xscale == 100) { _parent._x = _parent._x + 40; } else { _parent._x = _parent._x - 40; }
Symbol 222 MovieClip Frame 14
if (_parent._xscale == 100) { _parent._x = _parent._x + 40; } else { _parent._x = _parent._x - 40; }
Symbol 222 MovieClip Frame 15
if (_parent._xscale == 100) { _parent._x = _parent._x + 40; } else { _parent._x = _parent._x - 40; }
Symbol 222 MovieClip Frame 16
if (_parent._xscale == 100) { _parent._x = _parent._x + 30; } else { _parent._x = _parent._x - 30; }
Symbol 222 MovieClip Frame 17
if (_parent._xscale == 100) { _parent._x = _parent._x + 15; } else { _parent._x = _parent._x - 15; }
Symbol 222 MovieClip Frame 18
if (_parent._xscale == 100) { _parent._x = _parent._x + 7; } else { _parent._x = _parent._x - 7; }
Symbol 222 MovieClip Frame 19
if (_parent._xscale == 100) { _parent._x = _parent._x + 5; } else { _parent._x = _parent._x - 5; }
Symbol 222 MovieClip Frame 20
if (_parent._xscale == 100) { _parent._x = _parent._x + 3; } else { _parent._x = _parent._x - 3; }
Symbol 222 MovieClip Frame 27
_parent.thrown = 0;
Symbol 245 MovieClip Frame 2
_root.bgflash = 1;
Symbol 245 MovieClip Frame 13
stop();
Symbol 248 MovieClip Frame 2
_root.bgflash = 1;
Symbol 248 MovieClip Frame 13
stop(); _parent._y = 800; _parent._x = 800;
Instance of Symbol 253 MovieClip in Symbol 255 MovieClip Frame 1
onClipEvent (enterFrame) { this._xscale = _root.guy.hp; }
Instance of Symbol 258 MovieClip in Symbol 259 MovieClip Frame 1
onClipEvent (enterFrame) { this._xscale = _root.SP; if (_root.SP > 100) { _root.SP = 100; } }
Symbol 263 Button
on (release) { _root.gotoAndStop(1); }
Symbol 265 Button
on (release) { _root.gotoAndStop(12); _root.Combo = 0; _root.ComboTimer = 0; }
Symbol 268 MovieClip Frame 7
stop();
Symbol 272 MovieClip Frame 7
stop();
Symbol 286 MovieClip Frame 2
_root.Combo = _root.Combo + 1; _root.ComboTimer = 90; _root.SP = _root.SP + 1;
Symbol 286 MovieClip Frame 4
stop();
Symbol 287 MovieClip Frame 11
stop();
Symbol 289 MovieClip Frame 2
_root.bgflash = 1;
Symbol 289 MovieClip Frame 6
_root.boss._x = random(700);
Symbol 289 MovieClip Frame 10
_root.boss.strategytime = 0;
Symbol 301 MovieClip Frame 28
_root.bgflash = 1;
Instance of Symbol 299 MovieClip in Symbol 301 MovieClip Frame 28
onClipEvent (enterFrame) { if (this.hitTest(_root.guy)) { _root.guy.hp = _root.guy.hp - 1.3; _root.enemyhit = 1; _root.guy.canatt = 0; _root.guy.attacking = 0; } }
Symbol 301 MovieClip Frame 34
_root.bgflash = 1;
Instance of Symbol 299 MovieClip in Symbol 301 MovieClip Frame 35
onClipEvent (enterFrame) { if (this.hitTest(_root.guy)) { _root.guy.hp = _root.guy.hp - 1.3; _root.enemyhit = 1; _root.guy.canatt = 0; _root.guy.attacking = 0; } }
Symbol 301 MovieClip Frame 51
_parent.attacking = 0; _parent.strategytime = 0;
Symbol 317 MovieClip Frame 32
_root.boss._x = _root.guy._x;
Symbol 317 MovieClip Frame 33
_root.boss._x = _root.guy._x;
Symbol 317 MovieClip Frame 34
_root.boss._x = _root.guy._x;
Symbol 317 MovieClip Frame 35
_root.boss._x = _root.guy._x;
Symbol 317 MovieClip Frame 36
_root.boss._x = _root.guy._x;
Symbol 317 MovieClip Frame 37
_root.boss._x = _root.guy._x;
Symbol 317 MovieClip Frame 38
_root.boss._x = _root.guy._x;
Symbol 317 MovieClip Frame 39
_root.boss._x = _root.guy._x;
Symbol 317 MovieClip Frame 40
_root.boss._x = _root.guy._x;
Symbol 317 MovieClip Frame 41
_root.boss._x = _root.guy._x;
Symbol 317 MovieClip Frame 42
_root.boss._x = _root.guy._x;
Symbol 317 MovieClip Frame 43
_root.boss._x = _root.guy._x;
Symbol 317 MovieClip Frame 44
_root.boss._x = _root.guy._x;
Instance of Symbol 280 MovieClip in Symbol 317 MovieClip Frame 53
onClipEvent (enterFrame) { if (this.hitTest(_root.guy)) { _root.guy.hp = _root.guy.hp - 20; _root.enemyhit = 1; _root.guy.canatt = 0; _root.guy.attacking = 0; } }
Symbol 317 MovieClip Frame 59
_root.bgflash = 1;
Symbol 317 MovieClip Frame 82
_parent.attacking = 0; _parent.strategytime = 0;
Symbol 319 MovieClip Frame 62
_root.bgflash = 1;
Symbol 319 MovieClip Frame 78
stop();
Instance of Symbol 253 MovieClip in Symbol 323 MovieClip Frame 1
onClipEvent (enterFrame) { this._xscale = _root.boss.hp / 10; }

Library Items

Symbol 1 BitmapUsed by:2
Symbol 2 GraphicUses:1Used by:3
Symbol 3 MovieClipUses:2Used by:9 32
Symbol 4 BitmapUsed by:5 33
Symbol 5 GraphicUses:4Used by:6
Symbol 6 MovieClipUses:5Used by:9 32
Symbol 7 GraphicUsed by:8
Symbol 8 MovieClipUses:7Used by:9 32
Symbol 9 MovieClipUses:3 6 8Used by:Timeline
Symbol 10 GraphicUsed by:11
Symbol 11 MovieClipUses:10Used by:Timeline
Symbol 12 GraphicUsed by:13 37 96
Symbol 13 MovieClipUses:12Used by:22
Symbol 14 GraphicUsed by:22
Symbol 15 GraphicUsed by:21
Symbol 16 GraphicUsed by:21
Symbol 17 GraphicUsed by:21
Symbol 18 GraphicUsed by:21
Symbol 19 GraphicUsed by:21
Symbol 20 GraphicUsed by:21
Symbol 21 ButtonUses:15 16 17 18 19 20Used by:22
Symbol 22 MovieClipUses:13 14 21Used by:25
Symbol 23 GraphicUsed by:24
Symbol 24 MovieClipUses:23Used by:25
Symbol 25 MovieClipUses:22 24Used by:Timeline
Symbol 26 GraphicUsed by:Timeline
Symbol 27 SoundUsed by:Timeline
Symbol 28 GraphicUsed by:29
Symbol 29 MovieClipUses:28Used by:32  Timeline
Symbol 30 GraphicUsed by:31
Symbol 31 MovieClipUses:30Used by:32
Symbol 32 MovieClipUses:3 6 29 31 8Used by:Timeline
Symbol 33 GraphicUses:4Used by:36
Symbol 34 GraphicUsed by:35
Symbol 35 MovieClipUses:34Used by:36
Symbol 36 MovieClipUses:33 35Used by:Timeline
Symbol 37 MovieClipUses:12Used by:38
Symbol 38 MovieClipUses:37Used by:39
Symbol 39 MovieClipUses:38Used by:Timeline
Symbol 40 GraphicUsed by:41
Symbol 41 MovieClipUses:40Used by:Timeline
Symbol 42 GraphicUsed by:43
Symbol 43 MovieClipUses:42Used by:90 92 94 106 108 109 119 125 134 136 137 138 140 141 142 144 145 146 147 163 165 166 167 170 172 173 175
Symbol 44 GraphicUsed by:45
Symbol 45 MovieClipUses:44Used by:90 92 94 106 108 109 119 125 134 136 137 138 140 141 142 144 145 146 147 163 165 166 167 170 172 173 175
Symbol 46 GraphicUsed by:47
Symbol 47 MovieClipUses:46Used by:62
Symbol 48 GraphicUsed by:62
Symbol 49 GraphicUsed by:62
Symbol 50 GraphicUsed by:62
Symbol 51 GraphicUsed by:62
Symbol 52 GraphicUsed by:62
Symbol 53 GraphicUsed by:62
Symbol 54 GraphicUsed by:62
Symbol 55 GraphicUsed by:62
Symbol 56 GraphicUsed by:62
Symbol 57 GraphicUsed by:62
Symbol 58 GraphicUsed by:62
Symbol 59 GraphicUsed by:62
Symbol 60 GraphicUsed by:62
Symbol 61 GraphicUsed by:62
Symbol 62 MovieClipUses:47 48 49 50 51 52 53 54 55 56 57 58 59 60 61Used by:90 92 94 106 108 109 119 125 134 136 137 138 140 141 142 144 145 146 147 163 165 166 167 170 172 173 175
Symbol 63 GraphicUsed by:64
Symbol 64 MovieClipUses:63Used by:89
Symbol 65 GraphicUsed by:89
Symbol 66 ShapeTweeningUsed by:72
Symbol 67 ShapeTweeningUsed by:72
Symbol 68 GraphicUsed by:72
Symbol 69 ShapeTweeningUsed by:72
Symbol 70 ShapeTweeningUsed by:72
Symbol 71 GraphicUsed by:72
Symbol 72 MovieClipUses:66 67 68 69 70 71Used by:89
Symbol 73 GraphicUsed by:89
Symbol 74 GraphicUsed by:89
Symbol 75 GraphicUsed by:89
Symbol 76 GraphicUsed by:89
Symbol 77 GraphicUsed by:89
Symbol 78 GraphicUsed by:89
Symbol 79 GraphicUsed by:89
Symbol 80 GraphicUsed by:89
Symbol 81 GraphicUsed by:89
Symbol 82 GraphicUsed by:89
Symbol 83 GraphicUsed by:89
Symbol 84 GraphicUsed by:89
Symbol 85 GraphicUsed by:89
Symbol 86 GraphicUsed by:89
Symbol 87 GraphicUsed by:89
Symbol 88 GraphicUsed by:89
Symbol 89 MovieClipUses:64 65 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88Used by:90 92 94 106 108 109 119 125 134 136 137 138 140 141 142 144 145 146 147 163 165 166 167 170 172 173 175
Symbol 90 MovieClipUses:43 45 62 89Used by:176
Symbol 91 SoundUsed by:92 147 173
Symbol 92 MovieClipUses:43 45 62 89 91Used by:176
Symbol 93 SoundUsed by:94
Symbol 94 MovieClipUses:43 45 62 89 93Used by:176
Symbol 95 SoundUsed by:106
Symbol 96 MovieClipUses:12Used by:106
Symbol 97 GraphicUsed by:106
Symbol 98 SoundUsed by:106
Symbol 99 SoundUsed by:106 201
Symbol 100 GraphicUsed by:106
Symbol 101 GraphicUsed by:106
Symbol 102 GraphicUsed by:106
Symbol 103 GraphicUsed by:106
Symbol 104 GraphicUsed by:106
Symbol 105 GraphicUsed by:106
Symbol 106 MovieClipUses:45 43 62 89 95 96 97 98 99 100 101 102 103 104 105Used by:176
Symbol 107 SoundUsed by:108
Symbol 108 MovieClipUses:43 45 62 89 107Used by:176
Symbol 109 MovieClipUses:43 45 62 89Used by:176
Symbol 110 GraphicUsed by:111
Symbol 111 MovieClipUses:110Used by:119 144 145 146 165
Symbol 112 GraphicUsed by:113
Symbol 113 MovieClipUses:112Used by:119 144 145 146 165
Symbol 114 SoundUsed by:119 221
Symbol 115 GraphicUsed by:116
Symbol 116 MovieClipUses:115Used by:119 136 137 144 145 146 165
Symbol 117 GraphicUsed by:118
Symbol 118 MovieClipUses:117Used by:119 136 137 144 145 146 165 172
Symbol 119 MovieClipUses:43 111 45 62 89 113 114 116 118Used by:176
Symbol 120 SoundUsed by:125 166
Symbol 121 SoundUsed by:125 145 167 170 173 208
Symbol 122 SoundUsed by:125 166 301 319
Symbol 123 GraphicUsed by:124
Symbol 124 MovieClipUses:123Used by:125
Symbol 125 MovieClipUses:43 45 62 89 120 121 122 124Used by:176
Symbol 126 GraphicUsed by:134
Symbol 127 GraphicUsed by:128
Symbol 128 MovieClipUses:127Used by:134
Symbol 129 SoundUsed by:134
Symbol 130 GraphicUsed by:131
Symbol 131 MovieClipUses:130Used by:134
Symbol 132 GraphicUsed by:133
Symbol 133 MovieClipUses:132Used by:134
Symbol 134 MovieClipUses:43 45 62 89 126 128 129 131 133Used by:176
Symbol 135 SoundUsed by:136 137
Symbol 136 MovieClipUses:43 45 62 89 135 116 118Used by:176
Symbol 137 MovieClipUses:43 45 62 89 135 116 118Used by:176
Symbol 138 MovieClipUses:43 45 62 89Used by:176
Symbol 139 SoundUsed by:140 141
Symbol 140 MovieClipUses:43 45 62 89 139Used by:176
Symbol 141 MovieClipUses:43 45 62 89 139Used by:176
Symbol 142 MovieClipUses:43 45 62 89Used by:176
Symbol 143 SoundUsed by:144 146
Symbol 144 MovieClipUses:43 45 62 89 111 143 113 116 118Used by:176
Symbol 145 MovieClipUses:43 45 62 89 111 121 113 116 118Used by:176
Symbol 146 MovieClipUses:43 45 62 89 111 143 113 116 118Used by:176
Symbol 147 MovieClipUses:43 45 62 89 91Used by:176
Symbol 148 SoundUsed by:163
Symbol 149 GraphicUsed by:150
Symbol 150 MovieClipUses:149Used by:163
Symbol 151 GraphicUsed by:152
Symbol 152 MovieClipUses:151Used by:163 216
Symbol 153 GraphicUsed by:154
Symbol 154 MovieClipUses:153Used by:163
Symbol 155 GraphicUsed by:156
Symbol 156 MovieClipUses:155Used by:163 216
Symbol 157 GraphicUsed by:158
Symbol 158 MovieClipUses:157Used by:163 216
Symbol 159 GraphicUsed by:160
Symbol 160 MovieClipUses:159Used by:163 216
Symbol 161 GraphicUsed by:162
Symbol 162 MovieClipUses:161Used by:163 216
Symbol 163 MovieClipUses:43 45 62 89 148 150 152 154 156 158 160 162Used by:176
Symbol 164 SoundUsed by:165
Symbol 165 MovieClipUses:43 45 62 89 164 111 113 116 118Used by:176
Symbol 166 MovieClipUses:43 45 62 89 120 122Used by:176
Symbol 167 MovieClipUses:43 62 89 45 121Used by:176
Symbol 168 GraphicUsed by:169
Symbol 169 MovieClipUses:168Used by:170
Symbol 170 MovieClipUses:43 45 62 89 169 121Used by:176
Symbol 171 SoundUsed by:172
Symbol 172 MovieClipUses:43 45 62 89 171 118Used by:176
Symbol 173 MovieClipUses:43 45 62 89 121 91Used by:176
Symbol 174 SoundUsed by:175
Symbol 175 MovieClipUses:43 45 62 89 174Used by:176
Symbol 176 MovieClipUses:90 92 94 106 108 109 119 125 134 136 137 138 140 141 142 144 145 146 147 163 165 166 167 170 172 173 175Used by:Timeline
Symbol 177 GraphicUsed by:178
Symbol 178 MovieClipUses:177Used by:196 202 203 205 206 208 216 220 221 222
Symbol 179 GraphicUsed by:180
Symbol 180 MovieClipUses:179Used by:196 202 203 205 206 208 216 220 221 222
Symbol 181 GraphicUsed by:182
Symbol 182 MovieClipUses:181Used by:196 202 203 205 206 208 216 220 221 222
Symbol 183 GraphicUsed by:184
Symbol 184 MovieClipUses:183Used by:195
Symbol 185 GraphicUsed by:186
Symbol 186 MovieClipUses:185Used by:195
Symbol 187 GraphicUsed by:195
Symbol 188 GraphicUsed by:195
Symbol 189 GraphicUsed by:195
Symbol 190 GraphicUsed by:195
Symbol 191 GraphicUsed by:195
Symbol 192 GraphicUsed by:195
Symbol 193 GraphicUsed by:195
Symbol 194 GraphicUsed by:195
Symbol 195 MovieClipUses:184 186 187 188 189 190 191 192 193 194Used by:196 202 203 205 206 208 216 220 221 222
Symbol 196 MovieClipUses:178 180 182 195Used by:223
Symbol 197 GraphicUsed by:198 209 287 318
Symbol 198 MovieClipUses:197Used by:202
Symbol 199 SoundUsed by:201
Symbol 200 SoundUsed by:201 286
Symbol 201 MovieClipUses:99 199 200Used by:202
Symbol 202 MovieClipUses:178 180 182 195 198 201Used by:223
Symbol 203 MovieClipUses:178 180 182 195Used by:223
Symbol 204 SoundUsed by:205 206
Symbol 205 MovieClipUses:178 180 182 195 204Used by:223
Symbol 206 MovieClipUses:178 180 182 195 204Used by:223
Symbol 207 SoundUsed by:208
Symbol 208 MovieClipUses:178 180 182 195 121 207Used by:223
Symbol 209 MovieClipUses:197Used by:216
Symbol 210 SoundUsed by:216
Symbol 211 GraphicUsed by:216
Symbol 212 GraphicUsed by:216
Symbol 213 GraphicUsed by:216
Symbol 214 GraphicUsed by:216
Symbol 215 GraphicUsed by:216
Symbol 216 MovieClipUses:178 180 182 195 209 210 211 152 212 156 213 158 214 160 215 162Used by:223
Symbol 217 GraphicUsed by:218
Symbol 218 MovieClipUses:217Used by:220
Symbol 219 SoundUsed by:220
Symbol 220 MovieClipUses:178 180 182 195 218 219Used by:223
Symbol 221 MovieClipUses:178 180 182 195 114Used by:223
Symbol 222 MovieClipUses:178 180 182 195Used by:223
Symbol 223 MovieClipUses:196 202 203 205 206 208 216 220 221 222Used by:Timeline
Symbol 224 GraphicUsed by:225
Symbol 225 MovieClipUses:224Used by:234 245 248
Symbol 226 GraphicUsed by:227
Symbol 227 MovieClipUses:226Used by:234 245 248
Symbol 228 GraphicUsed by:233
Symbol 229 GraphicUsed by:233
Symbol 230 GraphicUsed by:233
Symbol 231 GraphicUsed by:233
Symbol 232 GraphicUsed by:233
Symbol 233 MovieClipUses:228 229 230 231 232Used by:234 245 248
Symbol 234 MovieClipUses:225 227 233Used by:249
Symbol 235 GraphicUsed by:241
Symbol 236 GraphicUsed by:241
Symbol 237 GraphicUsed by:241
Symbol 238 GraphicUsed by:241
Symbol 239 GraphicUsed by:241
Symbol 240 GraphicUsed by:241
Symbol 241 MovieClipUses:235 236 237 238 239 240Used by:245
Symbol 242 GraphicUsed by:243
Symbol 243 MovieClipUses:242Used by:245 248
Symbol 244 SoundUsed by:245 248
Symbol 245 MovieClipUses:225 227 233 241 243 244Used by:249
Symbol 246 GraphicUsed by:247
Symbol 247 MovieClipUses:246Used by:248
Symbol 248 MovieClipUses:247 225 227 233 243 244Used by:249
Symbol 249 MovieClipUses:234 245 248Used by:Timeline
Symbol 250 ShapeTweeningUsed by:253
Symbol 251 ShapeTweeningUsed by:253
Symbol 252 GraphicUsed by:253 258
Symbol 253 MovieClipUses:250 251 252Used by:255 323
Symbol 254 GraphicUsed by:255 259 323
Symbol 255 MovieClipUses:253 254Used by:Timeline
Symbol 256 ShapeTweeningUsed by:258
Symbol 257 ShapeTweeningUsed by:258
Symbol 258 MovieClipUses:256 257 252Used by:259
Symbol 259 MovieClipUses:258 254Used by:Timeline
Symbol 260 GraphicUsed by:263 265
Symbol 261 FontUsed by:262 264
Symbol 262 TextUses:261Used by:263
Symbol 263 ButtonUses:260 262Used by:Timeline
Symbol 264 TextUses:261Used by:265
Symbol 265 ButtonUses:260 264Used by:Timeline
Symbol 266 GraphicUsed by:268
Symbol 267 SoundUsed by:268
Symbol 268 MovieClipUses:266 267Used by:275
Symbol 269 FontUsed by:270
Symbol 270 EditableTextUses:269Used by:271
Symbol 271 MovieClipUses:270Used by:272
Symbol 272 MovieClipUses:271Used by:275
Symbol 273 FontUsed by:274 276 277 324
Symbol 274 EditableTextUses:273Used by:275
Symbol 275 MovieClipUses:268 272 274Used by:Timeline
Symbol 276 TextUses:273Used by:Timeline
Symbol 277 EditableTextUses:273Used by:Timeline
Symbol 278 SoundUsed by:Timeline
Symbol 279 GraphicUsed by:280
Symbol 280 MovieClipUses:279Used by:285 286 289 301 317 319
Symbol 281 GraphicUsed by:282
Symbol 282 MovieClipUses:281Used by:285 286 289 301 317 319
Symbol 283 GraphicUsed by:284
Symbol 284 MovieClipUses:283Used by:285 286 289 301 317 319
Symbol 285 MovieClipUses:280 282 284Used by:320
Symbol 286 MovieClipUses:280 282 284 200Used by:320
Symbol 287 MovieClipUses:197Used by:289
Symbol 288 SoundUsed by:289
Symbol 289 MovieClipUses:280 282 284 287 288Used by:320
Symbol 290 GraphicUsed by:291
Symbol 291 MovieClipUses:290Used by:301
Symbol 292 SoundUsed by:301
Symbol 293 GraphicUsed by:294
Symbol 294 MovieClipUses:293Used by:301
Symbol 295 SoundUsed by:301 317
Symbol 296 GraphicUsed by:297
Symbol 297 MovieClipUses:296Used by:301
Symbol 298 GraphicUsed by:299
Symbol 299 MovieClipUses:298Used by:301
Symbol 300 SoundUsed by:301
Symbol 301 MovieClipUses:280 282 284 291 292 294 295 297 122 299 300Used by:320
Symbol 302 GraphicUsed by:303
Symbol 303 MovieClipUses:302Used by:317
Symbol 304 SoundUsed by:317
Symbol 305 GraphicUsed by:306
Symbol 306 MovieClipUses:305Used by:317
Symbol 307 GraphicUsed by:308
Symbol 308 MovieClipUses:307Used by:317
Symbol 309 GraphicUsed by:310
Symbol 310 MovieClipUses:309Used by:317
Symbol 311 GraphicUsed by:312
Symbol 312 MovieClipUses:311Used by:317
Symbol 313 SoundUsed by:317
Symbol 314 GraphicUsed by:315
Symbol 315 MovieClipUses:314Used by:317
Symbol 316 SoundUsed by:317
Symbol 317 MovieClipUses:280 282 284 303 304 306 308 310 312 313 315 295 316Used by:320
Symbol 318 MovieClipUses:197Used by:319
Symbol 319 MovieClipUses:280 282 284 318 122Used by:320
Symbol 320 MovieClipUses:285 286 289 301 317 319Used by:Timeline
Symbol 321 GraphicUsed by:322
Symbol 322 MovieClipUses:321Used by:323
Symbol 323 MovieClipUses:253 254 322Used by:Timeline
Symbol 324 EditableTextUses:273Used by:Timeline

Instance Names

"floor"Frame 9Symbol 36 MovieClip
"guy"Frame 10Symbol 176 MovieClip
"fireball"Frame 10Symbol 249 MovieClip
"airfireball"Frame 10Symbol 249 MovieClip
"floor"Frame 12Symbol 36 MovieClip
"guy"Frame 12Symbol 176 MovieClip
"boss"Frame 12Symbol 320 MovieClip
"fireball"Frame 12Symbol 249 MovieClip
"airfireball"Frame 12Symbol 249 MovieClip
"bar"Symbol 22 MovieClip Frame 1Symbol 13 MovieClip
"hitL"Symbol 176 MovieClip Frame 9Symbol 134 MovieClip

Special Tags

FileAttributes (69)Timeline Frame 1Access local files only, Metadata not present, AS1/AS2.

Labels

"loaded"Symbol 22 MovieClip Frame 3
"idle"Symbol 176 MovieClip Frame 1
"fall"Symbol 176 MovieClip Frame 2
"land"Symbol 176 MovieClip Frame 3
"dead"Symbol 176 MovieClip Frame 4
"jump"Symbol 176 MovieClip Frame 5
"walk"Symbol 176 MovieClip Frame 6
"LP"Symbol 176 MovieClip Frame 7
"HP"Symbol 176 MovieClip Frame 8
"HitL"Symbol 176 MovieClip Frame 9
"LK"Symbol 176 MovieClip Frame 10
"HK"Symbol 176 MovieClip Frame 11
"crouch"Symbol 176 MovieClip Frame 12
"idle->crouch"Symbol 176 MovieClip Frame 13
"crouch->idle"Symbol 176 MovieClip Frame 14
"crouch walk"Symbol 176 MovieClip Frame 15
"crouchLP"Symbol 176 MovieClip Frame 16
"crouchHP"Symbol 176 MovieClip Frame 17
"crouchLK"Symbol 176 MovieClip Frame 18
"Counter Start"Symbol 176 MovieClip Frame 19
"Counter Hit"Symbol 176 MovieClip Frame 20
"AirLP"Symbol 176 MovieClip Frame 21
"AirHP"Symbol 176 MovieClip Frame 22
"Block"Symbol 176 MovieClip Frame 23
"dash"Symbol 176 MovieClip Frame 24
"AirLK"Symbol 176 MovieClip Frame 25
"throw"Symbol 176 MovieClip Frame 26
"throw succeed"Symbol 176 MovieClip Frame 27
"idle"Symbol 223 MovieClip Frame 1
"hit"Symbol 223 MovieClip Frame 2
"walk"Symbol 223 MovieClip Frame 3
"dead"Symbol 223 MovieClip Frame 4
"deadHK"Symbol 223 MovieClip Frame 5
"atk"Symbol 223 MovieClip Frame 6
"counterdeath"Symbol 223 MovieClip Frame 7
"blocked"Symbol 223 MovieClip Frame 8
"block"Symbol 223 MovieClip Frame 9
"thrown"Symbol 223 MovieClip Frame 10
"idle"Symbol 320 MovieClip Frame 1
"hitL"Symbol 320 MovieClip Frame 2
"teleport"Symbol 320 MovieClip Frame 3
"atk1"Symbol 320 MovieClip Frame 4
"atk2"Symbol 320 MovieClip Frame 5
"death"Symbol 320 MovieClip Frame 6

Dynamic Text Variables

_root.ComboSymbol 270 EditableText"<p align="left"><font face="Arial Black" size="12" color="#ffffff" letterSpacing="0.000000" kerning="1">(Combo)</font></p>"
_root.ComboSymbol 274 EditableText"<p align="left"><font face="Impact" size="12" color="#ffffff" letterSpacing="0.000000" kerning="1">(Combo)</font></p>"
_root.KOSymbol 277 EditableText"<p align="left"><font face="Impact" size="12" color="#ffffff" letterSpacing="0.000000" kerning="1">KO</font></p>"
_root.KOSymbol 324 EditableText"<p align="left"><font face="Impact" size="12" color="#ffffff" letterSpacing="0.000000" kerning="1">KO</font></p>"




http://swfchan.com/16/76122/info.shtml
Created: 5/4 -2019 08:07:54 Last modified: 5/4 -2019 08:07:54 Server time: 15/05 -2024 16:36:30