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

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

Droplet.swf

This is the info page for
Flash #73959

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


Text
wall1onleft

blue bounce off,
black destroy,
red thing = boost

DROPLET

P L A Y

I N S T R U C T I O N S

C R E D I T S

l e v e l  c r e a t o r

COMPLETE LEVEL 8
TO UNLOCK

Q

SBB and RealFaction of Newgrounds
for music.
Everything else - Cherban.

BACK

BACK

YOU CONTROL DROPLET
WITH THE ARROW KEYS

YOU BOUNCE OFF BLUE WALLS

GO TO THIS TO COMPLETE
THE LEVEL

BOOSTS WILL PUSH
YOU IN A CERTAIN DIRECTION

WATER WILL
SLOW YOU DOWN

ü

1

2

AVOID ENEMIES AND
DANGEROUS-LOOKING WALLS

VARIOUS COLOUR POWERUPS
CAUSE DIFFIRENT EFFECTS

PORTALS WILL TRANSPORT YOU TO
THE OTHER PORTAL OF THE SAME COLOUR

BUTTONS OPEN DOORS WHICH ARE THE
SAME COLOUR AS THEM

1

music

2

S T A R T

P A S S W O R D :

go!

lives :

<p align="center"></p>

ü

L E V E L  1

<p align="center"></p>

<p align="center"></p>

lives :

L E V E L  2

PASSWORD - metalstorm

<p align="center"></p>

<p align="center"></p>

L E V E L  3

PASSWORD - superflonic

<p align="center"></p>

<p align="center"></p>

L E V E L  4

PASSWORD - mechabloby

<p align="center"></p>

<p align="center"></p>

L E V E L  5

PASSWORD - rozner

<p align="center"></p>

<p align="center"></p>

L E V E L  6

PASSWORD - phoenixxx

<p align="center"></p>

<p align="center"></p>

L E V E L  7

PASSWORD - lostchances

<p align="center"></p>

<p align="center"></p>

L E V E L  8

PASSWORD - gagsy

http://spamt
heweb.com/
ul/upload/07
1007/71524_
bubble.php

<p align="center"></p>

Flash V-Cam

onClipEvent (enterFrame) {
if (_root.hero.hitTest(_root.funky)) {
xspeed = xspeed*1.15
yspeed = yspeed*1.15
}
}

<p align="center"></p>

L E V E L  9

PASSWORD - rummy

TO UNLOCK LEVEL CREATOR,
IN THE MAIN MENU CLICK THE
MIDDLE PART OF THE 'D' IN 'DROPLET'

<p align="center"></p>

L E V E L  10

PASSWORD - anlzingus

<p align="center"></p>

<p align="center"></p>

<p align="center"></p>

L E V E L  11

PASSWORD - sbb

<p align="center"></p>

<p align="center"></p>

L E V E L  12

PASSWORD - rfaction

<p align="center"></p>

<p align="center"></p>

MENU

<p align="center"></p>

CONGRATULATIONS

YOU HAVE
COMPLETED DROPLET

<p align="center"></p>

GAME OVER

MENU

LEVEL
CREATOR

DRAG THE ITEMS TO FORM THE LEVEL.
WHEN YOU PLAY THE LEVEL, THE CAMERA WILL
ZOOM IN.
LARGE PORTALS LEAD TO SMALLER PORTALS.
DROPLET WILL START AT THE ARROW,
BUT THE GREEN CIRCLE IS WHERE IT WILL RESPAWN
YOU CAN STILL MOVE STUFF AFTER YOU START THE LEVEL
DROPLET WILL MOVE A LOT FASTER IN YOUR CREATED
LEVEL, WATCH OUT!

START

<p align="center"></p>

portals

spiked walls

bounce walls

disappearing
spiked walls

enemies

misc.

go

menu

<p align="center"></p>

back to level creator

menu

ActionScript [AS1/AS2]

Frame 1
function itemHandler1(obj, item) { getURL ("http://www.newgrounds.com/portal/viewer.php?id=406274&key=NcFxFaXzJtOzNxbStiNGY4OTkxMWYzQjk5NjIrNV9xOWIzMjE7Qjk1QlYxOzJWODFiMzIwZjErVnFfOTQxbTk5NDgzODc3OQ%3D%3D"); } var myMenu = new ContextMenu(); myMenu.hideBuiltInItems(); myMenu.customItems.push(new ContextMenuItem("Bored?", itemHandler1)); _root.menu = myMenu; var lives = 8; MochiAd.showPreGameAd({id:"3feeeca5683383ed", res:"800x600"}); stop();
Frame 2
Instance of Symbol 24 MovieClip in Frame 2
on (release) { _root.gotoAndPlay(1); }
Instance of Symbol 33 MovieClip "hero" in Frame 2
onClipEvent (load) { yspeed = 0; xspeed = 0; power = 0.65; gravity = 0.09; upconstant = 0.75; friction = 0.99; } onClipEvent (enterFrame) { if (Key.isDown(37)) { xspeed = xspeed - power; } if (Key.isDown(39)) { xspeed = xspeed + power; } if (Key.isDown(38)) { yspeed = yspeed - (power * upconstant); } if (Key.isDown(40)) { yspeed = yspeed + (power * upconstant); } yspeed = yspeed + gravity; _y = (_y + yspeed); _x = (_x + xspeed); _rotation = (_rotation + xspeed); if (_root.wall.hitTest(_x, _y, true)) { xspeed = -5; yspeed = 0; if (_root.wall2.hitTest(_x, _y, true)) { xspeed = 5; yspeed = 0; } } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.wall3)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.wall2)) { xspeed = 5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.right1)) { xspeed = 25; yspeed = 0; } }
Frame 30
attachMovie("newmouse", "newmouse", _root.getNextHighestDepth()); attachMovie("circle", "circle", _root.getNextHighestDepth(), {_x:250, _y:200}); attachMovie("crosshair", "crosshair", _root.getNextHighestDepth()); attachMovie("ball", "ball", _root.getNextHighestDepth()); Mouse.hide(); friction = 0.2; speed_scale = 0.8; xspeed = 0; yspeed = 0; newmouse.onEnterFrame = function () { this._x = _root._xmouse; this._y = _root._ymouse; }; crosshair.onEnterFrame = function () { this._x = _root._xmouse; this._y = _root._ymouse; dist_x = this._x - circle._x; dist_y = this._y - circle._y; distance = Math.sqrt((dist_x * dist_x) + (dist_y * dist_y)); if (distance > 45) { angle = Math.atan2(dist_y, dist_x); this._x = 250 + (45 * Math.cos(angle)); this._y = 200 + (45 * Math.sin(angle)); } }; ball.onEnterFrame = function () { dist_x = (crosshair._x - this._x) * speed_scale; dist_y = (crosshair._y - this._y) * speed_scale; xspeed = xspeed + dist_x; yspeed = yspeed + dist_y; xspeed = xspeed * friction; yspeed = yspeed * friction; this._x = this._x + xspeed; this._y = this._y + yspeed; }; stop();
Instance of Symbol 38 MovieClip in Frame 30
on (rollOver) { this.gotoAndPlay(2); } on (rollOut) { this.gotoAndPlay(1); } on (release) { _root.gotoAndPlay(68); }
Instance of Symbol 40 MovieClip in Frame 30
on (rollOver) { this.gotoAndPlay(2); } on (rollOut) { this.gotoAndPlay(1); } on (release) { _root.gotoAndPlay(51); }
Instance of Symbol 42 MovieClip in Frame 30
on (rollOver) { this.gotoAndPlay(2); } on (rollOut) { this.gotoAndPlay(1); } on (release) { _root.gotoAndPlay(31); }
Instance of Symbol 44 MovieClip in Frame 30
on (press) { _root.levedit1.gotoAndStop(2); }
Instance of Symbol 9 MovieClip "ball" in Frame 30
/* no clip actions */
Instance of Symbol 42 MovieClip in Frame 31
on (rollOver) { this.gotoAndPlay(2); } on (rollOut) { this.gotoAndPlay(1); } on (release) { _root.gotoAndPlay(31); }
Instance of Symbol 42 MovieClip in Frame 49
on (rollOver) { this.gotoAndPlay(2); } on (rollOut) { this.gotoAndPlay(1); } on (release) { _root.gotoAndStop(31); }
Frame 50
stop();
Instance of Symbol 58 MovieClip in Frame 50
on (release) { _root.gotoAndPlay(16); } on (rollOver) { this.gotoAndStop(2); } on (rollOut) { this.gotoAndStop(1); }
Instance of Symbol 40 MovieClip in Frame 51
on (rollOver) { this.gotoAndPlay(2); } on (rollOut) { this.gotoAndPlay(1); } on (release) { _root.gotoAndPlay(51); }
Instance of Symbol 40 MovieClip in Frame 65
on (rollOver) { this.gotoAndPlay(2); } on (rollOut) { this.gotoAndPlay(1); } on (release) { gotoAndPlay (51); }
Frame 66
stop();
Instance of Symbol 58 MovieClip in Frame 66
on (release) { _root.gotoAndPlay(16); } on (rollOver) { this.gotoAndStop(2); } on (rollOut) { this.gotoAndStop(1); }
Instance of Symbol 81 MovieClip in Frame 66
on (rollOver) { this.gotoAndPlay(2); } on (rollOut) { this.gotoAndPlay(1); } on (release) { instructions.gotoAndPlay(1); }
Instance of Symbol 85 MovieClip in Frame 66
on (release) { _root.gotoAndPlay(66); }
Instance of Symbol 87 MovieClip in Frame 66
on (release) { _root.gotoAndPlay(67); }
Frame 67
stop();
Instance of Symbol 91 MovieClip "switch1" in Frame 67
onClipEvent (enterFrame) { if ((!touched) && (_root.hero.hitTest(_root.switch1))) { touched = true; _root.switchwall1.gotoAndPlay(2); _root.switch1.gotoAndStop(2); } }
Instance of Symbol 58 MovieClip in Frame 67
on (release) { _root.gotoAndPlay(16); } on (rollOver) { this.gotoAndStop(2); } on (rollOut) { this.gotoAndStop(1); }
Instance of Symbol 87 MovieClip in Frame 67
on (release) { _root.gotoAndStop(67); }
Instance of Symbol 38 MovieClip in Frame 68
on (rollOver) { this.gotoAndPlay(2); } on (rollOut) { this.gotoAndPlay(1); }
Frame 82
stop();
Instance of Symbol 130 MovieClip in Frame 82
on (rollOver) { this.gotoAndPlay(2); } on (rollOut) { this.gotoAndPlay(1); } on (release) { _root.gotoAndStop(83); }
Frame 83
stop();
Instance of Symbol 139 MovieClip in Frame 83
on (rollOver) { this.gotoAndPlay(1); } on (rollOut) { this.gotoAndPlay(2); } on (release) { _root.nextFrame(); }
Frame 84
stop();
Instance of Symbol 33 MovieClip "hero" in Frame 84
onClipEvent (load) { yspeed = 0; xspeed = 0; power = 0.65; gravity = 0.09; upconstant = 0.75; friction = 0.99; } onClipEvent (enterFrame) { if (Key.isDown(37)) { xspeed = xspeed - power; } if (Key.isDown(39)) { xspeed = xspeed + power; } if (Key.isDown(38)) { yspeed = yspeed - (power * upconstant); } if (Key.isDown(40)) { yspeed = yspeed + (power * upconstant); } yspeed = yspeed + gravity; _y = (_y + yspeed); _x = (_x + xspeed); _rotation = (_rotation + xspeed); if (_root.wall.hitTest(_x, _y, true)) { xspeed = -5; yspeed = 0; if (_root.wall2.hitTest(_x, _y, true)) { xspeed = 5; yspeed = 0; } } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.enemy)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.switchwall1)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.enemy3)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.rightplatform)) { xspeed = -5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.enemy2)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.wall2)) { xspeed = 5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.righta)) { xspeed = 25; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.right2)) { xspeed = 25; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.right3)) { xspeed = 25; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.upwall)) { xspeed = 0; yspeed = 5; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.downwall)) { xspeed = 0; yspeed = -5; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.rightwall)) { xspeed = -5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.leftwall)) { xspeed = 5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.upplatform)) { xspeed = 0; yspeed = -5; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.downplatform)) { xspeed = 0; yspeed = 5; } } onClipEvent (enterFrame) { if (_root.portal1.hitTest(this)) { xspeed = 0; yspeed = 0; _x = _root.portal2._x; _y = _root.portal2._y; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.upplatform2)) { xspeed = 0; yspeed = -5; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.downplatform2)) { xspeed = 0; yspeed = 5; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.powerup)) { this.gotoAndStop(25); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.funky)) { xspeed = xspeed * 0.8; yspeed = yspeed * 0.8; } }
Instance of Symbol 67 MovieClip "endlevel1" in Frame 84
onClipEvent (enterFrame) { if ((!touched) && (_root.hero.hitTest(_root.endlevel1))) { touched = true; this.gotoAndPlay(2); } }
Frame 85
stop(); onEnterFrame = function () { if (_root.lives == 0) { _root.gotoAndStop(108); } };
Instance of Symbol 139 MovieClip in Frame 85
on (rollOver) { this.gotoAndPlay(1); } on (rollOut) { this.gotoAndPlay(2); } on (release) { _root.nextFrame(); }
Frame 86
stop(); onEnterFrame = function () { if (_root.lives == 0) { _root.gotoAndStop(108); } };
Instance of Symbol 33 MovieClip "hero" in Frame 86
onClipEvent (load) { yspeed = 0; xspeed = 0; power = 0.65; gravity = 0.09; upconstant = 0.75; friction = 0.99; } onClipEvent (enterFrame) { if (Key.isDown(37)) { xspeed = xspeed - power; } if (Key.isDown(39)) { xspeed = xspeed + power; } if (Key.isDown(38)) { yspeed = yspeed - (power * upconstant); } if (Key.isDown(40)) { yspeed = yspeed + (power * upconstant); } yspeed = yspeed + gravity; _y = (_y + yspeed); _x = (_x + xspeed); _rotation = (_rotation + xspeed); if (_root.wall.hitTest(_x, _y, true)) { xspeed = -5; yspeed = 0; if (_root.wall2.hitTest(_x, _y, true)) { xspeed = 5; yspeed = 0; } } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.enemy)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.switchwall1)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.enemy3)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.rightplatform)) { xspeed = -5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.enemy2)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.wall2)) { xspeed = 5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.righta)) { xspeed = 25; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.right2)) { xspeed = 25; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.right3)) { xspeed = 25; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.upwall)) { xspeed = 0; yspeed = 5; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.downwall)) { xspeed = 0; yspeed = -5; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.rightwall)) { xspeed = -5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.leftwall)) { xspeed = 5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.upplatform)) { xspeed = 0; yspeed = -5; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.downplatform)) { xspeed = 0; yspeed = 5; } } onClipEvent (enterFrame) { if (_root.portal1.hitTest(this)) { xspeed = 0; yspeed = 0; _x = _root.portal2._x; _y = _root.portal2._y; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.upplatform2)) { xspeed = 0; yspeed = -5; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.downplatform2)) { xspeed = 0; yspeed = 5; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.powerup)) { this.gotoAndStop(25); } }
Instance of Symbol 67 MovieClip "endlevel1" in Frame 86
onClipEvent (enterFrame) { if ((!touched) && (_root.hero.hitTest(_root.endlevel1))) { touched = true; this.gotoAndPlay(2); } }
Frame 87
stop(); onEnterFrame = function () { if (_root.lives == 0) { _root.gotoAndStop(108); } };
Instance of Symbol 139 MovieClip in Frame 87
on (rollOver) { this.gotoAndPlay(1); } on (rollOut) { this.gotoAndPlay(2); } on (release) { _root.nextFrame(); }
Frame 88
stop(); onEnterFrame = function () { if (_root.lives == 0) { _root.gotoAndStop(108); } };
Instance of Symbol 116 MovieClip "portal1" in Frame 88
onClipEvent (enterFrame) { if (_root.hero.hitTest(this)) { xspeed = 0; yspeed = 0; _x = _root.startpoint._x; _y = _root.startpoint._y; } }
Instance of Symbol 67 MovieClip "endlevel1" in Frame 88
onClipEvent (enterFrame) { if ((!touched) && (_root.hero.hitTest(_root.endlevel1))) { touched = true; this.gotoAndPlay(2); } }
Instance of Symbol 33 MovieClip "hero" in Frame 88
onClipEvent (load) { yspeed = 0; xspeed = 0; power = 0.65; gravity = 0.09; upconstant = 0.75; friction = 0.99; } onClipEvent (enterFrame) { if (Key.isDown(37)) { xspeed = xspeed - power; } if (Key.isDown(39)) { xspeed = xspeed + power; } if (Key.isDown(38)) { yspeed = yspeed - (power * upconstant); } if (Key.isDown(40)) { yspeed = yspeed + (power * upconstant); } yspeed = yspeed + gravity; _y = (_y + yspeed); _x = (_x + xspeed); _rotation = (_rotation + xspeed); if (_root.wall.hitTest(_x, _y, true)) { xspeed = -5; yspeed = 0; if (_root.wall2.hitTest(_x, _y, true)) { xspeed = 5; yspeed = 0; } } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.enemy)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.switchwall1)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.enemy3)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.rightplatform)) { xspeed = -5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.enemy2)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.wall2)) { xspeed = 5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.righta)) { xspeed = 25; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.right2)) { xspeed = 25; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.right3)) { xspeed = 25; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.upwall)) { xspeed = 0; yspeed = 5; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.downwall)) { xspeed = 0; yspeed = -5; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.rightwall)) { xspeed = -5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.leftwall)) { xspeed = 5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.upplatform)) { xspeed = 0; yspeed = -5; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.downplatform)) { xspeed = 0; yspeed = 5; } } onClipEvent (enterFrame) { if (_root.portal1.hitTest(this)) { xspeed = 0; yspeed = 0; _x = _root.portal2._x; _y = _root.portal2._y; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.upplatform2)) { xspeed = 0; yspeed = -5; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.downplatform2)) { xspeed = 0; yspeed = 5; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.powerup)) { this.gotoAndStop(25); } }
Frame 89
stop(); onEnterFrame = function () { if (_root.lives == 0) { _root.gotoAndStop(108); } };
Instance of Symbol 139 MovieClip in Frame 89
on (rollOver) { this.gotoAndPlay(1); } on (rollOut) { this.gotoAndPlay(2); } on (release) { _root.nextFrame(); }
Frame 90
stop(); onEnterFrame = function () { if (_root.lives == 0) { _root.gotoAndStop(108); } };
Instance of Symbol 67 MovieClip "endlevel1" in Frame 90
onClipEvent (enterFrame) { if ((!touched) && (_root.hero.hitTest(_root.endlevel1))) { touched = true; this.gotoAndPlay(2); } }
Instance of Symbol 91 MovieClip "switch1" in Frame 90
onClipEvent (enterFrame) { if ((!touched) && (_root.hero.hitTest(_root.switch1))) { touched = true; _root.switchwall1.gotoAndPlay(2); _root.switch1.gotoAndStop(2); } }
Instance of Symbol 33 MovieClip "hero" in Frame 90
onClipEvent (load) { yspeed = 0; xspeed = 0; power = 0.65; gravity = 0.09; upconstant = 0.75; friction = 0.99; } onClipEvent (enterFrame) { if (Key.isDown(37)) { xspeed = xspeed - power; } if (Key.isDown(39)) { xspeed = xspeed + power; } if (Key.isDown(38)) { yspeed = yspeed - (power * upconstant); } if (Key.isDown(40)) { yspeed = yspeed + (power * upconstant); } yspeed = yspeed + gravity; _y = (_y + yspeed); _x = (_x + xspeed); _rotation = (_rotation + xspeed); if (_root.wall.hitTest(_x, _y, true)) { xspeed = -5; yspeed = 0; if (_root.wall2.hitTest(_x, _y, true)) { xspeed = 5; yspeed = 0; } } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.enemy)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.switchwall1)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.enemy3)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.rightplatform)) { xspeed = -5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.enemy2)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.wall2)) { xspeed = 5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.righta)) { xspeed = 25; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.right2)) { xspeed = 25; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.right3)) { xspeed = 25; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.upwall)) { xspeed = 0; yspeed = 5; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.downwall)) { xspeed = 0; yspeed = -5; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.rightwall)) { xspeed = -5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.rightwall2)) { xspeed = -5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.leftwall)) { xspeed = 5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.upplatform)) { xspeed = 0; yspeed = -5; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.downplatform)) { xspeed = 0; yspeed = 5; } } onClipEvent (enterFrame) { if (_root.portal1.hitTest(this)) { xspeed = 0; yspeed = 0; _x = _root.portal2._x; _y = _root.portal2._y; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.upplatform2)) { xspeed = 0; yspeed = -5; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.downplatform2)) { xspeed = 0; yspeed = 5; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.powerup)) { this.gotoAndStop(25); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.enemy4)) { this.gotoAndPlay(2); } }
Frame 91
stop(); onEnterFrame = function () { if (_root.lives == 0) { _root.gotoAndStop(108); } };
Instance of Symbol 139 MovieClip in Frame 91
on (rollOver) { this.gotoAndPlay(1); } on (rollOut) { this.gotoAndPlay(2); } on (release) { _root.nextFrame(); }
Frame 92
stop(); onEnterFrame = function () { if (_root.lives == 0) { _root.gotoAndStop(108); } };
Instance of Symbol 33 MovieClip "hero" in Frame 92
onClipEvent (load) { yspeed = 0; xspeed = 0; power = 0.65; gravity = 0.09; upconstant = 0.75; friction = 0.99; } onClipEvent (enterFrame) { if (Key.isDown(37)) { xspeed = xspeed - power; } if (Key.isDown(39)) { xspeed = xspeed + power; } if (Key.isDown(38)) { yspeed = yspeed - (power * upconstant); } if (Key.isDown(40)) { yspeed = yspeed + (power * upconstant); } yspeed = yspeed + gravity; _y = (_y + yspeed); _x = (_x + xspeed); _rotation = (_rotation + xspeed); if (_root.wall.hitTest(_x, _y, true)) { xspeed = -5; yspeed = 0; if (_root.wall2.hitTest(_x, _y, true)) { xspeed = 5; yspeed = 0; } } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.enemy)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.switchwall1)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.enemy3)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.rightplatform)) { xspeed = -5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.enemy2)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.wall2)) { xspeed = 5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.righta)) { xspeed = 25; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.right2)) { xspeed = 25; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.right3)) { xspeed = 25; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.upwall)) { xspeed = 0; yspeed = 5; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.downwall)) { xspeed = 0; yspeed = -5; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.rightwall)) { xspeed = -5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.leftwall)) { xspeed = 5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.upplatform)) { xspeed = 0; yspeed = -5; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.downplatform)) { xspeed = 0; yspeed = 5; } } onClipEvent (enterFrame) { if (_root.portal1.hitTest(this)) { xspeed = 0; yspeed = 0; _x = _root.portal2._x; _y = _root.portal2._y; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.upplatform2)) { xspeed = 0; yspeed = -5; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.downplatform2)) { xspeed = 0; yspeed = 5; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.powerup)) { this.gotoAndStop(25); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.right4)) { xspeed = 25; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.right5)) { xspeed = 25; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.enemy3)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.enemy4)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.enemy5)) { this.gotoAndPlay(2); } }
Instance of Symbol 67 MovieClip "endlevel1" in Frame 92
onClipEvent (enterFrame) { if ((!touched) && (_root.hero.hitTest(_root.endlevel1))) { touched = true; this.gotoAndPlay(2); } }
Frame 93
stop(); onEnterFrame = function () { if (_root.lives == 0) { _root.gotoAndStop(108); } };
Instance of Symbol 139 MovieClip in Frame 93
on (rollOver) { this.gotoAndPlay(1); } on (rollOut) { this.gotoAndPlay(2); } on (release) { _root.nextFrame(); }
Frame 94
stop(); onEnterFrame = function () { if (_root.lives == 0) { _root.gotoAndStop(108); } };
Instance of Symbol 33 MovieClip "hero" in Frame 94
onClipEvent (load) { yspeed = 0; xspeed = 0; power = 0.65; gravity = 0.09; upconstant = 0.75; friction = 0.99; } onClipEvent (enterFrame) { if (Key.isDown(37)) { xspeed = xspeed - power; } if (Key.isDown(39)) { xspeed = xspeed + power; } if (Key.isDown(38)) { yspeed = yspeed - (power * upconstant); } if (Key.isDown(40)) { yspeed = yspeed + (power * upconstant); } yspeed = yspeed + gravity; _y = (_y + yspeed); _x = (_x + xspeed); _rotation = (_rotation + xspeed); if (_root.wall.hitTest(_x, _y, true)) { xspeed = -5; yspeed = 0; if (_root.wall2.hitTest(_x, _y, true)) { xspeed = 5; yspeed = 0; } } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.enemy)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.switchwall1)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.enemy3)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.rightplatform)) { xspeed = -5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.enemy2)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.wall2)) { xspeed = 5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.righta)) { xspeed = 25; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.right2)) { xspeed = 25; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.right3)) { xspeed = 25; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.upwall)) { xspeed = 0; yspeed = 5; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.downwall)) { xspeed = 0; yspeed = -5; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.rightwall)) { xspeed = -5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.leftwall)) { xspeed = 5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.upplatform)) { xspeed = 0; yspeed = -5; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.downplatform)) { xspeed = 0; yspeed = 5; } } onClipEvent (enterFrame) { if (_root.portal1.hitTest(this)) { xspeed = 0; yspeed = 0; _x = _root.portal2._x; _y = _root.portal2._y; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.upplatform2)) { xspeed = 0; yspeed = -5; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.downplatform2)) { xspeed = 0; yspeed = 5; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.powerup)) { this.gotoAndStop(25); } }
Instance of Symbol 67 MovieClip "endlevel1" in Frame 94
onClipEvent (enterFrame) { if ((!touched) && (_root.hero.hitTest(_root.endlevel1))) { touched = true; this.gotoAndPlay(2); } }
Frame 95
stop(); onEnterFrame = function () { if (_root.lives == 0) { _root.gotoAndStop(108); } };
Instance of Symbol 24 MovieClip in Frame 95
on (release) { _root.gotoAndPlay(1); }
Instance of Symbol 139 MovieClip in Frame 95
on (rollOver) { this.gotoAndPlay(1); } on (rollOut) { this.gotoAndPlay(2); } on (release) { _root.nextFrame(); }
Frame 96
stop(); onEnterFrame = function () { if (_root.lives == 0) { _root.gotoAndStop(108); } };
Instance of Symbol 67 MovieClip "endlevel1" in Frame 96
onClipEvent (enterFrame) { if ((!touched) && (_root.hero.hitTest(_root.endlevel1))) { touched = true; this.gotoAndPlay(2); } }
Instance of Symbol 33 MovieClip "hero" in Frame 96
onClipEvent (load) { yspeed = 0; xspeed = 0; power = 0.65; gravity = 0.09; upconstant = 0.75; friction = 0.99; } onClipEvent (enterFrame) { if (Key.isDown(37)) { xspeed = xspeed - power; } if (Key.isDown(39)) { xspeed = xspeed + power; } if (Key.isDown(38)) { yspeed = yspeed - (power * upconstant); } if (Key.isDown(40)) { yspeed = yspeed + (power * upconstant); } yspeed = yspeed + gravity; _y = (_y + yspeed); _x = (_x + xspeed); _rotation = (_rotation + xspeed); if (_root.wall.hitTest(_x, _y, true)) { xspeed = -5; yspeed = 0; if (_root.wall2.hitTest(_x, _y, true)) { xspeed = 5; yspeed = 0; } } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.enemy)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.switchwall1)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.enemy3)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.enemy4)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.enemy5)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.rightplatform)) { xspeed = -5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.rightplatform4)) { xspeed = -5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.leftplatform4)) { xspeed = 5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.enemy2)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.wall2)) { xspeed = 5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.righta)) { xspeed = 25; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.right2)) { xspeed = 25; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.right3)) { xspeed = 25; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.upwall)) { xspeed = 0; yspeed = 5; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.downwall)) { xspeed = 0; yspeed = -5; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.rightwall)) { xspeed = -5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.leftwall)) { xspeed = 5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.downplatform)) { xspeed = 0; yspeed = -5; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.upplatform)) { xspeed = 0; yspeed = 5; } } onClipEvent (enterFrame) { if (_root.portal1.hitTest(this)) { xspeed = 0; yspeed = 0; _x = _root.portal2._x; _y = _root.portal2._y; } } onClipEvent (enterFrame) { if (_root.portal2a.hitTest(this)) { xspeed = 0; yspeed = 0; _x = _root.portal2b._x; _y = _root.portal2b._y; } } onClipEvent (enterFrame) { if (_root.portal3a.hitTest(this)) { xspeed = 0; yspeed = 0; _x = _root.portal3b._x; _y = _root.portal3b._y; } } onClipEvent (enterFrame) { if (_root.portal5a.hitTest(this)) { xspeed = 0; yspeed = 0; _x = _root.portal5b._x; _y = _root.portal5b._y; } } onClipEvent (enterFrame) { if (_root.portal4a.hitTest(this)) { xspeed = 0; yspeed = 0; _x = _root.portal4b._x; _y = _root.portal4b._y; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.downplatform3)) { xspeed = 0; yspeed = -5; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.downplatform2)) { xspeed = 0; yspeed = -5; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.powerup)) { this.gotoAndStop(25); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.rightplatform2)) { xspeed = -5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.rightplatform3)) { xspeed = -5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.leftplatform)) { xspeed = 5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.leftplatform2)) { xspeed = 5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.leftplatform3)) { xspeed = 5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.upplatform2)) { xspeed = 0; yspeed = 5; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.upplatform3)) { xspeed = 0; yspeed = 5; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.upplatform4)) { xspeed = 0; yspeed = 5; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.downplatform4)) { xspeed = 0; yspeed = -5; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.monster1m.monster1)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.enemy6)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.enemy7)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.enemy7)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.enemy8)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.enemy9)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.enemy10)) { this.gotoAndPlay(2); } }
Frame 97
stop(); onEnterFrame = function () { if (_root.lives == 0) { _root.gotoAndStop(108); } };
Instance of Symbol 139 MovieClip in Frame 97
on (rollOver) { this.gotoAndPlay(1); } on (rollOut) { this.gotoAndPlay(2); } on (release) { _root.nextFrame(); }
Frame 98
stop(); onEnterFrame = function () { if (_root.lives == 0) { _root.gotoAndStop(108); } };
Instance of Symbol 160 MovieClip in Frame 98
onClipEvent (enterFrame) { _y = (_y + ((_root.hero._y - _y) / 36)); _x = (_x + ((_root.hero._x - _x) / 36)); }
Instance of Symbol 33 MovieClip "hero" in Frame 98
onClipEvent (load) { yspeed = 0; xspeed = 0; power = 0.65; gravity = 0.09; upconstant = 0.75; friction = 0.99; } onClipEvent (enterFrame) { if (Key.isDown(37)) { xspeed = xspeed - power; } if (Key.isDown(39)) { xspeed = xspeed + power; } if (Key.isDown(38)) { yspeed = yspeed - (power * upconstant); } if (Key.isDown(40)) { yspeed = yspeed + (power * upconstant); } yspeed = yspeed + gravity; _y = (_y + yspeed); _x = (_x + xspeed); _rotation = (_rotation + xspeed); if (_root.wall.hitTest(_x, _y, true)) { xspeed = -5; yspeed = 0; if (_root.wall2.hitTest(_x, _y, true)) { xspeed = 5; yspeed = 0; } } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.enemy)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.switchwall1)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(x, y, eval (true)(_root.enemy3))) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.enemy4)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.enemy5)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.rightplatform)) { xspeed = -5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.rightplatform4)) { xspeed = -5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.leftplatform4)) { xspeed = 5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.enemy2)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.wall2)) { xspeed = 5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.righta)) { xspeed = 25; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.right2)) { xspeed = 25; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.right3)) { xspeed = 25; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.upwall)) { xspeed = 0; yspeed = 5; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.downwall)) { xspeed = 0; yspeed = -5; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.rightwall)) { xspeed = -5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.leftwall)) { xspeed = 5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.downplatform)) { xspeed = 0; yspeed = -5; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.upplatform)) { xspeed = 0; yspeed = 5; } } onClipEvent (enterFrame) { if (_root.portal1.hitTest(this)) { xspeed = 0; yspeed = 0; _x = _root.portal2._x; _y = _root.portal2._y; } } onClipEvent (enterFrame) { if (_root.portal2a.hitTest(this)) { xspeed = 0; yspeed = 0; _x = _root.portal2b._x; _y = _root.portal2b._y; } } onClipEvent (enterFrame) { if (_root.portal3a.hitTest(this)) { xspeed = 0; yspeed = 0; _x = _root.portal3b._x; _y = _root.portal3b._y; } } onClipEvent (enterFrame) { if (_root.portal5a.hitTest(this)) { xspeed = 0; yspeed = 0; _x = _root.portal5b._x; _y = _root.portal5b._y; } } onClipEvent (enterFrame) { if (_root.portal4a.hitTest(this)) { xspeed = 0; yspeed = 0; _x = _root.portal4b._x; _y = _root.portal4b._y; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.downplatform3)) { xspeed = 0; yspeed = -5; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.downplatform2)) { xspeed = 0; yspeed = -5; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.powerup)) { this.gotoAndStop(25); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.rightplatform2)) { xspeed = -5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.rightplatform3)) { xspeed = -5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.leftplatform)) { xspeed = 5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.leftplatform2)) { xspeed = 5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.leftplatform3)) { xspeed = 5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.upplatform2)) { xspeed = 0; yspeed = 5; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.upplatform3)) { xspeed = 0; yspeed = 5; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.upplatform4)) { xspeed = 0; yspeed = 5; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.downplatform4)) { xspeed = 0; yspeed = -5; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.monster1m.monster4)) { this.gotoAndPlay(2); } }
Instance of Symbol 67 MovieClip "endlevel1" in Frame 98
onClipEvent (enterFrame) { if ((!touched) && (_root.hero.hitTest(_root.endlevel1))) { touched = true; this.gotoAndPlay(2); } }
Instance of Symbol 325 MovieClip in Frame 98
onClipEvent (enterFrame) { _y = (_y + ((_root.hero._y - _y) / 4)); _x = (_x + ((_root.hero._x - _x) / 4)); }
Frame 99
stop(); onEnterFrame = function () { if (_root.lives == 0) { _root.gotoAndStop(108); } };
Instance of Symbol 139 MovieClip in Frame 99
on (rollOver) { this.gotoAndPlay(1); } on (rollOut) { this.gotoAndPlay(2); } on (release) { _root.nextFrame(); }
Frame 100
onEnterFrame = function () { if (_root.lives == 0) { _root.gotoAndStop(108); } };
Instance of Symbol 33 MovieClip "hero" in Frame 100
onClipEvent (load) { yspeed = 0; xspeed = 0; power = 0.65; gravity = 0.09; upconstant = 0.75; friction = 0.99; } onClipEvent (enterFrame) { if (Key.isDown(39)) { xspeed = xspeed - power; } if (Key.isDown(37)) { xspeed = xspeed + power; } if (Key.isDown(40)) { yspeed = yspeed - (power * upconstant); } if (Key.isDown(38)) { yspeed = yspeed + (power * upconstant); } yspeed = yspeed + gravity; _y = (_y + yspeed); _x = (_x + xspeed); _rotation = (_rotation + xspeed); if (_root.wall.hitTest(_x, _y, true)) { xspeed = -5; yspeed = 0; if (_root.wall2.hitTest(_x, _y, true)) { xspeed = 5; yspeed = 0; } } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.enemy)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.switchwall1)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.enemy3)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.enemy4)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.enemy5)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.rightplatform)) { xspeed = -5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.rightplatform4)) { xspeed = -5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.leftplatform4)) { xspeed = 5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.enemy2)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.wall2)) { xspeed = 5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.righta)) { xspeed = 25; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.right2)) { xspeed = 25; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.right3)) { xspeed = 25; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.upwall)) { xspeed = 0; yspeed = 5; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.downwall)) { xspeed = 0; yspeed = -5; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.rightwall)) { xspeed = -5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.leftwall)) { xspeed = 5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.downplatform)) { xspeed = 0; yspeed = -5; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.upplatform)) { xspeed = 0; yspeed = 5; } } onClipEvent (enterFrame) { if (_root.portal1.hitTest(this)) { xspeed = 0; yspeed = 0; _x = _root.portal2._x; _y = _root.portal2._y; } } onClipEvent (enterFrame) { if (_root.portal2a.hitTest(this)) { xspeed = 0; yspeed = 0; _x = _root.portal2b._x; _y = _root.portal2b._y; } } onClipEvent (enterFrame) { if (_root.portal3a.hitTest(this)) { xspeed = 0; yspeed = 0; _x = _root.portal3b._x; _y = _root.portal3b._y; } } onClipEvent (enterFrame) { if (_root.portal5a.hitTest(this)) { xspeed = 0; yspeed = 0; _x = _root.portal5b._x; _y = _root.portal5b._y; } } onClipEvent (enterFrame) { if (_root.portal4a.hitTest(this)) { xspeed = 0; yspeed = 0; _x = _root.portal4b._x; _y = _root.portal4b._y; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.downplatform3)) { xspeed = 0; yspeed = -5; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.downplatform2)) { xspeed = 0; yspeed = -5; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.powerup)) { this.gotoAndStop(25); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.rightplatform2)) { xspeed = -5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.rightplatform3)) { xspeed = -5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.leftplatform)) { xspeed = 5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.leftplatform2)) { xspeed = 5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.leftplatform3)) { xspeed = 5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.upplatform2)) { xspeed = 0; yspeed = 5; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.upplatform3)) { xspeed = 0; yspeed = 5; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.upplatform4)) { xspeed = 0; yspeed = 5; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.downplatform4)) { xspeed = 0; yspeed = -5; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.monster1m.monster1)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.funky)) { xspeed = xspeed * 0.8; yspeed = yspeed * 0.8; } }
Instance of Symbol 67 MovieClip "endlevel1" in Frame 100
onClipEvent (enterFrame) { if ((!touched) && (_root.hero.hitTest(_root.endlevel1))) { touched = true; this.gotoAndPlay(2); } }
Frame 101
onEnterFrame = function () { if (_root.lives == 0) { _root.gotoAndStop(108); } };
Instance of Symbol 139 MovieClip in Frame 101
on (rollOver) { this.gotoAndPlay(1); } on (rollOut) { this.gotoAndPlay(2); } on (release) { _root.nextFrame(); }
Frame 102
stop(); onEnterFrame = function () { if (_root.lives == 0) { _root.gotoAndStop(108); } }; onEnterFrame = function () { if (_root.nam == 0) { _root.gotoAndStop(103); } }; var nam = 4;
Instance of Symbol 33 MovieClip "hero" in Frame 102
onClipEvent (load) { yspeed = 0; xspeed = 0; power = 0.65; gravity = 0.09; upconstant = 0.75; friction = 0.99; } onClipEvent (enterFrame) { if (Key.isDown(37)) { xspeed = xspeed - power; } if (Key.isDown(39)) { xspeed = xspeed + power; } if (Key.isDown(38)) { yspeed = yspeed - (power * upconstant); } if (Key.isDown(40)) { yspeed = yspeed + (power * upconstant); } yspeed = yspeed + gravity; _y = (_y + yspeed); _x = (_x + xspeed); _rotation = (_rotation + xspeed); if (_root.wall.hitTest(_x, _y, true)) { xspeed = -5; yspeed = 0; if (_root.wall2.hitTest(_x, _y, true)) { xspeed = 5; yspeed = 0; } } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.enemy)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.switchwall1)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.enemy3)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.enemy4)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.enemy5)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.rightplatform)) { xspeed = -5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.rightplatform4)) { xspeed = -5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.leftplatform4)) { xspeed = 5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.enemy2)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.wall2)) { xspeed = 5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.righta)) { xspeed = 25; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.right2)) { xspeed = 25; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.right3)) { xspeed = 25; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.upwall)) { xspeed = 0; yspeed = 5; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.downwall)) { xspeed = 0; yspeed = -5; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.rightwall)) { xspeed = -5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.leftwall)) { xspeed = 5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.downplatform)) { xspeed = 0; yspeed = -5; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.upplatform)) { xspeed = 0; yspeed = 5; } } onClipEvent (enterFrame) { if (_root.portal1.hitTest(this)) { xspeed = 0; yspeed = 0; _x = _root.portal2._x; _y = _root.portal2._y; } } onClipEvent (enterFrame) { if (_root.portal2a.hitTest(this)) { xspeed = 0; yspeed = 0; _x = _root.portal2b._x; _y = _root.portal2b._y; } } onClipEvent (enterFrame) { if (_root.portal3a.hitTest(this)) { xspeed = 0; yspeed = 0; _x = _root.portal3b._x; _y = _root.portal3b._y; } } onClipEvent (enterFrame) { if (_root.portal5a.hitTest(this)) { xspeed = 0; yspeed = 0; _x = _root.portal5b._x; _y = _root.portal5b._y; } } onClipEvent (enterFrame) { if (_root.portal4a.hitTest(this)) { xspeed = 0; yspeed = 0; _x = _root.portal4b._x; _y = _root.portal4b._y; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.downplatform3)) { xspeed = 0; yspeed = -5; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.downplatform2)) { xspeed = 0; yspeed = -5; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.powerup)) { this.gotoAndStop(25); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.rightplatform2)) { xspeed = -5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.rightplatform3)) { xspeed = -5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.leftplatform)) { xspeed = 5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.leftplatform2)) { xspeed = 5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.leftplatform3)) { xspeed = 5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.upplatform2)) { xspeed = 0; yspeed = 5; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.upplatform3)) { xspeed = 0; yspeed = 5; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.upplatform4)) { xspeed = 0; yspeed = 5; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.downplatform4)) { xspeed = 0; yspeed = -5; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.monster1m.monster1)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.funky)) { xspeed = xspeed * 0.8; yspeed = yspeed * 0.8; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.endmul)) { this.gotoAndPlay(26); _root.nam--; } }
Instance of Symbol 33 MovieClip "hero2" in Frame 102
onClipEvent (load) { yspeed = 0; xspeed = 0; power = 0.65; gravity = 0.09; upconstant = 0.75; friction = 0.99; } onClipEvent (enterFrame) { if (Key.isDown(38)) { xspeed = xspeed - power; } if (Key.isDown(40)) { xspeed = xspeed + power; } if (Key.isDown(37)) { yspeed = yspeed - (power * upconstant); } if (Key.isDown(39)) { yspeed = yspeed + (power * upconstant); } yspeed = yspeed + gravity; _y = (_y + yspeed); _x = (_x + xspeed); _rotation = (_rotation + xspeed); if (_root.wall.hitTest(_x, _y, true)) { xspeed = -5; yspeed = 0; if (_root.wall2.hitTest(_x, _y, true)) { xspeed = 5; yspeed = 0; } } } onClipEvent (enterFrame) { if (_root.hero2.hitTest(_root.enemy)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero2.hitTest(_root.switchwall1)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero2.hitTest(_root.enemy3)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero2.hitTest(_root.enemy4)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero2.hitTest(_root.enemy5)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero2.hitTest(_root.rightplatform)) { xspeed = -5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero2.hitTest(_root.rightplatform4)) { xspeed = -5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero2.hitTest(_root.leftplatform4)) { xspeed = 5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero2.hitTest(_root.enemy2)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero2.hitTest(_root.wall2)) { xspeed = 5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero2.hitTest(_root.righta)) { xspeed = 25; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero2.hitTest(_root.right2)) { xspeed = 25; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero2.hitTest(_root.right3)) { xspeed = 25; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero2.hitTest(_root.upwall)) { xspeed = 0; yspeed = 5; } } onClipEvent (enterFrame) { if (_root.hero2.hitTest(_root.downwall)) { xspeed = 0; yspeed = -5; } } onClipEvent (enterFrame) { if (_root.hero2.hitTest(_root.rightwall)) { xspeed = -5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero2.hitTest(_root.leftwall)) { xspeed = 5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero2.hitTest(_root.downplatform)) { xspeed = 0; yspeed = -5; } } onClipEvent (enterFrame) { if (_root.hero2.hitTest(_root.upplatform)) { xspeed = 0; yspeed = 5; } } onClipEvent (enterFrame) { if (_root.portal1.hitTest(this)) { xspeed = 0; yspeed = 0; _x = _root.portal2._x; _y = _root.portal2._y; } } onClipEvent (enterFrame) { if (_root.portal2a.hitTest(this)) { xspeed = 0; yspeed = 0; _x = _root.portal2b._x; _y = _root.portal2b._y; } } onClipEvent (enterFrame) { if (_root.portal3a.hitTest(this)) { xspeed = 0; yspeed = 0; _x = _root.portal3b._x; _y = _root.portal3b._y; } } onClipEvent (enterFrame) { if (_root.portal5a.hitTest(this)) { xspeed = 0; yspeed = 0; _x = _root.portal5b._x; _y = _root.portal5b._y; } } onClipEvent (enterFrame) { if (_root.portal4a.hitTest(this)) { xspeed = 0; yspeed = 0; _x = _root.portal4b._x; _y = _root.portal4b._y; } } onClipEvent (enterFrame) { if (_root.hero2.hitTest(_root.downplatform3)) { xspeed = 0; yspeed = -5; } } onClipEvent (enterFrame) { if (_root.hero2.hitTest(_root.downplatform2)) { xspeed = 0; yspeed = -5; } } onClipEvent (enterFrame) { if (_root.hero2.hitTest(_root.powerup)) { this.gotoAndStop(25); } } onClipEvent (enterFrame) { if (_root.hero2.hitTest(_root.rightplatform2)) { xspeed = -5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero2.hitTest(_root.rightplatform3)) { xspeed = -5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero2.hitTest(_root.leftplatform)) { xspeed = 5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero2.hitTest(_root.leftplatform2)) { xspeed = 5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero2.hitTest(_root.leftplatform3)) { xspeed = 5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero2.hitTest(_root.upplatform2)) { xspeed = 0; yspeed = 5; } } onClipEvent (enterFrame) { if (_root.hero2.hitTest(_root.upplatform3)) { xspeed = 0; yspeed = 5; } } onClipEvent (enterFrame) { if (_root.hero2.hitTest(_root.upplatform4)) { xspeed = 0; yspeed = 5; } } onClipEvent (enterFrame) { if (_root.hero2.hitTest(_root.downplatform4)) { xspeed = 0; yspeed = -5; } } onClipEvent (enterFrame) { if (_root.hero2.hitTest(_root.monster1m.monster1)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero2.hitTest(_root.funky)) { xspeed = xspeed * 0.8; yspeed = yspeed * 0.8; } } onClipEvent (enterFrame) { if (_root.hero2.hitTest(_root.endmul)) { this.gotoAndPlay(26); _root.nam--; } }
Instance of Symbol 33 MovieClip "hero3" in Frame 102
onClipEvent (load) { yspeed = 0; xspeed = 0; power = 0.65; gravity = 0.09; upconstant = 0.75; friction = 0.99; } onClipEvent (enterFrame) { if (Key.isDown(39)) { xspeed = xspeed - power; } if (Key.isDown(37)) { xspeed = xspeed + power; } if (Key.isDown(40)) { yspeed = yspeed - (power * upconstant); } if (Key.isDown(38)) { yspeed = yspeed + (power * upconstant); } yspeed = yspeed + gravity; _y = (_y + yspeed); _x = (_x + xspeed); _rotation = (_rotation + xspeed); if (_root.wall.hitTest(_x, _y, true)) { xspeed = -5; yspeed = 0; if (_root.wall2.hitTest(_x, _y, true)) { xspeed = 5; yspeed = 0; } } } onClipEvent (enterFrame) { if (_root.hero3.hitTest(_root.enemy)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero3.hitTest(_root.switchwall1)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero3.hitTest(_root.enemy3)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero3.hitTest(_root.enemy4)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero3.hitTest(_root.enemy5)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero3.hitTest(_root.rightplatform)) { xspeed = -5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero3.hitTest(_root.rightplatform4)) { xspeed = -5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero3.hitTest(_root.leftplatform4)) { xspeed = 5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero3.hitTest(_root.enemy2)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero3.hitTest(_root.wall2)) { xspeed = 5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero3.hitTest(_root.righta)) { xspeed = 25; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero3.hitTest(_root.right2)) { xspeed = 25; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero3.hitTest(_root.right3)) { xspeed = 25; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero3.hitTest(_root.upwall)) { xspeed = 0; yspeed = 5; } } onClipEvent (enterFrame) { if (_root.hero3.hitTest(_root.downwall)) { xspeed = 0; yspeed = -5; } } onClipEvent (enterFrame) { if (_root.hero3.hitTest(_root.rightwall)) { xspeed = -5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero3.hitTest(_root.leftwall)) { xspeed = 5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero3.hitTest(_root.downplatform)) { xspeed = 0; yspeed = -5; } } onClipEvent (enterFrame) { if (_root.hero3.hitTest(_root.upplatform)) { xspeed = 0; yspeed = 5; } } onClipEvent (enterFrame) { if (_root.portal1.hitTest(this)) { xspeed = 0; yspeed = 0; _x = _root.portal2._x; _y = _root.portal2._y; } } onClipEvent (enterFrame) { if (_root.portal2a.hitTest(this)) { xspeed = 0; yspeed = 0; _x = _root.portal2b._x; _y = _root.portal2b._y; } } onClipEvent (enterFrame) { if (_root.portal3a.hitTest(this)) { xspeed = 0; yspeed = 0; _x = _root.portal3b._x; _y = _root.portal3b._y; } } onClipEvent (enterFrame) { if (_root.portal5a.hitTest(this)) { xspeed = 0; yspeed = 0; _x = _root.portal5b._x; _y = _root.portal5b._y; } } onClipEvent (enterFrame) { if (_root.portal4a.hitTest(this)) { xspeed = 0; yspeed = 0; _x = _root.portal4b._x; _y = _root.portal4b._y; } } onClipEvent (enterFrame) { if (_root.hero3.hitTest(_root.downplatform3)) { xspeed = 0; yspeed = -5; } } onClipEvent (enterFrame) { if (_root.hero3.hitTest(_root.downplatform2)) { xspeed = 0; yspeed = -5; } } onClipEvent (enterFrame) { if (_root.hero3.hitTest(_root.powerup)) { this.gotoAndStop(25); } } onClipEvent (enterFrame) { if (_root.hero3.hitTest(_root.rightplatform2)) { xspeed = -5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero3.hitTest(_root.rightplatform3)) { xspeed = -5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero3.hitTest(_root.leftplatform)) { xspeed = 5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero3.hitTest(_root.leftplatform2)) { xspeed = 5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero3.hitTest(_root.leftplatform3)) { xspeed = 5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero3.hitTest(_root.upplatform2)) { xspeed = 0; yspeed = 5; } } onClipEvent (enterFrame) { if (_root.hero3.hitTest(_root.upplatform3)) { xspeed = 0; yspeed = 5; } } onClipEvent (enterFrame) { if (_root.hero3.hitTest(_root.upplatform4)) { xspeed = 0; yspeed = 5; } } onClipEvent (enterFrame) { if (_root.hero3.hitTest(_root.downplatform4)) { xspeed = 0; yspeed = -5; } } onClipEvent (enterFrame) { if (_root.hero3.hitTest(_root.monster1m.monster1)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero3.hitTest(_root.funky)) { xspeed = xspeed * 0.8; yspeed = yspeed * 0.8; } } onClipEvent (enterFrame) { if (_root.hero3.hitTest(_root.endmul)) { this.gotoAndPlay(26); _root.nam--; } }
Instance of Symbol 33 MovieClip "hero4" in Frame 102
onClipEvent (load) { yspeed = 0; xspeed = 0; power = 0.65; gravity = 0.09; upconstant = 0.75; friction = 0.99; } onClipEvent (enterFrame) { if (Key.isDown(40)) { xspeed = xspeed - power; } if (Key.isDown(38)) { xspeed = xspeed + power; } if (Key.isDown(39)) { yspeed = yspeed - (power * upconstant); } if (Key.isDown(37)) { yspeed = yspeed + (power * upconstant); } yspeed = yspeed + gravity; _y = (_y + yspeed); _x = (_x + xspeed); _rotation = (_rotation + xspeed); if (_root.wall.hitTest(_x, _y, true)) { xspeed = -5; yspeed = 0; if (_root.wall2.hitTest(_x, _y, true)) { xspeed = 5; yspeed = 0; } } } onClipEvent (enterFrame) { if (_root.hero4.hitTest(_root.enemy)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero4.hitTest(_root.switchwall1)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero4.hitTest(_root.enemy3)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero4.hitTest(_root.enemy4)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero4.hitTest(_root.enemy5)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero4.hitTest(_root.rightplatform)) { xspeed = -5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero4.hitTest(_root.rightplatform4)) { xspeed = -5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero4.hitTest(_root.leftplatform4)) { xspeed = 5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero4.hitTest(_root.enemy2)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero4.hitTest(_root.wall2)) { xspeed = 5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero4.hitTest(_root.righta)) { xspeed = 25; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero4.hitTest(_root.right2)) { xspeed = 25; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero4.hitTest(_root.right3)) { xspeed = 25; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero4.hitTest(_root.upwall)) { xspeed = 0; yspeed = 5; } } onClipEvent (enterFrame) { if (_root.hero4.hitTest(_root.downwall)) { xspeed = 0; yspeed = -5; } } onClipEvent (enterFrame) { if (_root.hero4.hitTest(_root.rightwall)) { xspeed = -5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero4.hitTest(_root.leftwall)) { xspeed = 5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero4.hitTest(_root.downplatform)) { xspeed = 0; yspeed = -5; } } onClipEvent (enterFrame) { if (_root.hero4.hitTest(_root.upplatform)) { xspeed = 0; yspeed = 5; } } onClipEvent (enterFrame) { if (_root.portal1.hitTest(this)) { xspeed = 0; yspeed = 0; _x = _root.portal2._x; _y = _root.portal2._y; } } onClipEvent (enterFrame) { if (_root.portal2a.hitTest(this)) { xspeed = 0; yspeed = 0; _x = _root.portal2b._x; _y = _root.portal2b._y; } } onClipEvent (enterFrame) { if (_root.portal3a.hitTest(this)) { xspeed = 0; yspeed = 0; _x = _root.portal3b._x; _y = _root.portal3b._y; } } onClipEvent (enterFrame) { if (_root.portal5a.hitTest(this)) { xspeed = 0; yspeed = 0; _x = _root.portal5b._x; _y = _root.portal5b._y; } } onClipEvent (enterFrame) { if (_root.portal4a.hitTest(this)) { xspeed = 0; yspeed = 0; _x = _root.portal4b._x; _y = _root.portal4b._y; } } onClipEvent (enterFrame) { if (_root.hero4.hitTest(_root.downplatform3)) { xspeed = 0; yspeed = -5; } } onClipEvent (enterFrame) { if (_root.hero4.hitTest(_root.downplatform2)) { xspeed = 0; yspeed = -5; } } onClipEvent (enterFrame) { if (_root.hero4.hitTest(_root.powerup)) { this.gotoAndStop(25); } } onClipEvent (enterFrame) { if (_root.hero4.hitTest(_root.rightplatform2)) { xspeed = -5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero4.hitTest(_root.rightplatform3)) { xspeed = -5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero4.hitTest(_root.leftplatform)) { xspeed = 5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero4.hitTest(_root.leftplatform2)) { xspeed = 5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero4.hitTest(_root.leftplatform3)) { xspeed = 5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero4.hitTest(_root.upplatform2)) { xspeed = 0; yspeed = 5; } } onClipEvent (enterFrame) { if (_root.hero4.hitTest(_root.upplatform3)) { xspeed = 0; yspeed = 5; } } onClipEvent (enterFrame) { if (_root.hero4.hitTest(_root.upplatform4)) { xspeed = 0; yspeed = 5; } } onClipEvent (enterFrame) { if (_root.hero4.hitTest(_root.downplatform4)) { xspeed = 0; yspeed = -5; } } onClipEvent (enterFrame) { if (_root.hero4.hitTest(_root.monster1m.monster1)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero4.hitTest(_root.funky)) { xspeed = xspeed * 0.8; yspeed = yspeed * 0.8; } } onClipEvent (enterFrame) { if (_root.hero4.hitTest(_root.endmul)) { this.gotoAndPlay(26); _root.nam--; } }
Instance of Symbol 67 MovieClip "endmul" in Frame 102
onClipEvent (enterFrame) { if ((!touched) && (_root.hero.hitTest(_root.endlevel1))) { touched = true; this.gotoAndPlay(2); } }
Frame 103
onEnterFrame = function () { if (_root.lives == 0) { _root.gotoAndStop(108); } };
Instance of Symbol 139 MovieClip in Frame 103
on (rollOver) { this.gotoAndPlay(1); } on (rollOut) { this.gotoAndPlay(2); } on (release) { _root.gotoAndStop(104); }
Frame 104
stop(); onEnterFrame = function () { if (_root.lives == 0) { _root.gotoAndStop(108); } }; var nam = 4; stop();
Instance of Symbol 67 MovieClip "endlevel1" in Frame 104
onClipEvent (enterFrame) { if ((!touched) && (_root.hero.hitTest(_root.endlevel1))) { touched = true; this.gotoAndPlay(2); } }
Instance of Symbol 33 MovieClip "hero" in Frame 104
onClipEvent (load) { yspeed = 0; xspeed = 0; power = 0.65; gravity = 0.09; upconstant = 0.75; friction = 0.09; } onClipEvent (enterFrame) { if (Key.isDown(37)) { xspeed = xspeed - power; } if (Key.isDown(39)) { xspeed = xspeed + power; } if (Key.isDown(38)) { yspeed = yspeed - (power * upconstant); } if (Key.isDown(40)) { yspeed = yspeed + (power * upconstant); } yspeed = yspeed + gravity; _y = (_y + yspeed); _x = (_x + xspeed); _rotation = (_rotation + xspeed); if (_root.wall.hitTest(_x, _y, true)) { xspeed = -5; yspeed = 0; if (_root.wall2.hitTest(_x, _y, true)) { xspeed = 5; yspeed = 0; } } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.enemy)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.switchwall1)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.enemy3)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.enemy4)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.enemy5)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.rightplatform)) { xspeed = -5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.rightplatform4)) { xspeed = -5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.leftplatform4)) { xspeed = 5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.enemy2)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.wall2)) { xspeed = 5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.righta)) { xspeed = 25; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.right2)) { xspeed = 25; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.right3)) { xspeed = 25; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.upwall)) { xspeed = 0; yspeed = 5; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.downwall)) { xspeed = 0; yspeed = -5; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.rightwall)) { xspeed = -5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.leftwall)) { xspeed = 5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.downplatform)) { xspeed = 0; yspeed = -5; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.upplatform)) { xspeed = 0; yspeed = 5; } } onClipEvent (enterFrame) { if (_root.portal1.hitTest(this)) { xspeed = 0; yspeed = 0; _x = _root.portal2._x; _y = _root.portal2._y; } } onClipEvent (enterFrame) { if (_root.portal2a.hitTest(this)) { xspeed = 0; yspeed = 0; _x = _root.portal2b._x; _y = _root.portal2b._y; } } onClipEvent (enterFrame) { if (_root.portal3a.hitTest(this)) { xspeed = 0; yspeed = 0; _x = _root.portal3b._x; _y = _root.portal3b._y; } } onClipEvent (enterFrame) { if (_root.portal5a.hitTest(this)) { xspeed = 0; yspeed = 0; _x = _root.portal5b._x; _y = _root.portal5b._y; } } onClipEvent (enterFrame) { if (_root.portal4a.hitTest(this)) { xspeed = 0; yspeed = 0; _x = _root.portal4b._x; _y = _root.portal4b._y; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.downplatform3)) { xspeed = 0; yspeed = -5; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.downplatform2)) { xspeed = 0; yspeed = -5; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.powerup)) { this.gotoAndStop(25); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.rightplatform2)) { xspeed = -5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.rightplatform3)) { xspeed = -5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.leftplatform)) { xspeed = 5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.leftplatform2)) { xspeed = 5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.leftplatform3)) { xspeed = 5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.upplatform2)) { xspeed = 0; yspeed = 5; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.upplatform3)) { xspeed = 0; yspeed = 5; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.upplatform4)) { xspeed = 0; yspeed = 5; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.downplatform4)) { xspeed = 0; yspeed = -5; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.monster1m.monster1)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.funky)) { xspeed = xspeed * 0.8; yspeed = yspeed * 0.8; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.endmul)) { this.gotoAndPlay(26); _root.nam--; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.upab)) { xspeed = 0; yspeed = -random(25); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.movinga)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.movingb)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.movingc)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.movingd)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.movinge)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.movingf)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.movingg)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.moving2)) { _root.movingb.gotoAndStop(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.moving1)) { _root.movinga.gotoAndStop(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.moving3)) { _root.movingc.gotoAndStop(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.moving4)) { _root.movingd.gotoAndStop(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.moving5)) { _root.movinge.gotoAndStop(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.moving6)) { _root.movingf.gotoAndStop(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.moving7)) { _root.movingg.gotoAndStop(2); } }
Frame 105
stop(); onEnterFrame = function () { if (_root.lives == 0) { _root.gotoAndStop(108); } };
Instance of Symbol 139 MovieClip in Frame 105
on (rollOver) { this.gotoAndPlay(1); } on (rollOut) { this.gotoAndPlay(2); } on (release) { _root.nextFrame(); }
Frame 106
stop(); onEnterFrame = function () { if (_root.lives == 0) { _root.gotoAndStop(108); } };
Instance of Symbol 33 MovieClip "hero" in Frame 106
onClipEvent (load) { yspeed = 0; xspeed = 0; power = 0.65; gravity = 0.09; upconstant = 0.75; friction = 0.09; } onClipEvent (enterFrame) { if (Key.isDown(37)) { xspeed = xspeed - power; } if (Key.isDown(39)) { xspeed = xspeed + power; } if (Key.isDown(38)) { yspeed = yspeed - (power * upconstant); } if (Key.isDown(40)) { yspeed = yspeed + (power * upconstant); } yspeed = yspeed + gravity; _y = (_y + yspeed); _x = (_x + xspeed); _rotation = (_rotation + xspeed); if (_root.wall.hitTest(_x, _y, true)) { xspeed = -5; yspeed = 0; if (_root.wall2.hitTest(_x, _y, true)) { xspeed = 5; yspeed = 0; } } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.enemy)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.switchwall1)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.enemy3)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.enemy4)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.enemy5)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.rightplatform)) { xspeed = -5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.rightplatform4)) { xspeed = -5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.leftplatform4)) { xspeed = 5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.enemy2)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.wall2)) { xspeed = 5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.righta)) { xspeed = 25; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.right2)) { xspeed = 25; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.right3)) { xspeed = 25; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.upwall)) { xspeed = 0; yspeed = 5; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.downwall)) { xspeed = 0; yspeed = -5; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.rightwall)) { xspeed = -5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.leftwall)) { xspeed = 5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.downplatform)) { xspeed = 0; yspeed = -5; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.upplatform)) { xspeed = 0; yspeed = 5; } } onClipEvent (enterFrame) { if (_root.portal1.hitTest(this)) { xspeed = 0; yspeed = 0; _x = _root.portal2._x; _y = _root.portal2._y; } } onClipEvent (enterFrame) { if (_root.portal2a.hitTest(this)) { xspeed = 0; yspeed = 0; _x = _root.portal2b._x; _y = _root.portal2b._y; } } onClipEvent (enterFrame) { if (_root.portal3a.hitTest(this)) { xspeed = 0; yspeed = 0; _x = _root.portal3b._x; _y = _root.portal3b._y; } } onClipEvent (enterFrame) { if (_root.portal5a.hitTest(this)) { xspeed = 0; yspeed = 0; _x = _root.portal5b._x; _y = _root.portal5b._y; } } onClipEvent (enterFrame) { if (_root.portal4a.hitTest(this)) { xspeed = 0; yspeed = 0; _x = _root.portal4b._x; _y = _root.portal4b._y; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.downplatform3)) { xspeed = 0; yspeed = -5; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.downplatform2)) { xspeed = 0; yspeed = -5; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.powerup)) { this.gotoAndStop(25); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.rightplatform2)) { xspeed = -5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.rightplatform3)) { xspeed = -5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.leftplatform)) { xspeed = 5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.leftplatform2)) { xspeed = 5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.leftplatform3)) { xspeed = 5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.upplatform2)) { xspeed = 0; yspeed = 5; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.upplatform3)) { xspeed = 0; yspeed = 5; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.upplatform4)) { xspeed = 0; yspeed = 5; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.downplatform4)) { xspeed = 0; yspeed = -5; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.monster1m.monster1)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.funky)) { xspeed = xspeed * 0.8; yspeed = yspeed * 0.8; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.endmul)) { this.gotoAndPlay(26); _root.nam--; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.upab)) { xspeed = 0; yspeed = -random(25); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.movinga)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.movingb)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.movingc)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.movingd)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.movinge)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.movingf)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.movingg)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.moving2)) { _root.movingb.gotoAndStop(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.moving1)) { _root.movinga.gotoAndStop(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.moving3)) { _root.movingc.gotoAndStop(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.moving4)) { _root.movingd.gotoAndStop(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.moving5)) { _root.movinge.gotoAndStop(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.moving6)) { _root.movingf.gotoAndStop(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.moving7)) { _root.movingg.gotoAndStop(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.upwall2)) { xspeed = 0; yspeed = 5; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.downwall2)) { xspeed = 0; yspeed = -5; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.rightwall2)) { xspeed = -5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.leftwall2)) { xspeed = 5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.upwall3)) { xspeed = 0; yspeed = 5; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.downwall3)) { xspeed = 0; yspeed = -5; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.rightwall3)) { xspeed = -5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.leftwall3)) { xspeed = 5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.upwall3)) { xspeed = 0; yspeed = 5; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.downwall3)) { xspeed = 0; yspeed = -5; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.rightwall3)) { xspeed = -5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.leftwall3)) { xspeed = 5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.upwall4)) { xspeed = 0; yspeed = 5; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.downwall4)) { xspeed = 0; yspeed = -5; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.rightwall4)) { xspeed = -5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.leftwall4)) { xspeed = 5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.upwall5)) { xspeed = 0; yspeed = 5; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.downwall5)) { xspeed = 0; yspeed = -5; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.rightwall5)) { xspeed = -5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.leftwall5)) { xspeed = 5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.fakeport1)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.fakeport2)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.fakeport3)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.fakeport4)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.fakeport5)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.fakeport6)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.fakeport7)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.fakeport8)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.monster1m.monster1)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.monster2)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.monster3m.monster3)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.monster4m.monster4)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.monster5)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.monster6m.monster6)) { this.gotoAndPlay(2); } }
Instance of Symbol 364 MovieClip "pill" in Frame 106
onClipEvent (enterFrame) { if ((!touched) && (_root.hero.hitTest(_root.pill))) { touched = true; _root.hero.hero1.gotoAndPlay(2); this.gotoAndStop(2); } }
Instance of Symbol 67 MovieClip "endlevel1" in Frame 106
onClipEvent (enterFrame) { if ((!touched) && (_root.hero.hitTest(_root.endlevel1))) { touched = true; this.gotoAndPlay(2); } }
Instance of Symbol 312 MovieClip "monster4m" in Frame 106
on (press) { startDrag (this); } on (release, releaseOutside) { stopDrag(); }
Instance of Symbol 366 MovieClip "monster3m" in Frame 106
on (press) { startDrag (this); } on (release, releaseOutside) { stopDrag(); }
Instance of Symbol 377 MovieClip "monster1m" in Frame 106
on (press) { startDrag (this); } on (release, releaseOutside) { stopDrag(); }
Instance of Symbol 378 MovieClip "monster6m" in Frame 106
on (press) { startDrag (this); } on (release, releaseOutside) { stopDrag(); }
Instance of Symbol 325 MovieClip in Frame 106
onClipEvent (enterFrame) { _y = (_y + ((_root.hero._y - _y) / 4)); _x = (_x + ((_root.hero._x - _x) / 4)); }
Frame 107
stop(); onEnterFrame = function () { if (_root.lives == 0) { _root.gotoAndStop(108); } };
Instance of Symbol 382 MovieClip in Frame 107
on (release) { _root.gotoAndStop(30); }
Frame 108
var lives = 8;
Instance of Symbol 390 MovieClip in Frame 108
on (release) { _root.gotoAndStop(30); }
Frame 109
stop(); var lives = 8;
Instance of Symbol 396 MovieClip in Frame 109
on (rollOver) { this.gotoAndStop(2); } on (rollOut) { this.gotoAndStop(1); } on (release) { _root.gotoAndStop(110); }
Frame 110
stop();
Instance of Symbol 364 MovieClip "pill" in Frame 110
onClipEvent (enterFrame) { if ((!touched) && (_root.hero.hitTest(_root.pill))) { touched = true; _root.hero.hero1.gotoAndPlay(2); this.gotoAndStop(2); } } on (press) { startDrag (this); } on (release, releaseOutside) { stopDrag(); }
Instance of Symbol 63 MovieClip "leftwall" in Frame 110
on (press) { startDrag (this); } on (release, releaseOutside) { stopDrag(); }
Instance of Symbol 63 MovieClip "rightwall" in Frame 110
on (press) { startDrag (this); } on (release, releaseOutside) { stopDrag(); }
Instance of Symbol 63 MovieClip "upwall" in Frame 110
on (press) { startDrag (this); } on (release, releaseOutside) { stopDrag(); }
Instance of Symbol 63 MovieClip "downwall" in Frame 110
on (press) { startDrag (this); } on (release, releaseOutside) { stopDrag(); }
Instance of Symbol 399 MovieClip "portal4a" in Frame 110
on (press) { startDrag (this); } on (release, releaseOutside) { stopDrag(); }
Instance of Symbol 399 MovieClip "portal4b" in Frame 110
on (press) { startDrag (this); } on (release, releaseOutside) { stopDrag(); }
Instance of Symbol 399 MovieClip "portal3a" in Frame 110
on (press) { startDrag (this); } on (release, releaseOutside) { stopDrag(); }
Instance of Symbol 399 MovieClip "portal3b" in Frame 110
on (press) { startDrag (this); } on (release, releaseOutside) { stopDrag(); }
Instance of Symbol 376 MovieClip "monster2" in Frame 110
on (press) { startDrag (this); } on (release, releaseOutside) { stopDrag(); }
Instance of Symbol 450 MovieClip "enemy2" in Frame 110
on (press) { startDrag (this); } on (release, releaseOutside) { stopDrag(); }
Instance of Symbol 450 MovieClip "enemy5" in Frame 110
on (press) { startDrag (this); } on (release, releaseOutside) { stopDrag(); }
Instance of Symbol 452 MovieClip "endlevel1" in Frame 110
onClipEvent (enterFrame) { if ((!touched) && (_root.hero.hitTest(_root.endlevel1))) { touched = true; this.gotoAndPlay(2); } } on (press) { startDrag (this); } on (release, releaseOutside) { stopDrag(); }
Instance of Symbol 312 MovieClip "monster4m" in Frame 110
on (press) { startDrag (this); } on (release, releaseOutside) { stopDrag(); }
Instance of Symbol 366 MovieClip "monster3m" in Frame 110
on (press) { startDrag (this); } on (release, releaseOutside) { stopDrag(); }
Instance of Symbol 376 MovieClip "monster5" in Frame 110
on (press) { startDrag (this); } on (release, releaseOutside) { stopDrag(); }
Instance of Symbol 377 MovieClip "monster1m" in Frame 110
on (press) { startDrag (this); } on (release, releaseOutside) { stopDrag(); }
Instance of Symbol 378 MovieClip "monster6m" in Frame 110
on (press) { startDrag (this); } on (release, releaseOutside) { stopDrag(); }
Instance of Symbol 450 MovieClip "enemy3" in Frame 110
on (press) { startDrag (this); } on (release, releaseOutside) { stopDrag(); }
Instance of Symbol 450 MovieClip "enemy4" in Frame 110
on (press) { startDrag (this); } on (release, releaseOutside) { stopDrag(); }
Instance of Symbol 450 MovieClip "enemy6" in Frame 110
on (press) { startDrag (this); } on (release, releaseOutside) { stopDrag(); }
Instance of Symbol 450 MovieClip "enemy7" in Frame 110
on (press) { startDrag (this); } on (release, releaseOutside) { stopDrag(); }
Instance of Symbol 450 MovieClip "enemy11" in Frame 110
on (press) { startDrag (this); } on (release, releaseOutside) { stopDrag(); }
Instance of Symbol 450 MovieClip "enemy10" in Frame 110
on (press) { startDrag (this); } on (release, releaseOutside) { stopDrag(); }
Instance of Symbol 450 MovieClip "enemy9" in Frame 110
on (press) { startDrag (this); } on (release, releaseOutside) { stopDrag(); }
Instance of Symbol 450 MovieClip "enemy8" in Frame 110
on (press) { startDrag (this); } on (release, releaseOutside) { stopDrag(); }
Instance of Symbol 455 MovieClip in Frame 110
onClipEvent (load) { Mouse.show(); }
Instance of Symbol 167 MovieClip "switchwall1" in Frame 110
on (press) { startDrag (this); } on (release, releaseOutside) { stopDrag(); }
Instance of Symbol 91 MovieClip "switch1" in Frame 110
onClipEvent (enterFrame) { if ((!touched) && (_root.hero.hitTest(_root.switch1))) { touched = true; _root.switchwall1.gotoAndPlay(2); _root.switch1.gotoAndStop(2); } } on (press) { startDrag (this); } on (release, releaseOutside) { stopDrag(); }
Instance of Symbol 251 MovieClip "enemy13" in Frame 110
on (press) { startDrag (this); } on (release, releaseOutside) { stopDrag(); }
Instance of Symbol 251 MovieClip "enemy14" in Frame 110
on (press) { startDrag (this); } on (release, releaseOutside) { stopDrag(); }
Instance of Symbol 251 MovieClip "enemy16" in Frame 110
on (press) { startDrag (this); } on (release, releaseOutside) { stopDrag(); }
Instance of Symbol 251 MovieClip "enemy15" in Frame 110
on (press) { startDrag (this); } on (release, releaseOutside) { stopDrag(); }
Instance of Symbol 251 MovieClip "enemy12" in Frame 110
on (press) { startDrag (this); } on (release, releaseOutside) { stopDrag(); }
Instance of Symbol 251 MovieClip "enemy19" in Frame 110
on (press) { startDrag (this); } on (release, releaseOutside) { stopDrag(); }
Instance of Symbol 251 MovieClip "enemy18" in Frame 110
on (press) { startDrag (this); } on (release, releaseOutside) { stopDrag(); }
Instance of Symbol 251 MovieClip "enemy17" in Frame 110
on (press) { startDrag (this); } on (release, releaseOutside) { stopDrag(); }
Instance of Symbol 174 MovieClip "powerup" in Frame 110
on (press) { startDrag (this); } on (release, releaseOutside) { stopDrag(); }
Instance of Symbol 463 MovieClip "lright1" in Frame 110
on (press) { startDrag (this); } on (release, releaseOutside) { stopDrag(); }
Instance of Symbol 464 MovieClip "lright2" in Frame 110
on (press) { startDrag (this); } on (release, releaseOutside) { stopDrag(); }
Instance of Symbol 465 MovieClip "lright3" in Frame 110
on (press) { startDrag (this); } on (release, releaseOutside) { stopDrag(); }
Instance of Symbol 466 MovieClip "lright4" in Frame 110
on (press) { startDrag (this); } on (release, releaseOutside) { stopDrag(); }
Instance of Symbol 467 MovieClip "updown1" in Frame 110
on (press) { startDrag (this); } on (release, releaseOutside) { stopDrag(); }
Instance of Symbol 468 MovieClip "updown2" in Frame 110
on (press) { startDrag (this); } on (release, releaseOutside) { stopDrag(); }
Instance of Symbol 469 MovieClip "updown3" in Frame 110
on (press) { startDrag (this); } on (release, releaseOutside) { stopDrag(); }
Instance of Symbol 470 MovieClip "updown4" in Frame 110
on (press) { startDrag (this); } on (release, releaseOutside) { stopDrag(); }
Instance of Symbol 472 MovieClip in Frame 110
on (release) { _root.gotoAndStop(111); }
Instance of Symbol 474 MovieClip "startpoint1" in Frame 110
on (press) { startDrag (this); } on (release, releaseOutside) { stopDrag(); }
Instance of Symbol 476 MovieClip in Frame 110
on (release) { _root.gotoAndStop(30); }
Frame 111
stop();
Instance of Symbol 33 MovieClip "hero" in Frame 111
onClipEvent (load) { yspeed = 0; xspeed = 0; power = 0.65; gravity = 0.09; upconstant = 0.75; friction = 0.09; } onClipEvent (enterFrame) { if (Key.isDown(37)) { xspeed = xspeed - power; } if (Key.isDown(39)) { xspeed = xspeed + power; } if (Key.isDown(38)) { yspeed = yspeed - (power * upconstant); } if (Key.isDown(40)) { yspeed = yspeed + (power * upconstant); } yspeed = yspeed + gravity; _y = (_y + yspeed); _x = (_x + xspeed); _rotation = (_rotation + xspeed); if (_root.wall.hitTest(_x, _y, true)) { xspeed = -5; yspeed = 0; if (_root.wall2.hitTest(_x, _y, true)) { xspeed = 5; yspeed = 0; } } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.enemy)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.switchwall1)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.enemy3)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.enemy4)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.enemy5)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.rightplatform)) { xspeed = -5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.rightplatform4)) { xspeed = -5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.leftplatform4)) { xspeed = 5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.enemy2)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.wall2)) { xspeed = 5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.righta)) { xspeed = 25; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.right2)) { xspeed = 25; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.right3)) { xspeed = 25; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.upwall)) { xspeed = 0; yspeed = 5; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.downwall)) { xspeed = 0; yspeed = -5; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.rightwall)) { xspeed = -5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.leftwall)) { xspeed = 5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.downplatform)) { xspeed = 0; yspeed = -5; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.upplatform)) { xspeed = 0; yspeed = 5; } } onClipEvent (enterFrame) { if (_root.portal1.hitTest(this)) { xspeed = 0; yspeed = 0; _x = _root.portal2._x; _y = _root.portal2._y; } } onClipEvent (enterFrame) { if (_root.portal2a.hitTest(this)) { xspeed = 0; yspeed = 0; _x = _root.portal2b._x; _y = _root.portal2b._y; } } onClipEvent (enterFrame) { if (_root.portal3a.hitTest(this)) { xspeed = 0; yspeed = 0; _x = _root.portal3b._x; _y = _root.portal3b._y; } } onClipEvent (enterFrame) { if (_root.portal5a.hitTest(this)) { xspeed = 0; yspeed = 0; _x = _root.portal5b._x; _y = _root.portal5b._y; } } onClipEvent (enterFrame) { if (_root.portal4a.hitTest(this)) { xspeed = 0; yspeed = 0; _x = _root.portal4b._x; _y = _root.portal4b._y; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.downplatform3)) { xspeed = 0; yspeed = -5; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.downplatform2)) { xspeed = 0; yspeed = -5; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.powerup)) { this.gotoAndStop(25); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.rightplatform2)) { xspeed = -5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.rightplatform3)) { xspeed = -5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.leftplatform)) { xspeed = 5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.leftplatform2)) { xspeed = 5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.leftplatform3)) { xspeed = 5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.upplatform2)) { xspeed = 0; yspeed = 5; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.upplatform3)) { xspeed = 0; yspeed = 5; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.upplatform4)) { xspeed = 0; yspeed = 5; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.downplatform4)) { xspeed = 0; yspeed = -5; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.monster1m.monster1)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.funky)) { xspeed = xspeed * 0.8; yspeed = yspeed * 0.8; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.endmul)) { this.gotoAndPlay(26); _root.nam--; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.upab)) { xspeed = 0; yspeed = -random(25); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.movinga)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.movingb)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.movingc)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.movingd)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.movinge)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.movingf)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.movingg)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.moving2)) { _root.movingb.gotoAndStop(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.moving1)) { _root.movinga.gotoAndStop(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.moving3)) { _root.movingc.gotoAndStop(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.moving4)) { _root.movingd.gotoAndStop(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.moving5)) { _root.movinge.gotoAndStop(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.moving6)) { _root.movingf.gotoAndStop(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.moving7)) { _root.movingg.gotoAndStop(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.upwall2)) { xspeed = 0; yspeed = 5; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.downwall2)) { xspeed = 0; yspeed = -5; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.rightwall2)) { xspeed = -5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.leftwall2)) { xspeed = 5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.upwall3)) { xspeed = 0; yspeed = 5; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.downwall3)) { xspeed = 0; yspeed = -5; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.rightwall3)) { xspeed = -5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.leftwall3)) { xspeed = 5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.upwall3)) { xspeed = 0; yspeed = 5; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.downwall3)) { xspeed = 0; yspeed = -5; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.rightwall3)) { xspeed = -5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.leftwall3)) { xspeed = 5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.upwall4)) { xspeed = 0; yspeed = 5; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.downwall4)) { xspeed = 0; yspeed = -5; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.rightwall4)) { xspeed = -5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.leftwall4)) { xspeed = 5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.upwall5)) { xspeed = 0; yspeed = 5; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.downwall5)) { xspeed = 0; yspeed = -5; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.rightwall5)) { xspeed = -5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.leftwall5)) { xspeed = 5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.fakeport1)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.fakeport2)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.fakeport3)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.fakeport4)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.fakeport5)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.fakeport6)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.fakeport7)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.fakeport8)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.enemy6)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.enemy7)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.enemy1)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.enemy8)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.enemy9)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.enemy10)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.enemy11)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.enemy12)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.enemy13)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.enemy14)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.enemy15)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.enemy16)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.enemy17)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.enemy18)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.enemy19)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.updown1.upplatform1)) { xspeed = 0; yspeed = 5; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.updown2.upplatform2)) { xspeed = 0; yspeed = 5; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.updown3.upplatform3)) { xspeed = 0; yspeed = 5; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.updown4.upplatform4)) { xspeed = 0; yspeed = 5; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.updown1.downplatform1)) { xspeed = 0; yspeed = -5; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.updown2.downplatform2)) { xspeed = 0; yspeed = -5; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.updown3.downplatform3)) { xspeed = 0; yspeed = -5; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.updown4.downplatform4)) { xspeed = 0; yspeed = -5; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.lright1.rightplatform1)) { xspeed = -5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.lright2.rightplatform2)) { xspeed = -5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.lright3.rightplatform3)) { xspeed = -5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.lright4.rightplatform4)) { xspeed = -5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.lright1.leftplatform1)) { xspeed = 5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.lright2.leftplatform2)) { xspeed = 5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.lright3.leftplatform3)) { xspeed = 5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.lright4.leftplatform4)) { xspeed = 5; yspeed = 0; } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.monster1m.monster1)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.monster2)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.monster3m.monster3)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.monster4m.monster4)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.monster5)) { this.gotoAndPlay(2); } } onClipEvent (enterFrame) { if (_root.hero.hitTest(_root.monster6m.monster6)) { this.gotoAndPlay(2); } }
Instance of Symbol 325 MovieClip in Frame 111
onClipEvent (enterFrame) { _y = (_y + ((_root.hero._y - _y) / 4)); _x = (_x + ((_root.hero._x - _x) / 4)); }
Frame 112
stop(); var lives = 8;
Instance of Symbol 480 MovieClip in Frame 112
on (release) { _root.gotoAndStop(109); }
Instance of Symbol 482 MovieClip in Frame 112
on (release) { _root.gotoAndStop(30); }
Symbol 3 MovieClip [splode] Frame 23
stop(); this.unloadMovie();
Symbol 483 MovieClip [__Packages.MochiAd] Frame 0
class MochiAd { function MochiAd () { } static function getVersion() { return("2.1"); } static function showPreGameAd(options) { var _local27 = {clip:_root, ad_timeout:3000, fadeout_time:250, regpt:"o", method:"showPreloaderAd", color:16747008, background:16777161, outline:13994812, ad_started:function () { this.clip.stop(); }, ad_finished:function () { this.clip.play(); }}; options = _parseOptions(options, _local27); var clip = options.clip; var _local23 = 11000; var _local26 = options.ad_timeout; delete options.ad_timeout; var fadeout_time = options.fadeout_time; delete options.fadeout_time; if (!load(options)) { options.ad_finished(); return(undefined); } options.ad_started(); var mc = clip._mochiad; mc.onUnload = function () { options.ad_finished(); }; var _local14 = _getRes(options); var _local4 = _local14[0]; var _local13 = _local14[1]; mc._x = _local4 * 0.5; mc._y = _local13 * 0.5; var chk = mc.createEmptyMovieClip("_mochiad_wait", 3); chk._x = _local4 * -0.5; chk._y = _local13 * -0.5; var _local7 = chk.createEmptyMovieClip("_mochiad_bar", 4); _local7._x = 10; _local7._y = _local13 - 20; var _local22 = options.color; delete options.color; var _local19 = options.background; delete options.background; var _local24 = options.outline; delete options.outline; var _local5 = _local7.createEmptyMovieClip("_outline", 1); _local5.beginFill(_local19); _local5.moveTo(0, 0); _local5.lineTo(_local4 - 20, 0); _local5.lineTo(_local4 - 20, 10); _local5.lineTo(0, 10); _local5.lineTo(0, 0); _local5.endFill(); var _local3 = _local7.createEmptyMovieClip("_inside", 2); _local3.beginFill(_local22); _local3.moveTo(0, 0); _local3.lineTo(_local4 - 20, 0); _local3.lineTo(_local4 - 20, 10); _local3.lineTo(0, 10); _local3.lineTo(0, 0); _local3.endFill(); _local3._xscale = 0; var _local6 = _local7.createEmptyMovieClip("_outline", 3); _local6.lineStyle(0, _local24, 100); _local6.moveTo(0, 0); _local6.lineTo(_local4 - 20, 0); _local6.lineTo(_local4 - 20, 10); _local6.lineTo(0, 10); _local6.lineTo(0, 0); chk.ad_msec = _local23; chk.ad_timeout = _local26; chk.started = getTimer(); chk.showing = false; chk.last_pcnt = 0; chk.fadeout_time = fadeout_time; chk.fadeFunction = function () { var _local2 = 100 * (1 - ((getTimer() - this.fadeout_start) / this.fadeout_time)); if (_local2 > 0) { this._parent._alpha = _local2; } else { var _local3 = this._parent._parent; MochiAd.unload(_local3); delete this.onEnterFrame; } }; mc.lc.adLoaded = function (width, height) { }; mc.lc.adjustProgress = function (msec) { var _local2 = this.mc._mochiad_wait; _local2.server_control = true; _local2.started = getTimer(); _local2.ad_msec = msec; }; chk.onEnterFrame = function () { var _local6 = this._parent._parent; var _local12 = this._parent._mochiad_ctr; var _local5 = getTimer() - this.started; var _local3 = false; var _local4 = _local6.getBytesTotal(); var _local8 = _local6.getBytesLoaded(); var _local10 = (100 * _local8) / _local4; var _local11 = (100 * _local5) / chk.ad_msec; var _local9 = this._mochiad_bar._inside; var _local2 = Math.min(100, Math.min(_local10 || 0, _local11)); _local2 = Math.max(this.last_pcnt, _local2); this.last_pcnt = _local2; _local9._xscale = _local2; if (!chk.showing) { var _local7 = _local12.getBytesTotal(); if ((_local7 > 0) || (typeof(_local7) == "undefined")) { chk.showing = true; chk.started = getTimer(); } else if (_local5 > chk.ad_timeout) { _local3 = true; } } if (_local5 > chk.ad_msec) { _local3 = true; } if (((_local4 > 0) && (_local8 >= _local4)) && (_local3)) { if (this.server_control) { delete this.onEnterFrame; } else { this.fadeout_start = getTimer(); this.onEnterFrame = chk.fadeFunction; } } }; } static function showInterLevelAd(options) { var _local13 = {clip:_root, ad_timeout:2000, fadeout_time:250, regpt:"o", method:"showTimedAd", ad_started:function () { this.clip.stop(); }, ad_finished:function () { this.clip.play(); }}; options = _parseOptions(options, _local13); var clip = options.clip; var _local10 = 11000; var _local12 = options.ad_timeout; delete options.ad_timeout; var fadeout_time = options.fadeout_time; delete options.fadeout_time; if (!load(options)) { options.ad_finished(); return(undefined); } options.ad_started(); var mc = clip._mochiad; mc.onUnload = function () { options.ad_finished(); }; var _local5 = _getRes(options); var _local14 = _local5[0]; var _local11 = _local5[1]; mc._x = _local14 * 0.5; mc._y = _local11 * 0.5; var chk = mc.createEmptyMovieClip("_mochiad_wait", 3); chk.ad_msec = _local10; chk.ad_timeout = _local12; chk.started = getTimer(); chk.showing = false; chk.fadeout_time = fadeout_time; chk.fadeFunction = function () { var _local2 = 100 * (1 - ((getTimer() - this.fadeout_start) / this.fadeout_time)); if (_local2 > 0) { this._parent._alpha = _local2; } else { var _local3 = this._parent._parent; MochiAd.unload(_local3); delete this.onEnterFrame; } }; mc.lc.adLoaded = function (width, height) { }; mc.lc.adjustProgress = function (msec) { var _local2 = this.mc._mochiad_wait; _local2.server_control = true; _local2.started = getTimer(); _local2.ad_msec = msec - 250; }; chk.onEnterFrame = function () { var _local5 = this._parent._mochiad_ctr; var _local4 = getTimer() - this.started; var _local2 = false; if (!chk.showing) { var _local3 = _local5.getBytesTotal(); if ((_local3 > 0) || (typeof(_local3) == "undefined")) { chk.showing = true; chk.started = getTimer(); } else if (_local4 > chk.ad_timeout) { _local2 = true; } } if (_local4 > chk.ad_msec) { _local2 = true; } if (_local2) { if (this.server_control) { delete this.onEnterFrame; } else { this.fadeout_start = getTimer(); this.onEnterFrame = this.fadeFunction; } } }; } static function showTimedAd(options) { showInterLevelAd(options); } static function showPreloaderAd(options) { showPreGameAd(options); } static function _allowDomains(server) { var _local1 = server.split("/")[2].split(":")[0]; if (System.security) { if (System.security.allowDomain) { System.security.allowDomain("*"); System.security.allowDomain(_local1); } if (System.security.allowInsecureDomain) { System.security.allowInsecureDomain("*"); System.security.allowInsecureDomain(_local1); } } return(_local1); } static function _loadCommunicator(options) { var _local26 = {clip:_root, com_server:"http://x.mochiads.com/com/1/", method:"loadCommunicator", depth:10337, id:"_UNKNOWN_"}; options = _parseOptions(options, _local26); options.swfv = options.clip.getSWFVersion() || 6; options.mav = getVersion(); var _local18 = options.clip; var _local20 = "_mochiad_com_" + options.id; if (!_isNetworkAvailable()) { return(null); } if (_local18[_local20]) { return(_local18[_local20].lc); } var _local21 = options.com_server + options.id; _allowDomains(_local21); delete options.id; delete options.com_server; var _local25 = options.depth; delete options.depth; var _local17 = _local18.createEmptyMovieClip(_local20, _local25); var _local11 = _local17.createEmptyMovieClip("_mochiad_com", 1); for (var _local15 in options) { _local11[_local15] = options[_local15]; } var _local6 = new LocalConnection(); var _local16 = ["", Math.floor(new Date().getTime()), random(999999)].join("_"); _local6.mc = _local17; _local6.name = _local16; _local6.allowDomain = function (d) { return(true); }; _local6.allowInsecureDomain = _local6.allowDomain; _local6.connect(_local16); _local17.lc = _local6; _local11.lc = _local16; _local6._id = 0; _local6._queue = []; _local6.rpcResult = function (cb_arg) { var _local8 = parseInt(cb_arg); var _local4 = this._callbacks[_local8]; if (!_local4) { return(undefined); } delete this._callbacks[_local8]; var _local5 = []; var _local3 = 2; while (_local3 < _local4.length) { _local5.push(_local4[_local3]); _local3++; } _local3 = 1; while (_local3 < arguments.length) { _local5.push(arguments[_local3]); _local3++; } var _local6 = _local4[1]; var _local7 = _local4[0]; if (_local7 && (typeof(_local6) == "string")) { _local6 = _local7[_local6]; } if (_local6) { _local6.apply(_local7, _local5); } }; _local6._didConnect = function (endpoint) { this._endpoint = endpoint; var _local4 = this._queue; delete this._queue; var _local5 = this.doSend; var _local2 = 0; while (_local2 < _local4.length) { var _local3 = _local4[_local2]; _local5.apply(this, _local3); _local2++; } }; _local6.doSend = function (args, cbobj, cbfn) { if (this._endpoint == null) { var _local4 = []; var _local3 = 0; while (_local3 < arguments.length) { _local4.push(arguments[_local3]); _local3++; } this._queue.push(_local4); return(undefined); } this._id = this._id + 1; var _local5 = this._id; if ((cbfn === undefined) || (cbfn === null)) { cbfn = cbobj; } this._callbacks[_local5] = [cbobj, cbfn]; var _local7 = new LocalConnection(); var _local9 = _local7.send(this._endpoint, "rpc", _local5, args); }; _local6._callbacks = {}; _local6._callbacks[0] = [_local6, "_didConnect"]; _local11.st = getTimer(); _local11.loadMovie(_local21 + ".swf", "POST"); return(_local6); } static function fetchHighScores(options, callbackObj, callbackMethod) { var _local1 = _loadCommunicator({id:options.id}); if (!_local1) { return(false); } var _local4 = ["fetchHighScores", options]; _local1.doSend(["fetchHighScores", options], callbackObj, callbackMethod); return(true); } static function sendHighScore(options, callbackObj, callbackMethod) { var _local1 = _loadCommunicator({id:options.id}); if (!_local1) { return(false); } var _local4 = ["sendHighScore", options]; _local1.doSend(["sendHighScore", options], callbackObj, callbackMethod); return(true); } static function load(options) { var _local13 = {clip:_root, server:"http://x.mochiads.com/srv/1/", method:"load", depth:10333, id:"_UNKNOWN_"}; options = _parseOptions(options, _local13); options.swfv = options.clip.getSWFVersion() || 6; options.mav = getVersion(); var _local9 = options.clip; if (!_isNetworkAvailable()) { return(null); } if (_local9._mochiad_loaded) { return(null); } var _local12 = options.depth; delete options.depth; var _local6 = _local9.createEmptyMovieClip("_mochiad", _local12); var _local11 = _getRes(options); options.res = (_local11[0] + "x") + _local11[1]; options.server = options.server + options.id; delete options.id; _local9._mochiad_loaded = true; var _local4 = _local6.createEmptyMovieClip("_mochiad_ctr", 1); for (var _local7 in options) { _local4[_local7] = options[_local7]; } var _local10 = _local4.server; delete _local4.server; var _local14 = _allowDomains(_local10); _local6.onEnterFrame = function () { if (this._mochiad_ctr._url != this._url) { this.onEnterFrame = function () { if (!this._mochiad_ctr) { delete this.onEnterFrame; MochiAd.unload(this._parent); } }; } }; var _local5 = new LocalConnection(); var _local8 = ["", Math.floor(new Date().getTime()), random(999999)].join("_"); _local5.mc = _local6; _local5.name = _local8; _local5.hostname = _local14; _local5.allowDomain = function (d) { return(true); }; _local5.allowInsecureDomain = _local5.allowDomain; _local5.connect(_local8); _local6.lc = _local5; _local4.lc = _local8; _local4.st = getTimer(); _local4.loadMovie(_local10 + ".swf", "POST"); return(_local6); } static function unload(clip) { if (typeof(clip) == "undefined") { clip = _root; } if (clip.clip && (clip.clip._mochiad)) { clip = clip.clip; } if (!clip._mochiad) { return(false); } clip._mochiad.removeMovieClip(); delete clip._mochiad_loaded; delete clip._mochiad; return(true); } static function _isNetworkAvailable() { if (System.security) { var _local1 = System.security; if (_local1.sandboxType == "localWithFile") { return(false); } } return(true); } static function _getRes(options) { var _local3 = options.clip.getBounds(); var _local2 = 0; var _local1 = 0; if (typeof(options.res) != "undefined") { var _local4 = options.res.split("x"); _local2 = parseFloat(_local4[0]); _local1 = parseFloat(_local4[1]); } else { _local2 = _local3.xMax - _local3.xMin; _local1 = _local3.yMax - _local3.yMin; } if ((_local2 == 0) || (_local1 == 0)) { _local2 = Stage.width; _local1 = Stage.height; } return([_local2, _local1]); } static function _parseOptions(options, defaults) { var _local4 = {}; for (var _local8 in defaults) { _local4[_local8] = defaults[_local8]; } if (options) { for (var _local8 in options) { _local4[_local8] = options[_local8]; } } if (_root.mochiad_options) { var _local5 = _root.mochiad_options.split("&"); var _local2 = 0; while (_local2 < _local5.length) { var _local3 = _local5[_local2].split("="); _local4[unescape(_local3[0])] = unescape(_local3[1]); _local2++; } } return(_local4); } }
Symbol 31 MovieClip Frame 1
stop();
Symbol 31 MovieClip Frame 9
gotoAndPlay (2);
Symbol 33 MovieClip Frame 1
stop();
Symbol 33 MovieClip Frame 24
_root.lives--; _x = _root.startpoint1._x; _y = _root.startpoint1._y; xspeed = 0; yspeed = 0; gotoAndStop (1);
Symbol 33 MovieClip Frame 25
stop();
Symbol 33 MovieClip Frame 26
_root.gotoAndStop(nextFrame);
Symbol 33 MovieClip Frame 27
stop();
Symbol 38 MovieClip Frame 1
stop();
Symbol 38 MovieClip Frame 2
stop();
Symbol 40 MovieClip Frame 1
stop();
Symbol 40 MovieClip Frame 2
stop();
Symbol 42 MovieClip Frame 1
stop();
Symbol 42 MovieClip Frame 2
stop();
Symbol 48 MovieClip Frame 1
stop();
Symbol 48 MovieClip Frame 2
stop();
Symbol 49 MovieClip Frame 1
stop();
Symbol 49 MovieClip Frame 2
stop();
Symbol 50 MovieClip Frame 1
stop();
Instance of Symbol 48 MovieClip "levedit" in Symbol 50 MovieClip Frame 1
on (rollOver) { this.gotoAndStop(2); } on (rollOut) { this.gotoAndStop(1); }
Symbol 50 MovieClip Frame 2
stop();
Instance of Symbol 49 MovieClip in Symbol 50 MovieClip Frame 2
on (rollOver) { this.gotoAndStop(2); } on (rollOut) { this.gotoAndStop(1); } on (release) { _root.gotoAndStop(109); }
Symbol 53 Button
on (press) { if (_quality == "HIGH") { _quality = "MEDIUM"; } else if (_quality == "MEDIUM") { _quality = "LOW"; } else if (_quality == "LOW") { _quality = "HIGH"; } }
Symbol 58 MovieClip Frame 1
stop();
Symbol 58 MovieClip Frame 2
stop();
Symbol 67 MovieClip Frame 1
stop();
Symbol 67 MovieClip Frame 15
_root.nextFrame();
Symbol 79 MovieClip Frame 1
stop();
Symbol 81 MovieClip Frame 1
stop();
Symbol 81 MovieClip Frame 2
stop();
Symbol 91 MovieClip Frame 1
stop();
Symbol 91 MovieClip Frame 2
stop();
Symbol 127 MovieClip Frame 1
stop();
Instance of Symbol 121 MovieClip in Symbol 127 MovieClip Frame 1
on (release) { _root.music5.gotoAndPlay(2); }
Symbol 127 MovieClip Frame 2
gotoAndPlay (2);
Instance of Symbol 124 MovieClip in Symbol 127 MovieClip Frame 2
on (release) { _root.music5.gotoAndPlay(4750); }
Symbol 127 MovieClip Frame 4750
gotoAndPlay (4750);
Instance of Symbol 126 MovieClip in Symbol 127 MovieClip Frame 4750
on (release) { _root.music5.gotoAndStop(1); }
Symbol 130 MovieClip Frame 1
stop();
Symbol 130 MovieClip Frame 2
stop();
Symbol 132 MovieClip Frame 1
stop();
Symbol 132 MovieClip Frame 2
stop();
Symbol 135 Button
on (press) { if (password1.text == "metalstorm") { _root.gotoAndStop(86); } } on (press) { if (password1.text == "superflonic") { _root.gotoAndStop(88); } } on (press) { if (password1.text == "mechabloby") { _root.gotoAndStop(90); } } on (press) { if (password1.text == "rozner") { _root.gotoAndStop(92); } } on (press) { if (password1.text == "phoenixxx") { _root.gotoAndStop(94); } } on (press) { if (password1.text == "lostchances") { _root.gotoAndStop(96); } } on (press) { if (password1.text == "gagsy") { _root.gotoAndStop(98); } } on (press) { if (password1.text == "rummy") { _root.gotoAndStop(100); } } on (press) { if (password1.text == "anlzingus") { _root.gotoAndStop(102); } } on (press) { if (password1.text == "sbb") { _root.gotoAndStop(104); } } on (press) { if (password1.text == "rfaction") { _root.gotoAndStop(106); } }
Symbol 139 MovieClip Frame 1
stop();
Symbol 139 MovieClip Frame 2
stop();
Symbol 167 MovieClip Frame 1
stop();
Symbol 167 MovieClip Frame 29
stop();
Symbol 312 MovieClip Frame 200
this.gotoAndPlay(1);
Symbol 325 MovieClip Frame 1
function camControl() { parentColor.setTransform(camColor.getTransform()); var _local4 = sX / this._width; var _local3 = sY / this._height; _parent._x = cX - (this._x * _local4); _parent._y = cY - (this._y * _local3); _parent._xscale = 100 * _local4; _parent._yscale = 100 * _local3; } function resetStage() { var _local2 = {ra:100, rb:0, ga:100, gb:0, ba:100, bb:0, aa:100, ab:0}; parentColor.setTransform(_local2); _parent._xscale = 100; _parent._yscale = 100; _parent._x = 0; _parent._y = 0; } parentColor.setTransform(camColor.getTransform()); this._visible = false; var oldMode = Stage.scaleMode; Stage.scaleMode = "exactFit"; var cX = (Stage.width / 2); var cY = (Stage.height / 2); var sX = Stage.width; var sY = Stage.height; Stage.scaleMode = oldMode; var camColor = new Color(this); var parentColor = new Color(_parent); this.onEnterFrame = camControl; camControl(); this.onUnload = resetStage;
Symbol 355 MovieClip Frame 13
stop();
Symbol 356 MovieClip Frame 1
stop();
Symbol 356 MovieClip Frame 2
stop();
Symbol 364 MovieClip Frame 1
stop();
Symbol 364 MovieClip Frame 2
stop();
Symbol 366 MovieClip Frame 201
gotoAndPlay (1);
Instance of Symbol 376 MovieClip "monster1" in Symbol 377 MovieClip Frame 1
on (press) { startDrag (this); } on (release, releaseOutside) { stopDrag(); }
Instance of Symbol 376 MovieClip "monster5" in Symbol 377 MovieClip Frame 99
on (press) { startDrag (this); } on (release, releaseOutside) { stopDrag(); }
Instance of Symbol 376 MovieClip "monster1" in Symbol 377 MovieClip Frame 100
on (press) { startDrag (this); } on (release, releaseOutside) { stopDrag(); }
Instance of Symbol 376 MovieClip "monster6" in Symbol 378 MovieClip Frame 1
on (press) { startDrag (this); } on (release, releaseOutside) { stopDrag(); }
Symbol 396 MovieClip Frame 1
stop();
Symbol 396 MovieClip Frame 2
stop();
Symbol 450 MovieClip Frame 1
stop();
Symbol 452 MovieClip Frame 1
stop();
Symbol 452 MovieClip Frame 15
_root.nextFrame();

Library Items

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

Instance Names

"ball"Frame 1Symbol 9 MovieClip
"crosshair"Frame 1Symbol 11 MovieClip
"wall"Frame 2Symbol 16 MovieClip
"wall3"Frame 2Symbol 18 MovieClip
"wall2"Frame 2Symbol 20 MovieClip
"right1"Frame 2Symbol 22 MovieClip
"crosshair"Frame 2Symbol 28 MovieClip
"hero"Frame 2Symbol 33 MovieClip
"levedit1"Frame 30Symbol 50 MovieClip
"ball"Frame 30Symbol 9 MovieClip
"crosshair"Frame 30Symbol 11 MovieClip
"switch1"Frame 67Symbol 91 MovieClip
"music5"Frame 81Symbol 127 MovieClip
"password1"Frame 82Symbol 133 EditableText
"right1"Frame 83Symbol 22 MovieClip
"lives"Frame 83Symbol 137 EditableText
"startpoint1"Frame 84Symbol 144 MovieClip
"hero"Frame 84Symbol 33 MovieClip
"leftwall"Frame 84Symbol 63 MovieClip
"rightwall"Frame 84Symbol 63 MovieClip
"upwall"Frame 84Symbol 63 MovieClip
"downwall"Frame 84Symbol 63 MovieClip
"upplatform"Frame 84Symbol 63 MovieClip
"downplatform"Frame 84Symbol 63 MovieClip
"lives"Frame 84Symbol 145 EditableText
"endlevel1"Frame 84Symbol 67 MovieClip
"lives"Frame 85Symbol 146 EditableText
"startpoint1"Frame 86Symbol 144 MovieClip
"hero"Frame 86Symbol 33 MovieClip
"upwall"Frame 86Symbol 63 MovieClip
"downwall"Frame 86Symbol 63 MovieClip
"enemy"Frame 86Symbol 150 MovieClip
"enemy2"Frame 86Symbol 150 MovieClip
"lives"Frame 86Symbol 151 EditableText
"upplatform"Frame 86Symbol 63 MovieClip
"downplatform"Frame 86Symbol 63 MovieClip
"endlevel1"Frame 86Symbol 67 MovieClip
"startpoint"Frame 87Symbol 144 MovieClip
"lives"Frame 87Symbol 152 EditableText
"startpoint1"Frame 88Symbol 144 MovieClip
"upplatform2"Frame 88Symbol 63 MovieClip
"downplatform2"Frame 88Symbol 63 MovieClip
"enemy"Frame 88Symbol 150 MovieClip
"upplatform"Frame 88Symbol 63 MovieClip
"downplatform"Frame 88Symbol 63 MovieClip
"enemy2"Frame 88Symbol 150 MovieClip
"portal1"Frame 88Symbol 116 MovieClip
"portal2"Frame 88Symbol 116 MovieClip
"lives"Frame 88Symbol 155 EditableText
"endlevel1"Frame 88Symbol 67 MovieClip
"leftwall"Frame 88Symbol 63 MovieClip
"rightwall"Frame 88Symbol 63 MovieClip
"upwall"Frame 88Symbol 63 MovieClip
"downwall"Frame 88Symbol 63 MovieClip
"hero"Frame 88Symbol 33 MovieClip
"lives"Frame 89Symbol 156 EditableText
"right1"Frame 90Symbol 22 MovieClip
"startpoint"Frame 90Symbol 144 MovieClip
"startpoint"Frame 90Symbol 144 MovieClip
"startpoint1"Frame 90Symbol 144 MovieClip
"lives"Frame 90Symbol 162 EditableText
"endlevel1"Frame 90Symbol 67 MovieClip
"enemy3"Frame 90Symbol 163 MovieClip
"enemy"Frame 90Symbol 96 MovieClip
"enemy2"Frame 90Symbol 96 MovieClip
"leftwall"Frame 90Symbol 63 MovieClip
"rightwall"Frame 90Symbol 63 MovieClip
"upwall"Frame 90Symbol 63 MovieClip
"downwall"Frame 90Symbol 63 MovieClip
"enemy4"Frame 90Symbol 96 MovieClip
"switchwall1"Frame 90Symbol 167 MovieClip
"rightwall2"Frame 90Symbol 169 MovieClip
"upplatform"Frame 90Symbol 63 MovieClip
"downplatform"Frame 90Symbol 63 MovieClip
"switch1"Frame 90Symbol 91 MovieClip
"hero"Frame 90Symbol 33 MovieClip
"startpoint"Frame 91Symbol 144 MovieClip
"lives"Frame 91Symbol 170 EditableText
"startpoint1"Frame 92Symbol 144 MovieClip
"leftwall"Frame 92Symbol 63 MovieClip
"rightwall"Frame 92Symbol 63 MovieClip
"upwall"Frame 92Symbol 63 MovieClip
"downwall"Frame 92Symbol 63 MovieClip
"enemy2"Frame 92Symbol 163 MovieClip
"enemy4"Frame 92Symbol 96 MovieClip
"enemy3"Frame 92Symbol 96 MovieClip
"powerup"Frame 92Symbol 174 MovieClip
"rightplatform"Frame 92Symbol 169 MovieClip
"hero"Frame 92Symbol 33 MovieClip
"enemy5"Frame 92Symbol 176 MovieClip
"lives"Frame 92Symbol 177 EditableText
"endlevel1"Frame 92Symbol 67 MovieClip
"enemy"Frame 92Symbol 176 MovieClip
"startpoint"Frame 93Symbol 144 MovieClip
"lives"Frame 93Symbol 179 EditableText
"startpoint1"Frame 94Symbol 144 MovieClip
"leftwall"Frame 94Symbol 63 MovieClip
"rightwall"Frame 94Symbol 63 MovieClip
"upwall"Frame 94Symbol 63 MovieClip
"downwall"Frame 94Symbol 63 MovieClip
"rightplatform"Frame 94Symbol 169 MovieClip
"enemy"Frame 94Symbol 96 MovieClip
"enemy2"Frame 94Symbol 96 MovieClip
"enemy2"Frame 94Symbol 96 MovieClip
"hero"Frame 94Symbol 33 MovieClip
"enemy3"Frame 94Symbol 183 MovieClip
"lives"Frame 94Symbol 184 EditableText
"endlevel1"Frame 94Symbol 67 MovieClip
"right2"Frame 94Symbol 186 MovieClip
"right3"Frame 94Symbol 195 MovieClip
"wall"Frame 95Symbol 16 MovieClip
"wall3"Frame 95Symbol 18 MovieClip
"wall2"Frame 95Symbol 20 MovieClip
"right1"Frame 95Symbol 22 MovieClip
"startpoint"Frame 95Symbol 144 MovieClip
"lives"Frame 95Symbol 196 EditableText
"portal4a"Frame 96Symbol 116 MovieClip
"portal4b"Frame 96Symbol 116 MovieClip
"portal2a"Frame 96Symbol 116 MovieClip
"portal2b"Frame 96Symbol 116 MovieClip
"portal3a"Frame 96Symbol 116 MovieClip
"portal3b"Frame 96Symbol 116 MovieClip
"startpoint1"Frame 96Symbol 144 MovieClip
"lives"Frame 96Symbol 200 EditableText
"endlevel1"Frame 96Symbol 67 MovieClip
"hero"Frame 96Symbol 33 MovieClip
"leftwall"Frame 96Symbol 63 MovieClip
"rightwall"Frame 96Symbol 63 MovieClip
"upwall"Frame 96Symbol 63 MovieClip
"downwall"Frame 96Symbol 63 MovieClip
"enemy2"Frame 96Symbol 251 MovieClip
"downplatform2"Frame 96Symbol 169 MovieClip
"upplatform2"Frame 96Symbol 253 MovieClip
"enemy5"Frame 96Symbol 251 MovieClip
"enemy4"Frame 96Symbol 251 MovieClip
"enemy3"Frame 96Symbol 251 MovieClip
"enemy6"Frame 96Symbol 251 MovieClip
"downplatform2"Frame 96Symbol 169 MovieClip
"upplatform2"Frame 96Symbol 253 MovieClip
"enemy7"Frame 96Symbol 304 MovieClip
"enemy8"Frame 96Symbol 304 MovieClip
"enemy9"Frame 96Symbol 304 MovieClip
"enemy10"Frame 96Symbol 304 MovieClip
"lives"Frame 97Symbol 305 EditableText
"startpoint1"Frame 98Symbol 144 MovieClip
"portal4a"Frame 98Symbol 116 MovieClip
"portal4b"Frame 98Symbol 116 MovieClip
"portal5a"Frame 98Symbol 311 MovieClip
"portal5b"Frame 98Symbol 311 MovieClip
"portal2a"Frame 98Symbol 116 MovieClip
"monster1m"Frame 98Symbol 312 MovieClip
"leftwall"Frame 98Symbol 63 MovieClip
"rightwall"Frame 98Symbol 63 MovieClip
"upwall"Frame 98Symbol 63 MovieClip
"downwall"Frame 98Symbol 63 MovieClip
"rightplatform2"Frame 98Symbol 169 MovieClip
"leftplatform2"Frame 98Symbol 314 MovieClip
"downplatform2"Frame 98Symbol 169 MovieClip
"upplatform3"Frame 98Symbol 169 MovieClip
"leftplatform3"Frame 98Symbol 169 MovieClip
"rightplatform3"Frame 98Symbol 169 MovieClip
"rightplatform3"Frame 98Symbol 316 MovieClip
"downplatform3"Frame 98Symbol 169 MovieClip
"portal3b"Frame 98Symbol 116 MovieClip
"upplatform"Frame 98Symbol 169 MovieClip
"leftplatform4"Frame 98Symbol 169 MovieClip
"downplatform"Frame 98Symbol 318 MovieClip
"rightplatform4"Frame 98Symbol 169 MovieClip
"downplatform4"Frame 98Symbol 169 MovieClip
"portal2b"Frame 98Symbol 116 MovieClip
"portal3a"Frame 98Symbol 116 MovieClip
"upplatform2"Frame 98Symbol 253 MovieClip
"hero"Frame 98Symbol 33 MovieClip
"startpoint"Frame 98Symbol 144 MovieClip
"lives"Frame 98Symbol 319 EditableText
"endlevel1"Frame 98Symbol 67 MovieClip
"startpoint"Frame 98Symbol 144 MovieClip
"enemy5"Frame 98Symbol 321 MovieClip
"enemy3"Frame 98Symbol 321 MovieClip
"enemy4"Frame 98Symbol 321 MovieClip
"enemy2"Frame 98Symbol 321 MovieClip
"startpoint"Frame 99Symbol 144 MovieClip
"lives"Frame 99Symbol 327 EditableText
"startpoint1"Frame 100Symbol 144 MovieClip
"funky"Frame 100Symbol 333 MovieClip
"leftwall"Frame 100Symbol 63 MovieClip
"rightwall"Frame 100Symbol 63 MovieClip
"upwall"Frame 100Symbol 63 MovieClip
"downwall"Frame 100Symbol 63 MovieClip
"hero"Frame 100Symbol 33 MovieClip
"enemy5"Frame 100Symbol 336 MovieClip
"enemy2"Frame 100Symbol 336 MovieClip
"enemy4"Frame 100Symbol 336 MovieClip
"enemy3"Frame 100Symbol 336 MovieClip
"rightplatform2"Frame 100Symbol 169 MovieClip
"leftplatform2"Frame 100Symbol 314 MovieClip
"endlevel1"Frame 100Symbol 67 MovieClip
"monster1m"Frame 100Symbol 312 MovieClip
"lives"Frame 100Symbol 337 EditableText
"lives"Frame 101Symbol 340 EditableText
"startpoint1"Frame 102Symbol 144 MovieClip
"leftwall"Frame 102Symbol 63 MovieClip
"rightwall"Frame 102Symbol 63 MovieClip
"upwall"Frame 102Symbol 63 MovieClip
"downwall"Frame 102Symbol 63 MovieClip
"hero"Frame 102Symbol 33 MovieClip
"hero2"Frame 102Symbol 33 MovieClip
"hero3"Frame 102Symbol 33 MovieClip
"hero4"Frame 102Symbol 33 MovieClip
"endmul"Frame 102Symbol 67 MovieClip
"rightplatform2"Frame 102Symbol 169 MovieClip
"leftplatform2"Frame 102Symbol 314 MovieClip
"enemy5"Frame 102Symbol 336 MovieClip
"nam"Frame 102Symbol 344 EditableText
"lives"Frame 102Symbol 345 EditableText
"lives"Frame 103Symbol 348 EditableText
"startpoint1"Frame 104Symbol 144 MovieClip
"moving2"Frame 104Symbol 351 MovieClip
"moving7"Frame 104Symbol 351 MovieClip
"moving1"Frame 104Symbol 351 MovieClip
"moving5"Frame 104Symbol 351 MovieClip
"moving4"Frame 104Symbol 351 MovieClip
"moving3"Frame 104Symbol 351 MovieClip
"moving6"Frame 104Symbol 351 MovieClip
"leftwall"Frame 104Symbol 63 MovieClip
"rightwall"Frame 104Symbol 63 MovieClip
"upwall"Frame 104Symbol 63 MovieClip
"downwall"Frame 104Symbol 63 MovieClip
"endlevel1"Frame 104Symbol 67 MovieClip
"movinga"Frame 104Symbol 356 MovieClip
"movingb"Frame 104Symbol 356 MovieClip
"movingc"Frame 104Symbol 356 MovieClip
"movingd"Frame 104Symbol 356 MovieClip
"movinge"Frame 104Symbol 356 MovieClip
"movingf"Frame 104Symbol 356 MovieClip
"movingg"Frame 104Symbol 356 MovieClip
"portal2"Frame 104Symbol 116 MovieClip
"portal1"Frame 104Symbol 116 MovieClip
"hero"Frame 104Symbol 33 MovieClip
"rightplatform2"Frame 104Symbol 169 MovieClip
"leftplatform2"Frame 104Symbol 314 MovieClip
"lives"Frame 104Symbol 357 EditableText
"lives"Frame 105Symbol 360 EditableText
"startpoint1"Frame 106Symbol 144 MovieClip
"portal4a"Frame 106Symbol 116 MovieClip
"portal4b"Frame 106Symbol 116 MovieClip
"portal5a"Frame 106Symbol 311 MovieClip
"portal5b"Frame 106Symbol 311 MovieClip
"portal2a"Frame 106Symbol 116 MovieClip
"portal3b"Frame 106Symbol 116 MovieClip
"portal2b"Frame 106Symbol 116 MovieClip
"portal3a"Frame 106Symbol 116 MovieClip
"fakeport1"Frame 106Symbol 361 MovieClip
"fakeport2"Frame 106Symbol 361 MovieClip
"fakeport3"Frame 106Symbol 361 MovieClip
"fakeport4"Frame 106Symbol 361 MovieClip
"fakeport5"Frame 106Symbol 362 MovieClip
"fakeport6"Frame 106Symbol 362 MovieClip
"fakeport7"Frame 106Symbol 361 MovieClip
"leftwall"Frame 106Symbol 63 MovieClip
"rightwall"Frame 106Symbol 63 MovieClip
"downwall"Frame 106Symbol 63 MovieClip
"hero"Frame 106Symbol 33 MovieClip
"pill"Frame 106Symbol 364 MovieClip
"leftwall2"Frame 106Symbol 63 MovieClip
"rightwall2"Frame 106Symbol 63 MovieClip
"upwall2"Frame 106Symbol 63 MovieClip
"downwall2"Frame 106Symbol 63 MovieClip
"leftwall3"Frame 106Symbol 63 MovieClip
"rightwall3"Frame 106Symbol 63 MovieClip
"upwall3"Frame 106Symbol 63 MovieClip
"downwall3"Frame 106Symbol 63 MovieClip
"leftwall4"Frame 106Symbol 63 MovieClip
"rightwall4"Frame 106Symbol 63 MovieClip
"upwall4"Frame 106Symbol 63 MovieClip
"downwall4"Frame 106Symbol 63 MovieClip
"leftwall5"Frame 106Symbol 63 MovieClip
"rightwall5"Frame 106Symbol 63 MovieClip
"upwall5"Frame 106Symbol 63 MovieClip
"downwall5"Frame 106Symbol 63 MovieClip
"endlevel1"Frame 106Symbol 67 MovieClip
"upwall"Frame 106Symbol 63 MovieClip
"lives"Frame 106Symbol 365 EditableText
"monster4m"Frame 106Symbol 312 MovieClip
"monster3m"Frame 106Symbol 366 MovieClip
"monster1m"Frame 106Symbol 377 MovieClip
"monster6m"Frame 106Symbol 378 MovieClip
"lives"Frame 107Symbol 383 EditableText
"lives"Frame 108Symbol 387 EditableText
"pill"Frame 110Symbol 364 MovieClip
"leftwall"Frame 110Symbol 63 MovieClip
"rightwall"Frame 110Symbol 63 MovieClip
"upwall"Frame 110Symbol 63 MovieClip
"downwall"Frame 110Symbol 63 MovieClip
"portal4a"Frame 110Symbol 399 MovieClip
"portal4b"Frame 110Symbol 399 MovieClip
"portal3a"Frame 110Symbol 399 MovieClip
"portal3b"Frame 110Symbol 399 MovieClip
"monster2"Frame 110Symbol 376 MovieClip
"enemy2"Frame 110Symbol 450 MovieClip
"enemy5"Frame 110Symbol 450 MovieClip
"endlevel1"Frame 110Symbol 452 MovieClip
"monster4m"Frame 110Symbol 312 MovieClip
"monster3m"Frame 110Symbol 366 MovieClip
"monster5"Frame 110Symbol 376 MovieClip
"monster1m"Frame 110Symbol 377 MovieClip
"monster6m"Frame 110Symbol 378 MovieClip
"enemy3"Frame 110Symbol 450 MovieClip
"enemy4"Frame 110Symbol 450 MovieClip
"enemy6"Frame 110Symbol 450 MovieClip
"enemy7"Frame 110Symbol 450 MovieClip
"enemy11"Frame 110Symbol 450 MovieClip
"enemy10"Frame 110Symbol 450 MovieClip
"enemy9"Frame 110Symbol 450 MovieClip
"enemy8"Frame 110Symbol 450 MovieClip
"switchwall1"Frame 110Symbol 167 MovieClip
"switch1"Frame 110Symbol 91 MovieClip
"lives"Frame 110Symbol 456 EditableText
"enemy13"Frame 110Symbol 251 MovieClip
"enemy14"Frame 110Symbol 251 MovieClip
"enemy16"Frame 110Symbol 251 MovieClip
"enemy15"Frame 110Symbol 251 MovieClip
"enemy12"Frame 110Symbol 251 MovieClip
"enemy19"Frame 110Symbol 251 MovieClip
"enemy18"Frame 110Symbol 251 MovieClip
"enemy17"Frame 110Symbol 251 MovieClip
"powerup"Frame 110Symbol 174 MovieClip
"lright1"Frame 110Symbol 463 MovieClip
"lright2"Frame 110Symbol 464 MovieClip
"lright3"Frame 110Symbol 465 MovieClip
"lright4"Frame 110Symbol 466 MovieClip
"updown1"Frame 110Symbol 467 MovieClip
"updown2"Frame 110Symbol 468 MovieClip
"updown3"Frame 110Symbol 469 MovieClip
"updown4"Frame 110Symbol 470 MovieClip
"startpoint1"Frame 110Symbol 474 MovieClip
"lives"Frame 111Symbol 478 EditableText
"hero"Frame 111Symbol 33 MovieClip
"hero1"Symbol 33 MovieClip Frame 1Symbol 31 MovieClip
"levedit"Symbol 50 MovieClip Frame 1Symbol 48 MovieClip
"righta"Symbol 79 MovieClip Frame 1Symbol 77 MovieClip
"enemy"Symbol 150 MovieClip Frame 1Symbol 96 MovieClip
"enemy"Symbol 150 MovieClip Frame 1Symbol 96 MovieClip
"enemy"Symbol 150 MovieClip Frame 1Symbol 96 MovieClip
"enemy"Symbol 150 MovieClip Frame 1Symbol 96 MovieClip
"enemy"Symbol 150 MovieClip Frame 1Symbol 96 MovieClip
"enemy"Symbol 163 MovieClip Frame 1Symbol 96 MovieClip
"enemy"Symbol 163 MovieClip Frame 1Symbol 96 MovieClip
"monster4"Symbol 312 MovieClip Frame 1Symbol 107 MovieClip
"monster3"Symbol 366 MovieClip Frame 1Symbol 107 MovieClip
"monster1"Symbol 377 MovieClip Frame 1Symbol 376 MovieClip
"monster5"Symbol 377 MovieClip Frame 99Symbol 376 MovieClip
"monster1"Symbol 377 MovieClip Frame 100Symbol 376 MovieClip
"monster6"Symbol 378 MovieClip Frame 1Symbol 376 MovieClip
"rightplatform1"Symbol 463 MovieClip Frame 1Symbol 169 MovieClip
"leftplatform1"Symbol 463 MovieClip Frame 1Symbol 314 MovieClip
"rightplatform2"Symbol 464 MovieClip Frame 1Symbol 169 MovieClip
"leftplatform2"Symbol 464 MovieClip Frame 1Symbol 314 MovieClip
"rightplatform3"Symbol 465 MovieClip Frame 1Symbol 169 MovieClip
"leftplatform3"Symbol 465 MovieClip Frame 1Symbol 314 MovieClip
"rightplatform4"Symbol 466 MovieClip Frame 1Symbol 169 MovieClip
"leftplatform4"Symbol 466 MovieClip Frame 1Symbol 314 MovieClip
"upplatform1"Symbol 467 MovieClip Frame 1Symbol 63 MovieClip
"downplatform1"Symbol 467 MovieClip Frame 1Symbol 63 MovieClip
"upplatform2"Symbol 468 MovieClip Frame 1Symbol 63 MovieClip
"downplatform2"Symbol 468 MovieClip Frame 1Symbol 63 MovieClip
"upplatform3"Symbol 469 MovieClip Frame 1Symbol 63 MovieClip
"downplatform3"Symbol 469 MovieClip Frame 1Symbol 63 MovieClip
"upplatform4"Symbol 470 MovieClip Frame 1Symbol 63 MovieClip
"downplatform4"Symbol 470 MovieClip Frame 1Symbol 63 MovieClip

Special Tags

FileAttributes (69)Timeline Frame 1Access local files only, Metadata not present, AS1/AS2.
ExportAssets (56)Timeline Frame 1Symbol 3 as "splode"
ExportAssets (56)Timeline Frame 1Symbol 483 as "__Packages.MochiAd"

Dynamic Text Variables

livesSymbol 137 EditableText"<p align="center"></p>"
livesSymbol 145 EditableText"<p align="center"></p>"
livesSymbol 146 EditableText"<p align="center"></p>"
livesSymbol 151 EditableText"<p align="center"></p>"
livesSymbol 152 EditableText"<p align="center"></p>"
livesSymbol 155 EditableText"<p align="center"></p>"
livesSymbol 156 EditableText"<p align="center"></p>"
livesSymbol 162 EditableText"<p align="center"></p>"
livesSymbol 170 EditableText"<p align="center"></p>"
livesSymbol 177 EditableText"<p align="center"></p>"
livesSymbol 179 EditableText"<p align="center"></p>"
livesSymbol 184 EditableText"<p align="center"></p>"
livesSymbol 196 EditableText"<p align="center"></p>"
livesSymbol 200 EditableText"<p align="center"></p>"
livesSymbol 305 EditableText"<p align="center"></p>"
livesSymbol 319 EditableText"<p align="center"></p>"
livesSymbol 327 EditableText"<p align="center"></p>"
livesSymbol 337 EditableText"<p align="center"></p>"
livesSymbol 340 EditableText"<p align="center"></p>"
namSymbol 344 EditableText"<p align="center"></p>"
livesSymbol 345 EditableText"<p align="center"></p>"
livesSymbol 348 EditableText"<p align="center"></p>"
livesSymbol 357 EditableText"<p align="center"></p>"
livesSymbol 360 EditableText"<p align="center"></p>"
livesSymbol 365 EditableText"<p align="center"></p>"
livesSymbol 383 EditableText"<p align="center"></p>"
livesSymbol 387 EditableText"<p align="center"></p>"
livesSymbol 456 EditableText"<p align="center"></p>"
livesSymbol 478 EditableText"<p align="center"></p>"




http://swfchan.com/15/73959/info.shtml
Created: 7/4 -2019 20:00:12 Last modified: 7/4 -2019 20:00:12 Server time: 16/05 -2024 05:43:59