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

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

Schnookie Bear.swf

This is the info page for
Flash #30164

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


Text
LOADING

YOU HAVE DIED.

YOUR CHILDREN NEED YOU!!!

REVIVE

REVIVE

GAME OVER

NOT THIS TIME.

How to play

How to play

To Optimize Gaming Experience, Drop the Quality As Necessary!

Things you need to know...

Your Enemies!

Collect all of these to OPEN the CAGE!

Objective of the Game: Rescue Baby Pandas!

/36

HP

this tells you how many
you need to collect

When this number
drops to 0* you die

This shows you how many
lives you have left. When
you reach 0, game over!

Find this RPG and hit space
to blow up your enemies!!!

Avoid/Kill them!

3

100

0

Use the arrow
keys to move

Press up to
jump!

START GAME

Restores
health!

YOU HAVE DIED.

YOUR CHILDREN NEED YOU!!!

REVIVE

REVIVE

GAME OVER

NOT THIS TIME.

/42

HP

YOU HAVE DIED.

YOUR CHILDREN NEED YOU!!!

REVIVE

REVIVE

GAME
OVER

NOT THIS
TIME.

/39

Loops: Flashkit.com

Programing/Design/Concept:
Kyle Litchfield
Yunita Hoo
Ngoc Ma

Created for
Motion Design,
CU Boulder....
Our First Game!

ActionScript [AS1/AS2]

Instance of Symbol 55 MovieClip "preloader" in Frame 1
onClipEvent (load) { _root.preloader.bar._xscale = 0; } onClipEvent (enterFrame) { loadedb = _root.getBytesLoaded(); totalb = _root.getBytesTotal(); percent = (loadedb / totalb) * 100; _root.preloader.bar._xscale = percent; if (_root.preloader.bar._xscale < 99) { this._alpha = 99; } else { this._alpha = 0; } if (_root.preloader.bar._xscale > 99) { _root.gotoAndPlay("begin"); } }
Frame 2
_root.gotoAndPlay("preloader");
Frame 3
stop(); loop04 = new Sound(); loop04.attachSound("first"); loop05 = new Sound(); loop05.attachSound("middle"); _root.loop04.start(0, 999);
Frame 4
stop();
Instance of Symbol 185 MovieClip in Frame 4
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.health.text = 100; unloadMovie (this); } }
Frame 5
stop(); loop01 = new Sound(); loop01.attachSound("jungle"); stopAllSounds(); _root.loop01.start(0, 999); score.text = 0; health.text = 100; lives.text = 3;
Instance of Symbol 168 MovieClip "babypanda" in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.gotoAndPlay("leveltwo"); } }
Instance of Symbol 85 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 1; } } }
Instance of Symbol 78 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.gotgun = true; unloadMovie (this); } }
Instance of Symbol 81 MovieClip "char" in Frame 5
onClipEvent (load) { jumping = false; speed = 0; healthX = _root.health._x; scoreX = _root.score._x; coinmX = _root.coinm._x; goalX = _root.goal._x; hpX = _root.hp._x; lifeX = _root.life._x; livesX = _root.lives._x; facesX = _root.faces._x; Xpos = this._x; Ypos = this._y; maxmove = 15; _root.maxshoottime = 100; } onClipEvent (enterFrame) { _x = (Xpos - _root._x); _root.score._x = scoreX - _root._x; _root.health._x = healthX - _root._x; _root.coinm._x = coinmX - _root._x; _root.goal._x = goalX - _root._x; _root.hp._x = hpX - _root._x; _root.life._x = lifeX - _root._x; _root.lives._x = livesX - _root._x; _root.faces._x = facesX - _root._x; if ((!_root.ground.hitTest(this._x, this._y, true)) && (!jumping)) { this._y = this._y + 6; } if (!_root.shooting) { _root.timer = 0; _root.mvsp = _xscale / 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.ljail.hitTest(this._x + 20, this._y, true))) { _root.health._x = _root.health._x + speed; _root.score._x = _root.score._x + speed; _root.coinm._x = _root.coinm._x + speed; _root.goal._x = _root.goal._x + speed; _root.hp._x = _root.hp._x + speed; _root.life._x = _root.life._x + speed; _root.lives._x = _root.lives._x + speed; _root.faces._x = _root.faces._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.rjail.hitTest(this._x - 20, this._y, true))) { _root.health._x = _root.health._x + speed; _root.score._x = _root.score._x + speed; _root.coinm._x = _root.coinm._x + speed; _root.goal._x = _root.goal._x + speed; _root.hp._x = _root.hp._x + speed; _root.life._x = _root.life._x + speed; _root.lives._x = _root.lives._x + speed; _root.faces._x = _root.faces._x + speed; this._x = this._x + speed; _root._x = _root._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(17)) { this.gotoAndStop("attack"); attacking = true; speed = 0; } else if (Key.isDown(32)) { if ((_root.gotgun == true) && (!_root.shooting)) { _root.attachMovie("bullet", "bulleter", 1, {_x:_root.char._x, _y:_root.char._y - 65}); _root.shooting = true; with (_root.bulleter) { onEnterFrame = function () { var _local1 = _root; if (_local1.timer > _local1.maxshoottime) { _local1.shooting = false; unloadMovie(this); } _local1.timer++; _x = _x + _local1.mvsp; }; } 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"); 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 (keyUp) { if (Key.getCode() == 17) { attacking = false; } }
Instance of Symbol 155 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.score.text++; unloadMovie (this); } }
Instance of Symbol 155 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.score.text++; unloadMovie (this); } }
Instance of Symbol 155 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.score.text++; unloadMovie (this); } }
Instance of Symbol 155 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.score.text++; unloadMovie (this); } }
Instance of Symbol 155 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.score.text++; unloadMovie (this); } }
Instance of Symbol 155 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.score.text++; unloadMovie (this); } }
Instance of Symbol 155 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.score.text++; unloadMovie (this); } }
Instance of Symbol 155 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.score.text++; unloadMovie (this); } }
Instance of Symbol 155 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.score.text++; unloadMovie (this); } }
Instance of Symbol 155 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.score.text++; unloadMovie (this); } }
Instance of Symbol 155 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.score.text++; unloadMovie (this); } }
Instance of Symbol 155 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.score.text++; unloadMovie (this); } }
Instance of Symbol 155 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.score.text++; unloadMovie (this); } }
Instance of Symbol 155 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.score.text++; unloadMovie (this); } }
Instance of Symbol 155 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.score.text++; unloadMovie (this); } }
Instance of Symbol 155 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.score.text++; unloadMovie (this); } }
Instance of Symbol 155 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.score.text++; unloadMovie (this); } }
Instance of Symbol 155 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.score.text++; unloadMovie (this); } }
Instance of Symbol 155 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.score.text++; unloadMovie (this); } }
Instance of Symbol 155 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.score.text++; unloadMovie (this); } }
Instance of Symbol 155 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.score.text++; unloadMovie (this); } }
Instance of Symbol 155 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.score.text++; unloadMovie (this); } }
Instance of Symbol 155 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.score.text++; unloadMovie (this); } }
Instance of Symbol 155 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.score.text++; unloadMovie (this); } }
Instance of Symbol 155 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.score.text++; unloadMovie (this); } }
Instance of Symbol 155 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.score.text++; unloadMovie (this); } }
Instance of Symbol 155 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.score.text++; unloadMovie (this); } }
Instance of Symbol 155 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.score.text++; unloadMovie (this); } }
Instance of Symbol 155 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.score.text++; unloadMovie (this); } }
Instance of Symbol 155 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.score.text++; unloadMovie (this); } }
Instance of Symbol 155 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.score.text++; unloadMovie (this); } }
Instance of Symbol 155 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.score.text++; unloadMovie (this); } }
Instance of Symbol 155 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.score.text++; unloadMovie (this); } }
Instance of Symbol 155 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.score.text++; unloadMovie (this); } }
Instance of Symbol 155 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.score.text++; unloadMovie (this); } }
Instance of Symbol 155 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.score.text++; unloadMovie (this); } }
Instance of Symbol 210 MovieClip "ljail" in Frame 5
onClipEvent (enterFrame) { if (_root.score.text >= 36) { _root.ljail.gotoAndPlay("2"); } }
Instance of Symbol 212 MovieClip "rjail" in Frame 5
onClipEvent (enterFrame) { if (_root.score.text >= 36) { _root.rjail.gotoAndPlay("2"); } }
Instance of Symbol 85 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 1; } } }
Instance of Symbol 85 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 1; } } }
Instance of Symbol 85 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 1; } } }
Instance of Symbol 85 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 1; } } }
Instance of Symbol 85 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 1; } } }
Instance of Symbol 85 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 1; } } }
Instance of Symbol 85 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 1; } } }
Instance of Symbol 85 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 1; } } }
Instance of Symbol 85 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 1; } } }
Instance of Symbol 85 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 1; } } }
Instance of Symbol 85 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 1; } } }
Instance of Symbol 85 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 1; } } }
Instance of Symbol 85 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 1; } } }
Instance of Symbol 85 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 1; } } }
Instance of Symbol 85 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 1; } } }
Instance of Symbol 85 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 1; } } }
Instance of Symbol 85 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 1; } } }
Instance of Symbol 85 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 1; } } }
Instance of Symbol 85 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 1; } } }
Instance of Symbol 85 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 1; } } }
Instance of Symbol 85 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 1; } } }
Instance of Symbol 85 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 1; } } }
Instance of Symbol 85 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 1; } } }
Instance of Symbol 85 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 1; } } }
Instance of Symbol 85 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 1; } } }
Instance of Symbol 85 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 1; } } }
Instance of Symbol 85 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 1; } } }
Instance of Symbol 85 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 1; } } }
Instance of Symbol 85 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 1; } } }
Instance of Symbol 85 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 1; } } }
Instance of Symbol 85 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 1; } } }
Instance of Symbol 85 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 1; } } }
Instance of Symbol 85 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 1; } } }
Instance of Symbol 85 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 1; } } }
Instance of Symbol 85 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 1; } } }
Instance of Symbol 85 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 1; } } }
Instance of Symbol 85 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 1; } } }
Instance of Symbol 85 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 1; } } }
Instance of Symbol 85 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 1; } } }
Instance of Symbol 85 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 1; } } }
Instance of Symbol 85 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 1; } } }
Instance of Symbol 85 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 1; } } }
Instance of Symbol 85 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 1; } } }
Instance of Symbol 85 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 1; } } }
Instance of Symbol 85 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 1; } } }
Instance of Symbol 85 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 1; } } }
Instance of Symbol 85 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 1; } } }
Instance of Symbol 85 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 1; } } }
Instance of Symbol 85 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 1; } } }
Instance of Symbol 85 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 1; } } }
Instance of Symbol 85 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 1; } } }
Instance of Symbol 85 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 1; } } }
Instance of Symbol 85 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 1; } } }
Instance of Symbol 85 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 1; } } }
Instance of Symbol 85 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 1; } } }
Instance of Symbol 85 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 1; } } }
Instance of Symbol 85 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 1; } } }
Instance of Symbol 85 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 1; } } }
Instance of Symbol 85 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 1; } } }
Instance of Symbol 85 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 1; } } }
Instance of Symbol 85 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 1; } } }
Instance of Symbol 85 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 1; } } }
Instance of Symbol 85 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 1; } } }
Instance of Symbol 85 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 1; } } }
Instance of Symbol 85 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 1; } } }
Instance of Symbol 85 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 1; } } }
Instance of Symbol 85 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 1; } } }
Instance of Symbol 98 MovieClip in Frame 5
onClipEvent (load) { enemyspeed = 2; enemystepsright = 0; enemystepsleft = 0; enemydir = "left"; } onClipEvent (enterFrame) { if (this.hitTest(_root.char.attackpoint)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } if (this.hitTest(_root.bulleter)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } if (this.hitTest(_root.char) && (!dead)) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 5; } } } if (!dead) { if (enemydir == "right") { enemystepsright = enemystepsright + 1; this._xscale = -100; this._x = this._x + enemyspeed; } else if (enemydir == "left") { enemystepsleft = enemystepsleft + 1; 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 98 MovieClip in Frame 5
onClipEvent (load) { enemyspeed = 2; enemystepsright = 0; enemystepsleft = 0; enemydir = "left"; } onClipEvent (enterFrame) { if (this.hitTest(_root.char.attackpoint)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } if (this.hitTest(_root.bulleter)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } if (this.hitTest(_root.char) && (!dead)) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 5; } } } if (!dead) { if (enemydir == "right") { enemystepsright = enemystepsright + 1; this._xscale = -100; this._x = this._x + enemyspeed; } else if (enemydir == "left") { enemystepsleft = enemystepsleft + 1; 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 98 MovieClip in Frame 5
onClipEvent (load) { enemyspeed = 2; enemystepsright = 0; enemystepsleft = 0; enemydir = "left"; } onClipEvent (enterFrame) { if (this.hitTest(_root.char.attackpoint)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } if (this.hitTest(_root.bulleter)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } if (this.hitTest(_root.char) && (!dead)) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 5; } } } if (!dead) { if (enemydir == "right") { enemystepsright = enemystepsright + 1; this._xscale = -100; this._x = this._x + enemyspeed; } else if (enemydir == "left") { enemystepsleft = enemystepsleft + 1; 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 98 MovieClip in Frame 5
onClipEvent (load) { enemyspeed = 2; enemystepsright = 0; enemystepsleft = 0; enemydir = "left"; } onClipEvent (enterFrame) { if (this.hitTest(_root.char.attackpoint)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } if (this.hitTest(_root.bulleter)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } if (this.hitTest(_root.char) && (!dead)) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 5; } } } if (!dead) { if (enemydir == "right") { enemystepsright = enemystepsright + 1; this._xscale = -100; this._x = this._x + enemyspeed; } else if (enemydir == "left") { enemystepsleft = enemystepsleft + 1; 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 98 MovieClip in Frame 5
onClipEvent (load) { enemyspeed = 2; enemystepsright = 0; enemystepsleft = 0; enemydir = "left"; } onClipEvent (enterFrame) { if (this.hitTest(_root.char.attackpoint)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } if (this.hitTest(_root.bulleter)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } if (this.hitTest(_root.char) && (!dead)) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 5; } } } if (!dead) { if (enemydir == "right") { enemystepsright = enemystepsright + 1; this._xscale = -100; this._x = this._x + enemyspeed; } else if (enemydir == "left") { enemystepsleft = enemystepsleft + 1; 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 98 MovieClip in Frame 5
onClipEvent (load) { enemyspeed = 2; enemystepsright = 0; enemystepsleft = 0; enemydir = "left"; } onClipEvent (enterFrame) { if (this.hitTest(_root.char.attackpoint)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } if (this.hitTest(_root.bulleter)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } if (this.hitTest(_root.char) && (!dead)) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 5; } } } if (!dead) { if (enemydir == "right") { enemystepsright = enemystepsright + 1; this._xscale = -100; this._x = this._x + enemyspeed; } else if (enemydir == "left") { enemystepsleft = enemystepsleft + 1; 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 85 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 1; } } }
Instance of Symbol 85 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 1; } } }
Instance of Symbol 85 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 1; } } }
Instance of Symbol 185 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.health.text = 100; unloadMovie (this); } }
Instance of Symbol 165 MovieClip "faces" in Frame 5
onClipEvent (enterFrame) { if (_root.health.text >= 100) { _root.faces.gotoAndStop(1); } if (_root.health.text <= 60) { _root.faces.gotoAndStop(2); } if (_root.health.text <= 30) { _root.faces.gotoAndStop(3); } if (_root.health.text <= 0) { _root.faces.gotoAndStop(4); } }
Frame 6
stopAllSounds(); _root.loop05.start(0, 999);
Frame 71
loop02 = new Sound(); loop02.attachSound("evil"); stopAllSounds(); _root.loop02.start(0, 999); stop(); score.text = 0; health.text = 100; lives.text = 3;
Instance of Symbol 262 MovieClip in Frame 71
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 1; } } }
Instance of Symbol 262 MovieClip in Frame 71
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 1; } } }
Instance of Symbol 262 MovieClip in Frame 71
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 1; } } }
Instance of Symbol 262 MovieClip in Frame 71
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 1; } } }
Instance of Symbol 262 MovieClip in Frame 71
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 1; } } }
Instance of Symbol 262 MovieClip in Frame 71
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 1; } } }
Instance of Symbol 262 MovieClip in Frame 71
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 1; } } }
Instance of Symbol 262 MovieClip in Frame 71
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 1; } } }
Instance of Symbol 262 MovieClip in Frame 71
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 1; } } }
Instance of Symbol 262 MovieClip in Frame 71
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 1; } } }
Instance of Symbol 262 MovieClip in Frame 71
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 1; } } }
Instance of Symbol 262 MovieClip in Frame 71
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 1; } } }
Instance of Symbol 262 MovieClip in Frame 71
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 1; } } }
Instance of Symbol 262 MovieClip in Frame 71
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 1; } } }
Instance of Symbol 262 MovieClip in Frame 71
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 1; } } }
Instance of Symbol 262 MovieClip in Frame 71
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 1; } } }
Instance of Symbol 262 MovieClip in Frame 71
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 1; } } }
Instance of Symbol 262 MovieClip in Frame 71
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 1; } } }
Instance of Symbol 262 MovieClip in Frame 71
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 1; } } }
Instance of Symbol 262 MovieClip in Frame 71
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 1; } } }
Instance of Symbol 262 MovieClip in Frame 71
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 1; } } }
Instance of Symbol 262 MovieClip in Frame 71
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 1; } } }
Instance of Symbol 262 MovieClip in Frame 71
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 1; } } }
Instance of Symbol 262 MovieClip in Frame 71
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 1; } } }
Instance of Symbol 262 MovieClip in Frame 71
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 1; } } }
Instance of Symbol 262 MovieClip in Frame 71
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 1; } } }
Instance of Symbol 262 MovieClip in Frame 71
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 1; } } }
Instance of Symbol 262 MovieClip in Frame 71
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 1; } } }
Instance of Symbol 262 MovieClip in Frame 71
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 1; } } }
Instance of Symbol 262 MovieClip in Frame 71
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 1; } } }
Instance of Symbol 262 MovieClip in Frame 71
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 1; } } }
Instance of Symbol 262 MovieClip in Frame 71
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 1; } } }
Instance of Symbol 262 MovieClip in Frame 71
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 1; } } }
Instance of Symbol 262 MovieClip in Frame 71
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 1; } } }
Instance of Symbol 262 MovieClip in Frame 71
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 1; } } }
Instance of Symbol 262 MovieClip in Frame 71
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 1; } } }
Instance of Symbol 262 MovieClip in Frame 71
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 1; } } }
Instance of Symbol 262 MovieClip in Frame 71
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 1; } } }
Instance of Symbol 262 MovieClip in Frame 71
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 1; } } }
Instance of Symbol 262 MovieClip in Frame 71
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 1; } } }
Instance of Symbol 262 MovieClip in Frame 71
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 1; } } }
Instance of Symbol 262 MovieClip in Frame 71
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 1; } } }
Instance of Symbol 262 MovieClip in Frame 71
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 1; } } }
Instance of Symbol 262 MovieClip in Frame 71
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 1; } } }
Instance of Symbol 262 MovieClip in Frame 71
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 1; } } }
Instance of Symbol 262 MovieClip in Frame 71
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 1; } } }
Instance of Symbol 262 MovieClip in Frame 71
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 1; } } }
Instance of Symbol 262 MovieClip in Frame 71
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 1; } } }
Instance of Symbol 262 MovieClip in Frame 71
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 1; } } }
Instance of Symbol 262 MovieClip in Frame 71
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 1; } } }
Instance of Symbol 262 MovieClip in Frame 71
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 1; } } }
Instance of Symbol 262 MovieClip in Frame 71
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 1; } } }
Instance of Symbol 262 MovieClip in Frame 71
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 1; } } }
Instance of Symbol 262 MovieClip in Frame 71
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 1; } } }
Instance of Symbol 262 MovieClip in Frame 71
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 1; } } }
Instance of Symbol 262 MovieClip in Frame 71
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 1; } } }
Instance of Symbol 262 MovieClip in Frame 71
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 1; } } }
Instance of Symbol 262 MovieClip in Frame 71
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 1; } } }
Instance of Symbol 262 MovieClip in Frame 71
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 1; } } }
Instance of Symbol 262 MovieClip in Frame 71
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 1; } } }
Instance of Symbol 262 MovieClip in Frame 71
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 1; } } }
Instance of Symbol 262 MovieClip in Frame 71
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 1; } } }
Instance of Symbol 262 MovieClip in Frame 71
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 1; } } }
Instance of Symbol 262 MovieClip in Frame 71
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 1; } } }
Instance of Symbol 262 MovieClip in Frame 71
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 1; } } }
Instance of Symbol 262 MovieClip in Frame 71
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 1; } } }
Instance of Symbol 262 MovieClip in Frame 71
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 1; } } }
Instance of Symbol 262 MovieClip in Frame 71
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 1; } } }
Instance of Symbol 262 MovieClip in Frame 71
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 1; } } }
Instance of Symbol 262 MovieClip in Frame 71
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 1; } } }
Instance of Symbol 262 MovieClip in Frame 71
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 1; } } }
Instance of Symbol 262 MovieClip in Frame 71
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 1; } } }
Instance of Symbol 262 MovieClip in Frame 71
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 1; } } }
Instance of Symbol 262 MovieClip in Frame 71
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 1; } } }
Instance of Symbol 262 MovieClip in Frame 71
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 1; } } }
Instance of Symbol 262 MovieClip in Frame 71
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 1; } } }
Instance of Symbol 262 MovieClip in Frame 71
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 1; } } }
Instance of Symbol 262 MovieClip in Frame 71
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 1; } } }
Instance of Symbol 231 MovieClip in Frame 71
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.gotgun = true; unloadMovie (this); } }
Instance of Symbol 233 MovieClip "char" in Frame 71
onClipEvent (load) { jumping = false; speed = 0; healthX = _root.health._x; scoreX = _root.score._x; coinmX = _root.coinm._x; goalX = _root.goal._x; hpX = _root.hp._x; lifeX = _root.life._x; livesX = _root.lives._x; facesX = _root.faces._x; Xpos = this._x; Ypos = this._y; maxmove = 15; _root.maxshoottime = 100; } onClipEvent (enterFrame) { _x = (Xpos - _root._x); _root.score._x = scoreX - _root._x; _root.health._x = healthX - _root._x; _root.coinm._x = coinmX - _root._x; _root.goal._x = goalX - _root._x; _root.hp._x = hpX - _root._x; _root.life._x = lifeX - _root._x; _root.lives._x = livesX - _root._x; _root.faces._x = facesX - _root._x; if ((!_root.ground.hitTest(this._x, this._y, true)) && (!jumping)) { this._y = this._y + 6; } if (!_root.shooting) { _root.timer = 0; _root.mvsp = _xscale / 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.ljail.hitTest(this._x + 20, this._y, true))) { _root.health._x = _root.health._x + speed; _root.score._x = _root.score._x + speed; _root.coinm._x = _root.coinm._x + speed; _root.goal._x = _root.goal._x + speed; _root.hp._x = _root.hp._x + speed; _root.life._x = _root.life._x + speed; _root.lives._x = _root.lives._x + speed; _root.faces._x = _root.faces._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.rjail.hitTest(this._x - 20, this._y, true))) { _root.health._x = _root.health._x + speed; _root.score._x = _root.score._x + speed; _root.coinm._x = _root.coinm._x + speed; _root.goal._x = _root.goal._x + speed; _root.hp._x = _root.hp._x + speed; _root.life._x = _root.life._x + speed; _root.lives._x = _root.lives._x + speed; _root.faces._x = _root.faces._x + speed; this._x = this._x + speed; _root._x = _root._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(17)) { this.gotoAndStop("attack"); attacking = true; speed = 0; } else if (Key.isDown(32)) { if ((_root.gotgun == true) && (!_root.shooting)) { _root.attachMovie("bullet", "bulleter", 1, {_x:_root.char._x, _y:_root.char._y - 65}); _root.shooting = true; with (_root.bulleter) { onEnterFrame = function () { var _local1 = _root; if (_local1.timer > _local1.maxshoottime) { _local1.shooting = false; unloadMovie(this); } _local1.timer++; _x = _x + _local1.mvsp; }; } 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"); 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 (keyUp) { if (Key.getCode() == 17) { attacking = false; } }
Instance of Symbol 264 MovieClip in Frame 71
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.score.text++; unloadMovie (this); } }
Instance of Symbol 264 MovieClip in Frame 71
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.score.text++; unloadMovie (this); } }
Instance of Symbol 264 MovieClip in Frame 71
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.score.text++; unloadMovie (this); } }
Instance of Symbol 264 MovieClip in Frame 71
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.score.text++; unloadMovie (this); } }
Instance of Symbol 264 MovieClip in Frame 71
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.score.text++; unloadMovie (this); } }
Instance of Symbol 264 MovieClip in Frame 71
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.score.text++; unloadMovie (this); } }
Instance of Symbol 264 MovieClip in Frame 71
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.score.text++; unloadMovie (this); } }
Instance of Symbol 264 MovieClip in Frame 71
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.score.text++; unloadMovie (this); } }
Instance of Symbol 264 MovieClip in Frame 71
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.score.text++; unloadMovie (this); } }
Instance of Symbol 264 MovieClip in Frame 71
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.score.text++; unloadMovie (this); } }
Instance of Symbol 264 MovieClip in Frame 71
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.score.text++; unloadMovie (this); } }
Instance of Symbol 264 MovieClip in Frame 71
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.score.text++; unloadMovie (this); } }
Instance of Symbol 264 MovieClip in Frame 71
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.score.text++; unloadMovie (this); } }
Instance of Symbol 264 MovieClip in Frame 71
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.score.text++; unloadMovie (this); } }
Instance of Symbol 264 MovieClip in Frame 71
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.score.text++; unloadMovie (this); } }
Instance of Symbol 264 MovieClip in Frame 71
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.score.text++; unloadMovie (this); } }
Instance of Symbol 264 MovieClip in Frame 71
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.score.text++; unloadMovie (this); } }
Instance of Symbol 264 MovieClip in Frame 71
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.score.text++; unloadMovie (this); } }
Instance of Symbol 264 MovieClip in Frame 71
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.score.text++; unloadMovie (this); } }
Instance of Symbol 264 MovieClip in Frame 71
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.score.text++; unloadMovie (this); } }
Instance of Symbol 264 MovieClip in Frame 71
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.score.text++; unloadMovie (this); } }
Instance of Symbol 264 MovieClip in Frame 71
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.score.text++; unloadMovie (this); } }
Instance of Symbol 264 MovieClip in Frame 71
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.score.text++; unloadMovie (this); } }
Instance of Symbol 264 MovieClip in Frame 71
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.score.text++; unloadMovie (this); } }
Instance of Symbol 264 MovieClip in Frame 71
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.score.text++; unloadMovie (this); } }
Instance of Symbol 264 MovieClip in Frame 71
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.score.text++; unloadMovie (this); } }
Instance of Symbol 264 MovieClip in Frame 71
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.score.text++; unloadMovie (this); } }
Instance of Symbol 264 MovieClip in Frame 71
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.score.text++; unloadMovie (this); } }
Instance of Symbol 264 MovieClip in Frame 71
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.score.text++; unloadMovie (this); } }
Instance of Symbol 264 MovieClip in Frame 71
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.score.text++; unloadMovie (this); } }
Instance of Symbol 264 MovieClip in Frame 71
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.score.text++; unloadMovie (this); } }
Instance of Symbol 264 MovieClip in Frame 71
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.score.text++; unloadMovie (this); } }
Instance of Symbol 264 MovieClip in Frame 71
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.score.text++; unloadMovie (this); } }
Instance of Symbol 264 MovieClip in Frame 71
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.score.text++; unloadMovie (this); } }
Instance of Symbol 264 MovieClip in Frame 71
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.score.text++; unloadMovie (this); } }
Instance of Symbol 264 MovieClip in Frame 71
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.score.text++; unloadMovie (this); } }
Instance of Symbol 264 MovieClip in Frame 71
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.score.text++; unloadMovie (this); } }
Instance of Symbol 276 MovieClip "ljail" in Frame 71
onClipEvent (enterFrame) { if (_root.score.text >= 42) { _root.ljail.gotoAndPlay("2"); } }
Instance of Symbol 277 MovieClip "rjail" in Frame 71
onClipEvent (enterFrame) { if (_root.score.text >= 42) { _root.rjail.gotoAndPlay("2"); } }
Instance of Symbol 281 MovieClip "babypanda" in Frame 71
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.gotoAndPlay("levelthree"); } }
Instance of Symbol 241 MovieClip in Frame 71
onClipEvent (load) { enemyspeed = 2; enemystepsright = 0; enemystepsleft = 0; enemydir = "left"; } onClipEvent (enterFrame) { if (this.hitTest(_root.char.attackpoint)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } if (this.hitTest(_root.bulleter)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } if (this.hitTest(_root.char) && (!dead)) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 5; } } } if (!dead) { if (enemydir == "right") { enemystepsright = enemystepsright + 1; this._xscale = -100; this._x = this._x + enemyspeed; } else if (enemydir == "left") { enemystepsleft = enemystepsleft + 1; 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 241 MovieClip in Frame 71
onClipEvent (load) { enemyspeed = 2; enemystepsright = 0; enemystepsleft = 0; enemydir = "left"; } onClipEvent (enterFrame) { if (this.hitTest(_root.char.attackpoint)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } if (this.hitTest(_root.bulleter)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } if (this.hitTest(_root.char) && (!dead)) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 5; } } } if (!dead) { if (enemydir == "right") { enemystepsright = enemystepsright + 1; this._xscale = -100; this._x = this._x + enemyspeed; } else if (enemydir == "left") { enemystepsleft = enemystepsleft + 1; 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 241 MovieClip in Frame 71
onClipEvent (load) { enemyspeed = 2; enemystepsright = 0; enemystepsleft = 0; enemydir = "left"; } onClipEvent (enterFrame) { if (this.hitTest(_root.char.attackpoint)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } if (this.hitTest(_root.bulleter)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } if (this.hitTest(_root.char) && (!dead)) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 5; } } } if (!dead) { if (enemydir == "right") { enemystepsright = enemystepsright + 1; this._xscale = -100; this._x = this._x + enemyspeed; } else if (enemydir == "left") { enemystepsleft = enemystepsleft + 1; 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 241 MovieClip in Frame 71
onClipEvent (load) { enemyspeed = 2; enemystepsright = 0; enemystepsleft = 0; enemydir = "left"; } onClipEvent (enterFrame) { if (this.hitTest(_root.char.attackpoint)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } if (this.hitTest(_root.bulleter)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } if (this.hitTest(_root.char) && (!dead)) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 5; } } } if (!dead) { if (enemydir == "right") { enemystepsright = enemystepsright + 1; this._xscale = -100; this._x = this._x + enemyspeed; } else if (enemydir == "left") { enemystepsleft = enemystepsleft + 1; 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 290 MovieClip in Frame 71
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.health.text = 100; unloadMovie (this); } }
Instance of Symbol 264 MovieClip in Frame 71
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.score.text++; unloadMovie (this); } }
Instance of Symbol 264 MovieClip in Frame 71
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.score.text++; unloadMovie (this); } }
Instance of Symbol 264 MovieClip in Frame 71
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.score.text++; unloadMovie (this); } }
Instance of Symbol 264 MovieClip in Frame 71
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.score.text++; unloadMovie (this); } }
Instance of Symbol 264 MovieClip in Frame 71
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.score.text++; unloadMovie (this); } }
Instance of Symbol 264 MovieClip in Frame 71
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.score.text++; unloadMovie (this); } }
Instance of Symbol 241 MovieClip in Frame 71
onClipEvent (load) { enemyspeed = 2; enemystepsright = 0; enemystepsleft = 0; enemydir = "left"; } onClipEvent (enterFrame) { if (this.hitTest(_root.char.attackpoint)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } if (this.hitTest(_root.bulleter)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } if (this.hitTest(_root.char) && (!dead)) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 5; } } } if (!dead) { if (enemydir == "right") { enemystepsright = enemystepsright + 1; this._xscale = -100; this._x = this._x + enemyspeed; } else if (enemydir == "left") { enemystepsleft = enemystepsleft + 1; 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 241 MovieClip in Frame 71
onClipEvent (load) { enemyspeed = 2; enemystepsright = 0; enemystepsleft = 0; enemydir = "left"; } onClipEvent (enterFrame) { if (this.hitTest(_root.char.attackpoint)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } if (this.hitTest(_root.bulleter)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } if (this.hitTest(_root.char) && (!dead)) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 5; } } } if (!dead) { if (enemydir == "right") { enemystepsright = enemystepsright + 1; this._xscale = -100; this._x = this._x + enemyspeed; } else if (enemydir == "left") { enemystepsleft = enemystepsleft + 1; 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 297 MovieClip "faces" in Frame 71
onClipEvent (enterFrame) { if (_root.health.text >= 100) { _root.faces.gotoAndStop(1); } if (_root.health.text <= 60) { _root.faces.gotoAndStop(2); } if (_root.health.text <= 30) { _root.faces.gotoAndStop(3); } if (_root.health.text <= 0) { _root.faces.gotoAndStop(4); } }
Frame 72
stopAllSounds(); _root.loop05.start(0, 999);
Frame 137
stop(); loop03 = new Sound(); loop03.attachSound("night"); stopAllSounds(); _root.loop03.start(0, 999); score.text = 0; health.text = 100; lives.text = 3;
Instance of Symbol 335 MovieClip in Frame 137
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.score.text++; unloadMovie (this); } }
Instance of Symbol 335 MovieClip in Frame 137
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.score.text++; unloadMovie (this); } }
Instance of Symbol 335 MovieClip in Frame 137
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.score.text++; unloadMovie (this); } }
Instance of Symbol 335 MovieClip in Frame 137
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.score.text++; unloadMovie (this); } }
Instance of Symbol 335 MovieClip in Frame 137
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.score.text++; unloadMovie (this); } }
Instance of Symbol 335 MovieClip in Frame 137
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.score.text++; unloadMovie (this); } }
Instance of Symbol 335 MovieClip in Frame 137
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.score.text++; unloadMovie (this); } }
Instance of Symbol 335 MovieClip in Frame 137
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.score.text++; unloadMovie (this); } }
Instance of Symbol 335 MovieClip in Frame 137
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.score.text++; unloadMovie (this); } }
Instance of Symbol 335 MovieClip in Frame 137
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.score.text++; unloadMovie (this); } }
Instance of Symbol 335 MovieClip in Frame 137
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.score.text++; unloadMovie (this); } }
Instance of Symbol 335 MovieClip in Frame 137
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.score.text++; unloadMovie (this); } }
Instance of Symbol 335 MovieClip in Frame 137
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.score.text++; unloadMovie (this); } }
Instance of Symbol 335 MovieClip in Frame 137
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.score.text++; unloadMovie (this); } }
Instance of Symbol 335 MovieClip in Frame 137
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.score.text++; unloadMovie (this); } }
Instance of Symbol 335 MovieClip in Frame 137
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.score.text++; unloadMovie (this); } }
Instance of Symbol 335 MovieClip in Frame 137
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.score.text++; unloadMovie (this); } }
Instance of Symbol 335 MovieClip in Frame 137
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.score.text++; unloadMovie (this); } }
Instance of Symbol 335 MovieClip in Frame 137
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.score.text++; unloadMovie (this); } }
Instance of Symbol 335 MovieClip in Frame 137
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.score.text++; unloadMovie (this); } }
Instance of Symbol 335 MovieClip in Frame 137
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.score.text++; unloadMovie (this); } }
Instance of Symbol 335 MovieClip in Frame 137
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.score.text++; unloadMovie (this); } }
Instance of Symbol 335 MovieClip in Frame 137
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.score.text++; unloadMovie (this); } }
Instance of Symbol 335 MovieClip in Frame 137
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.score.text++; unloadMovie (this); } }
Instance of Symbol 335 MovieClip in Frame 137
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.score.text++; unloadMovie (this); } }
Instance of Symbol 335 MovieClip in Frame 137
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.score.text++; unloadMovie (this); } }
Instance of Symbol 335 MovieClip in Frame 137
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.score.text++; unloadMovie (this); } }
Instance of Symbol 335 MovieClip in Frame 137
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.score.text++; unloadMovie (this); } }
Instance of Symbol 335 MovieClip in Frame 137
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.score.text++; unloadMovie (this); } }
Instance of Symbol 335 MovieClip in Frame 137
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.score.text++; unloadMovie (this); } }
Instance of Symbol 335 MovieClip in Frame 137
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.score.text++; unloadMovie (this); } }
Instance of Symbol 335 MovieClip in Frame 137
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.score.text++; unloadMovie (this); } }
Instance of Symbol 335 MovieClip in Frame 137
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.score.text++; unloadMovie (this); } }
Instance of Symbol 335 MovieClip in Frame 137
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.score.text++; unloadMovie (this); } }
Instance of Symbol 335 MovieClip in Frame 137
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.score.text++; unloadMovie (this); } }
Instance of Symbol 335 MovieClip in Frame 137
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.score.text++; unloadMovie (this); } }
Instance of Symbol 335 MovieClip in Frame 137
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.score.text++; unloadMovie (this); } }
Instance of Symbol 335 MovieClip in Frame 137
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.score.text++; unloadMovie (this); } }
Instance of Symbol 316 MovieClip "char" in Frame 137
onClipEvent (load) { jumping = false; speed = 0; healthX = _root.health._x; scoreX = _root.score._x; coinmX = _root.coinm._x; goalX = _root.goal._x; hpX = _root.hp._x; lifeX = _root.life._x; livesX = _root.lives._x; facesX = _root.faces._x; Xpos = this._x; Ypos = this._y; maxmove = 15; _root.maxshoottime = 100; } onClipEvent (enterFrame) { _x = (Xpos - _root._x); _root.score._x = scoreX - _root._x; _root.health._x = healthX - _root._x; _root.coinm._x = coinmX - _root._x; _root.goal._x = goalX - _root._x; _root.hp._x = hpX - _root._x; _root.life._x = lifeX - _root._x; _root.lives._x = livesX - _root._x; _root.faces._x = facesX - _root._x; if ((!_root.ground.hitTest(this._x, this._y, true)) && (!jumping)) { this._y = this._y + 6; } if (!_root.shooting) { _root.timer = 0; _root.mvsp = _xscale / 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.ljail.hitTest(this._x + 20, this._y, true))) { _root.health._x = _root.health._x + speed; _root.score._x = _root.score._x + speed; _root.coinm._x = _root.coinm._x + speed; _root.goal._x = _root.goal._x + speed; _root.hp._x = _root.hp._x + speed; _root.life._x = _root.life._x + speed; _root.lives._x = _root.lives._x + speed; _root.faces._x = _root.faces._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.rjail.hitTest(this._x - 20, this._y, true))) { _root.health._x = _root.health._x + speed; _root.score._x = _root.score._x + speed; _root.coinm._x = _root.coinm._x + speed; _root.goal._x = _root.goal._x + speed; _root.hp._x = _root.hp._x + speed; _root.life._x = _root.life._x + speed; _root.lives._x = _root.lives._x + speed; _root.faces._x = _root.faces._x + speed; this._x = this._x + speed; _root._x = _root._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(17)) { this.gotoAndStop("attack"); attacking = true; speed = 0; } else if (Key.isDown(32)) { if ((_root.gotgun == true) && (!_root.shooting)) { _root.attachMovie("bullet", "bulleter", 1, {_x:_root.char._x, _y:_root.char._y - 65}); _root.shooting = true; with (_root.bulleter) { onEnterFrame = function () { var _local1 = _root; if (_local1.timer > _local1.maxshoottime) { _local1.shooting = false; unloadMovie(this); } _local1.timer++; _x = _x + _local1.mvsp; }; } 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"); 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 (keyUp) { if (Key.getCode() == 17) { attacking = false; } }
Instance of Symbol 314 MovieClip in Frame 137
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.gotgun = true; unloadMovie (this); } }
Instance of Symbol 335 MovieClip in Frame 137
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.score.text++; unloadMovie (this); } }
Instance of Symbol 366 MovieClip "faces" in Frame 137
onClipEvent (enterFrame) { if (_root.health.text >= 100) { _root.faces.gotoAndStop(1); } if (_root.health.text <= 60) { _root.faces.gotoAndStop(2); } if (_root.health.text <= 30) { _root.faces.gotoAndStop(3); } if (_root.health.text <= 0) { _root.faces.gotoAndStop(4); } }
Instance of Symbol 368 MovieClip "ljail" in Frame 137
onClipEvent (enterFrame) { if (_root.score.text >= 39) { _root.ljail.gotoAndPlay("2"); } }
Instance of Symbol 369 MovieClip "rjail" in Frame 137
onClipEvent (enterFrame) { if (_root.score.text >= 39) { _root.rjail.gotoAndPlay("2"); } }
Instance of Symbol 373 MovieClip "babypanda" in Frame 137
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.gotoAndPlay("end"); } }
Instance of Symbol 375 MovieClip in Frame 137
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.health.text = 100; unloadMovie (this); } }
Instance of Symbol 377 MovieClip in Frame 137
onClipEvent (load) { enemyspeed = 2; enemystepsright = 0; enemystepsleft = 0; enemydir = "left"; } onClipEvent (enterFrame) { if (this.hitTest(_root.char.attackpoint)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } if (this.hitTest(_root.bulleter)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } if (this.hitTest(_root.char) && (!dead)) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 5; } } } if (!dead) { if (enemydir == "right") { enemystepsright = enemystepsright + 1; this._xscale = -100; this._x = this._x + enemyspeed; } else if (enemydir == "left") { enemystepsleft = enemystepsleft + 1; 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 377 MovieClip in Frame 137
onClipEvent (load) { enemyspeed = 2; enemystepsright = 0; enemystepsleft = 0; enemydir = "left"; } onClipEvent (enterFrame) { if (this.hitTest(_root.char.attackpoint)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } if (this.hitTest(_root.bulleter)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } if (this.hitTest(_root.char) && (!dead)) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 5; } } } if (!dead) { if (enemydir == "right") { enemystepsright = enemystepsright + 1; this._xscale = -100; this._x = this._x + enemyspeed; } else if (enemydir == "left") { enemystepsleft = enemystepsleft + 1; 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 377 MovieClip in Frame 137
onClipEvent (load) { enemyspeed = 2; enemystepsright = 0; enemystepsleft = 0; enemydir = "left"; } onClipEvent (enterFrame) { if (this.hitTest(_root.char.attackpoint)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } if (this.hitTest(_root.bulleter)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } if (this.hitTest(_root.char) && (!dead)) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 5; } } } if (!dead) { if (enemydir == "right") { enemystepsright = enemystepsright + 1; this._xscale = -100; this._x = this._x + enemyspeed; } else if (enemydir == "left") { enemystepsleft = enemystepsleft + 1; 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 377 MovieClip in Frame 137
onClipEvent (load) { enemyspeed = 2; enemystepsright = 0; enemystepsleft = 0; enemydir = "left"; } onClipEvent (enterFrame) { if (this.hitTest(_root.char.attackpoint)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } if (this.hitTest(_root.bulleter)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } if (this.hitTest(_root.char) && (!dead)) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 5; } } } if (!dead) { if (enemydir == "right") { enemystepsright = enemystepsright + 1; this._xscale = -100; this._x = this._x + enemyspeed; } else if (enemydir == "left") { enemystepsleft = enemystepsleft + 1; 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 377 MovieClip in Frame 137
onClipEvent (load) { enemyspeed = 2; enemystepsright = 0; enemystepsleft = 0; enemydir = "left"; } onClipEvent (enterFrame) { if (this.hitTest(_root.char.attackpoint)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } if (this.hitTest(_root.bulleter)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } if (this.hitTest(_root.char) && (!dead)) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 5; } } } if (!dead) { if (enemydir == "right") { enemystepsright = enemystepsright + 1; this._xscale = -100; this._x = this._x + enemyspeed; } else if (enemydir == "left") { enemystepsleft = enemystepsleft + 1; 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 377 MovieClip in Frame 137
onClipEvent (load) { enemyspeed = 2; enemystepsright = 0; enemystepsleft = 0; enemydir = "left"; } onClipEvent (enterFrame) { if (this.hitTest(_root.char.attackpoint)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } if (this.hitTest(_root.bulleter)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } if (this.hitTest(_root.char) && (!dead)) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 5; } } } if (!dead) { if (enemydir == "right") { enemystepsright = enemystepsright + 1; this._xscale = -100; this._x = this._x + enemyspeed; } else if (enemydir == "left") { enemystepsleft = enemystepsleft + 1; 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 377 MovieClip in Frame 137
onClipEvent (load) { enemyspeed = 2; enemystepsright = 0; enemystepsleft = 0; enemydir = "left"; } onClipEvent (enterFrame) { if (this.hitTest(_root.char.attackpoint)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } if (this.hitTest(_root.bulleter)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } if (this.hitTest(_root.char) && (!dead)) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root.health.text = _root.health.text - 5; } } } if (!dead) { if (enemydir == "right") { enemystepsright = enemystepsright + 1; this._xscale = -100; this._x = this._x + enemyspeed; } else if (enemydir == "left") { enemystepsleft = enemystepsleft + 1; this._xscale = 100; this._x = this._x - enemyspeed; } if (enemystepsright == 100) { enemystepsright = 0; enemydir = "left"; } else if (enemystepsleft == 100) { enemystepsleft = 0; enemydir = "right"; } } }
Frame 138
stop();
Symbol 73 Button
on (release) { if (_root.lives.text <= 0) { gotoAndPlay ("gameover"); } else { _root.health.text = 150; _root.dead = false; _root.panda.idle.gotoAndPlay(1); _root.idle = true; _root.lives.text = _root.lives.text - 1; } }
Symbol 76 MovieClip Frame 45
stop(); stop();
Symbol 76 MovieClip Frame 46
stop();
Symbol 81 MovieClip Frame 1
stop();
Symbol 81 MovieClip Frame 2
stop();
Symbol 81 MovieClip Frame 3
stop();
Symbol 81 MovieClip Frame 4
stop();
Symbol 81 MovieClip Frame 5
stop();
Symbol 81 MovieClip Frame 6
stop();
Symbol 97 MovieClip Frame 6
stop();
Symbol 98 MovieClip Frame 1
stop();
Symbol 98 MovieClip Frame 2
stop();
Symbol 107 MovieClip Frame 1
stop();
Symbol 107 MovieClip Frame 2
stop();
Symbol 114 Button
on (release) { gotoAndPlay ("instructions"); }
Symbol 134 Button
on (release) { _root.gotoAndPlay("levelone"); }
Symbol 142 MovieClip Frame 1
stop();
Symbol 142 MovieClip Frame 2
stop();
Instance of Symbol 146 MovieClip in Symbol 177 MovieClip Frame 1
/* no clip actions */
Instance of Symbol 78 MovieClip in Symbol 177 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.gotgun = true; unloadMovie (this); } }
Instance of Symbol 155 MovieClip in Symbol 177 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.score.text++; unloadMovie (this); } }
Instance of Symbol 165 MovieClip "faces" in Symbol 177 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.health.text >= 100) { _root.faces.gotoAndStop(1); } if (_root.health.text <= 60) { _root.faces.gotoAndStop(2); } if (_root.health.text <= 30) { _root.faces.gotoAndStop(3); } if (_root.health.text <= 0) { _root.faces.gotoAndStop(4); } }
Instance of Symbol 168 MovieClip "babypanda" in Symbol 177 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.gotoAndPlay("next"); } }
Symbol 182 Button
on (release) { _root.gotoAndPlay("levelone"); }
Symbol 210 MovieClip Frame 1
stop();
Symbol 210 MovieClip Frame 2
stop();
Symbol 212 MovieClip Frame 1
stop();
Symbol 212 MovieClip Frame 2
stop();
Symbol 226 Button
on (release) { if (_root.lives.text <= 0) { gotoAndPlay ("gameover"); } else { _root.health.text = 150; _root.dead = false; _root.panda.idle.gotoAndPlay(1); _root.idle = true; _root.lives.text = _root.lives.text - 1; } }
Symbol 229 MovieClip Frame 45
stop(); stop();
Symbol 229 MovieClip Frame 46
stop();
Symbol 233 MovieClip Frame 1
stop();
Symbol 233 MovieClip Frame 2
stop();
Symbol 233 MovieClip Frame 3
stop();
Symbol 233 MovieClip Frame 4
stop();
Symbol 233 MovieClip Frame 5
stop();
Symbol 233 MovieClip Frame 6
stop();
Symbol 241 MovieClip Frame 1
stop();
Symbol 241 MovieClip Frame 2
stop();
Symbol 276 MovieClip Frame 1
stop();
Symbol 276 MovieClip Frame 2
stop();
Symbol 277 MovieClip Frame 1
stop();
Symbol 277 MovieClip Frame 2
stop();
Symbol 310 Button
on (release) { if (_root.lives.text <= 0) { gotoAndPlay ("gameover"); } else { _root.health.text = 150; _root.dead = false; _root.panda.idle.gotoAndPlay(1); _root.idle = true; _root.lives.text = _root.lives.text - 1; } }
Symbol 313 MovieClip Frame 45
stop(); stop();
Symbol 313 MovieClip Frame 46
stop();
Symbol 316 MovieClip Frame 1
stop();
Symbol 316 MovieClip Frame 2
stop();
Symbol 316 MovieClip Frame 3
stop();
Symbol 316 MovieClip Frame 4
stop();
Symbol 316 MovieClip Frame 5
stop();
Symbol 316 MovieClip Frame 6
stop();
Instance of Symbol 339 MovieClip "deathground" in Symbol 354 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.health.text = _root.health.text - 100; } }
Symbol 368 MovieClip Frame 1
stop();
Symbol 368 MovieClip Frame 2
stop();
Symbol 369 MovieClip Frame 1
stop();
Symbol 369 MovieClip Frame 2
stop();
Symbol 377 MovieClip Frame 1
stop();
Symbol 377 MovieClip Frame 2
stop();

Library Items

Symbol 1 Sound [middle]
Symbol 2 Sound [evil]
Symbol 3 Sound [night]
Symbol 4 Sound [jungle]
Symbol 5 Sound [first]
Symbol 6 GraphicUsed by:11
Symbol 7 GraphicUsed by:10
Symbol 8 GraphicUsed by:10
Symbol 9 GraphicUsed by:10
Symbol 10 MovieClipUses:7 8 9Used by:11
Symbol 11 MovieClip [bullet]Uses:6 10
Symbol 12 GraphicUsed by:13 28 39
Symbol 13 MovieClipUses:12Used by:27 300 301 302 303 313 315
Symbol 14 GraphicUsed by:15 29 40
Symbol 15 MovieClipUses:14Used by:27 300 301 302 303 313 315
Symbol 16 GraphicUsed by:17 30 41
Symbol 17 MovieClipUses:16Used by:27 300 301 302 303 313 315
Symbol 18 GraphicUsed by:19
Symbol 19 MovieClipUses:18Used by:27 300 301 302 303 313 315
Symbol 20 GraphicUsed by:23
Symbol 21 ShapeTweeningUsed by:23
Symbol 22 GraphicUsed by:23
Symbol 23 MovieClipUses:20 21 22Used by:27 300 301 302 303 313 315
Symbol 24 GraphicUsed by:25 37 48
Symbol 25 MovieClipUses:24Used by:27 300 301 313 315
Symbol 26 GraphicUsed by:27 38 49
Symbol 27 MovieClip [life]Uses:13 15 17 19 23 25 26Used by:Timeline
Symbol 28 MovieClipUses:12Used by:38 216 217 218 219 229 232
Symbol 29 MovieClipUses:14Used by:38 216 217 218 219 229 232
Symbol 30 MovieClipUses:16Used by:38 216 217 218 219 229 232
Symbol 31 GraphicUsed by:32
Symbol 32 MovieClipUses:31Used by:38 216 217 218 219 229 232
Symbol 33 GraphicUsed by:36
Symbol 34 ShapeTweeningUsed by:36
Symbol 35 GraphicUsed by:36
Symbol 36 MovieClipUses:33 34 35Used by:38 216 217 218 219 229 232
Symbol 37 MovieClipUses:24Used by:38 216 217 229 232
Symbol 38 MovieClip [life]Uses:28 29 30 32 36 37 26Used by:Timeline
Symbol 39 MovieClipUses:12Used by:49 58 59 60 61 76 80
Symbol 40 MovieClipUses:14Used by:49 58 59 60 61 76 80
Symbol 41 MovieClipUses:16Used by:49 58 59 60 61 76 80
Symbol 42 GraphicUsed by:43
Symbol 43 MovieClipUses:42Used by:49 58 59 60 61 76 80
Symbol 44 GraphicUsed by:47
Symbol 45 ShapeTweeningUsed by:47
Symbol 46 GraphicUsed by:47
Symbol 47 MovieClipUses:44 45 46Used by:49 58 59 60 61 76 80
Symbol 48 MovieClipUses:24Used by:49 58 59 76 80
Symbol 49 MovieClip [life]Uses:39 40 41 43 47 48 26Used by:177  Timeline
Symbol 50 FontUsed by:51
Symbol 51 TextUses:50Used by:55
Symbol 52 GraphicUsed by:53
Symbol 53 MovieClipUses:52Used by:55
Symbol 54 GraphicUsed by:55
Symbol 55 MovieClipUses:51 53 54Used by:Timeline
Symbol 56 GraphicUsed by:Timeline
Symbol 57 GraphicUsed by:Timeline
Symbol 58 MovieClipUses:39 40 41 43 47 48Used by:81
Symbol 59 MovieClipUses:39 40 41 43 47 48Used by:81  Timeline
Symbol 60 MovieClipUses:39 40 41 43 47Used by:81  Timeline
Symbol 61 MovieClipUses:39 40 41 43 47Used by:81
Symbol 62 GraphicUsed by:76
Symbol 63 FontUsed by:64 65 74 75 151 153 174 175 176 207 208 213 221 222 227 228 283 285 286 287 291 305 306 311 312 356 358 359 367
Symbol 64 TextUses:63Used by:76
Symbol 65 TextUses:63Used by:76
Symbol 66 GraphicUsed by:73 226 310
Symbol 67 FontUsed by:68 70 223 224 307 308
Symbol 68 EditableTextUses:67Used by:73
Symbol 69 GraphicUsed by:73 226 310
Symbol 70 EditableTextUses:67Used by:73
Symbol 71 GraphicUsed by:72 73 225 226 309 310
Symbol 72 MovieClipUses:71Used by:73
Symbol 73 ButtonUses:66 68 69 70 72 71Used by:76
Symbol 74 TextUses:63Used by:76
Symbol 75 TextUses:63Used by:76
Symbol 76 MovieClipUses:39 40 41 43 47 48 62 64 65 73 74 75Used by:81
Symbol 77 GraphicUsed by:78
Symbol 78 MovieClipUses:77Used by:81 177  Timeline
Symbol 79 GraphicUsed by:80 232 315
Symbol 80 MovieClipUses:39 40 41 43 47 79 48Used by:81
Symbol 81 MovieClipUses:58 59 60 61 76 78 80Used by:Timeline
Symbol 82 GraphicUsed by:85
Symbol 83 GraphicUsed by:85
Symbol 84 GraphicUsed by:85
Symbol 85 MovieClipUses:82 83 84Used by:177  Timeline
Symbol 86 GraphicUsed by:95
Symbol 87 GraphicUsed by:88
Symbol 88 MovieClipUses:87Used by:95 97
Symbol 89 GraphicUsed by:92
Symbol 90 GraphicUsed by:91
Symbol 91 MovieClipUses:90Used by:92
Symbol 92 MovieClipUses:89 91Used by:95 97
Symbol 93 GraphicUsed by:95
Symbol 94 GraphicUsed by:95 97
Symbol 95 MovieClipUses:86 88 92 93 94Used by:98
Symbol 96 GraphicUsed by:97
Symbol 97 MovieClipUses:94 92 88 96Used by:98
Symbol 98 MovieClipUses:95 97Used by:177  Timeline
Symbol 99 GraphicUsed by:105 319
Symbol 100 GraphicUsed by:101 317
Symbol 101 MovieClipUses:100Used by:105
Symbol 102 GraphicUsed by:103 318
Symbol 103 MovieClipUses:102Used by:105
Symbol 104 GraphicUsed by:105 319
Symbol 105 MovieClipUses:99 101 103 104Used by:107
Symbol 106 GraphicUsed by:107
Symbol 107 MovieClipUses:105 106Used by:177  Timeline
Symbol 108 GraphicUsed by:109 279 371 400
Symbol 109 MovieClipUses:108Used by:168  Timeline
Symbol 110 FontUsed by:111 113 135 138 139 147 148 169 170 171 172 173 178 179 180 186 401 402 403
Symbol 111 TextUses:110Used by:114
Symbol 112 GraphicUsed by:114
Symbol 113 EditableTextUses:110Used by:114
Symbol 114 ButtonUses:111 112 113Used by:Timeline
Symbol 115 GraphicUsed by:133 134
Symbol 116 GraphicUsed by:133
Symbol 117 GraphicUsed by:133
Symbol 118 GraphicUsed by:133
Symbol 119 GraphicUsed by:133
Symbol 120 GraphicUsed by:133
Symbol 121 GraphicUsed by:133
Symbol 122 GraphicUsed by:133
Symbol 123 GraphicUsed by:133
Symbol 124 GraphicUsed by:133
Symbol 125 GraphicUsed by:133
Symbol 126 GraphicUsed by:133
Symbol 127 GraphicUsed by:133
Symbol 128 GraphicUsed by:133
Symbol 129 GraphicUsed by:133
Symbol 130 GraphicUsed by:133
Symbol 131 GraphicUsed by:133
Symbol 132 GraphicUsed by:133
Symbol 133 MovieClipUses:115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132Used by:134
Symbol 134 ButtonUses:133 115Used by:Timeline
Symbol 135 TextUses:110Used by:Timeline
Symbol 136 GraphicUsed by:Timeline
Symbol 137 GraphicUsed by:177
Symbol 138 TextUses:110Used by:177
Symbol 139 TextUses:110Used by:177
Symbol 140 GraphicUsed by:142
Symbol 141 GraphicUsed by:142
Symbol 142 MovieClipUses:140 141Used by:177
Symbol 143 GraphicUsed by:146
Symbol 144 GraphicUsed by:145 250
Symbol 145 MovieClipUses:144Used by:146
Symbol 146 MovieClipUses:143 145Used by:177
Symbol 147 TextUses:110Used by:177
Symbol 148 TextUses:110Used by:177
Symbol 149 GraphicUsed by:150 155 264 282 335 355
Symbol 150 MovieClipUses:149Used by:177  Timeline
Symbol 151 EditableTextUses:63Used by:152
Symbol 152 MovieClipUses:151Used by:177  Timeline
Symbol 153 EditableTextUses:63Used by:154
Symbol 154 MovieClipUses:153Used by:177  Timeline
Symbol 155 MovieClipUses:149Used by:177  Timeline
Symbol 156 GraphicUsed by:157 292 361
Symbol 157 MovieClipUses:156Used by:165
Symbol 158 GraphicUsed by:159
Symbol 159 MovieClipUses:158Used by:165
Symbol 160 GraphicUsed by:165 297 366
Symbol 161 GraphicUsed by:162 295 364
Symbol 162 MovieClipUses:161Used by:165
Symbol 163 GraphicUsed by:164 296 365
Symbol 164 MovieClipUses:163Used by:165
Symbol 165 MovieClipUses:157 159 160 162 164Used by:177  Timeline
Symbol 166 GraphicUsed by:168
Symbol 167 GraphicUsed by:168
Symbol 168 MovieClipUses:166 109 167Used by:177  Timeline
Symbol 169 TextUses:110Used by:177
Symbol 170 TextUses:110Used by:177
Symbol 171 TextUses:110Used by:177
Symbol 172 TextUses:110Used by:177
Symbol 173 TextUses:110Used by:177
Symbol 174 TextUses:63Used by:177
Symbol 175 TextUses:63Used by:177
Symbol 176 TextUses:63Used by:177
Symbol 177 MovieClipUses:137 138 85 98 107 139 142 146 147 78 148 150 152 154 155 165 49 168 169 170 171 172 173 174 175 176Used by:Timeline
Symbol 178 TextUses:110Used by:Timeline
Symbol 179 TextUses:110Used by:Timeline
Symbol 180 TextUses:110Used by:182
Symbol 181 GraphicUsed by:182
Symbol 182 ButtonUses:180 181Used by:Timeline
Symbol 183 GraphicUsed by:184 289 374
Symbol 184 MovieClipUses:183Used by:185
Symbol 185 MovieClipUses:184Used by:Timeline
Symbol 186 TextUses:110Used by:Timeline
Symbol 187 GraphicUsed by:Timeline
Symbol 188 GraphicUsed by:Timeline
Symbol 189 GraphicUsed by:190
Symbol 190 MovieClipUses:189Used by:Timeline
Symbol 191 GraphicUsed by:192
Symbol 192 MovieClipUses:191Used by:Timeline
Symbol 193 GraphicUsed by:206
Symbol 194 GraphicUsed by:195
Symbol 195 MovieClipUses:194Used by:206
Symbol 196 GraphicUsed by:197
Symbol 197 MovieClipUses:196Used by:206
Symbol 198 GraphicUsed by:199
Symbol 199 MovieClipUses:198Used by:206
Symbol 200 GraphicUsed by:201
Symbol 201 MovieClipUses:200Used by:206
Symbol 202 GraphicUsed by:203
Symbol 203 MovieClipUses:202Used by:206
Symbol 204 GraphicUsed by:205
Symbol 205 MovieClipUses:204Used by:206
Symbol 206 MovieClipUses:193 195 197 199 201 203 205Used by:Timeline
Symbol 207 EditableTextUses:63Used by:Timeline
Symbol 208 EditableTextUses:63Used by:Timeline
Symbol 209 GraphicUsed by:210
Symbol 210 MovieClipUses:209Used by:Timeline
Symbol 211 GraphicUsed by:212 274 277 369
Symbol 212 MovieClipUses:211Used by:Timeline
Symbol 213 EditableTextUses:63Used by:Timeline
Symbol 214 GraphicUsed by:Timeline
Symbol 215 GraphicUsed by:243
Symbol 216 MovieClipUses:28 29 30 32 36 37Used by:233
Symbol 217 MovieClipUses:28 29 30 32 36 37Used by:233
Symbol 218 MovieClipUses:28 29 30 32 36Used by:233
Symbol 219 MovieClipUses:28 29 30 32 36Used by:233
Symbol 220 GraphicUsed by:229
Symbol 221 TextUses:63Used by:229
Symbol 222 TextUses:63Used by:229
Symbol 223 EditableTextUses:67Used by:226
Symbol 224 EditableTextUses:67Used by:226
Symbol 225 MovieClipUses:71Used by:226
Symbol 226 ButtonUses:66 223 69 224 225 71Used by:229
Symbol 227 TextUses:63Used by:229
Symbol 228 TextUses:63Used by:229
Symbol 229 MovieClipUses:28 29 30 32 36 37 220 221 222 226 227 228Used by:233
Symbol 230 GraphicUsed by:231 314
Symbol 231 MovieClipUses:230Used by:233  Timeline
Symbol 232 MovieClipUses:28 29 30 32 36 79 37Used by:233
Symbol 233 MovieClipUses:216 217 218 219 229 231 232Used by:243  Timeline
Symbol 234 GraphicUsed by:239
Symbol 235 GraphicUsed by:239
Symbol 236 GraphicUsed by:239
Symbol 237 GraphicUsed by:239
Symbol 238 GraphicUsed by:239
Symbol 239 MovieClipUses:234 235 236 237 238Used by:241
Symbol 240 GraphicUsed by:241
Symbol 241 MovieClipUses:239 240Used by:243  Timeline
Symbol 242 GraphicUsed by:243
Symbol 243 MovieClipUses:215 233 241 242Used by:Timeline
Symbol 244 GraphicUsed by:247
Symbol 245 GraphicUsed by:246
Symbol 246 MovieClipUses:245Used by:247
Symbol 247 MovieClipUses:244 246Used by:Timeline
Symbol 248 GraphicUsed by:262
Symbol 249 GraphicUsed by:262
Symbol 250 MovieClipUses:144Used by:262
Symbol 251 GraphicUsed by:262
Symbol 252 GraphicUsed by:262
Symbol 253 GraphicUsed by:262
Symbol 254 GraphicUsed by:262
Symbol 255 GraphicUsed by:262
Symbol 256 GraphicUsed by:262
Symbol 257 GraphicUsed by:262
Symbol 258 GraphicUsed by:262
Symbol 259 GraphicUsed by:262
Symbol 260 GraphicUsed by:262
Symbol 261 GraphicUsed by:262
Symbol 262 MovieClipUses:248 249 250 251 252 253 254 255 256 257 258 259 260 261Used by:Timeline
Symbol 263 GraphicUsed by:Timeline
Symbol 264 MovieClipUses:149Used by:Timeline
Symbol 265 GraphicUsed by:266
Symbol 266 MovieClipUses:265Used by:269 270
Symbol 267 GraphicUsed by:268
Symbol 268 MovieClipUses:267Used by:269 270
Symbol 269 MovieClipUses:266 268Used by:Timeline
Symbol 270 MovieClipUses:268 266Used by:Timeline
Symbol 271 GraphicUsed by:274
Symbol 272 GraphicUsed by:273
Symbol 273 MovieClipUses:272Used by:274
Symbol 274 MovieClipUses:271 273 211Used by:Timeline
Symbol 275 GraphicUsed by:276 368
Symbol 276 MovieClipUses:275Used by:Timeline
Symbol 277 MovieClipUses:211Used by:Timeline
Symbol 278 GraphicUsed by:281
Symbol 279 MovieClipUses:108Used by:281
Symbol 280 GraphicUsed by:281
Symbol 281 MovieClipUses:278 279 280Used by:Timeline
Symbol 282 MovieClipUses:149Used by:Timeline
Symbol 283 TextUses:63Used by:284
Symbol 284 MovieClipUses:283Used by:Timeline
Symbol 285 EditableTextUses:63Used by:Timeline
Symbol 286 EditableTextUses:63Used by:Timeline
Symbol 287 TextUses:63Used by:288 360
Symbol 288 MovieClipUses:287Used by:Timeline
Symbol 289 MovieClipUses:183Used by:290
Symbol 290 MovieClipUses:289Used by:Timeline
Symbol 291 EditableTextUses:63Used by:Timeline
Symbol 292 MovieClipUses:156Used by:297
Symbol 293 GraphicUsed by:294
Symbol 294 MovieClipUses:293Used by:297
Symbol 295 MovieClipUses:161Used by:297
Symbol 296 MovieClipUses:163Used by:297
Symbol 297 MovieClipUses:292 294 160 295 296Used by:Timeline
Symbol 298 GraphicUsed by:Timeline
Symbol 299 GraphicUsed by:Timeline
Symbol 300 MovieClipUses:13 15 17 19 23 25Used by:316
Symbol 301 MovieClipUses:13 15 17 19 23 25Used by:316
Symbol 302 MovieClipUses:13 15 17 19 23Used by:316
Symbol 303 MovieClipUses:13 15 17 19 23Used by:316
Symbol 304 GraphicUsed by:313
Symbol 305 TextUses:63Used by:313
Symbol 306 TextUses:63Used by:313
Symbol 307 EditableTextUses:67Used by:310
Symbol 308 EditableTextUses:67Used by:310
Symbol 309 MovieClipUses:71Used by:310
Symbol 310 ButtonUses:66 307 69 308 309 71Used by:313
Symbol 311 TextUses:63Used by:313
Symbol 312 TextUses:63Used by:313
Symbol 313 MovieClipUses:13 15 17 19 23 25 304 305 306 310 311 312Used by:316
Symbol 314 MovieClipUses:230Used by:316  Timeline
Symbol 315 MovieClipUses:13 15 17 19 23 79 25Used by:316
Symbol 316 MovieClipUses:300 301 302 303 313 314 315Used by:Timeline
Symbol 317 MovieClipUses:100Used by:319
Symbol 318 MovieClipUses:102Used by:319
Symbol 319 MovieClipUses:99 317 318 104Used by:377  Timeline
Symbol 320 GraphicUsed by:Timeline
Symbol 321 GraphicUsed by:Timeline
Symbol 322 GraphicUsed by:323
Symbol 323 MovieClipUses:322Used by:Timeline
Symbol 324 GraphicUsed by:329
Symbol 325 GraphicUsed by:326
Symbol 326 MovieClipUses:325Used by:329 330
Symbol 327 GraphicUsed by:328
Symbol 328 MovieClipUses:327Used by:329 330
Symbol 329 MovieClipUses:324 326 328Used by:330
Symbol 330 MovieClipUses:329 328 326Used by:Timeline
Symbol 331 GraphicUsed by:332
Symbol 332 MovieClipUses:331Used by:Timeline
Symbol 333 GraphicUsed by:334
Symbol 334 MovieClipUses:333Used by:Timeline
Symbol 335 MovieClipUses:149Used by:Timeline
Symbol 336 GraphicUsed by:Timeline
Symbol 337 GraphicUsed by:354
Symbol 338 GraphicUsed by:339
Symbol 339 MovieClipUses:338Used by:354
Symbol 340 GraphicUsed by:341
Symbol 341 MovieClipUses:340Used by:354
Symbol 342 GraphicUsed by:343
Symbol 343 MovieClipUses:342Used by:354
Symbol 344 GraphicUsed by:345
Symbol 345 MovieClipUses:344Used by:354
Symbol 346 GraphicUsed by:347
Symbol 347 MovieClipUses:346Used by:354
Symbol 348 GraphicUsed by:349
Symbol 349 MovieClipUses:348Used by:354
Symbol 350 GraphicUsed by:351
Symbol 351 MovieClipUses:350Used by:354
Symbol 352 GraphicUsed by:353
Symbol 353 MovieClipUses:352Used by:354
Symbol 354 MovieClipUses:337 339 341 343 345 347 349 351 353Used by:Timeline
Symbol 355 MovieClipUses:149Used by:Timeline
Symbol 356 TextUses:63Used by:357
Symbol 357 MovieClipUses:356Used by:Timeline
Symbol 358 EditableTextUses:63Used by:Timeline
Symbol 359 EditableTextUses:63Used by:Timeline
Symbol 360 MovieClipUses:287Used by:Timeline
Symbol 361 MovieClipUses:156Used by:366
Symbol 362 GraphicUsed by:363
Symbol 363 MovieClipUses:362Used by:366
Symbol 364 MovieClipUses:161Used by:366
Symbol 365 MovieClipUses:163Used by:366
Symbol 366 MovieClipUses:361 363 160 364 365Used by:Timeline
Symbol 367 EditableTextUses:63Used by:Timeline
Symbol 368 MovieClipUses:275Used by:Timeline
Symbol 369 MovieClipUses:211Used by:Timeline
Symbol 370 GraphicUsed by:373
Symbol 371 MovieClipUses:108Used by:373
Symbol 372 GraphicUsed by:373
Symbol 373 MovieClipUses:370 371 372Used by:Timeline
Symbol 374 MovieClipUses:183Used by:375
Symbol 375 MovieClipUses:374Used by:Timeline
Symbol 376 GraphicUsed by:377
Symbol 377 MovieClipUses:319 376Used by:Timeline
Symbol 378 GraphicUsed by:Timeline
Symbol 379 GraphicUsed by:Timeline
Symbol 380 GraphicUsed by:399
Symbol 381 GraphicUsed by:399
Symbol 382 GraphicUsed by:399
Symbol 383 GraphicUsed by:399
Symbol 384 GraphicUsed by:399
Symbol 385 GraphicUsed by:399
Symbol 386 GraphicUsed by:399
Symbol 387 GraphicUsed by:399
Symbol 388 GraphicUsed by:399
Symbol 389 GraphicUsed by:399
Symbol 390 GraphicUsed by:399
Symbol 391 GraphicUsed by:399
Symbol 392 GraphicUsed by:399
Symbol 393 GraphicUsed by:399
Symbol 394 GraphicUsed by:399
Symbol 395 GraphicUsed by:399
Symbol 396 GraphicUsed by:399
Symbol 397 GraphicUsed by:399
Symbol 398 GraphicUsed by:399
Symbol 399 MovieClipUses:380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398Used by:Timeline
Symbol 400 MovieClipUses:108Used by:Timeline
Symbol 401 TextUses:110Used by:Timeline
Symbol 402 TextUses:110Used by:Timeline
Symbol 403 TextUses:110Used by:Timeline

Instance Names

"preloader"Frame 1Symbol 55 MovieClip
"char"Frame 3Symbol 81 MovieClip
"howto"Frame 4Symbol 177 MovieClip
"coinm"Frame 5Symbol 150 MovieClip
"goal"Frame 5Symbol 152 MovieClip
"babypanda"Frame 5Symbol 168 MovieClip
"leftblock"Frame 5Symbol 190 MovieClip
"rightblock"Frame 5Symbol 192 MovieClip
"ground"Frame 5Symbol 206 MovieClip
"health"Frame 5Symbol 207 EditableText
"char"Frame 5Symbol 81 MovieClip
"score"Frame 5Symbol 208 EditableText
"ljail"Frame 5Symbol 210 MovieClip
"rjail"Frame 5Symbol 212 MovieClip
"hp"Frame 5Symbol 154 MovieClip
"faces"Frame 5Symbol 165 MovieClip
"life"Frame 5Symbol 49 MovieClip [life]
"lives"Frame 5Symbol 213 EditableText
"preloading"Frame 6Symbol 243 MovieClip
"char"Frame 71Symbol 233 MovieClip
"leftblock"Frame 71Symbol 269 MovieClip
"rightblock"Frame 71Symbol 270 MovieClip
"ground"Frame 71Symbol 274 MovieClip
"ljail"Frame 71Symbol 276 MovieClip
"rjail"Frame 71Symbol 277 MovieClip
"babypanda"Frame 71Symbol 281 MovieClip
"coinm"Frame 71Symbol 282 MovieClip
"goal"Frame 71Symbol 284 MovieClip
"health"Frame 71Symbol 285 EditableText
"score"Frame 71Symbol 286 EditableText
"hp"Frame 71Symbol 288 MovieClip
"life"Frame 71Symbol 38 MovieClip [life]
"lives"Frame 71Symbol 291 EditableText
"faces"Frame 71Symbol 297 MovieClip
"char"Frame 72Symbol 316 MovieClip
"char"Frame 137Symbol 316 MovieClip
"ground"Frame 137Symbol 354 MovieClip
"coinm"Frame 137Symbol 355 MovieClip
"goal"Frame 137Symbol 357 MovieClip
"health"Frame 137Symbol 358 EditableText
"score"Frame 137Symbol 359 EditableText
"hp"Frame 137Symbol 360 MovieClip
"faces"Frame 137Symbol 366 MovieClip
"life"Frame 137Symbol 27 MovieClip [life]
"lives"Frame 137Symbol 367 EditableText
"ljail"Frame 137Symbol 368 MovieClip
"rjail"Frame 137Symbol 369 MovieClip
"babypanda"Frame 137Symbol 373 MovieClip
"bar"Symbol 55 MovieClip Frame 1Symbol 53 MovieClip
"full"Symbol 165 MovieClip Frame 1Symbol 157 MovieClip
"upthree"Symbol 165 MovieClip Frame 2Symbol 159 MovieClip
"lowthird"Symbol 165 MovieClip Frame 3Symbol 162 MovieClip
"death"Symbol 165 MovieClip Frame 4Symbol 164 MovieClip
"coinm"Symbol 177 MovieClip Frame 1Symbol 150 MovieClip
"goal"Symbol 177 MovieClip Frame 1Symbol 152 MovieClip
"hp"Symbol 177 MovieClip Frame 1Symbol 154 MovieClip
"faces"Symbol 177 MovieClip Frame 1Symbol 165 MovieClip
"life"Symbol 177 MovieClip Frame 1Symbol 49 MovieClip [life]
"babypanda"Symbol 177 MovieClip Frame 1Symbol 168 MovieClip
"char2"Symbol 243 MovieClip Frame 1Symbol 233 MovieClip
"char"Symbol 243 MovieClip Frame 65Symbol 233 MovieClip
"full"Symbol 297 MovieClip Frame 1Symbol 292 MovieClip
"upthree"Symbol 297 MovieClip Frame 2Symbol 294 MovieClip
"lowthird"Symbol 297 MovieClip Frame 3Symbol 295 MovieClip
"death"Symbol 297 MovieClip Frame 4Symbol 296 MovieClip
"deathground"Symbol 354 MovieClip Frame 1Symbol 339 MovieClip
"full"Symbol 366 MovieClip Frame 1Symbol 361 MovieClip
"upthree"Symbol 366 MovieClip Frame 2Symbol 363 MovieClip
"lowthird"Symbol 366 MovieClip Frame 3Symbol 364 MovieClip
"death"Symbol 366 MovieClip Frame 4Symbol 365 MovieClip

Special Tags

ExportAssets (56)Timeline Frame 1Symbol 1 as "middle"
ExportAssets (56)Timeline Frame 1Symbol 2 as "evil"
ExportAssets (56)Timeline Frame 1Symbol 3 as "night"
ExportAssets (56)Timeline Frame 1Symbol 4 as "jungle"
ExportAssets (56)Timeline Frame 1Symbol 5 as "first"
ExportAssets (56)Timeline Frame 1Symbol 11 as "bullet"
ExportAssets (56)Timeline Frame 1Symbol 27 as "life"
ExportAssets (56)Timeline Frame 1Symbol 38 as "life"
ExportAssets (56)Timeline Frame 1Symbol 49 as "life"
ExportAssets (56)Timeline Frame 4Symbol 49 as "life"
ExportAssets (56)Timeline Frame 5Symbol 49 as "life"
ExportAssets (56)Timeline Frame 71Symbol 38 as "life"
ExportAssets (56)Timeline Frame 137Symbol 27 as "life"

Labels

"begin"Frame 3
"instructions"Frame 4
"levelone"Frame 5
"leveltwo"Frame 6
"start"Frame 71
"levelthree"Frame 72
"end"Frame 138
"gameover"Symbol 76 MovieClip Frame 46
"idle"Symbol 81 MovieClip Frame 1
"run"Symbol 81 MovieClip Frame 2
"jump"Symbol 81 MovieClip Frame 3
"attack"Symbol 81 MovieClip Frame 4
"dead"Symbol 81 MovieClip Frame 5
"shoot"Symbol 81 MovieClip Frame 6
"walk"Symbol 98 MovieClip Frame 1
"dead"Symbol 98 MovieClip Frame 2
"walk"Symbol 107 MovieClip Frame 1
"dead"Symbol 107 MovieClip Frame 2
"walk"Symbol 142 MovieClip Frame 1
"dead"Symbol 142 MovieClip Frame 2
"start"Symbol 177 MovieClip Frame 1
"gameover"Symbol 229 MovieClip Frame 46
"idle"Symbol 233 MovieClip Frame 1
"run"Symbol 233 MovieClip Frame 2
"jump"Symbol 233 MovieClip Frame 3
"attack"Symbol 233 MovieClip Frame 4
"dead"Symbol 233 MovieClip Frame 5
"shoot"Symbol 233 MovieClip Frame 6
"walk"Symbol 241 MovieClip Frame 1
"dead"Symbol 241 MovieClip Frame 2
"gameover"Symbol 313 MovieClip Frame 46
"idle"Symbol 316 MovieClip Frame 1
"run"Symbol 316 MovieClip Frame 2
"jump"Symbol 316 MovieClip Frame 3
"attack"Symbol 316 MovieClip Frame 4
"dead"Symbol 316 MovieClip Frame 5
"shoot"Symbol 316 MovieClip Frame 6
"walk"Symbol 377 MovieClip Frame 1
"dead"Symbol 377 MovieClip Frame 2




http://swfchan.com/7/30164/info.shtml
Created: 19/5 -2019 12:43:12 Last modified: 19/5 -2019 12:43:12 Server time: 10/05 -2024 13:58:39