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

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

dragon-ball-z.swf

This is the info page for
Flash #108476

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


Text
Power Levels Demo

RECRE

RELENTLESS CREATIONS

START

Instructions

HITS

FIGHT!

FIGHT!

How 2 Play

How 2 Play

Fire Ball

Kick

Punch

Dash

recharge

Smash

A

X

Z

S

Space

X or Z

Note:
A smash is automatically executed
when you hit your enemy while having
a full Chi energy bar

Chi energy bar

TRY THEM OUT.

BACK

YOU WIN

YOU WIN

Play Again

YOU LOSE

YOU LOSE

ActionScript [AS1/AS2]

Frame 1
Stage.showMenu = false; function skiptointro() { gotoAndPlay (6); }
Instance of Symbol 10 MovieClip in Frame 1
onClipEvent (load) { currentbytes = int(_root.getBytesLoaded() / 1000); totalbytes = int(_root.getBytesTotal() / 1000); percentbytes = int((currentbytes / totalbytes) * 100); _root.textbox = ((("LOADING " + percentbytes) + "% of ") + totalbytes) + " KBs"; _root.loadedbar._width = percentbytes; if (percentbytes >= 100) { _root.skiptointro(); } }
Frame 4
gotoAndPlay (1);
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (_root.bonusClockB >= 40) { _root.titleScreen(); } } onClipEvent (enterFrame) { _root.bonusClockB++; }
Frame 6
stop(); function titleScreen() { stopAllSounds(); gotoAndPlay (10); } bonusClockB = 0;
Frame 10
stop(); stopAllSounds(); i = 0; while (i < 2) { mySound = new Sound(); mySound.attachSound("medley"); mySound.start(0.1, 99999); i++; } cpuDead = false; cpuGettingHurt = false; cpuAttacking = false; cpuBlocking = false; userDead = false; userGettingHurt = false; userAttacking = false; userBlocking = false; userCharge = 0; cpuCharge = 0; userHp = 100; cpuHp = 100;
Frame 15
stop(); stopAllSounds(); i = 0; while (i < 2) { mySound = new Sound(); mySound.attachSound("actionMusic"); mySound.start(0.1, 99999); i++; } function moveAround(cpuChar, userChar) { var beAgressive = ""; var randNum = int(Math.random() * 25000); var targetNum = 5500; var secondNum = 7500; var thirdNum = 2500; var moveNum = 15; trace(randNum); trace(beAgressive); if ((((randNum >= targetNum) && (randNum <= secondNum)) && (!userChar.hitTest(cpuChar))) && (userChar._x < cpuChar._x)) { cpuChar._x = cpuChar._x + moveNum; } else if ((((randNum <= targetNum) && (randNum >= thirdNum)) && (!userChar.hitTest(cpuChar))) && (userChar._x < cpuChar._x)) { cpuChar._x = cpuChar._x - moveNum; } else if ((((randNum >= targetNum) && (randNum <= secondNum)) && (!userChar.hitTest(cpuChar))) && (userChar._x > cpuChar._x)) { cpuChar._x = cpuChar._x + moveNum; } else if ((((randNum <= targetNum) && (randNum >= thirdNum)) && (!userChar.hitTest(cpuChar))) && (userChar._x > cpuChar._x)) { cpuChar._x = cpuChar._x - moveNum; } } function reverseX(character, amount, badguy, player) { if (character._x > badguy._x) { character._xscale = -amount; } else if (character._x < badguy._x) { character._xscale = amount; } } function cpuDamage(movieClip, player) { if (player.hit.hitTest(movieClip) && (_root.cpuBlocking == false)) { movieClip.gotoAndPlay("damage"); } else if (player.juggle.hitTest(movieClip) && (_root.cpuBlocking == false)) { movieClip.gotoAndPlay("damage"); var i = 0; if (i < 25) { movieClip._y = movieClip._y - 100; } } } function userDamage(movieClip, player) { if (player.hit.hitTest(movieClip) && (_root.userBlocking == false)) { movieClip.gotoAndPlay("damage"); } else if (player.juggle.hitTest(movieClip) && (_root.userBlocking == false)) { movieClip.gotoAndPlay("damage"); var i = 0; if (i < 25) { movieClip._y = movieClip._y - 100; } } } function moveX(player, pixels) { if (Key.isDown(37) && (_root.userBlocking == false)) { player._x = player._x - pixels; } else if (Key.isDown(39) && (_root.userBlocking == false)) { player._x = player._x + pixels; } } function limit(movieClip) { var endVal = 525; beginVal = 10; if (movieClip._x >= endVal) { movieClip._x = endVal; } else if (movieClip._x <= beginVal) { movieClip._x = beginVal; } } function cpuAttack(player, badguy) { var randomness = int(Math.random() * 15000); if ((((randomness >= 100) && (randomness < 1500)) && ((((_root.cpuAttacking == false) && (_root.cpuDead == false)) && (_root.cpuGettingHurt == false)) && (_root.cpuBlocking == false))) && (player.hitTest(badguy))) { badguy.gotoAndPlay("attack2"); trace(randomness); } else if (((randomness >= 1501) && (randomness < 2000)) && (_root.userAttacking == true)) { badguy.gotoAndPlay("blocking"); } else if (((((((randomness >= 4001) && (randomness < 5001)) && (_root.cpuAttacking == false)) && (_root.cpuDead == false)) && (_root.cpuGettingHurt == false)) && (_root.cpuBlocking == false)) && (_root.cpuCharge >= 10)) { badguy.gotoAndPlay("fireball"); } else if ((((randomness >= 7001) && (randomness < 8002)) && (_root.userAttacking == false)) && (_root.cpuCharge < 10)) { badguy.gotoAndPlay("charge"); } else if ((((randomness >= 8003) && (randomness < 8503)) && (_root.userAttacking == false)) && (!badguy.hitTest(player))) { badguy.gotoAndPlay("dash"); } } function pUp(badguy, startframe, endFrame) { if ((badguy._currentframe > startFrame) && (badguy._currentframe < endFrame)) { _root.cpuCharge = _root.cpuCharge + 25; } } function pDown(badguy, startframe, endFrame) { if ((badguy._currentframe > startFrame) && (badguy._currentframe < endFrame)) { _root.cpuCharge = _root.cpuCharge - 5; } } function dashQuick(character, startFrame, endFrame) { if (((character._currentframe > startFrame) && (character._currentframe < endFrame)) && (character._x > _root.user._x)) { character._x = character._x - 50; } else if (((character._currentframe > startFrame) && (character._currentframe < endFrame)) && (character._x < _root.user._x)) { character._x = character._x + 50; } } function dashQuickUser(character, startFrame, endFrame) { if ((((character._currentframe > startFrame) && (character._currentframe < endFrame)) && (character._x > _root.cpu._x)) && (!character.hitTest(_root.cpu))) { character._x = character._x - 45; } else if ((((character._currentframe > startFrame) && (character._currentframe < endFrame)) && (character._x < _root.cpu._x)) && (!character.hitTest(_root.cpu))) { character._x = character._x + 45; } } function pUpUser(badguy, startframe, endFrame) { if ((badguy._currentframe > startFrame) && (badguy._currentframe < endFrame)) { _root.userCharge = _root.userCharge + 5; } } function pDownUser(badguy, startframe, endFrame) { if ((((badguy._currentframe > startFrame) && (badguy._currentframe < endFrame)) && (_root.userFireball._currentframe > 1)) && (_root.userFireball._currentframe < 3)) { _root.userCharge = _root.userCharge - 5; } } cpuDead = false; cpuGettingHurt = false; cpuAttacking = false; cpuBlocking = false; userDead = false; userGettingHurt = false; userAttacking = false; userBlocking = false; userCharge = 0; cpuCharge = 0; userHp = 100; cpuHp = 100; hits = 0; hitCount = 0; hitCounter = 0; anyNumber = 100; myframe = new Array(34, 39); cpuHurt = false;
Instance of Symbol 121 MovieClip "user" in Frame 15
onClipEvent (enterFrame) { _root.reverseX(this, 60.5, _root.cpu); _root.pUpUser(this, 29, 35); _root.dashQuickUser(this, 40, 46); } onClipEvent (enterFrame) { _root.cpuDamage(_root.cpu, this); } onClipEvent (enterFrame) { _root.moveX(this, 25); } onClipEvent (enterFrame) { if (this.hit.hitTest(_root.cpu) && (_root.cpuHurt == false)) { _root.hits = _root.hits + 1; } } onClipEvent (enterFrame) { if (_root.user.hit.hitTest(_root.cpu) && (_root.cpuHurt == false)) { _root.hitCounter = _root.hitCounter + 8; } else if ((!_root.user.hit.hitTest(_root.cpu)) && (_root.hitCounter > 0)) { _root.hitCounter = _root.hitCounter - 1; } } onClipEvent (enterFrame) { if (_root.hitCounter == 0) { _root.hits = 0; _root.comboHits._visible = false; } else { _root.comboHits._visible = true; } } onClipEvent (enterFrame) { trace(_root.hitCounter); } onClipEvent (enterFrame) { if (_root.user._x < _root.cpu._x) { _root.comboHits._x = _root.user._x - _root.anyNumber; } else if (_root.user._x > _root.cpu._x) { _root.comboHits._x = _root.user._x + _root.anyNumber; } } onClipEvent (enterFrame) { if (_root.user._x < _root.cpu._x) { _root.justHits._x = _root.comboHits._x - _root.anyNumber; } else if (_root.user._x > _root.cpu._x) { _root.justHits._x = _root.comboHits._x + _root.anyNumber; } } onClipEvent (enterFrame) { if (_root.user.hit.hitTest(_root.cpu) && (_root.cpu._x > _root.user._x)) { _root.cpu._x = _root.cpu._x + 10; } else if (_root.user.hit.hitTest(_root.cpu) && (_root.cpu._x < _root.user._x)) { _root.cpu._x = _root.cpu._x - 10; } } onClipEvent (enterFrame) { if ((_root.cpu.hit.hitTest(this) && (_root.userBlocking == false)) && (_root.userGettingHurt == false)) { this.gotoAndPlay("damage"); } } onClipEvent (enterFrame) { if (_root.cpuCharge >= 100) { _root.cpuCharge = 100; } } onClipEvent (enterFrame) { var thatFrame = 55; if ((((_root.cpuAttacking == true) && (Key.isDown(37))) && (_root.userGettingHurt == false)) && (_root.user._x < _root.cpu._x)) { _root.user.gotoAndPlay("blocking"); } else if ((((_root.cpuAttacking == true) && (Key.isDown(39))) && (_root.userGettingHurt == false)) && (_root.user._x > _root.cpu._x)) { _root.user.gotoAndPlay("blocking"); } else if (((((_root.cpuAttacking == true) && (Key.isDown(37))) && (_root.userGettingHurt == false)) && (_root.user._x < _root.cpu._x)) && (_root.cpu._currentframe == thatFrame)) { _root.user.gotoAndPlay("blocking"); } else if (((((_root.cpuAttacking == true) && (Key.isDown(37))) && (_root.userGettingHurt == false)) && (_root.user._x > _root.cpu._x)) && (_root.cpu._currentframe == thatFrame)) { _root.user.gotoAndPlay("blocking"); } } onClipEvent (enterFrame) { if (this._x >= 600) { this._x = 600; } else if (this._x <= 50) { this._x = 50; } } onClipEvent (enterFrame) { if ((_root.user.hitTest(_root.cpu) && (Key.isDown(39))) && (_root.cpu._x >= this._x)) { this._x = this._x - 25; } else if ((_root.user.hitTest(_root.cpu) && (Key.isDown(37))) && (_root.cpu._x <= this._x)) { this._x = this._x + 25; } } onClipEvent (enterFrame) { var changeNum = 61; if (((_root.user.hit.hitTest(_root.cpu) && (_root.cpu._x > this._x)) && (_root.userCharge == 100)) && (_root.cpu._currentframe < changeNum)) { _root.cpu.gotoAndPlay("smashed"); _root.userCharge = _root.userCharge - 20; } } onClipEvent (enterFrame) { var changeNum = 61; if (((_root.user.hit.hitTest(_root.cpu) && (_root.cpu._x < this._x)) && (_root.userCharge == 100)) && (_root.cpu._currentframe < changeNum)) { _root.cpu.gotoAndPlay("smashed"); _root.userCharge = _root.userCharge - 20; } } onClipEvent (enterFrame) { var changeNum = 61; var otherNum = 65; if ((((_root.cpu._currentframe > changeNum) && (_root.cpu._currentframe < otherNum)) && (_root.cpu._x < 500)) && (_root.cpu._x > _root.user._x)) { _root.cpu._x = _root.cpu._x + 100; } } onClipEvent (enterFrame) { var changeNum = 61; var otherNum = 65; if ((((_root.cpu._currentframe > changeNum) && (_root.cpu._currentframe < otherNum)) && (_root.cpu._x > 10)) && (_root.cpu._x < _root.user._x)) { _root.cpu._x = _root.cpu._x - 100; } } onClipEvent (enterFrame) { if (_root.userCharge > 100) { _root.userCharge = 100; } } onClipEvent (enterFrame) { if ((_root.cpu.hit.hitTest(_root.user) && (_root.cpuCharge >= 95)) && (_root.user._x < _root.cpu._x)) { _root.user._x = _root.user._x - 150; _root.user.gotoAndPlay("smashed"); } } onClipEvent (enterFrame) { if ((_root.cpu.hit.hitTest(_root.user) && (_root.cpuCharge >= 95)) && (_root.user._x > _root.cpu._x)) { _root.user._x = _root.user._x + 150; _root.user.gotoAndPlay("smashed"); } } onClipEvent (enterFrame) { if (_root.user.hit.hitTest(_root.cpu) && (_root.cpuBlocking == false)) { _root.cpuHp = _root.cpuHp - 2; } } onClipEvent (enterFrame) { if (_root.cpu.hit.hitTest(_root.user) && (_root.userBlocking == false)) { _root.userHp = _root.userHp - 5; } } onClipEvent (enterFrame) { if ((((_root.userFireBall.hitTest(_root.cpu) && (_root.cpuBlocking == false)) && (_root.cpuGettingHurt == false)) && (_root.userFireBall._currentframe > 1)) && (_root.userFireBall._currentframe < 7)) { _root.cpuHp = _root.cpuHp - 4; } } onClipEvent (enterFrame) { if ((((_root.cpuFireBall.hitTest(_root.user) && (_root.userBlocking == false)) && (_root.userGettingHurt == false)) && (_root.cpuFireBall._currentframe > 1)) && (_root.cpuFireBall._currentframe < 7)) { _root.userHp = _root.userHp - 2; } } onClipEvent (enterFrame) { firstNum = 51; lastNum = 55; if ((this._currentframe > firstNum) && (this._currentframe < lastNum)) { _root.userBlocking == true; } } onClipEvent (enterFrame) { if (_root.hits > 0) { _root.justHits._visible = true; } else { _root.justHits._visible = false; } } onClipEvent (enterFrame) { if ((_root.cpuHp <= 0) && (_root.cpu._currentframe < 74)) { _root.cpu.gotoAndPlay("dead"); } else if ((_root.userHp <= 0) && (_root.user._currentframe < 79)) { _root.user.gotoAndPlay("dead"); } }
Instance of Symbol 140 MovieClip "cpu" in Frame 15
onClipEvent (enterFrame) { if (_root.cpuDead == false) { _root.moveAround(this, _root.user); _root.limit(this); _root.cpuAttack(_root.user, this); _root.pUp(this, 52, 60); _root.pDown(this, 21, 25); _root.dashQuick(this, 26, 29); } } onClipEvent (enterFrame) { var thisCpu = _root.cpu; var frame1 = 29; var frame2 = 33; if ((thisCpu._currentframe > frame1) && (thisCpu._currentframe < frame2)) { _root.cpuHurt = true; } else { _root.cpuHurt = false; } } onClipEvent (enterFrame) { var Ynum = 190; if (_root.cpu.hitTest(_root.ground && (!_root.cpu.hitTest(_root.ground)))) { _root.cpu._y = Ynum; trace(_root.cpu._y); } } onClipEvent (enterFrame) { if (_root.user._x < this._x) { this._xscale = 150; } else if (_root.user._x > this._x) { this._xscale = -150; } } onClipEvent (enterFrame) { firstNum = 41; lastNum = 46; if ((this._currentframe > firstNum) && (this._currentframe < lastNum)) { _root.cpuBlocking == true; } }
Instance of Symbol 153 MovieClip "cpuFireball" in Frame 15
onClipEvent (enterFrame) { if ((_root.cpu._currentframe > 21) && (_root.cpu._currentframe < 25)) { this.gotoAndPlay("flame"); } else if (((this._currentframe > 1) && (_root.user._x < _root.cpu._x)) && (this._currentframe < 7)) { this._x = this._x - 50; } else if (((this._currentframe > 1) && (_root.user._x > _root.cpu._x)) && (this._currentframe < 7)) { this._x = this._x + 50; } } onClipEvent (enterFrame) { if ((this._currentframe == 1) && (_root.cpu._x > _root.user._x)) { this._x = _root.cpu._x - 50; } else if ((this._currentframe == 1) && (_root.cpu._x < _root.user._x)) { this._x = _root.cpu._x + 50; } } onClipEvent (enterFrame) { if (_root.cpu._x > _root.user._x) { this._xscale = 100; } else if (_root.cpu._x < _root.user._x) { this._xscale = -100; } } onClipEvent (enterFrame) { if ((((this.hitTest(_root.user) && (_root.userGettingHurt == false)) && (_root.userBlocking == false)) && (this._currentframe > 1)) && (this._currentframe < 7)) { _root.user.gotoAndPlay("damage"); } }
Instance of Symbol 153 MovieClip "userFireball" in Frame 15
onClipEvent (enterFrame) { if ((((_root.user._currentframe > 25) && (_root.user._currentframe < 27)) && (_root.userCharge >= 10)) && (this._currentframe < 11)) { this.gotoAndPlay("flame"); } else if (((this._currentframe > 1) && (_root.user._x < _root.cpu._x)) && (this._currentframe < 7)) { this._x = this._x + 75; } else if (((this._currentframe > 1) && (_root.user._x > _root.cpu._x)) && (this._currentframe < 7)) { this._x = this._x - 75; } } onClipEvent (enterFrame) { if (((this._currentframe == 1) && (_root.user._x > _root.cpu._x)) && (_root.user._currentframe == 5)) { this._x = _root.user._x - 50; } else if (((this._currentframe == 1) && (_root.user._x < _root.cpu._x)) && (_root.user._currentframe == 5)) { this._x = _root.user._x + 50; } } onClipEvent (enterFrame) { if (_root.user._x > _root.cpu._x) { this._xscale = -100; } else if (_root.user._x < _root.cpu._x) { this._xscale = 100; } } onClipEvent (enterFrame) { if ((((this.hitTest(_root.cpu) && (_root.cpuGettingHurt == false)) && (_root.cpuBlocking == false)) && (this._currentframe > 1)) && (this._currentframe < 7)) { _root.cpu.gotoAndPlay("damage"); } } onClipEvent (enterFrame) { if (((this._currentframe > 1) && (_root.user._x > _root.cpu._x)) && (this._x == (_root.user._x - 50))) { _root.userCharge = _root.userCharge - 15; } else if (((this._currentframe > 1) && (_root.user._x < _root.cpu._x)) && (this._x == (_root.user._x + 50))) { _root.userCharge = _root.userCharge - 15; } } onClipEvent (enterFrame) { if ((((this.hitTest(_root.cpuFireBall) && (this._currentframe < 7)) && (this._currentframe > 1)) && (_root.cpu._currentframe > 1)) && (_root.cpu._currentframe < 7)) { this.gotoAndPlay("collide"); _root.cpuFireBall.gotoAndPlay("collide"); } }
Instance of Symbol 160 MovieClip in Frame 15
onClipEvent (enterFrame) { this._width = _root.cpuCharge; }
Instance of Symbol 160 MovieClip in Frame 15
onClipEvent (enterFrame) { this._width = _root.userCharge; }
Instance of Symbol 159 MovieClip "userLife" in Frame 15
onClipEvent (enterFrame) { this._width = _root.userHp; }
Instance of Symbol 159 MovieClip "cpuLife" in Frame 15
onClipEvent (enterFrame) { this._width = _root.cpuHp; }
Frame 20
stop(); stopAllSounds();
Frame 21
stop(); stopAllSounds();
Frame 22
stop(); stopAllSounds();
Symbol 53 MovieClip Frame 41
stop();
Symbol 57 MovieClip Frame 46
stop();
Symbol 66 Button
on (release) { gotoAndPlay (15); }
Symbol 69 Button
on (release) { gotoAndPlay (20); }
Symbol 76 Button
on (release, keyPress "<Up>") { gotoAndPlay (59); } on (keyPress "<Right>") { gotoAndPlay (6); } on (keyPress "<Left>") { gotoAndPlay (6); } on (release, keyPress "z") { gotoAndPlay (10); } on (keyPress "x") { gotoAndPlay (15); } on (keyPress "<Space>") { gotoAndPlay (29); } on (keyPress "a") { gotoAndPlay (25); } on (keyPress "s") { gotoAndPlay (40); }
Symbol 79 Button
on (keyPress "<Right>") { gotoAndPlay (1); } on (keyPress "<Left>") { gotoAndPlay (1); }
Symbol 101 Button
on (keyPress "<Space>") { gotoAndPlay (31); }
Symbol 112 Button
on (keyPress "<Left>") { gotoAndPlay (5); } on (keyPress "<Left>") { gotoAndPlay (5); } on (keyPress "<Up>") { gotoAndPlay (5); } on (keyPress "<Down>") { gotoAndPlay (5); }
Symbol 113 Button
on (keyPress "<Left>") { gotoAndPlay (5); } on (keyPress "<Left>") { gotoAndPlay (5); } on (keyPress "<Up>") { gotoAndPlay (5); } on (keyPress "<Down>") { gotoAndPlay (5); }
Symbol 121 MovieClip Frame 1
_root.userDead = false; _root.userGettingHurt = false; _root.userAttacking = false; _root.userBlocking = false; _root.walking = false;
Symbol 121 MovieClip Frame 5
stop(); _root.userDead = false; _root.userGettingHurt = false; _root.userAttacking = false; _root.userBlocking = false;
Symbol 121 MovieClip Frame 6
_root.userDead = false; _root.userGettingHurt = false; _root.userAttacking = false; _root.userBlocking = false; _root.walking = true;
Instance of Symbol 75 MovieClip in Symbol 121 MovieClip Frame 6
onClipEvent (enterFrame) { if (Key.isDown(39)) { gotoAndPlay (1); } else if (Key.isDown(38)) { gotoAndPlay (59); } else if (Key.isDown(32)) { gotoAndPlay (29); } else if (Key.isDown(Key.Z)) { gotoAndPlay (10); } }
Symbol 121 MovieClip Frame 9
gotoAndPlay (1);
Symbol 121 MovieClip Frame 10
_root.userDead = false; _root.userGettingHurt = false; _root.userAttacking = true; _root.userBlocking = false; _root.walking = false;
Symbol 121 MovieClip Frame 14
gotoAndPlay (1);
Symbol 121 MovieClip Frame 15
_root.userDead = false; _root.userGettingHurt = false; _root.userAttacking = true; _root.userBlocking = false; _root.walking = false;
Symbol 121 MovieClip Frame 19
gotoAndPlay (1);
Symbol 121 MovieClip Frame 20
_root.userDead = false; _root.userGettingHurt = false; _root.userAttacking = true; _root.userBlocking = false; _root.walking = false;
Symbol 121 MovieClip Frame 24
gotoAndPlay (1);
Symbol 121 MovieClip Frame 25
_root.userDead = false; _root.userGettingHurt = false; _root.userAttacking = true; _root.userBlocking = false; _root.walking = false;
Symbol 121 MovieClip Frame 28
gotoAndPlay (1);
Symbol 121 MovieClip Frame 29
_root.userDead = false; _root.userGettingHurt = false; _root.userAttacking = false; _root.userBlocking = false; _root.walking = false;
Symbol 121 MovieClip Frame 31
_root.walking = false;
Symbol 121 MovieClip Frame 34
gotoAndPlay (1);
Symbol 121 MovieClip Frame 35
_root.userDead = false; _root.userGettingHurt = false; _root.userAttacking = false; _root.userBlocking = false;
Symbol 121 MovieClip Frame 39
gotoAndPlay (1);
Symbol 121 MovieClip Frame 40
_root.userDead = false; _root.userGettingHurt = false; _root.userAttacking = false; _root.userBlocking = false; _root.walking = true;
Symbol 121 MovieClip Frame 46
gotoAndPlay (1);
Symbol 121 MovieClip Frame 47
_root.userDead = false; _root.userGettingHurt = true; _root.userAttacking = false; _root.userBlocking = false; _root.walking = false;
Symbol 121 MovieClip Frame 50
gotoAndPlay (1);
Symbol 121 MovieClip Frame 51
_root.userDead = false; _root.userGettingHurt = false; _root.userAttacking = false; _root.userBlocking = true; _root.walking = false;
Symbol 121 MovieClip Frame 55
gotoAndPlay (1);
Symbol 121 MovieClip Frame 56
_root.userGettingHurt = true; _root.userDead = false; _root.userAttacking = false; _root.userBlocking = false;
Symbol 121 MovieClip Frame 58
gotoAndPlay (5);
Symbol 121 MovieClip Frame 59
_root.userDead = false; _root.userGettingHurt = false; _root.userAttacking = false; _root.userBlocking = false; _root.walking = true;
Symbol 121 MovieClip Frame 67
gotoAndPlay (1);
Symbol 121 MovieClip Frame 68
_root.walking = false; _root.userGettingHurt = true;
Symbol 121 MovieClip Frame 78
gotoAndPlay (1);
Symbol 121 MovieClip Frame 89
stop();
Instance of Symbol 120 MovieClip in Symbol 121 MovieClip Frame 89
onClipEvent (enterFrame) { _root.gotoAndPlay("gameover"); }
Symbol 140 MovieClip Frame 1
_root.cpuDead = false; _root.cpuGettingHurt = false; _root.cpuAttacking = false; _root.cpuBlocking = false;
Symbol 140 MovieClip Frame 4
gotoAndPlay (1);
Symbol 140 MovieClip Frame 10
gotoAndPlay (1);
Symbol 140 MovieClip Frame 11
_root.cpuAttacking = true; _root.cpuDead = false; _root.cpuGettingHurt = false; _root.cpuBlocking = false;
Symbol 140 MovieClip Frame 15
gotoAndPlay (1);
Symbol 140 MovieClip Frame 16
_root.cpuAttacking = true; _root.cpuDead = false; _root.cpuGettingHurt = false; _root.cpuBlocking = false;
Symbol 140 MovieClip Frame 18
Symbol 140 MovieClip Frame 20
gotoAndPlay (1);
Symbol 140 MovieClip Frame 21
_root.cpuAttacking = true; _root.cpuDead = false; _root.cpuGettingHurt = false; _root.cpuBlocking = false;
Symbol 140 MovieClip Frame 25
_root.cpuAttacking = true; _root.cpuDead = false; _root.cpuGettingHurt = false; gotoAndPlay (1);
Symbol 140 MovieClip Frame 26
_root.cpuAttacking = false; _root.cpuGettingHurt = false; _root.cpuDead = false; _root.cpuBlocking = false;
Symbol 140 MovieClip Frame 28
gotoAndPlay (1);
Symbol 140 MovieClip Frame 29
_root.cpuAttacking = false; _root.cpuGettingHurt = false; _root.cpuDead = false; _root.cpuBlocking = false;
Symbol 140 MovieClip Frame 32
gotoAndPlay (1);
Symbol 140 MovieClip Frame 33
_root.cpuAttacking = false; _root.cpuDead = true; _root.cpuGettingHurt = false; _root.cpuBlocking = false;
Symbol 140 MovieClip Frame 36
gotoAndPlay (1);
Symbol 140 MovieClip Frame 37
_root.cpuDead = false; _root.cpuGettingHurt = true; _root.cpuAttacking = false;
Symbol 140 MovieClip Frame 40
stop(); gotoAndPlay (1);
Symbol 140 MovieClip Frame 41
_root.cpuBlocking = true; _root.cpuDead = false; _root.cpuGettingHurt = false; _root.cpuAttacking = false;
Symbol 140 MovieClip Frame 46
gotoAndPlay (1); _root.cpuBlocking = true; _root.cpuDead = false; _root.cpuGettingHurt = false; _root.cpuAttacking = false;
Symbol 140 MovieClip Frame 49
Symbol 140 MovieClip Frame 51
gotoAndPlay (1); gotoAndPlay (1);
Symbol 140 MovieClip Frame 60
gotoAndPlay (1);
Symbol 140 MovieClip Frame 61
_root.cpuDead = false; _root.cpuGettingHurt = true; _root.cpuAttacking = false;
Symbol 140 MovieClip Frame 73
gotoAndPlay (1);
Symbol 140 MovieClip Frame 74
_root.cpuAttacking = false; _root.cpuDead = true; _root.cpuGettingHurt = false; _root.cpuBlocking = false;
Symbol 140 MovieClip Frame 83
stop();
Instance of Symbol 139 MovieClip in Symbol 140 MovieClip Frame 83
onClipEvent (enterFrame) { _root.gotoAndPlay("youWin"); }
Symbol 153 MovieClip Frame 1
stop();
Symbol 153 MovieClip Frame 6
gotoAndStop (1);
Symbol 153 MovieClip Frame 12
gotoAndPlay (1);
Symbol 164 MovieClip Frame 15
stop();
Symbol 186 Button
on (release) { gotoAndPlay (10); }

Library Items

Symbol 1 Sound [actionMusic]
Symbol 2 Sound [medley]
Symbol 3 Sound [punch]Used by:121 140
Symbol 4 FontUsed by:5 17 55 56 168 169 170 171 172 173 174 175 176 177 178 179 180 183
Symbol 5 EditableTextUses:4Used by:Timeline
Symbol 6 GraphicUsed by:7
Symbol 7 MovieClipUses:6Used by:Timeline
Symbol 8 BitmapUsed by:9 81
Symbol 9 GraphicUses:8Used by:10
Symbol 10 MovieClipUses:9Used by:Timeline
Symbol 11 GraphicUsed by:12
Symbol 12 MovieClipUses:11Used by:Timeline
Symbol 13 FontUsed by:14 166 167
Symbol 14 TextUses:13Used by:Timeline
Symbol 15 BitmapUsed by:16
Symbol 16 GraphicUses:15Used by:Timeline
Symbol 17 EditableTextUses:4Used by:Timeline
Symbol 18 GraphicUsed by:53
Symbol 19 GraphicUsed by:53
Symbol 20 GraphicUsed by:53
Symbol 21 GraphicUsed by:53
Symbol 22 GraphicUsed by:53
Symbol 23 GraphicUsed by:53
Symbol 24 GraphicUsed by:53
Symbol 25 GraphicUsed by:53
Symbol 26 GraphicUsed by:53
Symbol 27 GraphicUsed by:53
Symbol 28 GraphicUsed by:53
Symbol 29 GraphicUsed by:53
Symbol 30 GraphicUsed by:53
Symbol 31 GraphicUsed by:53
Symbol 32 GraphicUsed by:53
Symbol 33 GraphicUsed by:53
Symbol 34 GraphicUsed by:53
Symbol 35 GraphicUsed by:53
Symbol 36 GraphicUsed by:53
Symbol 37 GraphicUsed by:53
Symbol 38 GraphicUsed by:53
Symbol 39 GraphicUsed by:53
Symbol 40 GraphicUsed by:53
Symbol 41 GraphicUsed by:53
Symbol 42 GraphicUsed by:53
Symbol 43 GraphicUsed by:53
Symbol 44 GraphicUsed by:53
Symbol 45 GraphicUsed by:53
Symbol 46 GraphicUsed by:53
Symbol 47 GraphicUsed by:53
Symbol 48 GraphicUsed by:53
Symbol 49 GraphicUsed by:53
Symbol 50 GraphicUsed by:53
Symbol 51 GraphicUsed by:53
Symbol 52 GraphicUsed by:53
Symbol 53 MovieClipUses:18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52Used by:Timeline
Symbol 54 FontUsed by:55 56 154
Symbol 55 TextUses:54 4Used by:57
Symbol 56 TextUses:54 4Used by:57
Symbol 57 MovieClipUses:55 56Used by:Timeline
Symbol 58 BitmapUsed by:59
Symbol 59 GraphicUses:58Used by:60
Symbol 60 MovieClipUses:59Used by:Timeline
Symbol 61 GraphicUsed by:66 69 186
Symbol 62 GraphicUsed by:66 69 186
Symbol 63 GraphicUsed by:66 69 186
Symbol 64 GraphicUsed by:66 69 186
Symbol 65 SoundUsed by:66 69 186
Symbol 66 ButtonUses:61 62 63 64 65Used by:Timeline
Symbol 67 FontUsed by:68 70
Symbol 68 TextUses:67Used by:Timeline
Symbol 69 ButtonUses:61 62 63 64 65Used by:Timeline
Symbol 70 TextUses:67Used by:Timeline
Symbol 71 GraphicUsed by:72
Symbol 72 MovieClipUses:71Used by:Timeline
Symbol 73 BitmapUsed by:74
Symbol 74 GraphicUses:73Used by:75 76 79
Symbol 75 MovieClipUses:74Used by:121
Symbol 76 ButtonUses:74Used by:121
Symbol 77 BitmapUsed by:78
Symbol 78 GraphicUses:77Used by:80 121
Symbol 79 ButtonUses:74Used by:121
Symbol 80 ButtonUses:78Used by:121
Symbol 81 GraphicUses:8Used by:121
Symbol 82 GraphicUsed by:83
Symbol 83 MovieClipUses:82Used by:121 140 160
Symbol 84 BitmapUsed by:85
Symbol 85 GraphicUses:84Used by:121
Symbol 86 BitmapUsed by:87
Symbol 87 GraphicUses:86Used by:121
Symbol 88 BitmapUsed by:89
Symbol 89 GraphicUses:88Used by:121
Symbol 90 BitmapUsed by:91 193
Symbol 91 GraphicUses:90Used by:121
Symbol 92 BitmapUsed by:93
Symbol 93 GraphicUses:92Used by:121
Symbol 94 SoundUsed by:121 140
Symbol 95 BitmapUsed by:96
Symbol 96 GraphicUses:95Used by:121
Symbol 97 BitmapUsed by:98
Symbol 98 GraphicUses:97Used by:121
Symbol 99 BitmapUsed by:100
Symbol 100 GraphicUses:99Used by:101
Symbol 101 ButtonUses:100Used by:121
Symbol 102 GraphicUsed by:121
Symbol 103 BitmapUsed by:104
Symbol 104 GraphicUses:103Used by:121
Symbol 105 BitmapUsed by:106
Symbol 106 GraphicUses:105Used by:121
Symbol 107 BitmapUsed by:108
Symbol 108 GraphicUses:107Used by:121
Symbol 109 BitmapUsed by:110
Symbol 110 GraphicUses:109Used by:121
Symbol 111 GraphicUsed by:112 113 121
Symbol 112 ButtonUses:111Used by:121
Symbol 113 ButtonUses:111Used by:121
Symbol 114 GraphicUsed by:121
Symbol 115 GraphicUsed by:121
Symbol 116 GraphicUsed by:121
Symbol 117 SoundUsed by:121 140
Symbol 118 GraphicUsed by:121
Symbol 119 GraphicUsed by:120
Symbol 120 MovieClipUses:119Used by:121  Timeline
Symbol 121 MovieClipUses:75 76 78 79 80 81 83 85 87 89 91 93 94 96 98 101 102 104 106 108 110 111 112 3 113 114 115 116 117 118 120Used by:Timeline
Symbol 122 GraphicUsed by:140
Symbol 123 GraphicUsed by:140
Symbol 124 GraphicUsed by:140
Symbol 125 GraphicUsed by:140
Symbol 126 GraphicUsed by:140
Symbol 127 GraphicUsed by:140
Symbol 128 GraphicUsed by:140
Symbol 129 GraphicUsed by:140
Symbol 130 GraphicUsed by:140
Symbol 131 GraphicUsed by:140
Symbol 132 GraphicUsed by:140
Symbol 133 GraphicUsed by:140
Symbol 134 GraphicUsed by:140
Symbol 135 GraphicUsed by:140
Symbol 136 GraphicUsed by:140
Symbol 137 GraphicUsed by:139 140
Symbol 138 GraphicUsed by:140
Symbol 139 MovieClipUses:137Used by:140
Symbol 140 MovieClipUses:122 123 124 125 126 127 83 128 129 130 94 131 132 133 134 135 136 3 137 117 138 139Used by:Timeline
Symbol 141 BitmapUsed by:143
Symbol 142 BitmapUsed by:143
Symbol 143 GraphicUses:141 142Used by:Timeline
Symbol 144 GraphicUsed by:145
Symbol 145 MovieClipUses:144Used by:Timeline
Symbol 146 GraphicUsed by:147 153
Symbol 147 MovieClipUses:146Used by:153
Symbol 148 GraphicUsed by:153
Symbol 149 GraphicUsed by:153
Symbol 150 GraphicUsed by:153
Symbol 151 GraphicUsed by:153
Symbol 152 GraphicUsed by:153
Symbol 153 MovieClipUses:147 146 148 149 150 151 152Used by:Timeline
Symbol 154 EditableTextUses:54Used by:Timeline
Symbol 155 FontUsed by:156
Symbol 156 TextUses:155Used by:157
Symbol 157 MovieClipUses:156Used by:Timeline
Symbol 158 GraphicUsed by:159
Symbol 159 MovieClipUses:158Used by:Timeline
Symbol 160 MovieClipUses:83Used by:Timeline
Symbol 161 FontUsed by:162 163
Symbol 162 TextUses:161Used by:164
Symbol 163 TextUses:161Used by:164
Symbol 164 MovieClipUses:162 163Used by:Timeline
Symbol 165 GraphicUsed by:Timeline
Symbol 166 TextUses:13Used by:Timeline
Symbol 167 TextUses:13Used by:Timeline
Symbol 168 TextUses:4Used by:Timeline
Symbol 169 TextUses:4Used by:Timeline
Symbol 170 TextUses:4Used by:Timeline
Symbol 171 TextUses:4Used by:Timeline
Symbol 172 TextUses:4Used by:Timeline
Symbol 173 TextUses:4Used by:Timeline
Symbol 174 TextUses:4Used by:Timeline
Symbol 175 TextUses:4Used by:Timeline
Symbol 176 TextUses:4Used by:Timeline
Symbol 177 TextUses:4Used by:Timeline
Symbol 178 TextUses:4Used by:Timeline
Symbol 179 TextUses:4Used by:Timeline
Symbol 180 TextUses:4Used by:Timeline
Symbol 181 GraphicUsed by:182
Symbol 182 MovieClipUses:181Used by:Timeline
Symbol 183 TextUses:4Used by:Timeline
Symbol 184 FontUsed by:185
Symbol 185 TextUses:184Used by:Timeline
Symbol 186 ButtonUses:61 62 63 64 65Used by:Timeline
Symbol 187 FontUsed by:188 189 190 194 195
Symbol 188 TextUses:187Used by:Timeline
Symbol 189 TextUses:187Used by:Timeline
Symbol 190 TextUses:187Used by:Timeline
Symbol 191 FontUsed by:192
Symbol 192 TextUses:191Used by:Timeline
Symbol 193 GraphicUses:90Used by:Timeline
Symbol 194 TextUses:187Used by:Timeline
Symbol 195 TextUses:187Used by:Timeline

Instance Names

"textbox"Frame 1Symbol 5 EditableText
"loadedbar"Frame 1Symbol 7 MovieClip
"textbox"Frame 4Symbol 17 EditableText
"user"Frame 15Symbol 121 MovieClip
"cpu"Frame 15Symbol 140 MovieClip
"cpuFireball"Frame 15Symbol 153 MovieClip
"userFireball"Frame 15Symbol 153 MovieClip
"comboHits"Frame 15Symbol 154 EditableText
"justHits"Frame 15Symbol 157 MovieClip
"userLife"Frame 15Symbol 159 MovieClip
"userLife"Frame 15Symbol 159 MovieClip
"cpuLife"Frame 15Symbol 159 MovieClip
"cpuLife"Frame 15Symbol 159 MovieClip
"hit"Symbol 121 MovieClip Frame 13Symbol 83 MovieClip
"hit"Symbol 121 MovieClip Frame 18Symbol 83 MovieClip
"juggle"Symbol 121 MovieClip Frame 22Symbol 83 MovieClip
"hit"Symbol 140 MovieClip Frame 14Symbol 83 MovieClip
"juggle"Symbol 140 MovieClip Frame 19Symbol 83 MovieClip

Special Tags

ExportAssets (56)Timeline Frame 1Symbol 1 as "actionMusic"
ExportAssets (56)Timeline Frame 1Symbol 2 as "medley"
ExportAssets (56)Timeline Frame 1Symbol 3 as "punch"
ExportAssets (56)Timeline Frame 15Symbol 3 as "punch"
ExportAssets (56)Timeline Frame 15Symbol 3 as "punch"

Labels

"loader"Frame 1
"reCre"Frame 6
"title"Frame 10
"battle1"Frame 15
"howto"Frame 20
"youWin"Frame 21
"gameover"Frame 22
"walk"Symbol 121 MovieClip Frame 6
"attack1"Symbol 121 MovieClip Frame 10
"attack2"Symbol 121 MovieClip Frame 15
"attack3"Symbol 121 MovieClip Frame 20
"fireball"Symbol 121 MovieClip Frame 25
"charge"Symbol 121 MovieClip Frame 29
"charge2"Symbol 121 MovieClip Frame 31
"dash"Symbol 121 MovieClip Frame 40
"blocking"Symbol 121 MovieClip Frame 51
"damage"Symbol 121 MovieClip Frame 56
"jumping"Symbol 121 MovieClip Frame 59
"smashed"Symbol 121 MovieClip Frame 68
"dead"Symbol 121 MovieClip Frame 79
"walking"Symbol 140 MovieClip Frame 1
"jumping"Symbol 140 MovieClip Frame 5
"attack2"Symbol 140 MovieClip Frame 11
"attack3"Symbol 140 MovieClip Frame 16
"fireball"Symbol 140 MovieClip Frame 21
"dash"Symbol 140 MovieClip Frame 26
"damage"Symbol 140 MovieClip Frame 37
"blocking"Symbol 140 MovieClip Frame 41
"counter"Symbol 140 MovieClip Frame 46
"charge"Symbol 140 MovieClip Frame 52
"smashed"Symbol 140 MovieClip Frame 61
"dead"Symbol 140 MovieClip Frame 74
"flame"Symbol 153 MovieClip Frame 2
"collide"Symbol 153 MovieClip Frame 7

Dynamic Text Variables

textboxSymbol 5 EditableText""
textboxSymbol 17 EditableText""
hitsSymbol 154 EditableText""




http://swfchan.com/22/108476/info.shtml
Created: 15/3 -2019 11:22:45 Last modified: 15/3 -2019 11:22:45 Server time: 26/04 -2024 23:40:09