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

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

Dragon Ball Z Hightime.swf

This is the info page for
Flash #117636

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


Text
Complete all the Levels in this area to proceed to the next
one

Do you want to go to the next area?

Yes|

|No

Oolong's Village

High Score:

Record Time:

Items:

Cost: 30 Coins

Enter

Master Roshi's Island

Cost: 50 coins

South Desert

Cost: 30 coins

Fire Mountain

Cost: 100

Boss Rabbits Magic Touch

Cost: 200

Emperor Pilafs Castle

Cost: 500

Hey Goku, To find the Dragon balls step on the Nimbus Clouds
with the right amount of coins, and they'll fly you to another place

This cloud is called the Flying Nimbus. Use it to fly to different levels. To use
the Nimbus Jump on it with the correct number of Coins and press "Enter"

Press "Ctrl" to use a basic melee attack, and press "Space" to fire a blast.
Killing Enemies will earn you points.

These are coins, Collect them to  purches various things. Including allowing
the Nimbus to take you to various places

Press enter to Pause the Game

00:00:00:00

Character

Character

Main

Inventory

Options

Equip

Abilities

Resume

Paused

Resume

Save

Load

Help

Map

Options

Quit

Goku

Level

Health:

Energy:

Attack:

Defense:

Power:

Experience:

Coins:

Next Level:

Speed:

Items

Items

Key Items

Key Items

Items

x

points

ActionScript [AS1/AS2]

Frame 1
var level = 1; var lives = 6; var bb = 0; var k = 0; var bo = 0; var bn = 0; var bu = 0; var bs = 0; var coins = 0; var exp = 1; var energy = 100; var fakenergy = 100; var energy1 = 20; var energy2 = 20; var energy3 = 20; var energy4 = 20; var energy5 = 20; var attack = 50; var defense = 50; var power = 50; var speed = 15; _root._x = 0; _root._y = 0;
Frame 2
stopAllSounds(); var score = 0; var health = 200; var bad = 100; var badi = 100; _root.lives = _root.lives - 1;
Frame 3
stop();
Instance of Symbol 52 MovieClip in Frame 3
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Frame 3
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 54 MovieClip "die" in Frame 3
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.gotoAndPlay(2); } }
Instance of Symbol 207 MovieClip "h" in Frame 3
onClipEvent (load) { wid = _width; } onClipEvent (enterFrame) { _width = ((_root.health / 200) * wid); }
Instance of Symbol 448 MovieClip "char" in Frame 3
onClipEvent (load) { jumping = false; attacking = false; speed = 0; maxmove = 15; healthX = _root.health._x; signX = _root.sign._x; lockX = _root.lock._x; scoreX = _root.score._x; gameX = _root.game._x; hX = _root.h._x; scoX = _root.sco._x; scrX = _root.scr._x; coX = _root.co._x; coinX = _root.coin._x; heathX = _root.heath._x; levelX = _root.level._x; liX = _root.li._x; kX = _root.k._x; spX = _root.sp._x; pauseX = _root.pause._x; Xpos = this._x; Ypos = this._y; _root.maxshoottime = 100; } onClipEvent (enterFrame) { if (_root.health <= 0) { this.gotoAndStop("dead"); } _x = (Xpos - _root._x); _root.sco._x = scoX - _root._x; _root.lock._x = lockX - _root._x; _root.scr._x = scrX - _root._x; _root.co._x = coX - _root._x; _root.sign._x = signX - _root._x; _root.coin._x = coinX - _root._x; _root.game._x = gameX - _root._x; _root.k._x = kX - _root._x; _root.level._x = levelX - _root._x; _root.li._x = liX - _root._x; _root.sp._x = spX - _root._x; _root.health._x = healthX - _root._x; _root.h._x = hX - _root._x; _root.pause._x = pauseX - _root._x; _root.heath._x = heathX - _root._x; if ((!_root.ground.hitTest(this._x, this._y, true)) && (!jumping)) { this._y = this._y + 6; } if (_root.dead) { this.gotoAndStop("dead"); _root.lives = _root.lives - 1; } else { speed = speed * 0.85; if ((dir == "right") && (!_root.leftblock.hitTest(this._x + 20, this._y, true))) { _root.health._x = _root.health._x + speed; _root.score._x = _root.score._x + speed; _root.sco._x = _root.sco._x + speed; _root.lock._x = _root.lock._x + speed; _root.scr._x = _root.scr._x + speed; _root.co._x = _root.co._x + speed; _root.coin._x = _root.coin._x + speed; _root.heath._x = _root.heath._x + speed; _root.h._x = _root.h._x + speed; _root.game._x = _root.game._x + speed; _root.level._x = _root.level._x + speed; _root.li._x = _root.li._x + speed; _root.sp._x = _root.sp._x + speed; _root.sign._x = _root.sign._x + speed; _root.k._x = _root.k._x + speed; _root.pause._x = _root.pause._x + speed; this._x = this._x + speed; _root._x = _root._x - speed; } if (speed > 0) { dir = "right"; } else if (speed < 0) { dir = "left"; } if ((dir == "left") && (!_root.rightblock.hitTest(this._x - 20, this._y, true))) { _root.health._x = _root.health._x + speed; _root.score._x = _root.score._x + speed; _root.lock._x = _root.lock._x + speed; _root.sco._x = _root.sco._x + speed; _root.scr._x = _root.scr._x + speed; _root.co._x = _root.co._x + speed; _root.coin._x = _root.coin._x + speed; _root.heath._x = _root.heath._x + speed; _root.h._x = _root.h._x + speed; _root.game._x = _root.game._x + speed; _root.sp._x = _root.sp._x + speed; _root.li._x = _root.li._x + speed; _root.k._x = _root.k._x + speed; _root.sign._x = _root.sign._x + speed; _root.pause._x = _root.pause._x + speed; _root.level._x = _root.level._x + speed; this._x = this._x + speed; _root._x = _root._x - speed; } if (Key.isDown(37) && (((!Key.isDown(16)) && (_root.ice <= 0)) && (_root.p < 1))) { if (speed > (-maxmove)) { speed--; } this.gotoAndStop("run"); this._xscale = -100; } else if (Key.isDown(39) && (((!Key.isDown(16)) && (_root.ice <= 0)) && (_root.p < 1))) { if (speed < maxmove) { speed++; } this._xscale = 100; this.gotoAndStop("run"); } else if (Key.isDown(39) && ((Key.isDown(16) && (_root.ice <= 0)) && (_root.p < 1))) { if (speed < maxmove) { speed = _root.speed; } this._xscale = 100; this.gotoAndStop("dash"); } else if (Key.isDown(37) && ((Key.isDown(16) && (_root.ice <= 0)) && (_root.p < 1))) { if (speed < maxmove) { speed = -_root.speed; } this._xscale = -100; this.gotoAndStop("dash"); } else if ((Key.isDown(39) && (_root.ice > 0)) && (_root.p < 1)) { if (speed < maxmove) { speed = _root.speed * 4; this._xscale = 100; this.gotoAndStop("slip"); } } else if ((Key.isDown(37) && (_root.ice > 0)) && (_root.p < 1)) { if (speed < maxmove) { speed = (-_root.speed) * 4; this._xscale = -100; this.gotoAndStop("slip"); } } else if ((((Key.isDown(32) && (!Key.isDown(16))) && (_root.p < 1)) && (_root.ice <= 0)) && (_root.energy > 9)) { this.gotoAndStop("shoot"); speed = 0; } else if (((Key.isDown(32) && (!Key.isDown(16))) && (_root.p < 1)) && (_root.ice > 0)) { this.gotoAndStop("shoot"); } else if (((Key.isDown(32) && Key.isDown(16)) && (_root.p < 1)) && (_root.ice <= 0)) { this.gotoAndStop("upshoot"); speed = 0; } else if (((Key.isDown(32) && Key.isDown(16)) && (_root.p < 1)) && (_root.ice > 0)) { this.gotoAndStop("upshoot"); } else if ((((((((Key.isDown(16) && (!Key.isDown(38))) && (!Key.isDown(37))) && (!Key.isDown(39))) && (!Key.isDown(32))) && (!Key.isDown(17))) && (_root.p < 1)) && (_root.ice <= 0)) && (_root.energy <= 99)) { this.gotoAndStop("power"); speed = 0; } else if (((Key.isDown(18) && (!Key.isDown(38))) && (_root.p < 1)) && (_root.ice > 0)) { this.gotoAndStop("punch"); } else if (((Key.isDown(17) && (Key.isDown(16) && (!jumping))) && (_root.p < 1)) && (_root.ice <= 0)) { this.gotoAndStop("twirl"); speed = 0; } else if (((Key.isDown(17) && (Key.isDown(16) && (!jumping))) && (_root.p < 1)) && (_root.ice > 0)) { this.gotoAndStop("twirl"); } else if (((speed < 1) && (speed > -1)) && (!attacking)) { speed = 0; this.gotoAndStop("idle"); } if (((Key.isDown(38) && (!jumping)) && (_root.p < 1)) && (!Key.isDown("90"))) { jumping = true; } if (Key.isDown(17) && (jumping)) { this.gotoAndStop("sky"); attacking = true; } if (Key.isDown(40) && (jumping)) { jumping = false; } if (jumping && ((!Key.isDown(17)) && (_root.p < 1))) { this.gotoAndStop("jump"); } if (jumping) { this._y = this._y - jump; jump = jump - 0.5; if (jump < 0) { falling = true; } if (jump < -15) { jump = -15; } } if (_root.ground.hitTest(this._x, this._y, true) && (falling)) { jump = 12; jumping = false; falling = false; } } } onClipEvent (keyDown) { if (Key.getCode() == 32) { this.gotoAndStop("shoot"); } if ((Key.isDown(17) && (!jumping)) && (!attacking)) { attacks = new Array(14, 15, 16, 17); gotoAndStop(attacks[random(4)]); attacking = true; } } onClipEvent (keyUp) { if (Key.getCode() == 17) { attacking = false; } if (Key.getCode() == 32) { _root.shooting = false; } } onClipEvent (enterFrame) { if (_root.ground.slide.hitTest(this._x, this._y, true)) { _root.ice = 1; } else { _root.ice = 0; } if (_root.lives < 1) { _root.gotoAndStop("over"); } if (_root.exp > (_root.level * 100)) { _root.level = _root.level + 1; } }
Instance of Symbol 480 MovieClip in Frame 3
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.sp.gotoAndStop(2); } else { _root.sp.gotoAndStop(1); } }
Instance of Symbol 488 MovieClip in Frame 3
onClipEvent (enterFrame) { if (_root.mug > 0) { this.gotoAndStop(2); } } onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.lives = _root.lives + 1; this.gotoAndStop(2); _root.mug = 1; } }
Instance of Symbol 528 MovieClip "heath" in Frame 3
onClipEvent (enterFrame) { if (_root.exp > (_root.level * 100)) { _root.exp = 0; } } onClipEvent (enterFrame) { if (_root.exp < 1) { _root.level = _root.level + 1; _root.exp = _root.exp + 1; } }
Instance of Symbol 610 MovieClip in Frame 3
onClipEvent (load) { enemyspeed = 2; enemystepsright = 0; enemystepsleft = 0; enemydir = "left"; health = 100; } onClipEvent (enterFrame) { if (this.hitTest(_root.char.attack.attackpoint)) { health = health - 5; enemyspeed = -2; this.gotoAndStop("flinch"); } else if (health < 1) { dead = true; this.gotoAndStop("dead"); } else { this.gotoAndStop(1); health = health - 0; enemyspeed = 2; } if (this.hitTest(_root.char.fire.attackpoint)) { health = health - 10; enemyspeed = -2; this.gotoAndStop("flinch"); } else if (health < 1) { dead = true; this.gotoAndStop("dead"); } else { health = health - 0; this.gotoAndStop(1); enemyspeed = 2; } if (!dead) { if (enemydir == "right") { enemystepsright = enemystepsright + 2; this._xscale = -100; this._x = this._x + enemyspeed; } else if (enemydir == "left") { enemystepsleft = enemystepsleft + 2; this._xscale = 100; this._x = this._x - enemyspeed; } if (enemystepsright == 100) { enemystepsright = 0; enemydir = "left"; } else if (enemystepsleft == 100) { enemystepsleft = 0; enemydir = "right"; } } }
Frame 4
stop(); stopAllSounds();
Instance of Symbol 624 MovieClip "game" in Frame 4
onClipEvent (load) { falling = false; speed = 0; maxmove = 15; healthX = _root.health._x; scoreX = _root.score._x; gameX = _root.game._x; hX = _root.h._x; scoX = _root.sco._x; scrX = _root.scr._x; heathX = _root.heath._x; Xpos = this._x; Ypos = this._y; _root.maxshoottime = 100; } onClipEvent (enterFrame) { _x = (Xpos - _root._x); _root.sco._x = scoX - _root._x; _root.scr._x = scrX - _root._x; _root.game._x = gameX - _root._x; _root.health._x = healthX - _root._x; _root.h._x = hX - _root._x; _root.heath._x = heathX - _root._x; if (!_root.shooting) { _root.timer = 0; _root.mvsp = _xscale / 20; } if (_root.dead) { this.gotoAndStop("dead"); } else { speed = speed * 0.85; if ((dir == "right") && (!_root.leftblock.hitTest(this._x + 20, this._y, true))) { _root.health._x = _root.health._x + speed; _root.score._x = _root.score._x + speed; _root.sco._x = _root.sco._x + speed; _root.scr._x = _root.scr._x + speed; _root.heath._x = _root.heath._x + speed; _root.h._x = _root.h._x + speed; _root.game._x = _root.game._x + speed; this._x = this._x + speed; _root._x = _root._x - speed; } if (speed > 0) { dir = "right"; } else if (speed < 0) { dir = "left"; } if ((dir == "left") && (!_root.rightblock.hitTest(this._x - 20, this._y, true))) { _root.health._x = _root.health._x + speed; _root.score._x = _root.score._x + speed; _root.sco._x = _root.sco._x + speed; _root.scr._x = _root.scr._x + speed; _root.heath._x = _root.heath._x + speed; _root.h._x = _root.h._x + speed; _root.game._x = _root.game._x + speed; this._x = this._x + speed; _root._x = _root._x - speed; } if (Key.isDown(37)) { if (speed > (-maxmove)) { speed--; } this.gotoAndStop("run"); } else if (Key.isDown(39)) { if (speed < maxmove) { speed++; } this.gotoAndStop("run"); } } }
Frame 5
stop(); var bad = 200; _root._x = 0; _root._y = 0;
Frame 6
stop();
Instance of Symbol 448 MovieClip "char" in Frame 6
onClipEvent (load) { jumping = false; speed = 0; maxmove = 15; healthX = _root.health._x; scoreX = _root.score._x; gameX = _root.game._x; hX = _root.h._x; hY = _root.h._y; scoX = _root.sco._x; scrX = _root.scr._x; coX = _root.co._x; coinX = _root.coin._x; heathX = _root.heath._x; heathY = _root.heath._y; levelX = _root.level._x; kX = _root.k._x; kY = _root.k._y; Xpos = this._x; Ypos = this._y; _root.maxshoottime = 100; } onClipEvent (enterFrame) { if (_root.health <= 0) { this.gotoAndStop("dead"); } _root.sco._x = scoX - _root._x; _root.scr._x = scrX - _root._x; _root.co._x = coX - _root._x; _root.coin._x = coinX - _root._x; _root.game._x = gameX - _root._x; _root.k._x = kX - _root._x; _root.k._y = kX - _root._y; _root.level._x = levelX - _root._x; _root.health._x = healthX - _root._x; _root.h._x = hX - _root._x; _root.h._y = hY - _root._y; _root.heath._x = heathX - _root._x; _root.heath._y = heath - _root._y; if ((!_root.ground.hitTest(this._x, this._y, true)) && (!jumping)) { _root._y = _root._y - jump; this._y = this._y + jump; if (jump > 5) { jump = 5; } } if (_root.dead) { this.gotoAndStop("dead"); } else { speed = speed * 0.85; if ((dir == "right") && (!_root.leftblock.hitTest(this._x + 20, this._y, true))) { _root.health._x = _root.health._x + speed; _root.score._x = _root.score._x + speed; _root.sco._x = _root.sco._x + speed; _root.scr._x = _root.scr._x + speed; _root.co._x = _root.co._x + speed; _root.coin._x = _root.coin._x + speed; _root.heath._x = _root.heath._x + speed; _root.heath._y = _root.heath._y + speed; _root.h._x = _root.h._x + speed; _root.game._x = _root.game._x + speed; _root.level._x = _root.level._x + speed; _root.k._x = _root.k._x + speed; this._x = this._x + speed; } if (speed > 0) { dir = "right"; } else if (speed < 0) { dir = "left"; } if ((dir == "left") && (!_root.rightblock.hitTest(this._x - 20, this._y, true))) { _root.health._x = _root.health._x + speed; _root.score._x = _root.score._x + speed; _root.sco._x = _root.sco._x + speed; _root.scr._x = _root.scr._x + speed; _root.co._x = _root.co._x + speed; _root.coin._x = _root.coin._x + speed; _root.heath._x = _root.heath._x + speed; _root.heath._y = _root.heath._y + speed; _root.h._x = _root.h._x + speed; _root.game._x = _root.game._x + speed; _root.k._x = _root.k._x + speed; _root.level._x = _root.level._x + speed; this._x = this._x + speed; } if (Key.isDown(37)) { if (speed > (-maxmove)) { speed--; } this.gotoAndStop("run"); this._xscale = -100; } else if (Key.isDown(39)) { if (speed < maxmove) { speed++; } this._xscale = 100; this.gotoAndStop("run"); } else if (Key.isDown(18)) { this.gotoAndStop("punch"); attacking = true; speed = 0; } else if (Key.isDown(17)) { this.gotoAndStop("attack"); attacking = true; speed = 0; } else if (Key.isDown(32)) { if (!_root.shooting) { _root.shooting = true; attacking = true; speed = 0; this.gotoAndStop("shoot"); } } else if (((speed < 1) && (speed > -1)) && (!attacking)) { speed = 0; this.gotoAndStop("idle"); } if (Key.isDown(38) && (!jumping)) { jumping = true; } if (jumping) { this.gotoAndStop("jump"); _root._y = _root._y + jump; this._y = this._y - jump; jump = jump - 0.5; if (jump < 0) { falling = true; } if (jump < -2) { _root._y = _root._y + jump; this._y = this._y - jump; jump = -2; } } if (_root.ground.hitTest(this._x, this._y, true) && (falling)) { jump = 12; jumping = false; falling = false; } } } onClipEvent (keyUp) { if (Key.getCode() == 17) { attacking = false; } } onClipEvent (keyUp) { if (Key.getCode() == 32) { _root.shooting = false; } }
Instance of Symbol 644 MovieClip in Frame 6
onClipEvent (load) { enemyspeed = 2; enemystepsright = 0; enemystepsleft = 0; enemydir = "left"; } onClipEvent (enterFrame) { if (this.hitTest(_root.char.attack.attackpoint)) { _root.badi = _root.badi - 5; } } onClipEvent (enterFrame) { if (_root.badi < 0) { dead = true; this.gotoAndStop("dead"); } } onClipEvent (enterFrame) { if (this.hitTest(_root.char.fire.attackpoint)) { _root.badi = _root.badi - 10; } } onClipEvent (enterFrame) { if (_root.badi < 0) { dead = true; this.gotoAndStop("dead"); } if (this.hitTest(_root.char) && (!dead)) { _root.char.jumping = false; _root.health = _root.health - 5; } if (!dead) { if (enemydir == "right") { enemystepsright = enemystepsright + 2; this._xscale = -100; this._x = this._x + enemyspeed; } else if (enemydir == "left") { enemystepsleft = enemystepsleft + 2; this._xscale = 100; this._x = this._x - enemyspeed; } if (enemystepsright == 100) { enemystepsright = 0; enemydir = "left"; } else if (enemystepsleft == 100) { enemystepsleft = 0; enemydir = "right"; } } }
Instance of Symbol 42 MovieClip in Symbol 43 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.li.gotoAndStop(3); } else if (!_root.ground.nimbus.hitTest(_root.char._x, _root.char._y, true)) { _root.li.gotoAndStop(1); } }
Instance of Symbol 42 MovieClip "nimbus" in Symbol 43 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.li.gotoAndStop(2); } else if (!_root.ground.nimbus.hitTest(_root.char._x, _root.char._y, true)) { _root.li.gotoAndStop(1); } }
Instance of Symbol 42 MovieClip in Symbol 43 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.li.gotoAndStop(4); } else if (!_root.ground.nimbus.hitTest(_root.char._x, _root.char._y, true)) { _root.li.gotoAndStop(1); } }
Instance of Symbol 42 MovieClip in Symbol 43 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.li.gotoAndStop(5); } else if (!_root.ground.nimbus.hitTest(_root.char._x, _root.char._y, true)) { _root.li.gotoAndStop(1); } }
Instance of Symbol 42 MovieClip in Symbol 43 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.li.gotoAndStop(6); } else if (!_root.ground.nimbus.hitTest(_root.char._x, _root.char._y, true)) { _root.li.gotoAndStop(1); } }
Instance of Symbol 42 MovieClip in Symbol 43 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.li.gotoAndStop(7); } else if (!_root.ground.nimbus.hitTest(_root.char._x, _root.char._y, true)) { _root.li.gotoAndStop(1); } }
Instance of Symbol 42 MovieClip in Symbol 43 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.li.gotoAndStop(7); } else if (!_root.ground.nimbus.hitTest(_root.char._x, _root.char._y, true)) { _root.li.gotoAndStop(1); } }
Symbol 44 MovieClip Frame 1
stop();
Symbol 50 MovieClip Frame 1
stop();
Symbol 50 MovieClip Frame 2
Symbol 50 MovieClip Frame 65
stop(); stopAllSounds();
Symbol 52 MovieClip Frame 1
stop(); if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; this.gotoAndPlay(2); unloadMovie (this); }
Instance of Symbol 50 MovieClip in Symbol 52 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Symbol 52 MovieClip Frame 2
stop();
Symbol 57 MovieClip Frame 1
stop();
Symbol 58 MovieClip Frame 1
stop();
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 57 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char) && (_root.k > 0)) { _root.level.gotoAndStop("pass"); } else if (this.hitTest(_root.char)) { _root.level.gotoAndStop("fail"); } else { _root.level.gotoAndStop(1); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Instance of Symbol 52 MovieClip in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.coins = _root.coins + 1; unloadMovie (this); } }
Symbol 76 MovieClip Frame 1
_root.exp = _root.exp + 2;
Symbol 76 MovieClip Frame 9
stop();
Symbol 79 MovieClip Frame 10
_parent.gotoAndStop(1);
Symbol 81 MovieClip Frame 1
stop(); _parent.flinching = false; _parent.enemyspeed = 2;
Symbol 81 MovieClip Frame 2
stop(); _parent.enemyspeed = 0;
Symbol 81 MovieClip Frame 3
stop(); if (flinch > 2) { dead = true; gotoAndStop ("dead"); } _parent.flinching = true;
Symbol 107 MovieClip Frame 1
_root.exp = _root.exp + 2;
Symbol 107 MovieClip Frame 3
_root.exp = _root.exp + 3;
Symbol 107 MovieClip Frame 16
stop();
Symbol 109 MovieClip Frame 1
stop();
Instance of Symbol 94 MovieClip in Symbol 109 MovieClip Frame 1
/* no clip actions */
Symbol 109 MovieClip Frame 2
stop();
Symbol 143 MovieClip Frame 1
_root.exp = _root.exp + 2;
Symbol 143 MovieClip Frame 3
_root.exp = _root.exp + 3;
Symbol 143 MovieClip Frame 5
_root.exp = _root.exp + 5;
Symbol 143 MovieClip Frame 17
stop();
Symbol 145 MovieClip Frame 1
stop();
Symbol 145 MovieClip Frame 2
stop();
Instance of Symbol 143 MovieClip in Symbol 145 MovieClip Frame 2
onClipEvent (enterFrame) { falling = true; }
Symbol 146 MovieClip Frame 1
stop();
Instance of Symbol 81 MovieClip in Symbol 146 MovieClip Frame 1
onClipEvent (load) { enemystepsright = 0; enemystepsright = 0; enemydir = "left"; flinch = 0; flinching = false; enemyspeed = 2; } onClipEvent (enterFrame) { if (this.hitTest(_root.char.attack.attackpoint) && (!dead)) { enemyspeed = -2; flinch = flinch + 1; this.gotoAndStop("flinch"); flinching = true; } else { enemyspeed = 2; flinching = false; } if (this.hitTest(_root.char.spin.attackpoint) && (!dead)) { enemyspeed = -2; flinch = flinch + 1; this.gotoAndStop("flinch"); flinching = true; } else { enemyspeed = 2; flinching = false; } if (this.hitTest(_root.char.fire.attackpoint) && (!dead)) { enemyspeed = -2; flinch = flinch + 1; this.gotoAndStop("flinch"); flinching = true; } else { enemyspeed = 2; flinching = false; } if ((this.hitTest(_root.char) && (!dead)) && (!flinching)) { _root.char.jumping = false; _root.health = _root.health - 1; } if (!dead) { if (enemydir == "right") { enemystepsright = enemystepsright + 2; this._xscale = -100; this._x = this._x + enemyspeed; } else if (enemydir == "left") { enemystepsleft = enemystepsleft + 2; this._xscale = 100; this._x = this._x - enemyspeed; } if (enemystepsright == 100) { enemystepsright = 0; enemydir = "left"; } else if (enemystepsleft == 100) { enemystepsleft = 0; enemydir = "right"; } } }
Instance of Symbol 109 MovieClip in Symbol 146 MovieClip Frame 1
onClipEvent (load) { enemyspeed = 3; enemystepsright = 0; enemystepsleft = 0; enemydir = "left"; } onClipEvent (enterFrame) { if (this.hitTest(_root.char.attack.attackpoint)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } } onClipEvent (enterFrame) { if (this.hitTest(_root.char.spin.attackpoint)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } } onClipEvent (enterFrame) { if (this.hitTest(_root.char.fire.attackpoint)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } if (this.hitTest(_root.char) && (!dead)) { _root.char.jumping = false; _root.health = _root.health - 1; } if (!dead) { if (enemydir == "right") { enemystepsright = enemystepsright + 2; this._xscale = -100; this._x = this._x + enemyspeed; } else if (enemydir == "left") { enemystepsleft = enemystepsleft + 2; this._xscale = 100; this._x = this._x - enemyspeed; } if (enemystepsright == 100) { enemystepsright = 0; enemydir = "left"; } else if (enemystepsleft == 100) { enemystepsleft = 0; enemydir = "right"; } } }
Instance of Symbol 109 MovieClip in Symbol 146 MovieClip Frame 1
onClipEvent (load) { enemyspeed = 1; enemystepsright = 0; enemystepsleft = 0; enemydir = "left"; } onClipEvent (enterFrame) { if (this.hitTest(_root.char.attack.attackpoint)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } } onClipEvent (enterFrame) { if (this.hitTest(_root.char.spin.attackpoint)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } } onClipEvent (enterFrame) { if (this.hitTest(_root.char.fire.attackpoint)) { enemyspeed = 0; enemystepsright = 2; enemystepsleft = 2; dead = true; this.gotoAndStop("dead"); } if (this.hitTest(_root.char) && (!dead)) { _root.char.jumping = false; _root.health = _root.health - 1; } if (!dead) { if (enemydir == "right") { enemystepsright = enemystepsright + 2; this._xscale = -100; this._x = this._x + enemyspeed; } else if (enemydir == "left") { enemystepsleft = enemystepsleft + 2; this._xscale = 100; this._x = this._x - enemyspeed; } if (enemystepsright == 100) { enemystepsright = 0; enemydir = "left"; } else if (enemystepsleft == 100) { enemystepsleft = 0; enemydir = "right"; } } }
Instance of Symbol 145 MovieClip in Symbol 146 MovieClip Frame 1
onClipEvent (load) { enemyspeed = 2; enemystepsright = 0; enemystepsleft = 0; enemydir = "left"; } onClipEvent (enterFrame) { if (this.hitTest(_root.char.attack.attackpoint)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } } onClipEvent (enterFrame) { if (this.hitTest(_root.char.spin.attackpoint)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } } onClipEvent (enterFrame) { if (this.hitTest(_root.char.fire.attackpoint)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } if (this.hitTest(_root.char) && (!dead)) { _root.char.jumping = false; _root.health = _root.health - 1; } if (!dead) { if (enemydir == "right") { enemystepsright = enemystepsright + 2; this._xscale = -100; this._x = this._x + enemyspeed; } else if (enemydir == "left") { enemystepsleft = enemystepsleft + 2; this._xscale = 100; this._x = this._x - enemyspeed; } if (enemystepsright == 100) { enemystepsright = 0; enemydir = "left"; } else if (enemystepsleft == 100) { enemystepsleft = 0; enemydir = "right"; } } }
Instance of Symbol 145 MovieClip in Symbol 146 MovieClip Frame 1
onClipEvent (load) { enemyspeed = 2; enemystepsright = 0; enemystepsleft = 0; enemydir = "left"; } onClipEvent (enterFrame) { if (this.hitTest(_root.char.attack.attackpoint)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } } onClipEvent (enterFrame) { if (this.hitTest(_root.char.spin.attackpoint)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } } onClipEvent (enterFrame) { if (this.hitTest(_root.char.fire.attackpoint)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } if (this.hitTest(_root.char) && (!dead)) { _root.char.jumping = false; _root.health = _root.health - 1; } if (!dead) { if (enemydir == "right") { enemystepsright = enemystepsright + 2; this._xscale = -100; this._x = this._x + enemyspeed; } else if (enemydir == "left") { enemystepsleft = enemystepsleft + 2; this._xscale = 100; this._x = this._x - enemyspeed; } if (enemystepsright == 100) { enemystepsright = 0; enemydir = "left"; } else if (enemystepsleft == 100) { enemystepsleft = 0; enemydir = "right"; } } }
Instance of Symbol 145 MovieClip in Symbol 146 MovieClip Frame 1
onClipEvent (load) { enemyspeed = 2; enemystepsright = 0; enemystepsleft = 0; enemydir = "left"; } onClipEvent (enterFrame) { if (this.hitTest(_root.char.attack.attackpoint)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } } onClipEvent (enterFrame) { if (this.hitTest(_root.char.spin.attackpoint)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } } onClipEvent (enterFrame) { if (this.hitTest(_root.char.fire.attackpoint)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } if (this.hitTest(_root.char) && (!dead)) { _root.char.jumping = false; _root.health = _root.health - 1; } if (!dead) { if (enemydir == "right") { enemystepsright = enemystepsright + 2; this._xscale = -100; this._x = this._x + enemyspeed; } else if (enemydir == "left") { enemystepsleft = enemystepsleft + 2; this._xscale = 100; this._x = this._x - enemyspeed; } if (enemystepsright == 100) { enemystepsright = 0; enemydir = "left"; } else if (enemystepsleft == 100) { enemystepsleft = 0; enemydir = "right"; } } }
Instance of Symbol 145 MovieClip in Symbol 146 MovieClip Frame 1
onClipEvent (load) { enemyspeed = 2; enemystepsright = 0; enemystepsleft = 0; enemydir = "left"; } onClipEvent (enterFrame) { if (this.hitTest(_root.char.attack.attackpoint)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } } onClipEvent (enterFrame) { if (this.hitTest(_root.char.spin.attackpoint)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } } onClipEvent (enterFrame) { if (this.hitTest(_root.char.fire.attackpoint)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } if (this.hitTest(_root.char) && (!dead)) { _root.char.jumping = false; _root.health = _root.health - 1; } if (!dead) { if (enemydir == "right") { enemystepsright = enemystepsright + 2; this._xscale = -100; this._x = this._x + enemyspeed; } else if (enemydir == "left") { enemystepsleft = enemystepsleft + 2; this._xscale = 100; this._x = this._x - enemyspeed; } if (enemystepsright == 100) { enemystepsright = 0; enemydir = "left"; } else if (enemystepsleft == 100) { enemystepsleft = 0; enemydir = "right"; } } }
Instance of Symbol 145 MovieClip in Symbol 146 MovieClip Frame 1
onClipEvent (load) { enemyspeed = 2; enemystepsright = 0; enemystepsleft = 0; enemydir = "left"; } onClipEvent (enterFrame) { if (this.hitTest(_root.char.attack.attackpoint)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } } onClipEvent (enterFrame) { if (this.hitTest(_root.char.spin.attackpoint)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } } onClipEvent (enterFrame) { if (this.hitTest(_root.char.fire.attackpoint)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } if (this.hitTest(_root.char) && (!dead)) { _root.char.jumping = false; _root.health = _root.health - 1; } if (!dead) { if (enemydir == "right") { enemystepsright = enemystepsright + 2; this._xscale = -100; this._x = this._x + enemyspeed; } else if (enemydir == "left") { enemystepsleft = enemystepsleft + 2; this._xscale = 100; this._x = this._x - enemyspeed; } if (enemystepsright == 100) { enemystepsright = 0; enemydir = "left"; } else if (enemystepsleft == 100) { enemystepsleft = 0; enemydir = "right"; } } }
Instance of Symbol 81 MovieClip in Symbol 146 MovieClip Frame 1
onClipEvent (load) { enemystepsright = 0; enemystepsright = 0; enemydir = "left"; flinch = 0; flinching = false; enemyspeed = 2; } onClipEvent (enterFrame) { if (this.hitTest(_root.char.attack.attackpoint) && (!dead)) { enemyspeed = -2; flinch = flinch + 1; this.gotoAndStop("flinch"); flinching = true; } else { enemyspeed = 2; flinching = false; } if (this.hitTest(_root.char.spin.attackpoint) && (!dead)) { enemyspeed = -2; flinch = flinch + 1; this.gotoAndStop("flinch"); flinching = true; } else { enemyspeed = 2; flinching = false; } if (this.hitTest(_root.char.fire.attackpoint) && (!dead)) { enemyspeed = -2; flinch = flinch + 1; this.gotoAndStop("flinch"); flinching = true; } else { enemyspeed = 2; flinching = false; } if ((this.hitTest(_root.char) && (!dead)) && (!flinching)) { _root.char.jumping = false; _root.health = _root.health - 1; } if (!dead) { if (enemydir == "right") { enemystepsright = enemystepsright + 2; this._xscale = -100; this._x = this._x + enemyspeed; } else if (enemydir == "left") { enemystepsleft = enemystepsleft + 2; this._xscale = 100; this._x = this._x - enemyspeed; } if (enemystepsright == 100) { enemystepsright = 0; enemydir = "left"; } else if (enemystepsleft == 100) { enemystepsleft = 0; enemydir = "right"; } } }
Instance of Symbol 81 MovieClip in Symbol 146 MovieClip Frame 1
onClipEvent (load) { enemystepsright = 0; enemystepsright = 0; enemydir = "left"; flinch = 0; flinching = false; enemyspeed = 2; } onClipEvent (enterFrame) { if (this.hitTest(_root.char.attack.attackpoint) && (!dead)) { enemyspeed = -2; flinch = flinch + 1; this.gotoAndStop("flinch"); flinching = true; } else { enemyspeed = 2; flinching = false; } if (this.hitTest(_root.char.spin.attackpoint) && (!dead)) { enemyspeed = -2; flinch = flinch + 1; this.gotoAndStop("flinch"); flinching = true; } else { enemyspeed = 2; flinching = false; } if (this.hitTest(_root.char.fire.attackpoint) && (!dead)) { enemyspeed = -2; flinch = flinch + 1; this.gotoAndStop("flinch"); flinching = true; } else { enemyspeed = 2; flinching = false; } if ((this.hitTest(_root.char) && (!dead)) && (!flinching)) { _root.char.jumping = false; _root.health = _root.health - 1; } if (!dead) { if (enemydir == "right") { enemystepsright = enemystepsright + 2; this._xscale = -100; this._x = this._x + enemyspeed; } else if (enemydir == "left") { enemystepsleft = enemystepsleft + 2; this._xscale = 100; this._x = this._x - enemyspeed; } if (enemystepsright == 100) { enemystepsright = 0; enemydir = "left"; } else if (enemystepsleft == 100) { enemystepsleft = 0; enemydir = "right"; } } }
Instance of Symbol 81 MovieClip in Symbol 146 MovieClip Frame 1
onClipEvent (load) { enemystepsright = 0; enemystepsright = 0; enemydir = "left"; flinch = 0; flinching = false; enemyspeed = 2; } onClipEvent (enterFrame) { if (this.hitTest(_root.char.attack.attackpoint) && (!dead)) { enemyspeed = -2; flinch = flinch + 1; this.gotoAndStop("flinch"); flinching = true; } else { enemyspeed = 2; flinching = false; } if (this.hitTest(_root.char.spin.attackpoint) && (!dead)) { enemyspeed = -2; flinch = flinch + 1; this.gotoAndStop("flinch"); flinching = true; } else { enemyspeed = 2; flinching = false; } if (this.hitTest(_root.char.fire.attackpoint) && (!dead)) { enemyspeed = -2; flinch = flinch + 1; this.gotoAndStop("flinch"); flinching = true; } else { enemyspeed = 2; flinching = false; } if ((this.hitTest(_root.char) && (!dead)) && (!flinching)) { _root.char.jumping = false; _root.health = _root.health - 1; } if (!dead) { if (enemydir == "right") { enemystepsright = enemystepsright + 2; this._xscale = -100; this._x = this._x + enemyspeed; } else if (enemydir == "left") { enemystepsleft = enemystepsleft + 2; this._xscale = 100; this._x = this._x - enemyspeed; } if (enemystepsright == 100) { enemystepsright = 0; enemydir = "left"; } else if (enemystepsleft == 100) { enemystepsleft = 0; enemydir = "right"; } } }
Instance of Symbol 109 MovieClip in Symbol 146 MovieClip Frame 1
onClipEvent (load) { enemyspeed = 2; enemystepsright = 0; enemystepsleft = 0; enemydir = "left"; } onClipEvent (enterFrame) { if (this.hitTest(_root.char.attack.attackpoint)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } } onClipEvent (enterFrame) { if (this.hitTest(_root.char.spin.attackpoint)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } } onClipEvent (enterFrame) { if (this.hitTest(_root.char.fire.attackpoint)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } if (this.hitTest(_root.char) && (!dead)) { _root.char.jumping = false; _root.health = _root.health - 1; } if (!dead) { if (enemydir == "right") { enemystepsright = enemystepsright + 2; this._xscale = -100; this._x = this._x + enemyspeed; } else if (enemydir == "left") { enemystepsleft = enemystepsleft + 2; this._xscale = 100; this._x = this._x - enemyspeed; } if (enemystepsright == 100) { enemystepsright = 0; enemydir = "left"; } else if (enemystepsleft == 100) { enemystepsleft = 0; enemydir = "right"; } } }
Instance of Symbol 145 MovieClip in Symbol 146 MovieClip Frame 1
onClipEvent (load) { enemyspeed = 2; enemystepsright = 0; enemystepsleft = 0; enemydir = "left"; } onClipEvent (enterFrame) { if (this.hitTest(_root.char.attack.attackpoint)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } } onClipEvent (enterFrame) { if (this.hitTest(_root.char.spin.attackpoint)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } } onClipEvent (enterFrame) { if (this.hitTest(_root.char.fire.attackpoint)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } if (this.hitTest(_root.char) && (!dead)) { _root.char.jumping = false; _root.health = _root.health - 1; } if (!dead) { if (enemydir == "right") { enemystepsright = enemystepsright + 2; this._xscale = -100; this._x = this._x + enemyspeed; } else if (enemydir == "left") { enemystepsleft = enemystepsleft + 2; this._xscale = 100; this._x = this._x - enemyspeed; } if (enemystepsright == 100) { enemystepsright = 0; enemydir = "left"; } else if (enemystepsleft == 100) { enemystepsleft = 0; enemydir = "right"; } } }
Instance of Symbol 145 MovieClip in Symbol 146 MovieClip Frame 1
onClipEvent (load) { enemyspeed = 2; enemystepsright = 0; enemystepsleft = 0; enemydir = "left"; } onClipEvent (enterFrame) { if (this.hitTest(_root.char.attack.attackpoint)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } } onClipEvent (enterFrame) { if (this.hitTest(_root.char.spin.attackpoint)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } } onClipEvent (enterFrame) { if (this.hitTest(_root.char.fire.attackpoint)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } if (this.hitTest(_root.char) && (!dead)) { _root.char.jumping = false; _root.health = _root.health - 1; } if (!dead) { if (enemydir == "right") { enemystepsright = enemystepsright + 2; this._xscale = -100; this._x = this._x + enemyspeed; } else if (enemydir == "left") { enemystepsleft = enemystepsleft + 2; this._xscale = 100; this._x = this._x - enemyspeed; } if (enemystepsright == 100) { enemystepsright = 0; enemydir = "left"; } else if (enemystepsleft == 100) { enemystepsleft = 0; enemydir = "right"; } } }
Instance of Symbol 145 MovieClip in Symbol 146 MovieClip Frame 1
onClipEvent (load) { enemyspeed = 2; enemystepsright = 0; enemystepsleft = 0; enemydir = "left"; } onClipEvent (enterFrame) { if (this.hitTest(_root.char.attack.attackpoint)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } } onClipEvent (enterFrame) { if (this.hitTest(_root.char.spin.attackpoint)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } } onClipEvent (enterFrame) { if (this.hitTest(_root.char.fire.attackpoint)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } if (this.hitTest(_root.char) && (!dead)) { _root.char.jumping = false; _root.health = _root.health - 1; } if (!dead) { if (enemydir == "right") { enemystepsright = enemystepsright + 2; this._xscale = -100; this._x = this._x + enemyspeed; } else if (enemydir == "left") { enemystepsleft = enemystepsleft + 2; this._xscale = 100; this._x = this._x - enemyspeed; } if (enemystepsright == 100) { enemystepsright = 0; enemydir = "left"; } else if (enemystepsleft == 100) { enemystepsleft = 0; enemydir = "right"; } } }
Instance of Symbol 109 MovieClip in Symbol 146 MovieClip Frame 1
onClipEvent (load) { enemyspeed = 2; enemystepsright = 0; enemystepsleft = 0; enemydir = "left"; } onClipEvent (enterFrame) { if (this.hitTest(_root.char.attack.attackpoint)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } } onClipEvent (enterFrame) { if (this.hitTest(_root.char.spin.attackpoint)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } } onClipEvent (enterFrame) { if (this.hitTest(_root.char.fire.attackpoint)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } if (this.hitTest(_root.char) && (!dead)) { _root.char.jumping = false; _root.health = _root.health - 1; } if (!dead) { if (enemydir == "right") { enemystepsright = enemystepsright + 2; this._xscale = -100; this._x = this._x + enemyspeed; } else if (enemydir == "left") { enemystepsleft = enemystepsleft + 2; this._xscale = 100; this._x = this._x - enemyspeed; } if (enemystepsright == 100) { enemystepsright = 0; enemydir = "left"; } else if (enemystepsleft == 100) { enemystepsleft = 0; enemydir = "right"; } } }
Instance of Symbol 109 MovieClip in Symbol 146 MovieClip Frame 1
onClipEvent (load) { enemyspeed = 2; enemystepsright = 0; enemystepsleft = 0; enemydir = "left"; } onClipEvent (enterFrame) { if (this.hitTest(_root.char.attack.attackpoint)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } } onClipEvent (enterFrame) { if (this.hitTest(_root.char.spin.attackpoint)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } } onClipEvent (enterFrame) { if (this.hitTest(_root.char.fire.attackpoint)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } if (this.hitTest(_root.char) && (!dead)) { _root.char.jumping = false; _root.health = _root.health - 1; } if (!dead) { if (enemydir == "right") { enemystepsright = enemystepsright + 2; this._xscale = -100; this._x = this._x + enemyspeed; } else if (enemydir == "left") { enemystepsleft = enemystepsleft + 2; this._xscale = 100; this._x = this._x - enemyspeed; } if (enemystepsright == 100) { enemystepsright = 0; enemydir = "left"; } else if (enemystepsleft == 100) { enemystepsleft = 0; enemydir = "right"; } } }
Instance of Symbol 109 MovieClip in Symbol 146 MovieClip Frame 1
onClipEvent (load) { enemyspeed = 2; enemystepsright = 0; enemystepsleft = 0; enemydir = "left"; } onClipEvent (enterFrame) { if (this.hitTest(_root.char.attack.attackpoint)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } } onClipEvent (enterFrame) { if (this.hitTest(_root.char.spin.attackpoint)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } } onClipEvent (enterFrame) { if (this.hitTest(_root.char.fire.attackpoint)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } if (this.hitTest(_root.char) && (!dead)) { _root.char.jumping = false; _root.health = _root.health - 1; } if (!dead) { if (enemydir == "right") { enemystepsright = enemystepsright + 2; this._xscale = -100; this._x = this._x + enemyspeed; } else if (enemydir == "left") { enemystepsleft = enemystepsleft + 2; this._xscale = 100; this._x = this._x - enemyspeed; } if (enemystepsright == 100) { enemystepsright = 0; enemydir = "left"; } else if (enemystepsleft == 100) { enemystepsleft = 0; enemydir = "right"; } } }
Instance of Symbol 109 MovieClip in Symbol 146 MovieClip Frame 1
onClipEvent (load) { enemyspeed = 2; enemystepsright = 0; enemystepsleft = 0; enemydir = "left"; } onClipEvent (enterFrame) { if (this.hitTest(_root.char.attack.attackpoint)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } } onClipEvent (enterFrame) { if (this.hitTest(_root.char.spin.attackpoint)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } } onClipEvent (enterFrame) { if (this.hitTest(_root.char.fire.attackpoint)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } if (this.hitTest(_root.char) && (!dead)) { _root.char.jumping = false; _root.health = _root.health - 1; } if (!dead) { if (enemydir == "right") { enemystepsright = enemystepsright + 2; this._xscale = -100; this._x = this._x + enemyspeed; } else if (enemydir == "left") { enemystepsleft = enemystepsleft + 2; this._xscale = 100; this._x = this._x - enemyspeed; } if (enemystepsright == 100) { enemystepsright = 0; enemydir = "left"; } else if (enemystepsleft == 100) { enemystepsleft = 0; enemydir = "right"; } } }
Instance of Symbol 109 MovieClip in Symbol 146 MovieClip Frame 1
onClipEvent (load) { enemyspeed = 2; enemystepsright = 0; enemystepsleft = 0; enemydir = "left"; } onClipEvent (enterFrame) { if (this.hitTest(_root.char.attack.attackpoint)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } } onClipEvent (enterFrame) { if (this.hitTest(_root.char.spin.attackpoint)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } } onClipEvent (enterFrame) { if (this.hitTest(_root.char.fire.attackpoint)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } if (this.hitTest(_root.char) && (!dead)) { _root.char.jumping = false; _root.health = _root.health - 1; } if (!dead) { if (enemydir == "right") { enemystepsright = enemystepsright + 2; this._xscale = -100; this._x = this._x + enemyspeed; } else if (enemydir == "left") { enemystepsleft = enemystepsleft + 2; this._xscale = 100; this._x = this._x - enemyspeed; } if (enemystepsright == 100) { enemystepsright = 0; enemydir = "left"; } else if (enemystepsleft == 100) { enemystepsleft = 0; enemydir = "right"; } } }
Instance of Symbol 145 MovieClip in Symbol 146 MovieClip Frame 1
onClipEvent (load) { enemyspeed = 2; enemystepsright = 0; enemystepsleft = 0; enemydir = "left"; } onClipEvent (enterFrame) { if (this.hitTest(_root.char.attack.attackpoint)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } } onClipEvent (enterFrame) { if (this.hitTest(_root.char.spin.attackpoint)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } } onClipEvent (enterFrame) { if (this.hitTest(_root.char.fire.attackpoint)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } if (this.hitTest(_root.char) && (!dead)) { _root.char.jumping = false; _root.health = _root.health - 1; } if (!dead) { if (enemydir == "right") { enemystepsright = enemystepsright + 2; this._xscale = -100; this._x = this._x + enemyspeed; } else if (enemydir == "left") { enemystepsleft = enemystepsleft + 2; this._xscale = 100; this._x = this._x - enemyspeed; } if (enemystepsright == 100) { enemystepsright = 0; enemydir = "left"; } else if (enemystepsleft == 100) { enemystepsleft = 0; enemydir = "right"; } } }
Instance of Symbol 145 MovieClip in Symbol 146 MovieClip Frame 1
onClipEvent (load) { enemyspeed = 2; enemystepsright = 0; enemystepsleft = 0; enemydir = "left"; } onClipEvent (enterFrame) { if (this.hitTest(_root.char.attack.attackpoint)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } } onClipEvent (enterFrame) { if (this.hitTest(_root.char.spin.attackpoint)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } } onClipEvent (enterFrame) { if (this.hitTest(_root.char.fire.attackpoint)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } if (this.hitTest(_root.char) && (!dead)) { _root.char.jumping = false; _root.health = _root.health - 1; } if (!dead) { if (enemydir == "right") { enemystepsright = enemystepsright + 2; this._xscale = -100; this._x = this._x + enemyspeed; } else if (enemydir == "left") { enemystepsleft = enemystepsleft + 2; this._xscale = 100; this._x = this._x - enemyspeed; } if (enemystepsright == 100) { enemystepsright = 0; enemydir = "left"; } else if (enemystepsleft == 100) { enemystepsleft = 0; enemydir = "right"; } } }
Instance of Symbol 145 MovieClip in Symbol 146 MovieClip Frame 1
onClipEvent (load) { enemyspeed = 2; enemystepsright = 0; enemystepsleft = 0; enemydir = "left"; } onClipEvent (enterFrame) { if (this.hitTest(_root.char.attack.attackpoint)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } } onClipEvent (enterFrame) { if (this.hitTest(_root.char.spin.attackpoint)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } } onClipEvent (enterFrame) { if (this.hitTest(_root.char.fire.attackpoint)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } if (this.hitTest(_root.char) && (!dead)) { _root.char.jumping = false; _root.health = _root.health - 1; } if (!dead) { if (enemydir == "right") { enemystepsright = enemystepsright + 2; this._xscale = -100; this._x = this._x + enemyspeed; } else if (enemydir == "left") { enemystepsleft = enemystepsleft + 2; this._xscale = 100; this._x = this._x - enemyspeed; } if (enemystepsright == 100) { enemystepsright = 0; enemydir = "left"; } else if (enemystepsleft == 100) { enemystepsleft = 0; enemydir = "right"; } } }
Instance of Symbol 81 MovieClip in Symbol 146 MovieClip Frame 1
onClipEvent (load) { enemystepsright = 0; enemystepsright = 0; enemydir = "left"; flinch = 0; flinching = false; enemyspeed = 2; } onClipEvent (enterFrame) { if (this.hitTest(_root.char.attack.attackpoint)) { enemyspeed = -2; flinch = flinch + 1; this.gotoAndStop("flinch"); } else { enemyspeed = 2; } } onClipEvent (enterFrame) { if (this.hitTest(_root.char.spin.attackpoint)) { enemyspeed = -2; flinch = flinch + 1; this.gotoAndStop("flinch"); } else { enemyspeed = 2; } } onClipEvent (enterFrame) { if (this.hitTest(_root.char.fire.attackpoint)) { enemyspeed = -2; flinch = flinch + 1; this.gotoAndStop("flinch"); } else { enemyspeed = 2; } if (this.hitTest(_root.char) && (!dead)) { _root.char.jumping = false; _root.health = _root.health - 1; } if (!dead) { if (enemydir == "right") { enemystepsright = enemystepsright + 2; this._xscale = -100; this._x = this._x + enemyspeed; } else if (enemydir == "left") { enemystepsleft = enemystepsleft + 2; this._xscale = 100; this._x = this._x - enemyspeed; } if (enemystepsright == 100) { enemystepsright = 0; enemydir = "left"; } else if (enemystepsleft == 100) { enemystepsleft = 0; enemydir = "right"; } } }
Instance of Symbol 81 MovieClip in Symbol 146 MovieClip Frame 1
onClipEvent (load) { enemystepsright = 0; enemystepsright = 0; enemydir = "left"; flinch = 0; flinching = false; enemyspeed = 2; } onClipEvent (enterFrame) { if (this.hitTest(_root.char.attack.attackpoint)) { enemyspeed = -2; flinch = flinch + 1; this.gotoAndStop("flinch"); } else { enemyspeed = 2; } } onClipEvent (enterFrame) { if (this.hitTest(_root.char.spin.attackpoint)) { enemyspeed = -2; flinch = flinch + 1; this.gotoAndStop("flinch"); } else { enemyspeed = 2; } } onClipEvent (enterFrame) { if (this.hitTest(_root.char.fire.attackpoint)) { enemyspeed = -2; flinch = flinch + 1; this.gotoAndStop("flinch"); } else { enemyspeed = 2; } if (this.hitTest(_root.char) && (!dead)) { _root.char.jumping = false; _root.health = _root.health - 1; } if (!dead) { if (enemydir == "right") { enemystepsright = enemystepsright + 2; this._xscale = -100; this._x = this._x + enemyspeed; } else if (enemydir == "left") { enemystepsleft = enemystepsleft + 2; this._xscale = 100; this._x = this._x - enemyspeed; } if (enemystepsright == 100) { enemystepsright = 0; enemydir = "left"; } else if (enemystepsleft == 100) { enemystepsleft = 0; enemydir = "right"; } } }
Instance of Symbol 81 MovieClip in Symbol 146 MovieClip Frame 1
onClipEvent (load) { enemystepsright = 0; enemystepsright = 0; enemydir = "left"; flinch = 0; flinching = false; enemyspeed = 2; } onClipEvent (enterFrame) { if (this.hitTest(_root.char.attack.attackpoint)) { enemyspeed = -2; flinch = flinch + 1; this.gotoAndStop("flinch"); } else { enemyspeed = 2; } } onClipEvent (enterFrame) { if (this.hitTest(_root.char.spin.attackpoint)) { enemyspeed = -2; flinch = flinch + 1; this.gotoAndStop("flinch"); } else { enemyspeed = 2; } } onClipEvent (enterFrame) { if (this.hitTest(_root.char.fire.attackpoint)) { enemyspeed = -2; flinch = flinch + 1; this.gotoAndStop("flinch"); } else { enemyspeed = 2; } if (this.hitTest(_root.char) && (!dead)) { _root.char.jumping = false; _root.health = _root.health - 1; } if (!dead) { if (enemydir == "right") { enemystepsright = enemystepsright + 2; this._xscale = -100; this._x = this._x + enemyspeed; } else if (enemydir == "left") { enemystepsleft = enemystepsleft + 2; this._xscale = 100; this._x = this._x - enemyspeed; } if (enemystepsright == 100) { enemystepsright = 0; enemydir = "left"; } else if (enemystepsleft == 100) { enemystepsleft = 0; enemydir = "right"; } } }
Instance of Symbol 81 MovieClip in Symbol 146 MovieClip Frame 1
onClipEvent (load) { enemystepsright = 0; enemystepsright = 0; enemydir = "left"; flinch = 0; flinching = false; enemyspeed = 2; } onClipEvent (enterFrame) { if (this.hitTest(_root.char.attack.attackpoint)) { enemyspeed = -2; flinch = flinch + 1; this.gotoAndStop("flinch"); } else { enemyspeed = 2; } } onClipEvent (enterFrame) { if (this.hitTest(_root.char.spin.attackpoint)) { enemyspeed = -2; flinch = flinch + 1; this.gotoAndStop("flinch"); } else { enemyspeed = 2; } } onClipEvent (enterFrame) { if (this.hitTest(_root.char.fire.attackpoint)) { enemyspeed = -2; flinch = flinch + 1; this.gotoAndStop("flinch"); } else { enemyspeed = 2; } if (this.hitTest(_root.char) && (!dead)) { _root.char.jumping = false; _root.health = _root.health - 1; } if (!dead) { if (enemydir == "right") { enemystepsright = enemystepsright + 2; this._xscale = -100; this._x = this._x + enemyspeed; } else if (enemydir == "left") { enemystepsleft = enemystepsleft + 2; this._xscale = 100; this._x = this._x - enemyspeed; } if (enemystepsright == 100) { enemystepsright = 0; enemydir = "left"; } else if (enemystepsleft == 100) { enemystepsleft = 0; enemydir = "right"; } } }
Instance of Symbol 81 MovieClip in Symbol 146 MovieClip Frame 1
onClipEvent (load) { enemystepsright = 0; enemystepsright = 0; enemydir = "left"; flinch = 0; flinching = false; enemyspeed = 2; } onClipEvent (enterFrame) { if (this.hitTest(_root.char.attack.attackpoint)) { enemyspeed = -2; flinch = flinch + 1; this.gotoAndStop("flinch"); } else { enemyspeed = 2; } } onClipEvent (enterFrame) { if (this.hitTest(_root.char.spin.attackpoint)) { enemyspeed = -2; flinch = flinch + 1; this.gotoAndStop("flinch"); } else { enemyspeed = 2; } } onClipEvent (enterFrame) { if (this.hitTest(_root.char.fire.attackpoint)) { enemyspeed = -2; flinch = flinch + 1; this.gotoAndStop("flinch"); } else { enemyspeed = 2; } if (this.hitTest(_root.char) && (!dead)) { _root.char.jumping = false; _root.health = _root.health - 1; } if (!dead) { if (enemydir == "right") { enemystepsright = enemystepsright + 2; this._xscale = -100; this._x = this._x + enemyspeed; } else if (enemydir == "left") { enemystepsleft = enemystepsleft + 2; this._xscale = 100; this._x = this._x - enemyspeed; } if (enemystepsright == 100) { enemystepsright = 0; enemydir = "left"; } else if (enemystepsleft == 100) { enemystepsleft = 0; enemydir = "right"; } } }
Instance of Symbol 81 MovieClip in Symbol 146 MovieClip Frame 1
onClipEvent (load) { enemystepsright = 0; enemystepsright = 0; enemydir = "left"; flinch = 0; flinching = false; enemyspeed = 2; } onClipEvent (enterFrame) { if (this.hitTest(_root.char.attack.attackpoint)) { enemyspeed = -2; flinch = flinch + 1; this.gotoAndStop("flinch"); } else { enemyspeed = 2; } } onClipEvent (enterFrame) { if (this.hitTest(_root.char.spin.attackpoint)) { enemyspeed = -2; flinch = flinch + 1; this.gotoAndStop("flinch"); } else { enemyspeed = 2; } } onClipEvent (enterFrame) { if (this.hitTest(_root.char.fire.attackpoint)) { enemyspeed = -2; flinch = flinch + 1; this.gotoAndStop("flinch"); } else { enemyspeed = 2; } if (this.hitTest(_root.char) && (!dead)) { _root.char.jumping = false; _root.health = _root.health - 1; } if (!dead) { if (enemydir == "right") { enemystepsright = enemystepsright + 2; this._xscale = -100; this._x = this._x + enemyspeed; } else if (enemydir == "left") { enemystepsleft = enemystepsleft + 2; this._xscale = 100; this._x = this._x - enemyspeed; } if (enemystepsright == 100) { enemystepsright = 0; enemydir = "left"; } else if (enemystepsleft == 100) { enemystepsleft = 0; enemydir = "right"; } } }
Instance of Symbol 145 MovieClip in Symbol 146 MovieClip Frame 1
onClipEvent (load) { enemyspeed = 2; enemystepsright = 0; enemystepsleft = 0; enemydir = "left"; } onClipEvent (enterFrame) { if (this.hitTest(_root.char.attack.attackpoint)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } } onClipEvent (enterFrame) { if (this.hitTest(_root.char.spin.attackpoint)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } } onClipEvent (enterFrame) { if (this.hitTest(_root.char.fire.attackpoint)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } if (this.hitTest(_root.char) && (!dead)) { _root.char.jumping = false; _root.health = _root.health - 1; } if (!dead) { if (enemydir == "right") { enemystepsright = enemystepsright + 2; this._xscale = -100; this._x = this._x + enemyspeed; } else if (enemydir == "left") { enemystepsleft = enemystepsleft + 2; this._xscale = 100; this._x = this._x - enemyspeed; } if (enemystepsright == 100) { enemystepsright = 0; enemydir = "left"; } else if (enemystepsleft == 100) { enemystepsleft = 0; enemydir = "right"; } } }
Instance of Symbol 145 MovieClip in Symbol 146 MovieClip Frame 1
onClipEvent (load) { enemyspeed = 2; enemystepsright = 0; enemystepsleft = 0; enemydir = "left"; } onClipEvent (enterFrame) { if (this.hitTest(_root.char.attack.attackpoint)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } } onClipEvent (enterFrame) { if (this.hitTest(_root.char.spin.attackpoint)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } } onClipEvent (enterFrame) { if (this.hitTest(_root.char.fire.attackpoint)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } if (this.hitTest(_root.char) && (!dead)) { _root.char.jumping = false; _root.health = _root.health - 1; } if (!dead) { if (enemydir == "right") { enemystepsright = enemystepsright + 2; this._xscale = -100; this._x = this._x + enemyspeed; } else if (enemydir == "left") { enemystepsleft = enemystepsleft + 2; this._xscale = 100; this._x = this._x - enemyspeed; } if (enemystepsright == 100) { enemystepsright = 0; enemydir = "left"; } else if (enemystepsleft == 100) { enemystepsleft = 0; enemydir = "right"; } } }
Instance of Symbol 81 MovieClip in Symbol 146 MovieClip Frame 1
onClipEvent (load) { enemystepsright = 0; enemystepsright = 0; enemydir = "left"; flinch = 0; flinching = false; enemyspeed = 2; } onClipEvent (enterFrame) { if (this.hitTest(_root.char.attack.attackpoint)) { enemyspeed = -2; flinch = flinch + 1; this.gotoAndStop("flinch"); } else { enemyspeed = 2; } } onClipEvent (enterFrame) { if (this.hitTest(_root.char.spin.attackpoint)) { enemyspeed = -2; flinch = flinch + 1; this.gotoAndStop("flinch"); } else { enemyspeed = 2; } } onClipEvent (enterFrame) { if (this.hitTest(_root.char.fire.attackpoint)) { enemyspeed = -2; flinch = flinch + 1; this.gotoAndStop("flinch"); } else { enemyspeed = 2; } if (this.hitTest(_root.char) && (!dead)) { _root.char.jumping = false; _root.health = _root.health - 1; } if (!dead) { if (enemydir == "right") { enemystepsright = enemystepsright + 2; this._xscale = -100; this._x = this._x + enemyspeed; } else if (enemydir == "left") { enemystepsleft = enemystepsleft + 2; this._xscale = 100; this._x = this._x - enemyspeed; } if (enemystepsright == 100) { enemystepsright = 0; enemydir = "left"; } else if (enemystepsleft == 100) { enemystepsleft = 0; enemydir = "right"; } } }
Instance of Symbol 81 MovieClip in Symbol 146 MovieClip Frame 1
onClipEvent (load) { enemystepsright = 0; enemystepsright = 0; enemydir = "left"; flinch = 0; flinching = false; enemyspeed = 2; } onClipEvent (enterFrame) { if (this.hitTest(_root.char.attack.attackpoint)) { enemyspeed = -2; flinch = flinch + 1; this.gotoAndStop("flinch"); } else { enemyspeed = 2; } } onClipEvent (enterFrame) { if (this.hitTest(_root.char.spin.attackpoint)) { enemyspeed = -2; flinch = flinch + 1; this.gotoAndStop("flinch"); } else { enemyspeed = 2; } } onClipEvent (enterFrame) { if (this.hitTest(_root.char.fire.attackpoint)) { enemyspeed = -2; flinch = flinch + 1; this.gotoAndStop("flinch"); } else { enemyspeed = 2; } if (this.hitTest(_root.char) && (!dead)) { _root.char.jumping = false; _root.health = _root.health - 1; } if (!dead) { if (enemydir == "right") { enemystepsright = enemystepsright + 2; this._xscale = -100; this._x = this._x + enemyspeed; } else if (enemydir == "left") { enemystepsleft = enemystepsleft + 2; this._xscale = 100; this._x = this._x - enemyspeed; } if (enemystepsright == 100) { enemystepsright = 0; enemydir = "left"; } else if (enemystepsleft == 100) { enemystepsleft = 0; enemydir = "right"; } } }
Instance of Symbol 109 MovieClip in Symbol 146 MovieClip Frame 1
onClipEvent (load) { enemyspeed = 2; enemystepsright = 0; enemystepsleft = 0; enemydir = "left"; } onClipEvent (enterFrame) { if (this.hitTest(_root.char.attack.attackpoint)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } } onClipEvent (enterFrame) { if (this.hitTest(_root.char.spin.attackpoint)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } } onClipEvent (enterFrame) { if (this.hitTest(_root.char.fire.attackpoint)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } if (this.hitTest(_root.char) && (!dead)) { _root.char.jumping = false; _root.health = _root.health - 1; } if (!dead) { if (enemydir == "right") { enemystepsright = enemystepsright + 2; this._xscale = -100; this._x = this._x + enemyspeed; } else if (enemydir == "left") { enemystepsleft = enemystepsleft + 2; this._xscale = 100; this._x = this._x - enemyspeed; } if (enemystepsright == 100) { enemystepsright = 0; enemydir = "left"; } else if (enemystepsleft == 100) { enemystepsleft = 0; enemydir = "right"; } } }
Instance of Symbol 109 MovieClip in Symbol 146 MovieClip Frame 1
onClipEvent (load) { enemyspeed = 2; enemystepsright = 0; enemystepsleft = 0; enemydir = "left"; } onClipEvent (enterFrame) { if (this.hitTest(_root.char.attack.attackpoint)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } } onClipEvent (enterFrame) { if (this.hitTest(_root.char.spin.attackpoint)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } } onClipEvent (enterFrame) { if (this.hitTest(_root.char.fire.attackpoint)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } if (this.hitTest(_root.char) && (!dead)) { _root.char.jumping = false; _root.health = _root.health - 1; } if (!dead) { if (enemydir == "right") { enemystepsright = enemystepsright + 2; this._xscale = -100; this._x = this._x + enemyspeed; } else if (enemydir == "left") { enemystepsleft = enemystepsleft + 2; this._xscale = 100; this._x = this._x - enemyspeed; } if (enemystepsright == 100) { enemystepsright = 0; enemydir = "left"; } else if (enemystepsleft == 100) { enemystepsleft = 0; enemydir = "right"; } } }
Instance of Symbol 109 MovieClip in Symbol 146 MovieClip Frame 1
onClipEvent (load) { enemyspeed = 2; enemystepsright = 0; enemystepsleft = 0; enemydir = "left"; } onClipEvent (enterFrame) { if (this.hitTest(_root.char.attack.attackpoint)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } } onClipEvent (enterFrame) { if (this.hitTest(_root.char.spin.attackpoint)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } } onClipEvent (enterFrame) { if (this.hitTest(_root.char.fire.attackpoint)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } if (this.hitTest(_root.char) && (!dead)) { _root.char.jumping = false; _root.health = _root.health - 1; } if (!dead) { if (enemydir == "right") { enemystepsright = enemystepsright + 2; this._xscale = -100; this._x = this._x + enemyspeed; } else if (enemydir == "left") { enemystepsleft = enemystepsleft + 2; this._xscale = 100; this._x = this._x - enemyspeed; } if (enemystepsright == 100) { enemystepsright = 0; enemydir = "left"; } else if (enemystepsleft == 100) { enemystepsleft = 0; enemydir = "right"; } } }
Instance of Symbol 109 MovieClip in Symbol 146 MovieClip Frame 1
onClipEvent (load) { enemyspeed = 2; enemystepsright = 0; enemystepsleft = 0; enemydir = "left"; } onClipEvent (enterFrame) { if (this.hitTest(_root.char.attack.attackpoint)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } } onClipEvent (enterFrame) { if (this.hitTest(_root.char.spin.attackpoint)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } } onClipEvent (enterFrame) { if (this.hitTest(_root.char.fire.attackpoint)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } if (this.hitTest(_root.char) && (!dead)) { _root.char.jumping = false; _root.health = _root.health - 1; } if (!dead) { if (enemydir == "right") { enemystepsright = enemystepsright + 2; this._xscale = -100; this._x = this._x + enemyspeed; } else if (enemydir == "left") { enemystepsleft = enemystepsleft + 2; this._xscale = 100; this._x = this._x - enemyspeed; } if (enemystepsright == 100) { enemystepsright = 0; enemydir = "left"; } else if (enemystepsleft == 100) { enemystepsleft = 0; enemydir = "right"; } } }
Instance of Symbol 145 MovieClip in Symbol 146 MovieClip Frame 1
onClipEvent (load) { enemyspeed = 2; enemystepsright = 0; enemystepsleft = 0; enemydir = "left"; } onClipEvent (enterFrame) { if (this.hitTest(_root.char.attack.attackpoint)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } } onClipEvent (enterFrame) { if (this.hitTest(_root.char.spin.attackpoint)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } } onClipEvent (enterFrame) { if (this.hitTest(_root.char.fire.attackpoint)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } if (this.hitTest(_root.char) && (!dead)) { _root.char.jumping = false; _root.health = _root.health - 1; } if (!dead) { if (enemydir == "right") { enemystepsright = enemystepsright + 2; this._xscale = -100; this._x = this._x + enemyspeed; } else if (enemydir == "left") { enemystepsleft = enemystepsleft + 2; this._xscale = 100; this._x = this._x - enemyspeed; } if (enemystepsright == 100) { enemystepsright = 0; enemydir = "left"; } else if (enemystepsleft == 100) { enemystepsleft = 0; enemydir = "right"; } } }
Instance of Symbol 145 MovieClip in Symbol 146 MovieClip Frame 1
onClipEvent (load) { enemyspeed = 2; enemystepsright = 0; enemystepsleft = 0; enemydir = "left"; } onClipEvent (enterFrame) { if (this.hitTest(_root.char.attack.attackpoint)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } } onClipEvent (enterFrame) { if (this.hitTest(_root.char.spin.attackpoint)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } } onClipEvent (enterFrame) { if (this.hitTest(_root.char.fire.attackpoint)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } if (this.hitTest(_root.char) && (!dead)) { _root.char.jumping = false; _root.health = _root.health - 1; } if (!dead) { if (enemydir == "right") { enemystepsright = enemystepsright + 2; this._xscale = -100; this._x = this._x + enemyspeed; } else if (enemydir == "left") { enemystepsleft = enemystepsleft + 2; this._xscale = 100; this._x = this._x - enemyspeed; } if (enemystepsright == 100) { enemystepsright = 0; enemydir = "left"; } else if (enemystepsleft == 100) { enemystepsleft = 0; enemydir = "right"; } } }
Instance of Symbol 81 MovieClip in Symbol 146 MovieClip Frame 1
onClipEvent (load) { enemystepsright = 0; enemystepsright = 0; enemydir = "left"; flinch = 0; flinching = false; enemyspeed = 2; } onClipEvent (enterFrame) { if (this.hitTest(_root.char.attack.attackpoint) && (!dead)) { enemyspeed = -2; flinch = flinch + 1; this.gotoAndStop("flinch"); flinching = true; } else { enemyspeed = 2; flinching = false; } if (this.hitTest(_root.char.spin.attackpoint) && (!dead)) { enemyspeed = -2; flinch = flinch + 1; this.gotoAndStop("flinch"); flinching = true; } else { enemyspeed = 2; flinching = false; } if (this.hitTest(_root.char.fire.attackpoint) && (!dead)) { enemyspeed = -2; flinch = flinch + 1; this.gotoAndStop("flinch"); flinching = true; } else { enemyspeed = 2; flinching = false; } if ((this.hitTest(_root.char) && (!dead)) && (!flinching)) { _root.char.jumping = false; _root.health = _root.health - 1; } if (!dead) { if (enemydir == "right") { enemystepsright = enemystepsright + 2; this._xscale = -100; this._x = this._x + enemyspeed; } else if (enemydir == "left") { enemystepsleft = enemystepsleft + 2; this._xscale = 100; this._x = this._x - enemyspeed; } if (enemystepsright == 100) { enemystepsright = 0; enemydir = "left"; } else if (enemystepsleft == 100) { enemystepsleft = 0; enemydir = "right"; } } }
Instance of Symbol 81 MovieClip in Symbol 146 MovieClip Frame 1
onClipEvent (load) { enemystepsright = 0; enemystepsright = 0; enemydir = "left"; flinch = 0; flinching = false; enemyspeed = 2; } onClipEvent (enterFrame) { if (this.hitTest(_root.char.attack.attackpoint) && (!dead)) { enemyspeed = -2; flinch = flinch + 1; this.gotoAndStop("flinch"); flinching = true; } else { enemyspeed = 2; flinching = false; } if (this.hitTest(_root.char.spin.attackpoint) && (!dead)) { enemyspeed = -2; flinch = flinch + 1; this.gotoAndStop("flinch"); flinching = true; } else { enemyspeed = 2; flinching = false; } if (this.hitTest(_root.char.fire.attackpoint) && (!dead)) { enemyspeed = -2; flinch = flinch + 1; this.gotoAndStop("flinch"); flinching = true; } else { enemyspeed = 2; flinching = false; } if ((this.hitTest(_root.char) && (!dead)) && (!flinching)) { _root.char.jumping = false; _root.health = _root.health - 1; } if (!dead) { if (enemydir == "right") { enemystepsright = enemystepsright + 2; this._xscale = -100; this._x = this._x + enemyspeed; } else if (enemydir == "left") { enemystepsleft = enemystepsleft + 2; this._xscale = 100; this._x = this._x - enemyspeed; } if (enemystepsright == 100) { enemystepsright = 0; enemydir = "left"; } else if (enemystepsleft == 100) { enemystepsleft = 0; enemydir = "right"; } } }
Instance of Symbol 150 MovieClip in Symbol 189 MovieClip Frame 1
onClipEvent (enterFrame) { if (((this.hitTest(_root.char) && (!dead)) && (!this.hitTest(_root.char.fire.attackpoint))) && (!this.hitTest(_root.char.attack.attackpoint))) { _root.char.jumping = false; _root.health = _root.health - 5; } }
Instance of Symbol 150 MovieClip in Symbol 189 MovieClip Frame 9
onClipEvent (enterFrame) { if (((this.hitTest(_root.char) && (!dead)) && (!this.hitTest(_root.char.fire.attackpoint))) && (!this.hitTest(_root.char.attack.attackpoint))) { _root.char.jumping = false; _root.health = _root.health - 5; } }
Instance of Symbol 150 MovieClip in Symbol 189 MovieClip Frame 19
onClipEvent (enterFrame) { if (((this.hitTest(_root.char) && (!dead)) && (!this.hitTest(_root.char.fire.attackpoint))) && (!this.hitTest(_root.char.attack.attackpoint))) { _root.char.jumping = false; _root.health = _root.health - 5; } }
Instance of Symbol 150 MovieClip in Symbol 189 MovieClip Frame 33
onClipEvent (enterFrame) { if (((this.hitTest(_root.char) && (!dead)) && (!this.hitTest(_root.char.fire.attackpoint))) && (!this.hitTest(_root.char.attack.attackpoint))) { _root.char.jumping = false; _root.health = _root.health - 5; } }
Symbol 202 MovieClip Frame 1
_root.exp = _root.exp + 3;
Symbol 202 MovieClip Frame 2
_root.exp = _root.exp + 3;
Symbol 202 MovieClip Frame 3
_root.exp = _root.exp + 2;
Symbol 202 MovieClip Frame 4
_root.exp = _root.exp + 3;
Symbol 202 MovieClip Frame 5
_root.exp = _root.exp + 3;
Symbol 202 MovieClip Frame 15
stop();
Symbol 203 MovieClip Frame 1
stop();
Instance of Symbol 191 MovieClip in Symbol 203 MovieClip Frame 1
onClipEvent (load) { wid = _width; } onClipEvent (enterFrame) { _width = ((_root.bad / 100) * wid); }
Symbol 203 MovieClip Frame 2
stop();
Symbol 205 MovieClip Frame 1
stop();
Instance of Symbol 204 MovieClip in Symbol 205 MovieClip Frame 1
onClipEvent (load) { wid = _width; } onClipEvent (enterFrame) { _width = ((_root.badi / 100) * wid); }
Symbol 205 MovieClip Frame 2
stop();
Symbol 206 MovieClip Frame 1
stop();
Instance of Symbol 203 MovieClip in Symbol 206 MovieClip Frame 1
onClipEvent (load) { enemyspeed = 2; enemystepsright = 0; enemystepsleft = 0; enemydir = "left"; } onClipEvent (enterFrame) { if (this.hitTest(_root.char.attack.attackpoint)) { _root.bad = _root.bad - 5; } } onClipEvent (enterFrame) { if (_root.bad < 0) { dead = true; this.gotoAndStop("dead"); } } onClipEvent (enterFrame) { if (this.hitTest(_root.char.fire.attackpoint)) { _root.bad = _root.bad - 10; } } onClipEvent (enterFrame) { if (_root.bad < 0) { dead = true; this.gotoAndStop("dead"); } if (!dead) { if (enemydir == "right") { enemystepsright = enemystepsright + 2; this._xscale = -100; this._x = this._x + enemyspeed; } else if (enemydir == "left") { enemystepsleft = enemystepsleft + 2; this._xscale = 100; this._x = this._x - enemyspeed; } if (enemystepsright == 100) { enemystepsright = 0; enemydir = "left"; } else if (enemystepsleft == 100) { enemystepsleft = 0; enemydir = "right"; } } }
Instance of Symbol 205 MovieClip in Symbol 206 MovieClip Frame 1
onClipEvent (load) { enemyspeed = 2; enemystepsright = 0; enemystepsleft = 0; enemydir = "left"; } onClipEvent (enterFrame) { if (this.hitTest(_root.char.attack.attackpoint)) { _root.badi = _root.badi - 5; } } onClipEvent (enterFrame) { if (_root.badi < 0) { dead = true; this.gotoAndStop("dead"); } } onClipEvent (enterFrame) { if (this.hitTest(_root.char.fire.attackpoint)) { _root.badi = _root.badi - 10; } } onClipEvent (enterFrame) { if (_root.badi < 0) { dead = true; this.gotoAndStop("dead"); } if (!dead) { if (enemydir == "right") { enemystepsright = enemystepsright + 2; this._xscale = -100; this._x = this._x + enemyspeed; } else if (enemydir == "left") { enemystepsleft = enemystepsleft + 2; this._xscale = 100; this._x = this._x - enemyspeed; } if (enemystepsright == 100) { enemystepsright = 0; enemydir = "left"; } else if (enemystepsleft == 100) { enemystepsleft = 0; enemydir = "right"; } } }
Instance of Symbol 205 MovieClip in Symbol 206 MovieClip Frame 2
onClipEvent (load) { enemyspeed = 2; enemystepsright = 0; enemystepsleft = 0; enemydir = "left"; } onClipEvent (enterFrame) { if (this.hitTest(_root.char.attack.attackpoint)) { _root.badi = _root.badi - 5; } } onClipEvent (enterFrame) { if (_root.badi < 0) { dead = true; this.gotoAndStop("dead"); } } onClipEvent (enterFrame) { if (this.hitTest(_root.char.fire.attackpoint)) { _root.badi = _root.badi - 10; } } onClipEvent (enterFrame) { if (_root.badi < 0) { dead = true; this.gotoAndStop("dead"); } if (this.hitTest(_root.char) && (!dead)) { _root.char.jumping = false; _root.health = _root.health - 5; } if (!dead) { if (enemydir == "right") { enemystepsright = enemystepsright + 2; this._xscale = -100; this._x = this._x + enemyspeed; } else if (enemydir == "left") { enemystepsleft = enemystepsleft + 2; this._xscale = 100; this._x = this._x - enemyspeed; } if (enemystepsright == 100) { enemystepsright = 0; enemydir = "left"; } else if (enemystepsleft == 100) { enemystepsleft = 0; enemydir = "right"; } } }
Instance of Symbol 203 MovieClip in Symbol 206 MovieClip Frame 2
onClipEvent (load) { enemyspeed = 2; enemystepsright = 0; enemystepsleft = 0; enemydir = "left"; } onClipEvent (enterFrame) { if (this.hitTest(_root.char.attack.attackpoint)) { _root.bad = _root.bad - 20; } } onClipEvent (enterFrame) { if (this.hitTest(_root.char.spin.attackpoint)) { _root.bad = _root.bad - 15; } if (_root.bad < 0) { dead = true; this.gotoAndStop("dead"); } } onClipEvent (enterFrame) { if (this.hitTest(_root.char.fire.attackpoint)) { _root.bad = _root.bad - 10; } if (this.hitTest(_root.char) && (!dead)) { _root.char.jumping = false; _root.health = _root.health - 5; } if (!dead) { if (enemydir == "right") { enemystepsright = enemystepsright + 2; this._xscale = -100; this._x = this._x + enemyspeed; } else if (enemydir == "left") { enemystepsleft = enemystepsleft + 2; this._xscale = 100; this._x = this._x - enemyspeed; } if (enemystepsright == 100) { enemystepsright = 0; enemydir = "left"; } else if (enemystepsleft == 100) { enemystepsleft = 0; enemydir = "right"; } } }
Symbol 214 MovieClip Frame 1
stop();
Symbol 214 MovieClip Frame 2
stop();
Symbol 214 MovieClip Frame 3
stop();
Symbol 257 MovieClip Frame 2
Symbol 257 MovieClip Frame 4
Symbol 257 MovieClip Frame 5
Symbol 301 MovieClip Frame 2
if (_root.energy > 0) { _root.energy = _root.energy - 1; } if (_root.fakenergy > 0) { _root.fakenergy = _root.fakenergy - 1; } if (_root.energy < 20) { _root.energy1 = _root.energy1 - 1; } else if (_root.energy < 40) { _root.energy2 = _root.energy2 - 1; } else if (_root.energy < 60) { _root.energy3 = _root.energy3 - 1; } else if (_root.energy < 80) { _root.energy4 = _root.energy4 - 1; } else if (_root.energy < 100) { _root.energy5 = _root.energy5 - 1; }
Symbol 301 MovieClip Frame 3
if (_root.energy > 0) { _root.energy = _root.energy - 1; } if (_root.fakenergy > 0) { _root.fakenergy = _root.fakenergy - 1; } if (_root.energy < 20) { _root.energy1 = _root.energy1 - 1; } else if (_root.energy < 40) { _root.energy2 = _root.energy2 - 1; } else if (_root.energy < 60) { _root.energy3 = _root.energy3 - 1; } else if (_root.energy < 80) { _root.energy4 = _root.energy4 - 1; } else if (_root.energy < 100) { _root.energy5 = _root.energy5 - 1; }
Symbol 301 MovieClip Frame 4
if (_root.energy > 0) { _root.energy = _root.energy - 1; } if (_root.fakenergy > 0) { _root.fakenergy = _root.fakenergy - 1; } if (_root.energy < 20) { _root.energy1 = _root.energy1 - 1; } else if (_root.energy < 40) { _root.energy2 = _root.energy2 - 1; } else if (_root.energy < 60) { _root.energy3 = _root.energy3 - 1; } else if (_root.energy < 80) { _root.energy4 = _root.energy4 - 1; } else if (_root.energy < 100) { _root.energy5 = _root.energy5 - 1; }
Symbol 301 MovieClip Frame 5
if (_root.energy > 0) { _root.energy = _root.energy - 1; } if (_root.fakenergy > 0) { _root.fakenergy = _root.fakenergy - 1; } if (_root.energy < 20) { _root.energy1 = _root.energy1 - 1; } else if (_root.energy < 40) { _root.energy2 = _root.energy2 - 1; } else if (_root.energy < 60) { _root.energy3 = _root.energy3 - 1; } else if (_root.energy < 80) { _root.energy4 = _root.energy4 - 1; } else if (_root.energy < 100) { _root.energy5 = _root.energy5 - 1; }
Symbol 301 MovieClip Frame 6
if (_root.energy > 0) { _root.energy = _root.energy - 1; } if (_root.fakenergy > 0) { _root.fakenergy = _root.fakenergy - 1; } if (_root.energy < 20) { _root.energy1 = _root.energy1 - 1; } else if (_root.energy < 40) { _root.energy2 = _root.energy2 - 1; } else if (_root.energy < 60) { _root.energy3 = _root.energy3 - 1; } else if (_root.energy < 80) { _root.energy4 = _root.energy4 - 1; } else if (_root.energy < 100) { _root.energy5 = _root.energy5 - 1; }
Symbol 301 MovieClip Frame 7
if (_root.energy > 0) { _root.energy = _root.energy - 1; } if (_root.fakenergy > 0) { _root.fakenergy = _root.fakenergy - 1; } if (_root.energy < 20) { _root.energy1 = _root.energy1 - 1; } else if (_root.energy < 40) { _root.energy2 = _root.energy2 - 1; } else if (_root.energy < 60) { _root.energy3 = _root.energy3 - 1; } else if (_root.energy < 80) { _root.energy4 = _root.energy4 - 1; } else if (_root.energy < 100) { _root.energy5 = _root.energy5 - 1; }
Symbol 301 MovieClip Frame 8
if (_root.energy > 0) { _root.energy = _root.energy - 1; } if (_root.fakenergy > 0) { _root.fakenergy = _root.fakenergy - 1; } if (_root.energy < 20) { _root.energy1 = _root.energy1 - 1; } else if (_root.energy < 40) { _root.energy2 = _root.energy2 - 1; } else if (_root.energy < 60) { _root.energy3 = _root.energy3 - 1; } else if (_root.energy < 80) { _root.energy4 = _root.energy4 - 1; } else if (_root.energy < 100) { _root.energy5 = _root.energy5 - 1; }
Symbol 301 MovieClip Frame 9
if (_root.energy > 0) { _root.energy = _root.energy - 1; } if (_root.fakenergy > 0) { _root.fakenergy = _root.fakenergy - 1; } if (_root.energy < 20) { _root.energy1 = _root.energy1 - 1; } else if (_root.energy < 40) { _root.energy2 = _root.energy2 - 1; } else if (_root.energy < 60) { _root.energy3 = _root.energy3 - 1; } else if (_root.energy < 80) { _root.energy4 = _root.energy4 - 1; } else if (_root.energy < 100) { _root.energy5 = _root.energy5 - 1; }
Symbol 301 MovieClip Frame 10
if (_root.energy > 0) { _root.energy = _root.energy - 1; } if (_root.fakenergy > 0) { _root.fakenergy = _root.fakenergy - 1; } if (_root.energy < 20) { _root.energy1 = _root.energy1 - 1; } else if (_root.energy < 40) { _root.energy2 = _root.energy2 - 1; } else if (_root.energy < 60) { _root.energy3 = _root.energy3 - 1; } else if (_root.energy < 80) { _root.energy4 = _root.energy4 - 1; } else if (_root.energy < 100) { _root.energy5 = _root.energy5 - 1; }
Symbol 301 MovieClip Frame 11
if (_root.energy > 0) { _root.energy = _root.energy - 1; } if (_root.fakenergy > 0) { _root.fakenergy = _root.fakenergy - 1; } if (_root.energy < 20) { _root.energy1 = _root.energy1 - 1; } else if (_root.energy < 40) { _root.energy2 = _root.energy2 - 1; } else if (_root.energy < 60) { _root.energy3 = _root.energy3 - 1; } else if (_root.energy < 80) { _root.energy4 = _root.energy4 - 1; } else if (_root.energy < 100) { _root.energy5 = _root.energy5 - 1; }
Symbol 301 MovieClip Frame 16
stop();
Symbol 312 MovieClip Frame 5
stop(); _root.gotoAndPlay(2);
Symbol 323 MovieClip Frame 4
stop();
Symbol 338 MovieClip Frame 7
gotoAndPlay (2);
Symbol 349 MovieClip Frame 16
stop();
Symbol 365 MovieClip Frame 7
gotoAndPlay (2);
Symbol 394 MovieClip Frame 1
if (_root.energy < 100) { _root.energy = _root.energy + 1; } if (_root.fakenergy < 101) { _root.fakenergy = _root.fakenergy + 1; } if (_root.energy < 21) { _root.energy1 = _root.energy1 + 1; } else if (_root.energy < 41) { _root.energy2 = _root.energy2 + 1; } else if (_root.energy < 61) { _root.energy3 = _root.energy3 + 1; } else if (_root.energy < 81) { _root.energy4 = _root.energy4 + 1; } else if (_root.fakenergy < 101) { _root.energy5 = _root.energy5 + 1; }
Symbol 394 MovieClip Frame 2
if (_root.energy < 100) { _root.energy = _root.energy + 1; } if (_root.fakenergy < 101) { _root.fakenergy = _root.fakenergy + 1; } if (_root.energy < 21) { _root.energy1 = _root.energy1 + 1; } else if (_root.energy < 41) { _root.energy2 = _root.energy2 + 1; } else if (_root.energy < 61) { _root.energy3 = _root.energy3 + 1; } else if (_root.energy < 81) { _root.energy4 = _root.energy4 + 1; } else if (_root.fakenergy < 101) { _root.energy5 = _root.energy5 + 1; }
Symbol 394 MovieClip Frame 3
if (_root.energy < 100) { _root.energy = _root.energy + 1; } if (_root.fakenergy < 101) { _root.fakenergy = _root.fakenergy + 1; } if (_root.energy < 21) { _root.energy1 = _root.energy1 + 1; } else if (_root.energy < 41) { _root.energy2 = _root.energy2 + 1; } else if (_root.energy < 61) { _root.energy3 = _root.energy3 + 1; } else if (_root.energy < 81) { _root.energy4 = _root.energy4 + 1; } else if (_root.fakenergy < 101) { _root.energy5 = _root.energy5 + 1; }
Symbol 394 MovieClip Frame 4
if (_root.energy < 100) { _root.energy = _root.energy + 1; } if (_root.fakenergy < 101) { _root.fakenergy = _root.fakenergy + 1; } if (_root.energy < 21) { _root.energy1 = _root.energy1 + 1; } else if (_root.energy < 41) { _root.energy2 = _root.energy2 + 1; } else if (_root.energy < 61) { _root.energy3 = _root.energy3 + 1; } else if (_root.energy < 81) { _root.energy4 = _root.energy4 + 1; } else if (_root.fakenergy < 101) { _root.energy5 = _root.energy5 + 1; }
Symbol 394 MovieClip Frame 5
if (_root.energy < 100) { _root.energy = _root.energy + 1; } if (_root.fakenergy < 101) { _root.fakenergy = _root.fakenergy + 1; } if (_root.energy < 21) { _root.energy1 = _root.energy1 + 1; } else if (_root.energy < 41) { _root.energy2 = _root.energy2 + 1; } else if (_root.energy < 61) { _root.energy3 = _root.energy3 + 1; } else if (_root.energy < 81) { _root.energy4 = _root.energy4 + 1; } else if (_root.fakenergy < 101) { _root.energy5 = _root.energy5 + 1; }
Symbol 394 MovieClip Frame 6
if (_root.energy < 100) { _root.energy = _root.energy + 1; } if (_root.fakenergy < 101) { _root.fakenergy = _root.fakenergy + 1; } if (_root.energy < 21) { _root.energy1 = _root.energy1 + 1; } else if (_root.energy < 41) { _root.energy2 = _root.energy2 + 1; } else if (_root.energy < 61) { _root.energy3 = _root.energy3 + 1; } else if (_root.energy < 81) { _root.energy4 = _root.energy4 + 1; } else if (_root.fakenergy < 101) { _root.energy5 = _root.energy5 + 1; }
Symbol 394 MovieClip Frame 7
if (_root.energy < 100) { _root.energy = _root.energy + 1; } if (_root.fakenergy < 101) { _root.fakenergy = _root.fakenergy + 1; } if (_root.energy < 21) { _root.energy1 = _root.energy1 + 1; } else if (_root.energy < 41) { _root.energy2 = _root.energy2 + 1; } else if (_root.energy < 61) { _root.energy3 = _root.energy3 + 1; } else if (_root.energy < 81) { _root.energy4 = _root.energy4 + 1; } else if (_root.fakenergy < 101) { _root.energy5 = _root.energy5 + 1; }
Symbol 394 MovieClip Frame 8
if (_root.energy < 100) { _root.energy = _root.energy + 1; } if (_root.fakenergy < 101) { _root.fakenergy = _root.fakenergy + 1; } if (_root.energy < 21) { _root.energy1 = _root.energy1 + 1; } else if (_root.energy < 41) { _root.energy2 = _root.energy2 + 1; } else if (_root.energy < 61) { _root.energy3 = _root.energy3 + 1; } else if (_root.energy < 81) { _root.energy4 = _root.energy4 + 1; } else if (_root.fakenergy < 101) { _root.energy5 = _root.energy5 + 1; }
Symbol 394 MovieClip Frame 9
if (_root.energy < 100) { _root.energy = _root.energy + 1; } if (_root.fakenergy < 101) { _root.fakenergy = _root.fakenergy + 1; } if (_root.energy < 21) { _root.energy1 = _root.energy1 + 1; } else if (_root.energy < 41) { _root.energy2 = _root.energy2 + 1; } else if (_root.energy < 61) { _root.energy3 = _root.energy3 + 1; } else if (_root.energy < 81) { _root.energy4 = _root.energy4 + 1; } else if (_root.fakenergy < 101) { _root.energy5 = _root.energy5 + 1; }
Symbol 394 MovieClip Frame 10
if (_root.energy < 100) { _root.energy = _root.energy + 1; } if (_root.fakenergy < 101) { _root.fakenergy = _root.fakenergy + 1; } if (_root.energy < 21) { _root.energy1 = _root.energy1 + 1; } else if (_root.energy < 41) { _root.energy2 = _root.energy2 + 1; } else if (_root.energy < 61) { _root.energy3 = _root.energy3 + 1; } else if (_root.energy < 81) { _root.energy4 = _root.energy4 + 1; } else if (_root.fakenergy < 101) { _root.energy5 = _root.energy5 + 1; }
Symbol 394 MovieClip Frame 11
if (_root.energy < 100) { _root.energy = _root.energy + 1; } if (_root.fakenergy < 101) { _root.fakenergy = _root.fakenergy + 1; } if (_root.energy < 21) { _root.energy1 = _root.energy1 + 1; } else if (_root.energy < 41) { _root.energy2 = _root.energy2 + 1; } else if (_root.energy < 61) { _root.energy3 = _root.energy3 + 1; } else if (_root.energy < 81) { _root.energy4 = _root.energy4 + 1; } else if (_root.fakenergy < 101) { _root.energy5 = _root.energy5 + 1; }
Symbol 394 MovieClip Frame 12
if (_root.energy < 100) { _root.energy = _root.energy + 1; } if (_root.fakenergy < 101) { _root.fakenergy = _root.fakenergy + 1; } if (_root.energy < 21) { _root.energy1 = _root.energy1 + 1; } else if (_root.energy < 41) { _root.energy2 = _root.energy2 + 1; } else if (_root.energy < 61) { _root.energy3 = _root.energy3 + 1; } else if (_root.energy < 81) { _root.energy4 = _root.energy4 + 1; } else if (_root.fakenergy < 101) { _root.energy5 = _root.energy5 + 1; }
Symbol 394 MovieClip Frame 13
if (_root.energy < 100) { _root.energy = _root.energy + 1; } if (_root.fakenergy < 101) { _root.fakenergy = _root.fakenergy + 1; } if (_root.energy < 21) { _root.energy1 = _root.energy1 + 1; } else if (_root.energy < 41) { _root.energy2 = _root.energy2 + 1; } else if (_root.energy < 61) { _root.energy3 = _root.energy3 + 1; } else if (_root.energy < 81) { _root.energy4 = _root.energy4 + 1; } else if (_root.fakenergy < 101) { _root.energy5 = _root.energy5 + 1; }
Symbol 394 MovieClip Frame 14
if (_root.energy < 100) { _root.energy = _root.energy + 1; } if (_root.fakenergy < 101) { _root.fakenergy = _root.fakenergy + 1; } if (_root.energy < 21) { _root.energy1 = _root.energy1 + 1; } else if (_root.energy < 41) { _root.energy2 = _root.energy2 + 1; } else if (_root.energy < 61) { _root.energy3 = _root.energy3 + 1; } else if (_root.energy < 81) { _root.energy4 = _root.energy4 + 1; } else if (_root.fakenergy < 101) { _root.energy5 = _root.energy5 + 1; }
Symbol 394 MovieClip Frame 15
if (_root.energy < 100) { _root.energy = _root.energy + 1; } if (_root.fakenergy < 101) { _root.fakenergy = _root.fakenergy + 1; } if (_root.energy < 21) { _root.energy1 = _root.energy1 + 1; } else if (_root.energy < 41) { _root.energy2 = _root.energy2 + 1; } else if (_root.energy < 61) { _root.energy3 = _root.energy3 + 1; } else if (_root.energy < 81) { _root.energy4 = _root.energy4 + 1; } else if (_root.fakenergy < 101) { _root.energy5 = _root.energy5 + 1; }
Symbol 394 MovieClip Frame 16
if (_root.energy < 100) { _root.energy = _root.energy + 1; } if (_root.fakenergy < 101) { _root.fakenergy = _root.fakenergy + 1; } if (_root.energy < 21) { _root.energy1 = _root.energy1 + 1; } else if (_root.energy < 41) { _root.energy2 = _root.energy2 + 1; } else if (_root.energy < 61) { _root.energy3 = _root.energy3 + 1; } else if (_root.energy < 81) { _root.energy4 = _root.energy4 + 1; } else if (_root.fakenergy < 101) { _root.energy5 = _root.energy5 + 1; }
Symbol 394 MovieClip Frame 17
if (_root.energy < 100) { _root.energy = _root.energy + 1; } if (_root.fakenergy < 101) { _root.fakenergy = _root.fakenergy + 1; } if (_root.energy < 21) { _root.energy1 = _root.energy1 + 1; } else if (_root.energy < 41) { _root.energy2 = _root.energy2 + 1; } else if (_root.energy < 61) { _root.energy3 = _root.energy3 + 1; } else if (_root.energy < 81) { _root.energy4 = _root.energy4 + 1; } else if (_root.fakenergy < 101) { _root.energy5 = _root.energy5 + 1; }
Symbol 394 MovieClip Frame 18
if (_root.energy < 100) { _root.energy = _root.energy + 1; } if (_root.fakenergy < 101) { _root.fakenergy = _root.fakenergy + 1; } if (_root.energy < 21) { _root.energy1 = _root.energy1 + 1; } else if (_root.energy < 41) { _root.energy2 = _root.energy2 + 1; } else if (_root.energy < 61) { _root.energy3 = _root.energy3 + 1; } else if (_root.energy < 81) { _root.energy4 = _root.energy4 + 1; } else if (_root.fakenergy < 101) { _root.energy5 = _root.energy5 + 1; }
Symbol 394 MovieClip Frame 19
if (_root.energy < 100) { _root.energy = _root.energy + 1; } if (_root.fakenergy < 101) { _root.fakenergy = _root.fakenergy + 1; } if (_root.energy < 21) { _root.energy1 = _root.energy1 + 1; } else if (_root.energy < 41) { _root.energy2 = _root.energy2 + 1; } else if (_root.energy < 61) { _root.energy3 = _root.energy3 + 1; } else if (_root.energy < 81) { _root.energy4 = _root.energy4 + 1; } else if (_root.fakenergy < 101) { _root.energy5 = _root.energy5 + 1; }
Symbol 394 MovieClip Frame 20
if (_root.energy < 100) { _root.energy = _root.energy + 1; } if (_root.fakenergy < 101) { _root.fakenergy = _root.fakenergy + 1; } if (_root.energy < 21) { _root.energy1 = _root.energy1 + 1; } else if (_root.energy < 41) { _root.energy2 = _root.energy2 + 1; } else if (_root.energy < 61) { _root.energy3 = _root.energy3 + 1; } else if (_root.energy < 81) { _root.energy4 = _root.energy4 + 1; } else if (_root.fakenergy < 101) { _root.energy5 = _root.energy5 + 1; }
Symbol 399 MovieClip Frame 14
_parent.gotoAndStop("idle");
Symbol 414 MovieClip Frame 12
_parent.gotoAndStop("idle");
Symbol 426 MovieClip Frame 13
_parent.gotoAndStop("idle");
Symbol 447 MovieClip Frame 11
_parent.gotoAndStop("idle");
Symbol 448 MovieClip Frame 1
stop();
Symbol 448 MovieClip Frame 2
stop();
Symbol 448 MovieClip Frame 3
stop();
Symbol 448 MovieClip Frame 4
stop();
Symbol 448 MovieClip Frame 5
stop();
Symbol 448 MovieClip Frame 6
stop();
Symbol 448 MovieClip Frame 7
stop();
Symbol 448 MovieClip Frame 8
stop();
Symbol 448 MovieClip Frame 9
stop();
Symbol 448 MovieClip Frame 10
stop();
Symbol 448 MovieClip Frame 11
stop();
Symbol 448 MovieClip Frame 12
stop();
Symbol 448 MovieClip Frame 13
stop();
Symbol 448 MovieClip Frame 14
stop();
Symbol 448 MovieClip Frame 15
stop();
Symbol 448 MovieClip Frame 16
stop();
Symbol 448 MovieClip Frame 17
stop();
Symbol 473 MovieClip Frame 1
stop();
Symbol 473 MovieClip Frame 2
stop();
Symbol 473 MovieClip Frame 3
stop();
Symbol 473 MovieClip Frame 4
stop();
Symbol 473 MovieClip Frame 5
stop();
Symbol 473 MovieClip Frame 6
stop();
Symbol 473 MovieClip Frame 7
stop();
Symbol 485 MovieClip Frame 1
stop();
Symbol 485 MovieClip Frame 2
stop();
Symbol 488 MovieClip Frame 1
stop();
Symbol 488 MovieClip Frame 2
stop();
Symbol 495 MovieClip Frame 1
stop();
Symbol 495 MovieClip Frame 2
stop();
Symbol 495 MovieClip Frame 3
stop();
Symbol 495 MovieClip Frame 4
stop();
Symbol 495 MovieClip Frame 5
stop();
Instance of Symbol 497 MovieClip in Symbol 498 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.sign.gotoAndStop(3); } else if (!_root.signs.hitTest(_root.char._x, _root.char._y, true)) { _root.sign.gotoAndStop(1); } }
Instance of Symbol 497 MovieClip in Symbol 498 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.sign.gotoAndStop(4); } else if (!_root.signs.hitTest(_root.char._x, _root.char._y, true)) { _root.sign.gotoAndStop(1); } }
Instance of Symbol 497 MovieClip in Symbol 498 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char._x, _root.char._y, true)) { _root.sign.gotoAndStop(2); } else if (!_root.signs.hitTest(_root.char._x, _root.char._y, true)) { _root.sign.gotoAndStop(1); } }
Instance of Symbol 497 MovieClip in Symbol 498 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.sign.gotoAndStop(5); } else if (!_root.signs.hitTest(_root.char._x, _root.char._y, true)) { _root.sign.gotoAndStop(1); } }
Symbol 527 MovieClip Frame 1
stop();
Symbol 527 MovieClip Frame 2
startTime = getTimer(); onEnterFrame = function () { elapsedTime = getTimer() - startTime; elapsedHours = Math.floor(elapsedTime / 3600000); remaining = elapsedTime - (elapsedHours * 3600000); elapsedM = Math.floor(remaining / 60000); remaining = remaining - (elapsedM * 60000); elapsedS = Math.floor(remaining / 1000); remaining = remaining - (elapsedS * 1000); elapsedH = Math.floor(remaining / 10); if (elapsedHours < 10) { hours = "0" + elapsedHours.toString(); } else { hours = elapsedHours.toString(); } if (elapsedM < 10) { minutes = "0" + elapsedM.toString(); } else { minutes = elapsedM.toString(); } if (elapsedS < 10) { seconds = "0" + elapsedS.toString(); } else { seconds = elapsedS.toString(); } if (elapsedH < 10) { hundredths = "0" + elapsedH.toString(); } else { hundredths = elapsedH.toString(); } _root.heath.time.timer_txt = (((((hours + ":") + minutes) + ":") + seconds) + ":") + hundredths; };
Instance of Symbol 510 MovieClip in Symbol 528 MovieClip Frame 1
onClipEvent (load) { wid = _width; } onClipEvent (enterFrame) { _width = ((_root.exp / (100 * _root.level)) * wid); }
Instance of Symbol 512 MovieClip in Symbol 528 MovieClip Frame 1
onClipEvent (load) { wid = _width; } onClipEvent (enterFrame) { _width = ((_root.health / 200) * wid); }
Instance of Symbol 518 MovieClip in Symbol 528 MovieClip Frame 1
onClipEvent (load) { hi = _height; } onClipEvent (enterFrame) { _height = ((_root.energy1 / 20) * hi); }
Instance of Symbol 518 MovieClip in Symbol 528 MovieClip Frame 1
onClipEvent (load) { hi = _height; } onClipEvent (enterFrame) { _height = ((_root.energy2 / 20) * hi); }
Instance of Symbol 518 MovieClip in Symbol 528 MovieClip Frame 1
onClipEvent (load) { hi = _height; } onClipEvent (enterFrame) { _height = ((_root.energy3 / 20) * hi); }
Instance of Symbol 518 MovieClip in Symbol 528 MovieClip Frame 1
onClipEvent (load) { hi = _height; } onClipEvent (enterFrame) { _height = ((_root.energy4 / 20) * hi); }
Instance of Symbol 518 MovieClip in Symbol 528 MovieClip Frame 1
onClipEvent (load) { hi = _height; } onClipEvent (enterFrame) { _height = ((_root.energy5 / 20) * hi); }
Symbol 529 Button
on (keyPress "<Enter>") { _root.pause.gotoAndStop(2); }
Symbol 538 Button
on (release) { gotoAndStop (3); }
Symbol 540 Button
on (release) { gotoAndStop (2); }
Symbol 542 Button
on (release) { gotoAndStop (4); }
Symbol 550 Button
on (release) { gotoAndStop (1); }
Instance of Symbol 512 MovieClip in Symbol 586 MovieClip Frame 1
onClipEvent (load) { wid = _width; } onClipEvent (enterFrame) { _width = ((_root.health / 200) * wid); }
Instance of Symbol 574 MovieClip in Symbol 586 MovieClip Frame 1
onClipEvent (load) { wid = _width; } onClipEvent (enterFrame) { _width = ((_root.energy / 100) * wid); }
Instance of Symbol 576 MovieClip in Symbol 586 MovieClip Frame 1
onClipEvent (load) { wid = _width; } onClipEvent (enterFrame) { _width = ((_root.exp / 100) * wid); }
Symbol 588 Button
on (release) { gotoAndStop (2); }
Symbol 595 Button
on (release) { _root.pause.gotoAndStop(4); }
Symbol 600 Button
on (release) { _root.pause.gotoAndStop(5); }
Symbol 606 Button
on (release) { _root.pause.gotoAndStop(4); }
Symbol 608 MovieClip Frame 1
stop();
Symbol 608 MovieClip Frame 2
stop();
Symbol 608 MovieClip Frame 3
stop();
Symbol 608 MovieClip Frame 4
stop();
Symbol 608 MovieClip Frame 5
stop();
Symbol 610 MovieClip Frame 1
stop();
Instance of Symbol 204 MovieClip in Symbol 610 MovieClip Frame 1
onClipEvent (load) { wid = _width; } onClipEvent (enterFrame) { _width = ((_parent.health / 100) * wid); }
Symbol 610 MovieClip Frame 2
stop();
Symbol 610 MovieClip Frame 3
stop(); if (_parent.health < 1) { this.gotoAndStop("dead"); }
Symbol 623 Button
on (release) { _root.gotoAndPlay(1); }
Instance of Symbol 512 MovieClip in Symbol 633 MovieClip Frame 1
onClipEvent (load) { wid = _width; } onClipEvent (enterFrame) { _width = ((_root.health / 200) * wid); }
Instance of Symbol 204 MovieClip in Symbol 639 MovieClip Frame 1
onClipEvent (load) { wid = _width; } onClipEvent (enterFrame) { _width = ((_root.bad / 200) * wid); }

Library Items

Symbol 1 BitmapUsed by:2
Symbol 2 GraphicUses:1Used by:3
Symbol 3 MovieClip [bullet]Uses:2
Symbol 4 BitmapUsed by:5
Symbol 5 GraphicUses:4Used by:Timeline
Symbol 6 BitmapUsed by:18 30
Symbol 7 BitmapUsed by:18 30
Symbol 8 BitmapUsed by:18 30
Symbol 9 BitmapUsed by:18 30
Symbol 10 BitmapUsed by:18 30
Symbol 11 BitmapUsed by:18 30
Symbol 12 BitmapUsed by:18 30
Symbol 13 BitmapUsed by:18 30
Symbol 14 BitmapUsed by:18 30
Symbol 15 BitmapUsed by:18 30
Symbol 16 BitmapUsed by:18 30
Symbol 17 BitmapUsed by:18 30
Symbol 18 GraphicUses:6 7 8 9 10 11 12 13 14 15 16 17Used by:19
Symbol 19 MovieClipUses:18Used by:44
Symbol 20 BitmapUsed by:28
Symbol 21 BitmapUsed by:28
Symbol 22 BitmapUsed by:28
Symbol 23 BitmapUsed by:28
Symbol 24 BitmapUsed by:28
Symbol 25 BitmapUsed by:28
Symbol 26 BitmapUsed by:28
Symbol 27 BitmapUsed by:28
Symbol 28 GraphicUses:20 21 22 23 24 25 26 27Used by:29
Symbol 29 MovieClipUses:28Used by:44 628
Symbol 30 GraphicUses:6 7 8 9 10 11 12 13 14 15 16 17Used by:31
Symbol 31 MovieClipUses:30Used by:44 628
Symbol 32 BitmapUsed by:39
Symbol 33 BitmapUsed by:39
Symbol 34 BitmapUsed by:39
Symbol 35 BitmapUsed by:39
Symbol 36 BitmapUsed by:39
Symbol 37 BitmapUsed by:39
Symbol 38 BitmapUsed by:39
Symbol 39 GraphicUses:32 33 34 35 36 37 38Used by:44
Symbol 40 BitmapUsed by:41 460
Symbol 41 GraphicUses:40Used by:42
Symbol 42 MovieClipUses:41Used by:43
Symbol 43 MovieClipUses:42Used by:44
Symbol 44 MovieClipUses:19 29 31 39 43Used by:Timeline
Symbol 45 GraphicUsed by:46 203 205 608 610
Symbol 46 MovieClipUses:45Used by:58  Timeline
Symbol 47 BitmapUsed by:48 522 634
Symbol 48 GraphicUses:47Used by:50
Symbol 49 SoundUsed by:50
Symbol 50 MovieClipUses:48 49Used by:52
Symbol 51 SoundUsed by:52
Symbol 52 MovieClipUses:50 51Used by:58  Timeline
Symbol 53 GraphicUsed by:54
Symbol 54 MovieClipUses:53Used by:Timeline
Symbol 55 BitmapUsed by:56
Symbol 56 GraphicUses:55Used by:57
Symbol 57 MovieClipUses:56Used by:58
Symbol 58 MovieClipUses:52 57 46Used by:206
Symbol 59 BitmapUsed by:60
Symbol 60 GraphicUses:59Used by:71
Symbol 61 BitmapUsed by:62
Symbol 62 GraphicUses:61Used by:71
Symbol 63 BitmapUsed by:64
Symbol 64 GraphicUses:63Used by:71
Symbol 65 BitmapUsed by:66
Symbol 66 GraphicUses:65Used by:71
Symbol 67 BitmapUsed by:68
Symbol 68 GraphicUses:67Used by:71
Symbol 69 BitmapUsed by:70
Symbol 70 GraphicUses:69Used by:71
Symbol 71 MovieClipUses:60 62 64 66 68 70Used by:81
Symbol 72 BitmapUsed by:73
Symbol 73 GraphicUses:72Used by:76 79
Symbol 74 BitmapUsed by:75
Symbol 75 GraphicUses:74Used by:76
Symbol 76 MovieClipUses:73 75Used by:81
Symbol 77 BitmapUsed by:78
Symbol 78 GraphicUses:77Used by:79
Symbol 79 MovieClipUses:78 73Used by:81
Symbol 80 SoundUsed by:81
Symbol 81 MovieClipUses:71 76 79 80Used by:146
Symbol 82 BitmapUsed by:83
Symbol 83 GraphicUses:82Used by:94
Symbol 84 BitmapUsed by:85
Symbol 85 GraphicUses:84Used by:94
Symbol 86 BitmapUsed by:87
Symbol 87 GraphicUses:86Used by:94
Symbol 88 BitmapUsed by:89
Symbol 89 GraphicUses:88Used by:94
Symbol 90 BitmapUsed by:91
Symbol 91 GraphicUses:90Used by:94
Symbol 92 BitmapUsed by:93
Symbol 93 GraphicUses:92Used by:94
Symbol 94 MovieClipUses:83 85 87 89 91 93Used by:109
Symbol 95 BitmapUsed by:96
Symbol 96 GraphicUses:95Used by:107
Symbol 97 BitmapUsed by:98
Symbol 98 GraphicUses:97Used by:107
Symbol 99 BitmapUsed by:100
Symbol 100 GraphicUses:99Used by:107
Symbol 101 BitmapUsed by:102
Symbol 102 GraphicUses:101Used by:107
Symbol 103 BitmapUsed by:104
Symbol 104 GraphicUses:103Used by:107
Symbol 105 BitmapUsed by:106
Symbol 106 GraphicUses:105Used by:107
Symbol 107 MovieClipUses:96 98 100 102 104 106Used by:109
Symbol 108 SoundUsed by:109
Symbol 109 MovieClipUses:94 107 108Used by:146
Symbol 110 BitmapUsed by:111
Symbol 111 GraphicUses:110Used by:128
Symbol 112 BitmapUsed by:113
Symbol 113 GraphicUses:112Used by:128
Symbol 114 BitmapUsed by:115
Symbol 115 GraphicUses:114Used by:128
Symbol 116 BitmapUsed by:117
Symbol 117 GraphicUses:116Used by:128
Symbol 118 BitmapUsed by:119
Symbol 119 GraphicUses:118Used by:128
Symbol 120 BitmapUsed by:121
Symbol 121 GraphicUses:120Used by:128
Symbol 122 BitmapUsed by:123
Symbol 123 GraphicUses:122Used by:128
Symbol 124 BitmapUsed by:125
Symbol 125 GraphicUses:124Used by:128
Symbol 126 BitmapUsed by:127
Symbol 127 GraphicUses:126Used by:128
Symbol 128 MovieClipUses:111 113 115 117 119 121 123 125 127Used by:145
Symbol 129 BitmapUsed by:130
Symbol 130 GraphicUses:129Used by:143
Symbol 131 BitmapUsed by:132
Symbol 132 GraphicUses:131Used by:143
Symbol 133 BitmapUsed by:134
Symbol 134 GraphicUses:133Used by:143
Symbol 135 BitmapUsed by:136
Symbol 136 GraphicUses:135Used by:143
Symbol 137 BitmapUsed by:138
Symbol 138 GraphicUses:137Used by:143
Symbol 139 BitmapUsed by:140
Symbol 140 GraphicUses:139Used by:143
Symbol 141 BitmapUsed by:142
Symbol 142 GraphicUses:141Used by:143
Symbol 143 MovieClipUses:130 132 134 136 138 140 142Used by:145
Symbol 144 SoundUsed by:145
Symbol 145 MovieClipUses:128 143 144Used by:146
Symbol 146 MovieClipUses:81 109 145Used by:206
Symbol 147 BitmapUsed by:148
Symbol 148 GraphicUses:147Used by:189
Symbol 149 GraphicUsed by:150
Symbol 150 MovieClipUses:149Used by:189
Symbol 151 BitmapUsed by:152
Symbol 152 GraphicUses:151Used by:189
Symbol 153 BitmapUsed by:154
Symbol 154 GraphicUses:153Used by:189
Symbol 155 BitmapUsed by:156
Symbol 156 GraphicUses:155Used by:189
Symbol 157 BitmapUsed by:158
Symbol 158 GraphicUses:157Used by:189
Symbol 159 BitmapUsed by:160
Symbol 160 GraphicUses:159Used by:189
Symbol 161 BitmapUsed by:162
Symbol 162 GraphicUses:161Used by:189
Symbol 163 BitmapUsed by:164
Symbol 164 GraphicUses:163Used by:189
Symbol 165 BitmapUsed by:166
Symbol 166 GraphicUses:165Used by:189
Symbol 167 BitmapUsed by:168
Symbol 168 GraphicUses:167Used by:189
Symbol 169 BitmapUsed by:170
Symbol 170 GraphicUses:169Used by:189
Symbol 171 BitmapUsed by:172
Symbol 172 GraphicUses:171Used by:189
Symbol 173 BitmapUsed by:174
Symbol 174 GraphicUses:173Used by:189
Symbol 175 BitmapUsed by:176
Symbol 176 GraphicUses:175Used by:189
Symbol 177 BitmapUsed by:178
Symbol 178 GraphicUses:177Used by:189
Symbol 179 BitmapUsed by:180
Symbol 180 GraphicUses:179Used by:189
Symbol 181 BitmapUsed by:182
Symbol 182 GraphicUses:181Used by:189
Symbol 183 BitmapUsed by:184
Symbol 184 GraphicUses:183Used by:189
Symbol 185 BitmapUsed by:186
Symbol 186 GraphicUses:185Used by:189
Symbol 187 BitmapUsed by:188
Symbol 188 GraphicUses:187Used by:189
Symbol 189 MovieClipUses:148 150 152 154 156 158 160 162 164 166 168 170 172 174 176 178 180 182 184 186 188Used by:203 205 610
Symbol 190 GraphicUsed by:191 204
Symbol 191 MovieClipUses:190Used by:203
Symbol 192 BitmapUsed by:193
Symbol 193 GraphicUses:192Used by:202 609
Symbol 194 BitmapUsed by:195
Symbol 195 GraphicUses:194Used by:202
Symbol 196 BitmapUsed by:197
Symbol 197 GraphicUses:196Used by:202
Symbol 198 BitmapUsed by:199
Symbol 199 GraphicUses:198Used by:202
Symbol 200 BitmapUsed by:201
Symbol 201 GraphicUses:200Used by:202
Symbol 202 MovieClipUses:193 195 197 199 201Used by:203 205 610
Symbol 203 MovieClipUses:45 189 191 202Used by:206
Symbol 204 MovieClipUses:190Used by:205 610 639
Symbol 205 MovieClipUses:45 189 204 202Used by:206
Symbol 206 MovieClipUses:58 146 203 205Used by:Timeline
Symbol 207 MovieClipUsed by:Timeline
Symbol 208 GraphicUsed by:214 473 481
Symbol 209 FontUsed by:210 211 212 213 484 491 492 493 494 591 594 597 603 605
Symbol 210 TextUses:209Used by:214
Symbol 211 TextUses:209Used by:214
Symbol 212 TextUses:209Used by:214
Symbol 213 TextUses:209Used by:214
Symbol 214 MovieClipUses:208 210 211 212 213Used by:Timeline
Symbol 215 BitmapUsed by:216
Symbol 216 GraphicUses:215Used by:227
Symbol 217 BitmapUsed by:218
Symbol 218 GraphicUses:217Used by:227
Symbol 219 BitmapUsed by:220
Symbol 220 GraphicUses:219Used by:227
Symbol 221 BitmapUsed by:222
Symbol 222 GraphicUses:221Used by:227
Symbol 223 BitmapUsed by:224
Symbol 224 GraphicUses:223Used by:227
Symbol 225 BitmapUsed by:226
Symbol 226 GraphicUses:225Used by:227
Symbol 227 MovieClipUses:216 218 220 222 224 226Used by:448
Symbol 228 BitmapUsed by:229
Symbol 229 GraphicUses:228Used by:244
Symbol 230 BitmapUsed by:231
Symbol 231 GraphicUses:230Used by:244
Symbol 232 BitmapUsed by:233
Symbol 233 GraphicUses:232Used by:244
Symbol 234 BitmapUsed by:235
Symbol 235 GraphicUses:234Used by:244 448
Symbol 236 BitmapUsed by:237
Symbol 237 GraphicUses:236Used by:244
Symbol 238 BitmapUsed by:239
Symbol 239 GraphicUses:238Used by:244
Symbol 240 BitmapUsed by:241
Symbol 241 GraphicUses:240Used by:244
Symbol 242 BitmapUsed by:243
Symbol 243 GraphicUses:242Used by:244
Symbol 244 MovieClipUses:229 231 233 235 237 239 241 243Used by:448
Symbol 245 BitmapUsed by:246
Symbol 246 GraphicUses:245Used by:257
Symbol 247 BitmapUsed by:248
Symbol 248 GraphicUses:247Used by:257
Symbol 249 BitmapUsed by:250
Symbol 250 GraphicUses:249Used by:257
Symbol 251 BitmapUsed by:252
Symbol 252 GraphicUses:251Used by:257
Symbol 253 BitmapUsed by:254
Symbol 254 GraphicUses:253Used by:257
Symbol 255 BitmapUsed by:256
Symbol 256 GraphicUses:255Used by:257
Symbol 257 MovieClipUses:246 248 250 252 254 256Used by:448
Symbol 258 BitmapUsed by:259
Symbol 259 GraphicUses:258Used by:272 426
Symbol 260 BitmapUsed by:261
Symbol 261 GraphicUses:260Used by:272 426
Symbol 262 BitmapUsed by:263
Symbol 263 GraphicUses:262Used by:272 426
Symbol 264 BitmapUsed by:265
Symbol 265 GraphicUses:264Used by:272 426
Symbol 266 BitmapUsed by:267 417
Symbol 267 GraphicUses:266Used by:272
Symbol 268 GraphicUsed by:269
Symbol 269 MovieClipUses:268Used by:272
Symbol 270 BitmapUsed by:271
Symbol 271 GraphicUses:270Used by:272 426
Symbol 272 MovieClipUses:259 261 263 265 267 269 271Used by:448
Symbol 273 BitmapUsed by:274
Symbol 274 GraphicUses:273Used by:301 349
Symbol 275 BitmapUsed by:277
Symbol 276 BitmapUsed by:277 339
Symbol 277 GraphicUses:275 276Used by:301
Symbol 278 BitmapUsed by:280
Symbol 279 BitmapUsed by:280 340
Symbol 280 GraphicUses:278 279Used by:301
Symbol 281 BitmapUsed by:283
Symbol 282 BitmapUsed by:283 341
Symbol 283 GraphicUses:281 282Used by:301
Symbol 284 BitmapUsed by:286
Symbol 285 BitmapUsed by:286 342
Symbol 286 GraphicUses:284 285Used by:301
Symbol 287 BitmapUsed by:288
Symbol 288 GraphicUses:287Used by:301
Symbol 289 BitmapUsed by:290 467
Symbol 290 GraphicUses:289Used by:291 300
Symbol 291 MovieClipUses:290Used by:301 349
Symbol 292 BitmapUsed by:293
Symbol 293 GraphicUses:292Used by:301
Symbol 294 BitmapUsed by:295
Symbol 295 GraphicUses:294Used by:301
Symbol 296 BitmapUsed by:297
Symbol 297 GraphicUses:296Used by:301
Symbol 298 BitmapUsed by:299
Symbol 299 GraphicUses:298Used by:301 349
Symbol 300 MovieClipUses:290Used by:301 349
Symbol 301 MovieClipUses:274 277 280 283 286 288 291 293 295 297 299 300Used by:448
Symbol 302 BitmapUsed by:303
Symbol 303 GraphicUses:302Used by:312
Symbol 304 BitmapUsed by:305
Symbol 305 GraphicUses:304Used by:312
Symbol 306 BitmapUsed by:307
Symbol 307 GraphicUses:306Used by:312
Symbol 308 BitmapUsed by:309
Symbol 309 GraphicUses:308Used by:312
Symbol 310 BitmapUsed by:311
Symbol 311 GraphicUses:310Used by:312
Symbol 312 MovieClipUses:303 305 307 309 311Used by:448
Symbol 313 BitmapUsed by:314
Symbol 314 GraphicUses:313Used by:323 414
Symbol 315 BitmapUsed by:316
Symbol 316 GraphicUses:315Used by:323 399
Symbol 317 BitmapUsed by:318
Symbol 318 GraphicUses:317Used by:323 399
Symbol 319 BitmapUsed by:320
Symbol 320 GraphicUses:319Used by:323 399
Symbol 321 GraphicUsed by:322
Symbol 322 MovieClipUses:321Used by:323
Symbol 323 MovieClipUses:314 316 318 320 322Used by:448
Symbol 324 BitmapUsed by:325
Symbol 325 GraphicUses:324Used by:338
Symbol 326 BitmapUsed by:327
Symbol 327 GraphicUses:326Used by:338
Symbol 328 BitmapUsed by:329
Symbol 329 GraphicUses:328Used by:338
Symbol 330 BitmapUsed by:331
Symbol 331 GraphicUses:330Used by:338
Symbol 332 BitmapUsed by:333
Symbol 333 GraphicUses:332Used by:338
Symbol 334 BitmapUsed by:335
Symbol 335 GraphicUses:334Used by:338
Symbol 336 BitmapUsed by:337
Symbol 337 GraphicUses:336Used by:338
Symbol 338 MovieClipUses:325 327 329 331 333 335 337Used by:448
Symbol 339 GraphicUses:276Used by:349
Symbol 340 GraphicUses:279Used by:349
Symbol 341 GraphicUses:282Used by:349
Symbol 342 GraphicUses:285Used by:349
Symbol 343 BitmapUsed by:344
Symbol 344 GraphicUses:343Used by:349
Symbol 345 GraphicUsed by:346 352 529
Symbol 346 MovieClipUses:345Used by:349
Symbol 347 BitmapUsed by:348
Symbol 348 GraphicUses:347Used by:349
Symbol 349 MovieClipUses:274 339 340 341 342 344 291 346 348 299 300Used by:448
Symbol 350 BitmapUsed by:351
Symbol 351 GraphicUses:350Used by:365
Symbol 352 MovieClipUses:345Used by:365
Symbol 353 BitmapUsed by:354
Symbol 354 GraphicUses:353Used by:365
Symbol 355 BitmapUsed by:356
Symbol 356 GraphicUses:355Used by:365
Symbol 357 BitmapUsed by:358
Symbol 358 GraphicUses:357Used by:365
Symbol 359 BitmapUsed by:360
Symbol 360 GraphicUses:359Used by:365
Symbol 361 BitmapUsed by:362
Symbol 362 GraphicUses:361Used by:365
Symbol 363 BitmapUsed by:364
Symbol 364 GraphicUses:363Used by:365
Symbol 365 MovieClipUses:351 352 354 356 358 360 362 364Used by:448
Symbol 366 BitmapUsed by:367
Symbol 367 GraphicUses:366Used by:382
Symbol 368 BitmapUsed by:369
Symbol 369 GraphicUses:368Used by:382
Symbol 370 BitmapUsed by:371
Symbol 371 GraphicUses:370Used by:382
Symbol 372 BitmapUsed by:373
Symbol 373 GraphicUses:372Used by:382
Symbol 374 BitmapUsed by:375
Symbol 375 GraphicUses:374Used by:382
Symbol 376 BitmapUsed by:377
Symbol 377 GraphicUses:376Used by:382
Symbol 378 BitmapUsed by:379
Symbol 379 GraphicUses:378Used by:382
Symbol 380 BitmapUsed by:381
Symbol 381 GraphicUses:380Used by:382
Symbol 382 MovieClipUses:367 369 371 373 375 377 379 381Used by:448
Symbol 383 BitmapUsed by:385 393
Symbol 384 BitmapUsed by:385 389 390 392
Symbol 385 GraphicUses:383 384Used by:394
Symbol 386 BitmapUsed by:387 390
Symbol 387 GraphicUses:386Used by:394
Symbol 388 BitmapUsed by:389 391
Symbol 389 GraphicUses:388 384Used by:394
Symbol 390 GraphicUses:386 384Used by:394
Symbol 391 GraphicUses:388Used by:394
Symbol 392 GraphicUses:384Used by:394
Symbol 393 GraphicUses:383Used by:394
Symbol 394 MovieClipUses:385 387 389 390 391 392 393Used by:448
Symbol 395 BitmapUsed by:396
Symbol 396 GraphicUses:395Used by:399
Symbol 397 GraphicUsed by:398
Symbol 398 MovieClipUses:397Used by:399
Symbol 399 MovieClipUses:396 316 318 320 398Used by:448
Symbol 400 BitmapUsed by:401
Symbol 401 GraphicUses:400Used by:414
Symbol 402 BitmapUsed by:403
Symbol 403 GraphicUses:402Used by:414
Symbol 404 GraphicUsed by:405
Symbol 405 MovieClipUses:404Used by:414
Symbol 406 BitmapUsed by:407
Symbol 407 GraphicUses:406Used by:414
Symbol 408 BitmapUsed by:409
Symbol 409 GraphicUses:408Used by:414
Symbol 410 BitmapUsed by:411
Symbol 411 GraphicUses:410Used by:414
Symbol 412 GraphicUsed by:413
Symbol 413 MovieClipUses:412Used by:414
Symbol 414 MovieClipUses:401 403 405 407 409 411 413 314Used by:448
Symbol 415 GraphicUsed by:416
Symbol 416 MovieClipUses:415Used by:426
Symbol 417 GraphicUses:266Used by:426
Symbol 418 GraphicUsed by:419
Symbol 419 MovieClipUses:418Used by:426
Symbol 420 GraphicUsed by:421
Symbol 421 MovieClipUses:420Used by:426
Symbol 422 BitmapUsed by:423
Symbol 423 GraphicUses:422Used by:426
Symbol 424 GraphicUsed by:425
Symbol 425 MovieClipUses:424Used by:426
Symbol 426 MovieClipUses:259 261 263 265 416 417 419 271 421 423 425Used by:448
Symbol 427 BitmapUsed by:428
Symbol 428 GraphicUses:427Used by:447
Symbol 429 GraphicUsed by:430
Symbol 430 MovieClipUses:429Used by:447
Symbol 431 BitmapUsed by:432
Symbol 432 GraphicUses:431Used by:447
Symbol 433 GraphicUsed by:434
Symbol 434 MovieClipUses:433Used by:447
Symbol 435 BitmapUsed by:436
Symbol 436 GraphicUses:435Used by:447
Symbol 437 GraphicUsed by:438
Symbol 438 MovieClipUses:437Used by:447
Symbol 439 BitmapUsed by:440
Symbol 440 GraphicUses:439Used by:447
Symbol 441 GraphicUsed by:442
Symbol 442 MovieClipUses:441Used by:447
Symbol 443 BitmapUsed by:444
Symbol 444 GraphicUses:443Used by:447
Symbol 445 BitmapUsed by:446
Symbol 446 GraphicUses:445Used by:447
Symbol 447 MovieClipUses:428 430 432 434 436 438 440 442 444 446Used by:448
Symbol 448 MovieClipUses:227 244 257 272 301 312 323 338 349 365 382 235 394 399 414 426 447Used by:Timeline
Symbol 449 FontUsed by:450 451 452 453 454 455 458 461 462 463 464 465 468 469 470 471 523 526 534 535 539 541 543 545 547 549 552 553 554 555 556 557 558 559 561 562 563 564 565 566 567 568 569 570 571 572 577 578 579 580 581 582 583 584 585 629 630 631 632 635 636
Symbol 450 TextUses:449Used by:473
Symbol 451 TextUses:449Used by:473
Symbol 452 TextUses:449Used by:473
Symbol 453 TextUses:449Used by:473
Symbol 454 TextUses:449Used by:473
Symbol 455 TextUses:449Used by:473
Symbol 456 BitmapUsed by:457 618
Symbol 457 GraphicUses:456Used by:473
Symbol 458 TextUses:449Used by:473
Symbol 459 BitmapUsed by:460 472 618
Symbol 460 GraphicUses:40 459Used by:473
Symbol 461 TextUses:449Used by:473
Symbol 462 TextUses:449Used by:473
Symbol 463 TextUses:449Used by:473
Symbol 464 TextUses:449Used by:473
Symbol 465 TextUses:449Used by:473
Symbol 466 BitmapUsed by:467 618
Symbol 467 GraphicUses:289 466Used by:473
Symbol 468 TextUses:449Used by:473
Symbol 469 TextUses:449Used by:473
Symbol 470 TextUses:449Used by:473
Symbol 471 TextUses:449Used by:473
Symbol 472 GraphicUses:459Used by:473
Symbol 473 MovieClipUses:208 450 451 452 453 454 455 457 458 460 461 462 463 464 465 467 468 469 470 471 472Used by:Timeline
Symbol 474 BitmapUsed by:475 477 479
Symbol 475 GraphicUses:474Used by:480
Symbol 476 BitmapUsed by:477 479
Symbol 477 GraphicUses:476 474Used by:480
Symbol 478 BitmapUsed by:479
Symbol 479 GraphicUses:478 476 474Used by:480
Symbol 480 MovieClipUses:475 477 479Used by:Timeline
Symbol 481 MovieClipUses:208Used by:485 495
Symbol 482 BitmapUsed by:483
Symbol 483 GraphicUses:482Used by:485
Symbol 484 TextUses:209Used by:485
Symbol 485 MovieClipUses:481 483 484Used by:Timeline
Symbol 486 BitmapUsed by:487
Symbol 487 GraphicUses:486Used by:488
Symbol 488 MovieClipUses:487Used by:Timeline
Symbol 489 BitmapUsed by:490 496
Symbol 490 GraphicUses:489Used by:495
Symbol 491 TextUses:209Used by:495
Symbol 492 TextUses:209Used by:495
Symbol 493 TextUses:209Used by:495
Symbol 494 TextUses:209Used by:495
Symbol 495 MovieClipUses:481 490 491 492 493 494Used by:Timeline
Symbol 496 GraphicUses:489Used by:497
Symbol 497 MovieClipUses:496Used by:498
Symbol 498 MovieClipUses:497Used by:Timeline
Symbol 499 BitmapUsed by:500
Symbol 500 GraphicUses:499Used by:507
Symbol 501 BitmapUsed by:502
Symbol 502 GraphicUses:501Used by:507
Symbol 503 BitmapUsed by:504
Symbol 504 GraphicUses:503Used by:507
Symbol 505 BitmapUsed by:506
Symbol 506 GraphicUses:505Used by:507
Symbol 507 MovieClipUses:500 502 504 506Used by:Timeline
Symbol 508 GraphicUsed by:528
Symbol 509 GraphicUsed by:510
Symbol 510 MovieClipUses:509Used by:528
Symbol 511 GraphicUsed by:512
Symbol 512 MovieClipUses:511Used by:528 586 633
Symbol 513 GraphicUsed by:528 633 639
Symbol 514 GraphicUsed by:515
Symbol 515 MovieClipUses:514Used by:528 633 639
Symbol 516 GraphicUsed by:528 633 639
Symbol 517 GraphicUsed by:518 633 639
Symbol 518 MovieClipUses:517Used by:528
Symbol 519 BitmapUsed by:520
Symbol 520 GraphicUses:519Used by:521 586
Symbol 521 MovieClipUses:520Used by:528 633
Symbol 522 GraphicUses:47Used by:528 633
Symbol 523 EditableTextUses:449Used by:528
Symbol 524 FontUsed by:525
Symbol 525 EditableTextUses:524Used by:528
Symbol 526 EditableTextUses:449Used by:527
Symbol 527 MovieClipUses:526Used by:528
Symbol 528 MovieClipUses:508 510 512 513 515 516 518 521 522 523 525 527Used by:Timeline
Symbol 529 ButtonUses:345Used by:608
Symbol 530 GraphicUsed by:608
Symbol 531 GraphicUsed by:532
Symbol 532 MovieClipUses:531Used by:608
Symbol 533 GraphicUsed by:538 540 542 544 546 548 550 587 588
Symbol 534 TextUses:449Used by:538 587
Symbol 535 TextUses:449Used by:538 587
Symbol 536 GraphicUsed by:538 540 542 544 546 548 550 587 588
Symbol 537 GraphicUsed by:538 540 542 544 546 548 550 587 588
Symbol 538 ButtonUses:533 534 535 536 537Used by:608
Symbol 539 TextUses:449Used by:540 588
Symbol 540 ButtonUses:533 539 536 537Used by:608
Symbol 541 TextUses:449Used by:542
Symbol 542 ButtonUses:533 541 536 537Used by:608
Symbol 543 TextUses:449Used by:544
Symbol 544 ButtonUses:533 543 536 537Used by:608
Symbol 545 TextUses:449Used by:546
Symbol 546 ButtonUses:533 545 536 537Used by:608
Symbol 547 TextUses:449Used by:548
Symbol 548 ButtonUses:533 547 536 537Used by:608
Symbol 549 TextUses:449Used by:550
Symbol 550 ButtonUses:533 549 536 537Used by:608
Symbol 551 GraphicUsed by:607 608
Symbol 552 TextUses:449Used by:608
Symbol 553 TextUses:449Used by:608
Symbol 554 TextUses:449Used by:608
Symbol 555 TextUses:449Used by:608
Symbol 556 TextUses:449Used by:608
Symbol 557 TextUses:449Used by:608
Symbol 558 TextUses:449Used by:608
Symbol 559 TextUses:449Used by:608
Symbol 560 GraphicUsed by:586
Symbol 561 TextUses:449Used by:586
Symbol 562 TextUses:449Used by:586
Symbol 563 TextUses:449Used by:586
Symbol 564 TextUses:449Used by:586
Symbol 565 TextUses:449Used by:586
Symbol 566 TextUses:449Used by:586
Symbol 567 TextUses:449Used by:586
Symbol 568 EditableTextUses:449Used by:586
Symbol 569 EditableTextUses:449Used by:586
Symbol 570 EditableTextUses:449Used by:586
Symbol 571 EditableTextUses:449Used by:586
Symbol 572 EditableTextUses:449Used by:586
Symbol 573 GraphicUsed by:574
Symbol 574 MovieClipUses:573Used by:586
Symbol 575 GraphicUsed by:576
Symbol 576 MovieClipUses:575Used by:586
Symbol 577 TextUses:449Used by:586
Symbol 578 TextUses:449Used by:586
Symbol 579 TextUses:449Used by:586
Symbol 580 EditableTextUses:449Used by:586
Symbol 581 EditableTextUses:449Used by:586
Symbol 582 EditableTextUses:449Used by:586
Symbol 583 TextUses:449Used by:586
Symbol 584 EditableTextUses:449Used by:586
Symbol 585 EditableTextUses:449Used by:586
Symbol 586 MovieClipUses:560 561 562 563 564 565 566 567 568 569 570 571 572 512 574 576 577 578 579 580 581 582 583 584 585 520Used by:608
Symbol 587 ButtonUses:533 534 535 536 537Used by:608
Symbol 588 ButtonUses:533 539 536 537Used by:608
Symbol 589 GraphicUsed by:608
Symbol 590 GraphicUsed by:595 604 607 608
Symbol 591 TextUses:209Used by:595
Symbol 592 GraphicUsed by:595 604
Symbol 593 GraphicUsed by:595 604
Symbol 594 TextUses:209Used by:595 604
Symbol 595 ButtonUses:590 591 592 593 594Used by:608
Symbol 596 GraphicUsed by:600 606
Symbol 597 TextUses:209Used by:600 606
Symbol 598 GraphicUsed by:600 606
Symbol 599 GraphicUsed by:600 606
Symbol 600 ButtonUses:596 597 598 599Used by:608
Symbol 601 GraphicUsed by:602
Symbol 602 MovieClipUses:601Used by:608
Symbol 603 TextUses:209Used by:604
Symbol 604 ButtonUses:590 603 592 593 594Used by:607
Symbol 605 TextUses:209Used by:606
Symbol 606 ButtonUses:596 605 598 599 597Used by:607
Symbol 607 MovieClipUses:590 604 606 551Used by:608
Symbol 608 MovieClipUses:529 530 532 538 540 542 544 546 548 550 551 552 553 554 555 556 557 558 559 586 587 588 45 589 590 595 600 602 607Used by:Timeline
Symbol 609 MovieClipUses:193Used by:610
Symbol 610 MovieClipUses:45 189 204 202 609Used by:Timeline
Symbol 611 SoundUsed by:612
Symbol 612 MovieClipUses:611Used by:Timeline
Symbol 613 BitmapUsed by:618
Symbol 614 BitmapUsed by:618
Symbol 615 BitmapUsed by:618
Symbol 616 BitmapUsed by:618
Symbol 617 BitmapUsed by:618
Symbol 618 GraphicUses:613 466 614 456 615 616 617 459Used by:624
Symbol 619 GraphicUsed by:623
Symbol 620 GraphicUsed by:623
Symbol 621 GraphicUsed by:623
Symbol 622 GraphicUsed by:623
Symbol 623 ButtonUses:619 620 621 622Used by:624
Symbol 624 MovieClipUses:618 623Used by:Timeline
Symbol 625 SoundUsed by:Timeline
Symbol 626 BitmapUsed by:627
Symbol 627 GraphicUses:626Used by:Timeline
Symbol 628 MovieClipUses:29 31Used by:Timeline
Symbol 629 TextUses:449Used by:633 639
Symbol 630 EditableTextUses:449Used by:633
Symbol 631 EditableTextUses:449Used by:633
Symbol 632 TextUses:449Used by:633 639
Symbol 633 MovieClipUses:512 513 515 516 517 521 522 629 630 631 632Used by:640
Symbol 634 GraphicUses:47Used by:639
Symbol 635 EditableTextUses:449Used by:639
Symbol 636 EditableTextUses:449Used by:639
Symbol 637 BitmapUsed by:638
Symbol 638 GraphicUses:637Used by:639
Symbol 639 MovieClipUses:204 513 515 516 517 634 629 635 636 632 638Used by:640
Symbol 640 MovieClipUses:633 639Used by:Timeline
Symbol 641 BitmapUsed by:642 643
Symbol 642 GraphicUses:641Used by:644
Symbol 643 GraphicUses:641Used by:644
Symbol 644 MovieClipUses:642 643Used by:Timeline

Instance Names

"ground"Frame 3Symbol 44 MovieClip
"rightblock"Frame 3Symbol 46 MovieClip
"die"Frame 3Symbol 54 MovieClip
"leve"Frame 3Symbol 206 MovieClip
"h"Frame 3Symbol 207 MovieClip
"level"Frame 3Symbol 214 MovieClip
"char"Frame 3Symbol 448 MovieClip
"li"Frame 3Symbol 473 MovieClip
"sp"Frame 3Symbol 485 MovieClip
"sign"Frame 3Symbol 495 MovieClip
"signs"Frame 3Symbol 498 MovieClip
"heath"Frame 3Symbol 528 MovieClip
"pause"Frame 3Symbol 608 MovieClip
"game"Frame 4Symbol 624 MovieClip
"ground"Frame 6Symbol 628 MovieClip
"rightblock"Frame 6Symbol 46 MovieClip
"leftblock"Frame 6Symbol 46 MovieClip
"char"Frame 6Symbol 448 MovieClip
"h"Frame 6Symbol 640 MovieClip
"nimbus"Symbol 43 MovieClip Frame 1Symbol 42 MovieClip
"ground"Symbol 44 MovieClip Frame 1Symbol 19 MovieClip
"ground"Symbol 44 MovieClip Frame 1Symbol 29 MovieClip
"ground"Symbol 44 MovieClip Frame 1Symbol 29 MovieClip
"ground"Symbol 44 MovieClip Frame 1Symbol 29 MovieClip
"ground"Symbol 44 MovieClip Frame 1Symbol 29 MovieClip
"ground"Symbol 44 MovieClip Frame 1Symbol 29 MovieClip
"ground"Symbol 44 MovieClip Frame 1Symbol 29 MovieClip
"ground"Symbol 44 MovieClip Frame 1Symbol 19 MovieClip
"ground"Symbol 44 MovieClip Frame 1Symbol 29 MovieClip
"ground"Symbol 44 MovieClip Frame 1Symbol 29 MovieClip
"ground"Symbol 44 MovieClip Frame 1Symbol 29 MovieClip
"ground"Symbol 44 MovieClip Frame 1Symbol 29 MovieClip
"ground"Symbol 44 MovieClip Frame 1Symbol 31 MovieClip
"ground"Symbol 44 MovieClip Frame 1Symbol 19 MovieClip
"ground"Symbol 44 MovieClip Frame 1Symbol 19 MovieClip
"ground"Symbol 44 MovieClip Frame 1Symbol 29 MovieClip
"ground"Symbol 44 MovieClip Frame 1Symbol 29 MovieClip
"ground"Symbol 44 MovieClip Frame 1Symbol 29 MovieClip
"ground"Symbol 44 MovieClip Frame 1Symbol 19 MovieClip
"ground"Symbol 44 MovieClip Frame 1Symbol 31 MovieClip
"ground"Symbol 44 MovieClip Frame 1Symbol 31 MovieClip
"ground"Symbol 44 MovieClip Frame 1Symbol 31 MovieClip
"ground"Symbol 44 MovieClip Frame 1Symbol 29 MovieClip
"ground"Symbol 44 MovieClip Frame 1Symbol 31 MovieClip
"ground"Symbol 44 MovieClip Frame 1Symbol 31 MovieClip
"ground"Symbol 44 MovieClip Frame 1Symbol 29 MovieClip
"ground"Symbol 44 MovieClip Frame 1Symbol 29 MovieClip
"ground"Symbol 44 MovieClip Frame 1Symbol 29 MovieClip
"ground"Symbol 44 MovieClip Frame 1Symbol 29 MovieClip
"ground"Symbol 44 MovieClip Frame 1Symbol 19 MovieClip
"ground"Symbol 44 MovieClip Frame 1Symbol 29 MovieClip
"ground"Symbol 44 MovieClip Frame 1Symbol 29 MovieClip
"ground"Symbol 44 MovieClip Frame 1Symbol 29 MovieClip
"ground"Symbol 44 MovieClip Frame 1Symbol 29 MovieClip
"nimbus"Symbol 44 MovieClip Frame 1Symbol 43 MovieClip
"walk"Symbol 81 MovieClip Frame 1Symbol 71 MovieClip
"bad"Symbol 206 MovieClip Frame 1Symbol 146 MovieClip
"attackpoint"Symbol 272 MovieClip Frame 5Symbol 269 MovieClip
"attackpoint"Symbol 301 MovieClip Frame 6Symbol 291 MovieClip
"attackpoint"Symbol 301 MovieClip Frame 15Symbol 300 MovieClip
"attackpoint"Symbol 323 MovieClip Frame 4Symbol 322 MovieClip
"attackpoint"Symbol 349 MovieClip Frame 6Symbol 346 MovieClip
"attackpoint"Symbol 349 MovieClip Frame 15Symbol 300 MovieClip
"attackpoint"Symbol 365 MovieClip Frame 1Symbol 352 MovieClip
"attackpoint"Symbol 399 MovieClip Frame 7Symbol 398 MovieClip
"attackpoint"Symbol 414 MovieClip Frame 3Symbol 405 MovieClip
"attackpoint"Symbol 414 MovieClip Frame 9Symbol 413 MovieClip
"attackpoint"Symbol 426 MovieClip Frame 7Symbol 416 MovieClip
"attackpoint"Symbol 426 MovieClip Frame 9Symbol 419 MovieClip
"attackpoint"Symbol 426 MovieClip Frame 11Symbol 421 MovieClip
"attackpoint"Symbol 426 MovieClip Frame 13Symbol 425 MovieClip
"attackpoint"Symbol 447 MovieClip Frame 1Symbol 430 MovieClip
"attackpoint"Symbol 447 MovieClip Frame 3Symbol 434 MovieClip
"attackpoint"Symbol 447 MovieClip Frame 5Symbol 438 MovieClip
"attackpoint"Symbol 447 MovieClip Frame 7Symbol 442 MovieClip
"attack"Symbol 448 MovieClip Frame 4Symbol 272 MovieClip
"fire"Symbol 448 MovieClip Frame 5Symbol 301 MovieClip
"punch"Symbol 448 MovieClip Frame 7Symbol 323 MovieClip
"fire"Symbol 448 MovieClip Frame 9Symbol 349 MovieClip
"spin"Symbol 448 MovieClip Frame 10Symbol 365 MovieClip
"attack"Symbol 448 MovieClip Frame 14Symbol 399 MovieClip
"attack"Symbol 448 MovieClip Frame 15Symbol 414 MovieClip
"attack"Symbol 448 MovieClip Frame 16Symbol 426 MovieClip
"attack"Symbol 448 MovieClip Frame 17Symbol 447 MovieClip
"time"Symbol 528 MovieClip Frame 1Symbol 527 MovieClip
"ground"Symbol 628 MovieClip Frame 1Symbol 29 MovieClip
"ground"Symbol 628 MovieClip Frame 1Symbol 31 MovieClip
"ground"Symbol 628 MovieClip Frame 1Symbol 29 MovieClip
"ground"Symbol 628 MovieClip Frame 1Symbol 31 MovieClip
"ground"Symbol 628 MovieClip Frame 1Symbol 31 MovieClip
"ground"Symbol 628 MovieClip Frame 1Symbol 29 MovieClip
"ground"Symbol 628 MovieClip Frame 1Symbol 29 MovieClip
"ground"Symbol 628 MovieClip Frame 1Symbol 29 MovieClip
"ground"Symbol 628 MovieClip Frame 1Symbol 29 MovieClip
"ground"Symbol 628 MovieClip Frame 1Symbol 29 MovieClip
"ground"Symbol 628 MovieClip Frame 1Symbol 29 MovieClip
"ground"Symbol 628 MovieClip Frame 1Symbol 29 MovieClip
"ground"Symbol 628 MovieClip Frame 1Symbol 29 MovieClip
"ground"Symbol 628 MovieClip Frame 1Symbol 29 MovieClip
"h"Symbol 640 MovieClip Frame 1Symbol 633 MovieClip
"k"Symbol 640 MovieClip Frame 1Symbol 639 MovieClip

Special Tags

ExportAssets (56)Timeline Frame 1Symbol 3 as "bullet"

Labels

"over"Frame 4
"level"Frame 5
"dead"Symbol 81 MovieClip Frame 2
"flinch"Symbol 81 MovieClip Frame 3
"dead"Symbol 109 MovieClip Frame 2
"dead"Symbol 145 MovieClip Frame 2
"dead"Symbol 203 MovieClip Frame 2
"dead"Symbol 205 MovieClip Frame 2
"fail"Symbol 214 MovieClip Frame 2
"idle"Symbol 448 MovieClip Frame 1
"run"Symbol 448 MovieClip Frame 2
"jump"Symbol 448 MovieClip Frame 3
"attack"Symbol 448 MovieClip Frame 4
"shoot"Symbol 448 MovieClip Frame 5
"dead"Symbol 448 MovieClip Frame 6
"punch"Symbol 448 MovieClip Frame 7
"sky"Symbol 448 MovieClip Frame 8
"upshoot"Symbol 448 MovieClip Frame 9
"twirl"Symbol 448 MovieClip Frame 10
"dash"Symbol 448 MovieClip Frame 11
"slip"Symbol 448 MovieClip Frame 12
"power"Symbol 448 MovieClip Frame 13
"dead"Symbol 610 MovieClip Frame 2
"flinch"Symbol 610 MovieClip Frame 3

Dynamic Text Variables

_root.coinsSymbol 523 EditableText""
_root.livesSymbol 525 EditableText""
timer_txtSymbol 526 EditableText"00:00:00:00"
_root.healthSymbol 568 EditableText""
_root.energySymbol 569 EditableText""
_root.attackSymbol 570 EditableText""
_root.defenseSymbol 571 EditableText""
_root.powerSymbol 572 EditableText""
_root.expSymbol 580 EditableText""
_root.coinsSymbol 581 EditableText""
_root.levelSymbol 582 EditableText""
_root.speedSymbol 584 EditableText""
_root.level*100 - _root.expSymbol 585 EditableText""
_root.coinsSymbol 630 EditableText""
_root.scoreSymbol 631 EditableText""
_root.coinsSymbol 635 EditableText""
_root.scoreSymbol 636 EditableText""




http://swfchan.com/24/117636/info.shtml
Created: 7/3 -2019 16:30:17 Last modified: 7/3 -2019 16:30:17 Server time: 26/04 -2024 03:03:12