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/31312865?noj=FRM31312865-15DC" width="1" height="1"></div>

Wiggi Maze.swf

This is the info page for
Flash #40117

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


Text
Wiggi

Maze

PLAY

INSTRUCTIONS

CREDITS

On/Off

Background:

Music:

1

2

3

X

X

SCORES

Productions

This copy of Wiggi Maze is only
hosted on Newgrounds.com

Created by Nicholas Lochner (Lantay77)

Wiggi Maze Credits

Coding by Nicholas Lochner (Lantay77)

Characters Adapted from WiggiWorld

PYROMANIC - Platformer Actionscript

Music:

Friendly Battle--_--LOOP - ZENON

Racing In Slow Motion - cory choy (burningfury)

Working Bee - Jacob Richert

Special Thanks:

WiggiWorld  - For the Contest

Lantay77 Productions - Lantay77.com/productions

exit

ArmorBot - Highscores

Wiggi Maze Instructions

Exit

Move your player to the exit with
the left and right arrow keys.

Red portals rotate the maze. you will have to use them to
complete levels. Walk to the red portal then into the exit.

Along your journey, you will come across items that you can collect. When you walk over an item
you will have an option to pick it up or leave it. If you pick up a needed item your score will
increase by 50. Don't pick up items you don't need!

Toothbrush

Items Needed:

Keep This Item?

Yes

No

Other Facts:

If you walk into a Checkmark
Portal you will have to answer
a question, and how you
answer it determines what
happens.

100 Point Portals work the same as
normal portals but when you go
through them your score is
increased by 100.

100

Sometimes going through a portal can change the Maze.

Each level will have a countdown
timer that resembles the one to
the left, and at the end of each
level your score will be increased
by the time left.

A Hazy Portal is a portal
than can be unlocked by going
through another portal.

Oops! You didn't view all the instructions.

You should view them before you play.

View

No Thanks

#
1.
2.
3.
4.
5.
6.
7.
8.
9.
10.

Name

Score

loading...

loading...

loading...

loading...

loading...

loading...

loading...

loading...

loading...

loading...

...loading

...loading

...loading

...loading

...loading

...loading

...loading

...loading

...loading

...loading

ERROR: CAN'T GET DATA

Wiggi Maze

exit

View All Scores

EXIT

Player Select

Bar of Soap

Toy Car

Book

Music/Bkgroud:

Score/Timer:

Submit Score and Quit

A man was leaving
the candy store and
you saw him drop 40
dollars, what do you
do?

Keep It

Return It

Sock

Pencil

Lollypop

Calculator

Buster wants to bust your
lip after school because he
dosen't like your clothes.
What do you do?

Change Clothes

Meet Buster With
an Adult Present

Feather

Soda Can

Basketball

Pickle

You get into a fight
with your friend.
What do you do?

Keep Yelling

Try to Work it Out

Walk Away

Notebook

Eraser

Bubble Gum

Boot

Hamburger

Battery

Right Or Left?

Right

Left

Search your room

Forget about it

Call him and ask

Wiggi Maze Score Submission

Submit

Your Score:

Total Score:

View Scores

Collected:

Bonus:

Items:

Time:

Taken:

:

Level 1:

Level 2:

Level 3:

Level 4:

Insert Name:

exit

Loading Scores Wait... 3

Loading Scores Wait... 2

Loading Scores Wait... 1

Loading Scores Wait... 0

Loading Scores Wait... 0

ActionScript [AS1/AS2]

Frame 1
stop(); _root.WPI_ArcadeStartSingleGame = function () { trace("WPI_ArcadeStartSingleGame called - the current game has started"); }; _root.WPI_ArcadeStopSingleGame = function (score) { trace("WPI_ArcadeStopSingleGame called - the current game has finished with score: " + score); };
Instance of Symbol 50 MovieClip "player" in Frame 1
onClipEvent (load) { var grav = 0; var run = 10; var wlk = 2.5; var speed = run; var jumpHeight = 10; var dbl = 0; var tri = 0; var djump = false; var tjump = false; var thro = false; var slow = 0.7; var slowspd = (speed / 2); var setspeed = speed; var scale = _xscale; var ex = 5; this.gotoAndStop(2); } onClipEvent (enterFrame) { grav++; _y = (_y + grav); if (Key.isDown(65)) { setspeed = wlk; } else { setspeed = run; } while (_root.ground.hitTest(_x, _y, true)) { djump = false; tjump = false; _y = (_y-1); grav = 0; } if (_root.water.hitTest(_x, _y, true)) { grav = grav * (slow * 1.25); speed = slowspd; } else { speed = setspeed; } if (Key.isDown(39)) { _x = (_x + speed); _xscale = scale; if (_root.ground.hitTest(_x, _y + 3, true)) { this.gotoAndStop(1); } else if (djump == false) { this.gotoAndStop(2); } else if (tjump == false) { this.gotoAndStop(4); } else { this.gotoAndStop(5); } } else if (Key.isDown(37)) { _x = (_x - speed); _xscale = (-scale); if (_root.ground.hitTest(_x, _y + 3, true)) { this.gotoAndStop(1); } else if (djump == false) { this.gotoAndStop(2); } else if (tjump == false) { this.gotoAndStop(4); } else { this.gotoAndStop(5); } } else if ((_root.ground.hitTest(_x, _y + 3, true) && (!Key.isDown(68))) && (!Key.isDown(83))) { this.gotoAndStop(3); } if (((((Key.isDown(68) && (!Key.isDown(38))) && (!Key.isDown(39))) && (!Key.isDown(37))) && (!Key.isDown(83))) && (_root.ground.hitTest(_x, _y + 3, true))) { this.gotoAndStop(8); } if ((((((Key.isDown(83) && (!Key.isDown(39))) && (!Key.isDown(37))) && (!Key.isDown(38))) && (!Key.isDown(68))) && (_root.ground.hitTest(_x, _y + 3, true))) && (_currentframe != 6)) { this.gotoAndStop(7); } else if (Key.isDown(83) && (grav > 1)) { this.gotoAndStop(6); } if ((_root.ground.hitTest((_x + (_width / 2)) + ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - _height, true))) { _x = (_x - speed); } if ((_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - _height, true))) { _x = (_x + speed); } if (_root.ground.hitTest(_x, (_y - _height) - 15, true)) { grav = 1; } }
Frame 2
backgroundbutton.backgroundvar = "Background Off Button"; sex = 0; score = 1490; bkvar = 1;
Frame 63
function iPlus() { itimer--; } function usedf1() { usedfo1.gotoAndStop(51); } function usedf1b() { usedfo1.gotoAndPlay(1); } function fPlus() { ntimer--; } function tsPlus() { tstimer++; tsmtimer++; if (tsmtimer == 60) { tsmin = tsmin + 1; tsmtimer = 0; } } ivar = 1; ABvar = 1; itimer = 250; setInterval(iPlus, 300); setInterval(usedf1, 5000); setInterval(usedf1b, 7000); setInterval(fPlus, 300); setInterval(tsPlus, 1000); stop(); gotoAndStop (64);
Frame 64
usedI1 = 2; stop();
Instance of Symbol 200 MovieClip in Frame 65
onClipEvent (enterFrame) { if (this.hitTest(_root.player)) { _root.gotoAndStop("ins2"); } }
Instance of Symbol 50 MovieClip "player" in Frame 65
onClipEvent (load) { var grav = 0; var run = 10; var wlk = 2.5; var speed = run; var jumpHeight = 10; var dbl = 0; var tri = 0; var djump = false; var tjump = false; var thro = false; var slow = 0.7; var slowspd = (speed / 2); var setspeed = speed; var scale = _xscale; var ex = 5; this.gotoAndStop(2); } onClipEvent (enterFrame) { grav++; _y = (_y + grav); if (Key.isDown(65)) { setspeed = wlk; } else { setspeed = run; } while (_root.ground.hitTest(_x, _y, true)) { djump = false; tjump = false; _y = (_y-1); grav = 0; } if (_root.water.hitTest(_x, _y, true)) { grav = grav * (slow * 1.25); speed = slowspd; } else { speed = setspeed; } if (Key.isDown(39)) { _x = (_x + speed); _xscale = scale; if (_root.ground.hitTest(_x, _y + 3, true)) { this.gotoAndStop(1); } else if (djump == false) { this.gotoAndStop(2); } else if (tjump == false) { this.gotoAndStop(4); } else { this.gotoAndStop(5); } } else if (Key.isDown(37)) { _x = (_x - speed); _xscale = (-scale); if (_root.ground.hitTest(_x, _y + 3, true)) { this.gotoAndStop(1); } else if (djump == false) { this.gotoAndStop(2); } else if (tjump == false) { this.gotoAndStop(4); } else { this.gotoAndStop(5); } } else if ((_root.ground.hitTest(_x, _y + 3, true) && (!Key.isDown(68))) && (!Key.isDown(83))) { this.gotoAndStop(3); } if (((((Key.isDown(68) && (!Key.isDown(38))) && (!Key.isDown(39))) && (!Key.isDown(37))) && (!Key.isDown(83))) && (_root.ground.hitTest(_x, _y + 3, true))) { this.gotoAndStop(8); } if ((((((Key.isDown(83) && (!Key.isDown(39))) && (!Key.isDown(37))) && (!Key.isDown(38))) && (!Key.isDown(68))) && (_root.ground.hitTest(_x, _y + 3, true))) && (_currentframe != 6)) { this.gotoAndStop(7); } else if (Key.isDown(83) && (grav > 1)) { this.gotoAndStop(6); } if ((_root.ground.hitTest((_x + (_width / 2)) + ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - _height, true))) { _x = (_x - speed); } if ((_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - _height, true))) { _x = (_x + speed); } if (_root.ground.hitTest(_x, (_y - _height) - 15, true)) { grav = 1; } }
Instance of Symbol 208 MovieClip in Frame 66
onClipEvent (enterFrame) { if (this.hitTest(_root.player)) { _root.play(); } }
Instance of Symbol 50 MovieClip "player" in Frame 66
onClipEvent (load) { var grav = 0; var run = 10; var wlk = 2.5; var speed = run; var jumpHeight = 10; var dbl = 0; var tri = 0; var djump = false; var tjump = false; var thro = false; var slow = 0.7; var slowspd = (speed / 2); var setspeed = speed; var scale = _xscale; var ex = 5; this.gotoAndStop(2); } onClipEvent (enterFrame) { grav++; _y = (_y + grav); if (Key.isDown(65)) { setspeed = wlk; } else { setspeed = run; } while (_root.ground.hitTest(_x, _y, true)) { djump = false; tjump = false; _y = (_y-1); grav = 0; } if (_root.water.hitTest(_x, _y, true)) { grav = grav * (slow * 1.25); speed = slowspd; } else { speed = setspeed; } if (Key.isDown(39)) { _x = (_x + speed); _xscale = scale; if (_root.ground.hitTest(_x, _y + 3, true)) { this.gotoAndStop(1); } else if (djump == false) { this.gotoAndStop(2); } else if (tjump == false) { this.gotoAndStop(4); } else { this.gotoAndStop(5); } } else if (Key.isDown(37)) { _x = (_x - speed); _xscale = (-scale); if (_root.ground.hitTest(_x, _y + 3, true)) { this.gotoAndStop(1); } else if (djump == false) { this.gotoAndStop(2); } else if (tjump == false) { this.gotoAndStop(4); } else { this.gotoAndStop(5); } } else if ((_root.ground.hitTest(_x, _y + 3, true) && (!Key.isDown(68))) && (!Key.isDown(83))) { this.gotoAndStop(3); } if (((((Key.isDown(68) && (!Key.isDown(38))) && (!Key.isDown(39))) && (!Key.isDown(37))) && (!Key.isDown(83))) && (_root.ground.hitTest(_x, _y + 3, true))) { this.gotoAndStop(8); } if ((((((Key.isDown(83) && (!Key.isDown(39))) && (!Key.isDown(37))) && (!Key.isDown(38))) && (!Key.isDown(68))) && (_root.ground.hitTest(_x, _y + 3, true))) && (_currentframe != 6)) { this.gotoAndStop(7); } else if (Key.isDown(83) && (grav > 1)) { this.gotoAndStop(6); } if ((_root.ground.hitTest((_x + (_width / 2)) + ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - _height, true))) { _x = (_x - speed); } if ((_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - _height, true))) { _x = (_x + speed); } if (_root.ground.hitTest(_x, (_y - _height) - 15, true)) { grav = 1; } }
Frame 80
stop();
Instance of Symbol 200 MovieClip in Frame 80
onClipEvent (enterFrame) { if (this.hitTest(_root.player)) { _root.gotoAndStop("ins4"); } }
Instance of Symbol 50 MovieClip "player" in Frame 80
onClipEvent (load) { var grav = 0; var run = 10; var wlk = 2.5; var speed = run; var jumpHeight = 10; var dbl = 0; var tri = 0; var djump = false; var tjump = false; var thro = false; var slow = 0.7; var slowspd = (speed / 2); var setspeed = speed; var scale = _xscale; var ex = 5; this.gotoAndStop(2); } onClipEvent (enterFrame) { grav++; _y = (_y + grav); if (Key.isDown(65)) { setspeed = wlk; } else { setspeed = run; } while (_root.ground.hitTest(_x, _y, true)) { djump = false; tjump = false; _y = (_y-1); grav = 0; } if (_root.water.hitTest(_x, _y, true)) { grav = grav * (slow * 1.25); speed = slowspd; } else { speed = setspeed; } if (Key.isDown(39)) { _x = (_x + speed); _xscale = scale; if (_root.ground.hitTest(_x, _y + 3, true)) { this.gotoAndStop(1); } else if (djump == false) { this.gotoAndStop(2); } else if (tjump == false) { this.gotoAndStop(4); } else { this.gotoAndStop(5); } } else if (Key.isDown(37)) { _x = (_x - speed); _xscale = (-scale); if (_root.ground.hitTest(_x, _y + 3, true)) { this.gotoAndStop(1); } else if (djump == false) { this.gotoAndStop(2); } else if (tjump == false) { this.gotoAndStop(4); } else { this.gotoAndStop(5); } } else if ((_root.ground.hitTest(_x, _y + 3, true) && (!Key.isDown(68))) && (!Key.isDown(83))) { this.gotoAndStop(3); } if (((((Key.isDown(68) && (!Key.isDown(38))) && (!Key.isDown(39))) && (!Key.isDown(37))) && (!Key.isDown(83))) && (_root.ground.hitTest(_x, _y + 3, true))) { this.gotoAndStop(8); } if ((((((Key.isDown(83) && (!Key.isDown(39))) && (!Key.isDown(37))) && (!Key.isDown(38))) && (!Key.isDown(68))) && (_root.ground.hitTest(_x, _y + 3, true))) && (_currentframe != 6)) { this.gotoAndStop(7); } else if (Key.isDown(83) && (grav > 1)) { this.gotoAndStop(6); } if ((_root.ground.hitTest((_x + (_width / 2)) + ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - _height, true))) { _x = (_x - speed); } if ((_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - _height, true))) { _x = (_x + speed); } if (_root.ground.hitTest(_x, (_y - _height) - 15, true)) { grav = 1; } }
Instance of Symbol 200 MovieClip in Frame 81
onClipEvent (enterFrame) { if (this.hitTest(_root.player)) { _root.gotoAndStop("ins5"); } }
Instance of Symbol 221 MovieClip in Frame 81
onClipEvent (enterFrame) { if (_level0.usedI1 == 3) { _level0.usedI1 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.usedI1 = 3; } } if (_level0.usedI1 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.usedI1 == 2) { _level0.ppfocus = I1; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 50 MovieClip "player" in Frame 81
onClipEvent (load) { var grav = 0; var run = 10; var wlk = 2.5; var speed = run; var jumpHeight = 10; var dbl = 0; var tri = 0; var djump = false; var tjump = false; var thro = false; var slow = 0.7; var slowspd = (speed / 2); var setspeed = speed; var scale = _xscale; var ex = 5; this.gotoAndStop(2); } onClipEvent (enterFrame) { grav++; _y = (_y + grav); if (Key.isDown(65)) { setspeed = wlk; } else { setspeed = run; } while (_root.ground.hitTest(_x, _y, true)) { djump = false; tjump = false; _y = (_y-1); grav = 0; } if (_root.water.hitTest(_x, _y, true)) { grav = grav * (slow * 1.25); speed = slowspd; } else { speed = setspeed; } if (Key.isDown(39)) { _x = (_x + speed); _xscale = scale; if (_root.ground.hitTest(_x, _y + 3, true)) { this.gotoAndStop(1); } else if (djump == false) { this.gotoAndStop(2); } else if (tjump == false) { this.gotoAndStop(4); } else { this.gotoAndStop(5); } } else if (Key.isDown(37)) { _x = (_x - speed); _xscale = (-scale); if (_root.ground.hitTest(_x, _y + 3, true)) { this.gotoAndStop(1); } else if (djump == false) { this.gotoAndStop(2); } else if (tjump == false) { this.gotoAndStop(4); } else { this.gotoAndStop(5); } } else if ((_root.ground.hitTest(_x, _y + 3, true) && (!Key.isDown(68))) && (!Key.isDown(83))) { this.gotoAndStop(3); } if (((((Key.isDown(68) && (!Key.isDown(38))) && (!Key.isDown(39))) && (!Key.isDown(37))) && (!Key.isDown(83))) && (_root.ground.hitTest(_x, _y + 3, true))) { this.gotoAndStop(8); } if ((((((Key.isDown(83) && (!Key.isDown(39))) && (!Key.isDown(37))) && (!Key.isDown(38))) && (!Key.isDown(68))) && (_root.ground.hitTest(_x, _y + 3, true))) && (_currentframe != 6)) { this.gotoAndStop(7); } else if (Key.isDown(83) && (grav > 1)) { this.gotoAndStop(6); } if ((_root.ground.hitTest((_x + (_width / 2)) + ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - _height, true))) { _x = (_x - speed); } if ((_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - _height, true))) { _x = (_x + speed); } if (_root.ground.hitTest(_x, (_y - _height) - 15, true)) { grav = 1; } }
Frame 82
itimer = 250; ivar = 2;
Frame 84
ABvar = 2; __top10_send__ = new LoadVars(); __top10_receive__ = new LoadVars(); __top10_url_1__ = "http://www.armorbot.com/flashcomm"; __top10_url_2__ = "/top10_b"; __top10_send__.hid = 1482; __top10_send__.kid = "BGJFEY"; __top10_send__.sendAndLoad(__top10_url_1__ + __top10_url_2__, __top10_receive__, "POST"); __top10_receive__.onLoad = function (success) { if (success) { i = 1; while (i < 11) { _root.hstab[("_name" + i) + "_"].text = __top10_receive__["name" + i]; _root.hstab[("_score" + i) + "_"].text = __top10_receive__["score" + i]; i++; } } else { _root.hstab.__err__.gotoAndStop(2); } };
Frame 104
play();
Instance of Symbol 60 MovieClip "background" in Frame 104
onClipEvent (enterFrame) { if (_level0.bkvar == 2) { this.gotoAndStop(1); } }
Frame 158
gotoAndPlay ("L3M");
Frame 159
Instance of Symbol 60 MovieClip "background" in Frame 159
onClipEvent (enterFrame) { if (_level0.bkvar == 2) { this.gotoAndStop(1); } }
Frame 180
used11 = 2; used12 = 2; used13 = 2; used14 = 2; used15 = 2; used16 = 2; used17 = 2; used18 = 2; used19 = 2; used20 = 2; used21 = 2; used22 = 2; used23 = 2; quiz1ready = 1; score = 0; itscore = 0; tempscore = 0; ntimer = 250; wmlear = 1; tstimer = 0; tsmtimer = 0; tsmin = 0;
Frame 181
stop();
Instance of Symbol 313 MovieClip "rewinder" in Frame 181
onClipEvent (enterFrame) { if (_root.ntimer < 1) { _root.ntimer = 0; } }
Instance of Symbol 60 MovieClip "background" in Frame 181
onClipEvent (enterFrame) { if (_level0.bkvar == 2) { this.gotoAndStop(1); } }
Instance of Symbol 339 MovieClip in Frame 181
onClipEvent (enterFrame) { if (_level0.used18 == 3) { _level0.used18 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used18 = 3; } } if (_level0.used18 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used18 == 2) { _level0.ppfocus = 4; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 343 MovieClip in Frame 181
onClipEvent (enterFrame) { if (_level0.used17 == 3) { _level0.used17 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used17 = 3; } } if (_level0.used17 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used17 == 2) { _level0.ppfocus = 3; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 348 MovieClip in Frame 181
onClipEvent (enterFrame) { if (_level0.used19 == 3) { _level0.used19 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used19 = 3; } } if (_level0.used19 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used19 == 2) { _level0.ppfocus = 5; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 221 MovieClip in Frame 181
onClipEvent (enterFrame) { if (_level0.used12 == 3) { _level0.used12 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used12 = 3; } } if (_level0.used12 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used12 == 2) { _level0.ppfocus = 1; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 349 MovieClip in Frame 181
onClipEvent (enterFrame) { if (_level0.used11 == 1) { _level0.used11 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used11 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used11 == 2) { _level0.used11 = 1; if (_level0.ppfocus == 1) { if (_level0.used12 == 2) { _level0.used12 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 2) { if (_level0.used14 == 2) { _level0.used14 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 3) { if (_level0.used17 == 2) { _level0.used17 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 4) { if (_level0.used18 == 2) { _level0.used18 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 5) { if (_level0.used19 == 2) { _level0.used19 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } _root.gotoAndPlay("L3MF1"); } } }
Instance of Symbol 350 MovieClip in Frame 181
onClipEvent (enterFrame) { if (_level0.used15 == 1) { this.gotoAndStop(51); } }
Instance of Symbol 200 MovieClip in Frame 181
onClipEvent (enterFrame) { if (_level0.used13 == 1) { _level0.used13 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used13 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used13 == 2) { _level0.used13 = 1; if (_level0.ppfocus == 1) { if (_level0.used12 == 2) { _level0.used12 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 2) { if (_level0.used14 == 2) { _level0.used14 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 3) { if (_level0.used17 == 2) { _level0.used17 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 4) { if (_level0.used18 == 2) { _level0.used18 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 5) { if (_level0.used19 == 2) { _level0.used19 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } _root.gotoAndPlay("L3MF6"); } } }
Instance of Symbol 241 MovieClip in Frame 181
onClipEvent (enterFrame) { if (_level0.used16 == 1) { this.gotoAndStop(51); } if (this.hitTest(_root.player)) { if (_level0.used16 == 2) { _level0.used16 = 1; if (_level0.ppfocus == 1) { if (_level0.used12 == 2) { _level0.used12 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 2) { if (_level0.used14 == 2) { _level0.used14 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } _root.score = _root.score + 100; this.gotoAndPlay(52); _root.rewinder.gotoAndPlay(0); } } }
Instance of Symbol 355 MovieClip in Frame 181
onClipEvent (enterFrame) { if (_level0.used14 == 3) { _level0.used14 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used14 = 3; } } if (_level0.used14 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used14 == 2) { _level0.ppfocus = 2; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 200 MovieClip in Frame 181
onClipEvent (enterFrame) { if (_level0.used20 == 1) { _level0.used20 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used20 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used20 == 2) { _level0.used20 = 1; if (_level0.ppfocus == 1) { if (_level0.used12 == 2) { _level0.used12 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 2) { if (_level0.used14 == 2) { _level0.used14 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 3) { if (_level0.used17 == 2) { _level0.used17 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 4) { if (_level0.used18 == 2) { _level0.used18 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 5) { if (_level0.used19 == 2) { _level0.used19 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } _root.gotoAndPlay("L3MF7"); } } }
Instance of Symbol 200 MovieClip in Frame 181
onClipEvent (enterFrame) { if (_level0.used21 == 1) { _level0.used21 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used21 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used21 == 2) { _level0.used21 = 1; if (_level0.ppfocus == 1) { if (_level0.used12 == 2) { _level0.used12 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 2) { if (_level0.used14 == 2) { _level0.used14 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 3) { if (_level0.used17 == 2) { _level0.used17 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 4) { if (_level0.used18 == 2) { _level0.used18 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 5) { if (_level0.used19 == 2) { _level0.used19 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } } } }
Instance of Symbol 200 MovieClip in Frame 181
onClipEvent (enterFrame) { if (_level0.used21 == 1) { _level0.used21 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used21 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used21 == 2) { _level0.used21 = 1; if (_level0.ppfocus == 1) { if (_level0.used12 == 2) { _level0.used12 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 2) { if (_level0.used14 == 2) { _level0.used14 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 3) { if (_level0.used17 == 2) { _level0.used17 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 4) { if (_level0.used18 == 2) { _level0.used18 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 5) { if (_level0.used19 == 2) { _level0.used19 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } _root.gotoAndPlay(L4T); } } }
Instance of Symbol 50 MovieClip "player" in Frame 181
onClipEvent (load) { var grav = 0; var run = 10; var wlk = 2.5; var speed = run; var jumpHeight = 10; var dbl = 0; var tri = 0; var djump = false; var tjump = false; var thro = false; var slow = 0.7; var slowspd = (speed / 2); var setspeed = speed; var scale = _xscale; var ex = 5; this.gotoAndStop(2); } onClipEvent (enterFrame) { grav++; _y = (_y + grav); if (Key.isDown(65)) { setspeed = wlk; } else { setspeed = run; } while (_root.ground.hitTest(_x, _y, true)) { djump = false; tjump = false; _y = (_y-1); grav = 0; } if (_root.water.hitTest(_x, _y, true)) { grav = grav * (slow * 1.25); speed = slowspd; } else { speed = setspeed; } if (Key.isDown(39)) { _x = (_x + speed); _xscale = scale; if (_root.ground.hitTest(_x, _y + 3, true)) { this.gotoAndStop(1); } else if (djump == false) { this.gotoAndStop(2); } else if (tjump == false) { this.gotoAndStop(4); } else { this.gotoAndStop(5); } } else if (Key.isDown(37)) { _x = (_x - speed); _xscale = (-scale); if (_root.ground.hitTest(_x, _y + 3, true)) { this.gotoAndStop(1); } else if (djump == false) { this.gotoAndStop(2); } else if (tjump == false) { this.gotoAndStop(4); } else { this.gotoAndStop(5); } } else if ((_root.ground.hitTest(_x, _y + 3, true) && (!Key.isDown(68))) && (!Key.isDown(83))) { this.gotoAndStop(3); } if (((((Key.isDown(68) && (!Key.isDown(38))) && (!Key.isDown(39))) && (!Key.isDown(37))) && (!Key.isDown(83))) && (_root.ground.hitTest(_x, _y + 3, true))) { this.gotoAndStop(8); } if ((((((Key.isDown(83) && (!Key.isDown(39))) && (!Key.isDown(37))) && (!Key.isDown(38))) && (!Key.isDown(68))) && (_root.ground.hitTest(_x, _y + 3, true))) && (_currentframe != 6)) { this.gotoAndStop(7); } else if (Key.isDown(83) && (grav > 1)) { this.gotoAndStop(6); } if ((_root.ground.hitTest((_x + (_width / 2)) + ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - _height, true))) { _x = (_x - speed); } if ((_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - _height, true))) { _x = (_x + speed); } if (_root.ground.hitTest(_x, (_y - _height) - 15, true)) { grav = 1; } }
Frame 196
stop();
Instance of Symbol 200 MovieClip in Frame 196
onClipEvent (enterFrame) { if (_level0.used13 == 1) { _level0.used13 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used13 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used13 == 2) { _level0.used13 = 1; if (_level0.ppfocus == 1) { if (_level0.used12 == 2) { _level0.used12 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 2) { if (_level0.used14 == 2) { _level0.used14 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 3) { if (_level0.used17 == 2) { _level0.used17 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 4) { if (_level0.used18 == 2) { _level0.used18 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 5) { if (_level0.used19 == 2) { _level0.used19 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } _root.gotoAndPlay("L3MF6"); } } }
Instance of Symbol 221 MovieClip in Frame 196
onClipEvent (enterFrame) { if (_level0.used12 == 3) { _level0.used12 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used12 = 3; } } if (_level0.used12 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used12 == 2) { _level0.ppfocus = 1; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 355 MovieClip in Frame 196
onClipEvent (enterFrame) { if (_level0.used14 == 3) { _level0.used14 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used14 = 3; } } if (_level0.used14 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used14 == 2) { _level0.ppfocus = 2; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 200 MovieClip in Frame 196
onClipEvent (enterFrame) { if (_level0.used11 == 1) { _level0.used11 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used11 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used11 == 2) { _level0.used11 = 1; if (_level0.ppfocus == 1) { if (_level0.used12 == 2) { _level0.used12 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 2) { if (_level0.used14 == 2) { _level0.used14 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 3) { if (_level0.used17 == 2) { _level0.used17 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 4) { if (_level0.used18 == 2) { _level0.used18 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 5) { if (_level0.used19 == 2) { _level0.used19 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } _root.rewinder.gotoAndPlay(2); } } }
Instance of Symbol 237 MovieClip in Frame 196
onClipEvent (enterFrame) { if (_level0.used15 == 1) { this.gotoAndStop(51); } if (this.hitTest(_root.player)) { if (_level0.used15 == 2) { this.gotoAndStop(51); _root.gotoAndPlay("L3MF2"); } } }
Instance of Symbol 241 MovieClip in Frame 196
onClipEvent (enterFrame) { if (_level0.used16 == 1) { this.gotoAndStop(51); } if (this.hitTest(_root.player)) { if (_level0.used16 == 2) { _level0.used16 = 1; if (_level0.ppfocus == 1) { if (_level0.used12 == 2) { _level0.used12 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 2) { if (_level0.used14 == 2) { _level0.used14 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } _root.score = _root.score + 100; this.gotoAndPlay(52); _root.rewinder.gotoAndPlay(0); } } }
Instance of Symbol 339 MovieClip in Frame 196
onClipEvent (enterFrame) { if (_level0.used18 == 3) { _level0.used18 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used18 = 3; } } if (_level0.used18 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used18 == 2) { _level0.ppfocus = 4; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 343 MovieClip in Frame 196
onClipEvent (enterFrame) { if (_level0.used17 == 3) { _level0.used17 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used17 = 3; } } if (_level0.used17 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used17 == 2) { _level0.ppfocus = 3; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 348 MovieClip in Frame 196
onClipEvent (enterFrame) { if (_level0.used19 == 3) { _level0.used19 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used19 = 3; } } if (_level0.used19 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used19 == 2) { _level0.ppfocus = 5; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 200 MovieClip in Frame 196
onClipEvent (enterFrame) { if (_level0.used20 == 1) { _level0.used20 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used20 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used20 == 2) { _level0.used20 = 1; if (_level0.ppfocus == 1) { if (_level0.used12 == 2) { _level0.used12 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 2) { if (_level0.used14 == 2) { _level0.used14 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 3) { if (_level0.used17 == 2) { _level0.used17 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 4) { if (_level0.used18 == 2) { _level0.used18 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 5) { if (_level0.used19 == 2) { _level0.used19 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } _root.gotoAndPlay("L3MF7"); } } }
Instance of Symbol 200 MovieClip in Frame 196
onClipEvent (enterFrame) { if (_level0.used21 == 1) { _level0.used21 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used21 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used21 == 2) { _level0.used21 = 1; if (_level0.ppfocus == 1) { if (_level0.used12 == 2) { _level0.used12 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 2) { if (_level0.used14 == 2) { _level0.used14 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 3) { if (_level0.used17 == 2) { _level0.used17 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 4) { if (_level0.used18 == 2) { _level0.used18 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 5) { if (_level0.used19 == 2) { _level0.used19 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } } } }
Instance of Symbol 200 MovieClip in Frame 196
onClipEvent (enterFrame) { if (_level0.used21 == 1) { _level0.used21 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used21 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used21 == 2) { _level0.used21 = 1; if (_level0.ppfocus == 1) { if (_level0.used12 == 2) { _level0.used12 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 2) { if (_level0.used14 == 2) { _level0.used14 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 3) { if (_level0.used17 == 2) { _level0.used17 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 4) { if (_level0.used18 == 2) { _level0.used18 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 5) { if (_level0.used19 == 2) { _level0.used19 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } _root.gotoAndPlay(L4T); } } }
Instance of Symbol 50 MovieClip "player" in Frame 196
onClipEvent (load) { var grav = 0; var run = 10; var wlk = 2.5; var speed = run; var jumpHeight = 10; var dbl = 0; var tri = 0; var djump = false; var tjump = false; var thro = false; var slow = 0.7; var slowspd = (speed / 2); var setspeed = speed; var scale = _xscale; var ex = 5; this.gotoAndStop(2); } onClipEvent (enterFrame) { grav++; _y = (_y + grav); if (Key.isDown(65)) { setspeed = wlk; } else { setspeed = run; } while (_root.ground.hitTest(_x, _y, true)) { djump = false; tjump = false; _y = (_y-1); grav = 0; } if (_root.water.hitTest(_x, _y, true)) { grav = grav * (slow * 1.25); speed = slowspd; } else { speed = setspeed; } if (Key.isDown(39)) { _x = (_x + speed); _xscale = scale; if (_root.ground.hitTest(_x, _y + 3, true)) { this.gotoAndStop(1); } else if (djump == false) { this.gotoAndStop(2); } else if (tjump == false) { this.gotoAndStop(4); } else { this.gotoAndStop(5); } } else if (Key.isDown(37)) { _x = (_x - speed); _xscale = (-scale); if (_root.ground.hitTest(_x, _y + 3, true)) { this.gotoAndStop(1); } else if (djump == false) { this.gotoAndStop(2); } else if (tjump == false) { this.gotoAndStop(4); } else { this.gotoAndStop(5); } } else if ((_root.ground.hitTest(_x, _y + 3, true) && (!Key.isDown(68))) && (!Key.isDown(83))) { this.gotoAndStop(3); } if (((((Key.isDown(68) && (!Key.isDown(38))) && (!Key.isDown(39))) && (!Key.isDown(37))) && (!Key.isDown(83))) && (_root.ground.hitTest(_x, _y + 3, true))) { this.gotoAndStop(8); } if ((((((Key.isDown(83) && (!Key.isDown(39))) && (!Key.isDown(37))) && (!Key.isDown(38))) && (!Key.isDown(68))) && (_root.ground.hitTest(_x, _y + 3, true))) && (_currentframe != 6)) { this.gotoAndStop(7); } else if (Key.isDown(83) && (grav > 1)) { this.gotoAndStop(6); } if ((_root.ground.hitTest((_x + (_width / 2)) + ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - _height, true))) { _x = (_x - speed); } if ((_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - _height, true))) { _x = (_x + speed); } if (_root.ground.hitTest(_x, (_y - _height) - 15, true)) { grav = 1; } }
Instance of Symbol 241 MovieClip in Frame 197
onClipEvent (enterFrame) { if (_level0.used16 == 1) { this.gotoAndStop(51); } if (this.hitTest(_root.player)) { if (_level0.used16 == 2) { _level0.used16 = 1; if (_level0.ppfocus == 1) { if (_level0.used12 == 2) { _level0.used12 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 2) { if (_level0.used14 == 2) { _level0.used14 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } _root.score = _root.score + 100; this.gotoAndPlay(52); _root.rewinder.gotoAndPlay(0); } } }
Instance of Symbol 339 MovieClip in Frame 197
onClipEvent (enterFrame) { if (_level0.used18 == 3) { _level0.used18 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used18 = 3; } } if (_level0.used18 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used18 == 2) { _level0.ppfocus = 4; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 343 MovieClip in Frame 197
onClipEvent (enterFrame) { if (_level0.used17 == 3) { _level0.used17 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used17 = 3; } } if (_level0.used17 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used17 == 2) { _level0.ppfocus = 3; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 348 MovieClip in Frame 197
onClipEvent (enterFrame) { if (_level0.used19 == 3) { _level0.used19 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used19 = 3; } } if (_level0.used19 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used19 == 2) { _level0.ppfocus = 5; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 221 MovieClip in Frame 197
onClipEvent (enterFrame) { if (_level0.used12 == 3) { _level0.used12 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used12 = 3; } } if (_level0.used12 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used12 == 2) { _level0.ppfocus = 1; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 349 MovieClip in Frame 197
onClipEvent (enterFrame) { if (_level0.used11 == 1) { _level0.used11 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used11 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used11 == 2) { _level0.used11 = 1; if (_level0.ppfocus == 1) { if (_level0.used12 == 2) { _level0.used12 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 2) { if (_level0.used14 == 2) { _level0.used14 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 3) { if (_level0.used17 == 2) { _level0.used17 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 4) { if (_level0.used18 == 2) { _level0.used18 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 5) { if (_level0.used19 == 2) { _level0.used19 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } _root.gotoAndPlay("L3MF1"); } } }
Instance of Symbol 350 MovieClip in Frame 197
onClipEvent (enterFrame) { if (_level0.used15 == 1) { this.gotoAndStop(51); } }
Instance of Symbol 366 MovieClip in Frame 197
onClipEvent (enterFrame) { if (_level0.used20 == 1) { _level0.used20 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used20 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used20 == 2) { _level0.used20 = 1; if (_level0.ppfocus == 1) { if (_level0.used12 == 2) { _level0.used12 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 2) { if (_level0.used14 == 2) { _level0.used14 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 3) { if (_level0.used17 == 2) { _level0.used17 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 4) { if (_level0.used18 == 2) { _level0.used18 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 5) { if (_level0.used19 == 2) { _level0.used19 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } _root.gotoAndPlay("L3MF7"); } } }
Instance of Symbol 367 MovieClip in Frame 197
onClipEvent (enterFrame) { if (_level0.used21 == 1) { _level0.used21 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used21 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used21 == 2) { _level0.used21 = 1; if (_level0.ppfocus == 1) { if (_level0.used12 == 2) { _level0.used12 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 2) { if (_level0.used14 == 2) { _level0.used14 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 3) { if (_level0.used17 == 2) { _level0.used17 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 4) { if (_level0.used18 == 2) { _level0.used18 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 5) { if (_level0.used19 == 2) { _level0.used19 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } } } }
Instance of Symbol 368 MovieClip in Frame 197
onClipEvent (enterFrame) { if (_level0.used21 == 1) { _level0.used21 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used21 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used21 == 2) { _level0.used21 = 1; if (_level0.ppfocus == 1) { if (_level0.used12 == 2) { _level0.used12 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 2) { if (_level0.used14 == 2) { _level0.used14 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 3) { if (_level0.used17 == 2) { _level0.used17 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 4) { if (_level0.used18 == 2) { _level0.used18 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 5) { if (_level0.used19 == 2) { _level0.used19 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } _root.gotoAndPlay(L4T); } } }
Frame 198
if (_level0.ppfocus == 1) { if (_level0.used12 == 2) { _level0.used12 = 3; _level0.ppfocus = 0; _level0.quiz1ready = 2; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 2) { if (_level0.used14 == 2) { _level0.used14 = 3; _level0.ppfocus = 0; _level0.quiz1ready = 2; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 3) { if (_level0.used17 == 2) { _level0.used17 = 3; _level0.ppfocus = 0; _level0.quiz1ready = 2; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 4) { if (_level0.used18 == 2) { _level0.used18 = 3; _level0.ppfocus = 0; _level0.quiz1ready = 2; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 5) { if (_level0.used19 == 2) { _level0.used19 = 3; _level0.ppfocus = 0; _level0.quiz1ready = 2; _level0.popupp.gotoAndPlay(17); } } if (_level0.quiz1ready == 1) { _level0.popupp.gotoAndPlay(31); } stop();
Instance of Symbol 200 MovieClip in Frame 198
onClipEvent (enterFrame) { if (_level0.used13 == 1) { _level0.used13 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used13 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used13 == 2) { _level0.used13 = 1; if (_level0.ppfocus == 1) { if (_level0.used12 == 2) { _level0.used12 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 2) { if (_level0.used14 == 2) { _level0.used14 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 3) { if (_level0.used17 == 2) { _level0.used17 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 4) { if (_level0.used18 == 2) { _level0.used18 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 5) { if (_level0.used19 == 2) { _level0.used19 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } _root.gotoAndPlay("L3MF6"); } } }
Instance of Symbol 221 MovieClip in Frame 198
onClipEvent (enterFrame) { if (_level0.used12 == 3) { _level0.used12 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used12 = 3; } } if (_level0.used12 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used12 == 2) { _level0.ppfocus = 1; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 355 MovieClip in Frame 198
onClipEvent (enterFrame) { if (_level0.used14 == 3) { _level0.used14 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used14 = 3; } } if (_level0.used14 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used14 == 2) { _level0.ppfocus = 2; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 200 MovieClip in Frame 198
onClipEvent (enterFrame) { if (_level0.used11 == 1) { _level0.used11 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used11 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used11 == 2) { _level0.used11 = 1; if (_level0.ppfocus == 1) { if (_level0.used12 == 2) { _level0.used12 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 2) { if (_level0.used14 == 2) { _level0.used14 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 3) { if (_level0.used17 == 2) { _level0.used17 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 4) { if (_level0.used18 == 2) { _level0.used18 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 5) { if (_level0.used19 == 2) { _level0.used19 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } _root.rewinder.gotoAndPlay(2); } } }
Instance of Symbol 237 MovieClip in Frame 198
onClipEvent (enterFrame) { if (_level0.used15 == 1) { this.gotoAndStop(51); } if (this.hitTest(_root.player)) { if (_level0.used15 == 2) { this.gotoAndStop(51); _root.gotoAndPlay("L3MF2"); } } }
Instance of Symbol 241 MovieClip in Frame 198
onClipEvent (enterFrame) { if (_level0.used16 == 1) { this.gotoAndStop(51); } if (this.hitTest(_root.player)) { if (_level0.used16 == 2) { _level0.used16 = 1; if (_level0.ppfocus == 1) { if (_level0.used12 == 2) { _level0.used12 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 2) { if (_level0.used14 == 2) { _level0.used14 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } _root.score = _root.score + 100; this.gotoAndPlay(52); _root.rewinder.gotoAndPlay(0); } } }
Instance of Symbol 369 MovieClip in Frame 198
onClipEvent (enterFrame) { if (_level0.used20 == 1) { _level0.used20 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used20 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used20 == 2) { _level0.used20 = 1; if (_level0.ppfocus == 1) { if (_level0.used12 == 2) { _level0.used12 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 2) { if (_level0.used14 == 2) { _level0.used14 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 3) { if (_level0.used17 == 2) { _level0.used17 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 4) { if (_level0.used18 == 2) { _level0.used18 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 5) { if (_level0.used19 == 2) { _level0.used19 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } _root.gotoAndPlay("L3MF7"); } } }
Instance of Symbol 370 MovieClip in Frame 198
onClipEvent (enterFrame) { if (_level0.used21 == 1) { _level0.used21 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used21 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used21 == 2) { _level0.used21 = 1; if (_level0.ppfocus == 1) { if (_level0.used12 == 2) { _level0.used12 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 2) { if (_level0.used14 == 2) { _level0.used14 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 3) { if (_level0.used17 == 2) { _level0.used17 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 4) { if (_level0.used18 == 2) { _level0.used18 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 5) { if (_level0.used19 == 2) { _level0.used19 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } } } }
Instance of Symbol 371 MovieClip in Frame 198
onClipEvent (enterFrame) { if (_level0.used21 == 1) { _level0.used21 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used21 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used21 == 2) { _level0.used21 = 1; if (_level0.ppfocus == 1) { if (_level0.used12 == 2) { _level0.used12 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 2) { if (_level0.used14 == 2) { _level0.used14 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 3) { if (_level0.used17 == 2) { _level0.used17 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 4) { if (_level0.used18 == 2) { _level0.used18 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 5) { if (_level0.used19 == 2) { _level0.used19 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } _root.gotoAndPlay(L4T); } } }
Frame 199
stop();
Instance of Symbol 200 MovieClip in Frame 199
onClipEvent (enterFrame) { if (_level0.used20 == 1) { _level0.used20 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used20 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used20 == 2) { _level0.used20 = 1; if (_level0.ppfocus == 1) { if (_level0.used12 == 2) { _level0.used12 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 2) { if (_level0.used14 == 2) { _level0.used14 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 3) { if (_level0.used17 == 2) { _level0.used17 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 4) { if (_level0.used18 == 2) { _level0.used18 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 5) { if (_level0.used19 == 2) { _level0.used19 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } _root.gotoAndPlay("L3MF7"); } } }
Instance of Symbol 200 MovieClip in Frame 199
onClipEvent (enterFrame) { if (_level0.used21 == 1) { _level0.used21 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used21 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used21 == 2) { _level0.used21 = 1; if (_level0.ppfocus == 1) { if (_level0.used12 == 2) { _level0.used12 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 2) { if (_level0.used14 == 2) { _level0.used14 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 3) { if (_level0.used17 == 2) { _level0.used17 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 4) { if (_level0.used18 == 2) { _level0.used18 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 5) { if (_level0.used19 == 2) { _level0.used19 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } } } }
Instance of Symbol 200 MovieClip in Frame 199
onClipEvent (enterFrame) { if (_level0.used21 == 1) { _level0.used21 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used21 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used21 == 2) { _level0.used21 = 1; if (_level0.ppfocus == 1) { if (_level0.used12 == 2) { _level0.used12 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 2) { if (_level0.used14 == 2) { _level0.used14 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 3) { if (_level0.used17 == 2) { _level0.used17 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 4) { if (_level0.used18 == 2) { _level0.used18 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 5) { if (_level0.used19 == 2) { _level0.used19 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } _root.gotoAndPlay(L4T); } } }
Instance of Symbol 50 MovieClip "player" in Frame 199
onClipEvent (load) { var grav = 0; var run = 10; var wlk = 2.5; var speed = run; var jumpHeight = 10; var dbl = 0; var tri = 0; var djump = false; var tjump = false; var thro = false; var slow = 0.7; var slowspd = (speed / 2); var setspeed = speed; var scale = _xscale; var ex = 5; this.gotoAndStop(2); } onClipEvent (enterFrame) { grav++; _y = (_y + grav); if (Key.isDown(65)) { setspeed = wlk; } else { setspeed = run; } while (_root.ground.hitTest(_x, _y, true)) { djump = false; tjump = false; _y = (_y-1); grav = 0; } if (_root.water.hitTest(_x, _y, true)) { grav = grav * (slow * 1.25); speed = slowspd; } else { speed = setspeed; } if (Key.isDown(39)) { _x = (_x + speed); _xscale = scale; if (_root.ground.hitTest(_x, _y + 3, true)) { this.gotoAndStop(1); } else if (djump == false) { this.gotoAndStop(2); } else if (tjump == false) { this.gotoAndStop(4); } else { this.gotoAndStop(5); } } else if (Key.isDown(37)) { _x = (_x - speed); _xscale = (-scale); if (_root.ground.hitTest(_x, _y + 3, true)) { this.gotoAndStop(1); } else if (djump == false) { this.gotoAndStop(2); } else if (tjump == false) { this.gotoAndStop(4); } else { this.gotoAndStop(5); } } else if ((_root.ground.hitTest(_x, _y + 3, true) && (!Key.isDown(68))) && (!Key.isDown(83))) { this.gotoAndStop(3); } if (((((Key.isDown(68) && (!Key.isDown(38))) && (!Key.isDown(39))) && (!Key.isDown(37))) && (!Key.isDown(83))) && (_root.ground.hitTest(_x, _y + 3, true))) { this.gotoAndStop(8); } if ((((((Key.isDown(83) && (!Key.isDown(39))) && (!Key.isDown(37))) && (!Key.isDown(38))) && (!Key.isDown(68))) && (_root.ground.hitTest(_x, _y + 3, true))) && (_currentframe != 6)) { this.gotoAndStop(7); } else if (Key.isDown(83) && (grav > 1)) { this.gotoAndStop(6); } if ((_root.ground.hitTest((_x + (_width / 2)) + ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - _height, true))) { _x = (_x - speed); } if ((_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - _height, true))) { _x = (_x + speed); } if (_root.ground.hitTest(_x, (_y - _height) - 15, true)) { grav = 1; } }
Frame 214
stop();
Instance of Symbol 200 MovieClip in Frame 214
onClipEvent (enterFrame) { if (_level0.used13 == 1) { _level0.used13 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used13 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used13 == 2) { _level0.used13 = 1; if (_level0.ppfocus == 1) { if (_level0.used12 == 2) { _level0.used12 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 2) { if (_level0.used14 == 2) { _level0.used14 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 3) { if (_level0.used17 == 2) { _level0.used17 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 4) { if (_level0.used18 == 2) { _level0.used18 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 5) { if (_level0.used19 == 2) { _level0.used19 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } _root.gotoAndPlay("L3MF6"); } } }
Instance of Symbol 221 MovieClip in Frame 214
onClipEvent (enterFrame) { if (_level0.used12 == 3) { _level0.used12 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used12 = 3; } } if (_level0.used12 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used12 == 2) { _level0.ppfocus = 1; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 355 MovieClip in Frame 214
onClipEvent (enterFrame) { if (_level0.used14 == 3) { _level0.used14 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used14 = 3; } } if (_level0.used14 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used14 == 2) { _level0.ppfocus = 2; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 200 MovieClip in Frame 214
onClipEvent (enterFrame) { if (_level0.used11 == 1) { _level0.used11 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used11 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used11 == 2) { _level0.used11 = 1; if (_level0.ppfocus == 1) { if (_level0.used12 == 2) { _level0.used12 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 2) { if (_level0.used14 == 2) { _level0.used14 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } _root.rewinder.gotoAndPlay(2); } } }
Instance of Symbol 237 MovieClip in Frame 214
onClipEvent (enterFrame) { if (_level0.used15 == 1) { this.gotoAndStop(51); } if (this.hitTest(_root.player)) { if (_level0.used15 == 2) { this.gotoAndStop(51); _root.gotoAndPlay("L3MF2"); } } }
Instance of Symbol 241 MovieClip in Frame 214
onClipEvent (enterFrame) { if (_level0.used16 == 1) { this.gotoAndStop(51); } if (this.hitTest(_root.player)) { if (_level0.used16 == 2) { _level0.used16 = 1; if (_level0.ppfocus == 1) { if (_level0.used12 == 2) { _level0.used12 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 2) { if (_level0.used14 == 2) { _level0.used14 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 3) { if (_level0.used17 == 2) { _level0.used17 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 4) { if (_level0.used18 == 2) { _level0.used18 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 5) { if (_level0.used19 == 2) { _level0.used19 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } _root.score = _root.score + 100; this.gotoAndPlay(52); _root.gotoAndPlay("L3MF5"); } } }
Instance of Symbol 339 MovieClip in Frame 214
onClipEvent (enterFrame) { if (_level0.used18 == 3) { _level0.used18 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used18 = 3; } } if (_level0.used18 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used18 == 2) { _level0.ppfocus = 4; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 343 MovieClip in Frame 214
onClipEvent (enterFrame) { if (_level0.used17 == 3) { _level0.used17 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used17 = 3; } } if (_level0.used17 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used17 == 2) { _level0.ppfocus = 3; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 348 MovieClip in Frame 214
onClipEvent (enterFrame) { if (_level0.used19 == 3) { _level0.used19 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used19 = 3; } } if (_level0.used19 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used19 == 2) { _level0.ppfocus = 5; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 200 MovieClip in Frame 214
onClipEvent (enterFrame) { if (_level0.used20 == 1) { _level0.used20 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used20 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used20 == 2) { _level0.used20 = 1; if (_level0.ppfocus == 1) { if (_level0.used12 == 2) { _level0.used12 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 2) { if (_level0.used14 == 2) { _level0.used14 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 3) { if (_level0.used17 == 2) { _level0.used17 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 4) { if (_level0.used18 == 2) { _level0.used18 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 5) { if (_level0.used19 == 2) { _level0.used19 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } _root.gotoAndPlay("L3MF7"); } } }
Instance of Symbol 200 MovieClip in Frame 214
onClipEvent (enterFrame) { if (_level0.used21 == 1) { _level0.used21 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used21 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used21 == 2) { _level0.used21 = 1; if (_level0.ppfocus == 1) { if (_level0.used12 == 2) { _level0.used12 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 2) { if (_level0.used14 == 2) { _level0.used14 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 3) { if (_level0.used17 == 2) { _level0.used17 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 4) { if (_level0.used18 == 2) { _level0.used18 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 5) { if (_level0.used19 == 2) { _level0.used19 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } } } }
Instance of Symbol 200 MovieClip in Frame 214
onClipEvent (enterFrame) { if (_level0.used21 == 1) { _level0.used21 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used21 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used21 == 2) { _level0.used21 = 1; if (_level0.ppfocus == 1) { if (_level0.used12 == 2) { _level0.used12 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 2) { if (_level0.used14 == 2) { _level0.used14 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 3) { if (_level0.used17 == 2) { _level0.used17 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 4) { if (_level0.used18 == 2) { _level0.used18 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 5) { if (_level0.used19 == 2) { _level0.used19 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } _root.gotoAndPlay(L4T); } } }
Instance of Symbol 50 MovieClip "player" in Frame 214
onClipEvent (load) { var grav = 0; var run = 10; var wlk = 2.5; var speed = run; var jumpHeight = 10; var dbl = 0; var tri = 0; var djump = false; var tjump = false; var thro = false; var slow = 0.7; var slowspd = (speed / 2); var setspeed = speed; var scale = _xscale; var ex = 5; this.gotoAndStop(2); } onClipEvent (enterFrame) { grav++; _y = (_y + grav); if (Key.isDown(65)) { setspeed = wlk; } else { setspeed = run; } while (_root.ground.hitTest(_x, _y, true)) { djump = false; tjump = false; _y = (_y-1); grav = 0; } if (_root.water.hitTest(_x, _y, true)) { grav = grav * (slow * 1.25); speed = slowspd; } else { speed = setspeed; } if (Key.isDown(39)) { _x = (_x + speed); _xscale = scale; if (_root.ground.hitTest(_x, _y + 3, true)) { this.gotoAndStop(1); } else if (djump == false) { this.gotoAndStop(2); } else if (tjump == false) { this.gotoAndStop(4); } else { this.gotoAndStop(5); } } else if (Key.isDown(37)) { _x = (_x - speed); _xscale = (-scale); if (_root.ground.hitTest(_x, _y + 3, true)) { this.gotoAndStop(1); } else if (djump == false) { this.gotoAndStop(2); } else if (tjump == false) { this.gotoAndStop(4); } else { this.gotoAndStop(5); } } else if ((_root.ground.hitTest(_x, _y + 3, true) && (!Key.isDown(68))) && (!Key.isDown(83))) { this.gotoAndStop(3); } if (((((Key.isDown(68) && (!Key.isDown(38))) && (!Key.isDown(39))) && (!Key.isDown(37))) && (!Key.isDown(83))) && (_root.ground.hitTest(_x, _y + 3, true))) { this.gotoAndStop(8); } if ((((((Key.isDown(83) && (!Key.isDown(39))) && (!Key.isDown(37))) && (!Key.isDown(38))) && (!Key.isDown(68))) && (_root.ground.hitTest(_x, _y + 3, true))) && (_currentframe != 6)) { this.gotoAndStop(7); } else if (Key.isDown(83) && (grav > 1)) { this.gotoAndStop(6); } if ((_root.ground.hitTest((_x + (_width / 2)) + ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - _height, true))) { _x = (_x - speed); } if ((_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - _height, true))) { _x = (_x + speed); } if (_root.ground.hitTest(_x, (_y - _height) - 15, true)) { grav = 1; } }
Frame 229
stop();
Instance of Symbol 200 MovieClip in Frame 229
onClipEvent (enterFrame) { if (_level0.used13 == 1) { _level0.used13 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used13 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used13 == 2) { _level0.used13 = 1; if (_level0.ppfocus == 1) { if (_level0.used12 == 2) { _level0.used12 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 2) { if (_level0.used14 == 2) { _level0.used14 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 3) { if (_level0.used17 == 2) { _level0.used17 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 4) { if (_level0.used18 == 2) { _level0.used18 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 5) { if (_level0.used19 == 2) { _level0.used19 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } _root.gotoAndPlay("L3MF6"); } } }
Instance of Symbol 221 MovieClip in Frame 229
onClipEvent (enterFrame) { if (_level0.used12 == 3) { _level0.used12 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used12 = 3; } } if (_level0.used12 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used12 == 2) { _level0.ppfocus = 1; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 355 MovieClip in Frame 229
onClipEvent (enterFrame) { if (_level0.used14 == 3) { _level0.used14 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used14 = 3; } } if (_level0.used14 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used14 == 2) { _level0.ppfocus = 2; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 200 MovieClip in Frame 229
onClipEvent (enterFrame) { if (_level0.used11 == 1) { _level0.used11 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used11 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used11 == 2) { _level0.used11 = 1; if (_level0.ppfocus == 1) { if (_level0.used12 == 2) { _level0.used12 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 2) { if (_level0.used14 == 2) { _level0.used14 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 3) { if (_level0.used17 == 2) { _level0.used17 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 4) { if (_level0.used18 == 2) { _level0.used18 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 5) { if (_level0.used19 == 2) { _level0.used19 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } _root.rewinder.gotoAndPlay(2); } } }
Instance of Symbol 237 MovieClip in Frame 229
onClipEvent (enterFrame) { if (_level0.used15 == 1) { this.gotoAndStop(51); } if (this.hitTest(_root.player)) { if (_level0.used15 == 2) { this.gotoAndStop(51); _root.gotoAndPlay("L3MF2"); } } }
Instance of Symbol 241 MovieClip in Frame 229
onClipEvent (enterFrame) { if (_level0.used16 == 1) { this.gotoAndStop(51); } if (this.hitTest(_root.player)) { if (_level0.used16 == 2) { _level0.used16 = 1; if (_level0.ppfocus == 1) { if (_level0.used12 == 2) { _level0.used12 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 2) { if (_level0.used14 == 2) { _level0.used14 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } _root.score = _root.score + 100; this.gotoAndPlay(52); _root.rewinder.gotoAndPlay(0); } } }
Instance of Symbol 339 MovieClip in Frame 229
onClipEvent (enterFrame) { if (_level0.used18 == 3) { _level0.used18 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used18 = 3; } } if (_level0.used18 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used18 == 2) { _level0.ppfocus = 4; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 343 MovieClip in Frame 229
onClipEvent (enterFrame) { if (_level0.used17 == 3) { _level0.used17 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used17 = 3; } } if (_level0.used17 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used17 == 2) { _level0.ppfocus = 3; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 348 MovieClip in Frame 229
onClipEvent (enterFrame) { if (_level0.used19 == 3) { _level0.used19 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used19 = 3; } } if (_level0.used19 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used19 == 2) { _level0.ppfocus = 5; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 200 MovieClip in Frame 229
onClipEvent (enterFrame) { if (_level0.used20 == 1) { _level0.used20 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used20 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used20 == 2) { _level0.used20 = 1; if (_level0.ppfocus == 1) { if (_level0.used12 == 2) { _level0.used12 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 2) { if (_level0.used14 == 2) { _level0.used14 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 3) { if (_level0.used17 == 2) { _level0.used17 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 4) { if (_level0.used18 == 2) { _level0.used18 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 5) { if (_level0.used19 == 2) { _level0.used19 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } _root.gotoAndPlay("L3MF7"); } } }
Instance of Symbol 200 MovieClip in Frame 229
onClipEvent (enterFrame) { if (_level0.used21 == 1) { _level0.used21 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used21 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used21 == 2) { _level0.used21 = 1; if (_level0.ppfocus == 1) { if (_level0.used12 == 2) { _level0.used12 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 2) { if (_level0.used14 == 2) { _level0.used14 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 3) { if (_level0.used17 == 2) { _level0.used17 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 4) { if (_level0.used18 == 2) { _level0.used18 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 5) { if (_level0.used19 == 2) { _level0.used19 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } } } }
Instance of Symbol 200 MovieClip in Frame 229
onClipEvent (enterFrame) { if (_level0.used21 == 1) { _level0.used21 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used21 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used21 == 2) { _level0.used21 = 1; if (_level0.ppfocus == 1) { if (_level0.used12 == 2) { _level0.used12 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 2) { if (_level0.used14 == 2) { _level0.used14 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 3) { if (_level0.used17 == 2) { _level0.used17 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 4) { if (_level0.used18 == 2) { _level0.used18 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 5) { if (_level0.used19 == 2) { _level0.used19 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } _root.gotoAndPlay(L4T); } } }
Instance of Symbol 50 MovieClip "player" in Frame 229
onClipEvent (load) { var grav = 0; var run = 10; var wlk = 2.5; var speed = run; var jumpHeight = 10; var dbl = 0; var tri = 0; var djump = false; var tjump = false; var thro = false; var slow = 0.7; var slowspd = (speed / 2); var setspeed = speed; var scale = _xscale; var ex = 5; this.gotoAndStop(2); } onClipEvent (enterFrame) { grav++; _y = (_y + grav); if (Key.isDown(65)) { setspeed = wlk; } else { setspeed = run; } while (_root.ground.hitTest(_x, _y, true)) { djump = false; tjump = false; _y = (_y-1); grav = 0; } if (_root.water.hitTest(_x, _y, true)) { grav = grav * (slow * 1.25); speed = slowspd; } else { speed = setspeed; } if (Key.isDown(39)) { _x = (_x + speed); _xscale = scale; if (_root.ground.hitTest(_x, _y + 3, true)) { this.gotoAndStop(1); } else if (djump == false) { this.gotoAndStop(2); } else if (tjump == false) { this.gotoAndStop(4); } else { this.gotoAndStop(5); } } else if (Key.isDown(37)) { _x = (_x - speed); _xscale = (-scale); if (_root.ground.hitTest(_x, _y + 3, true)) { this.gotoAndStop(1); } else if (djump == false) { this.gotoAndStop(2); } else if (tjump == false) { this.gotoAndStop(4); } else { this.gotoAndStop(5); } } else if ((_root.ground.hitTest(_x, _y + 3, true) && (!Key.isDown(68))) && (!Key.isDown(83))) { this.gotoAndStop(3); } if (((((Key.isDown(68) && (!Key.isDown(38))) && (!Key.isDown(39))) && (!Key.isDown(37))) && (!Key.isDown(83))) && (_root.ground.hitTest(_x, _y + 3, true))) { this.gotoAndStop(8); } if ((((((Key.isDown(83) && (!Key.isDown(39))) && (!Key.isDown(37))) && (!Key.isDown(38))) && (!Key.isDown(68))) && (_root.ground.hitTest(_x, _y + 3, true))) && (_currentframe != 6)) { this.gotoAndStop(7); } else if (Key.isDown(83) && (grav > 1)) { this.gotoAndStop(6); } if ((_root.ground.hitTest((_x + (_width / 2)) + ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - _height, true))) { _x = (_x - speed); } if ((_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - _height, true))) { _x = (_x + speed); } if (_root.ground.hitTest(_x, (_y - _height) - 15, true)) { grav = 1; } }
Frame 244
stop();
Instance of Symbol 200 MovieClip in Frame 244
onClipEvent (enterFrame) { if (_level0.used13 == 1) { _level0.used13 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used13 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used13 == 2) { _level0.used13 = 1; if (_level0.ppfocus == 1) { if (_level0.used12 == 2) { _level0.used12 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 2) { if (_level0.used14 == 2) { _level0.used14 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 3) { if (_level0.used17 == 2) { _level0.used17 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 4) { if (_level0.used18 == 2) { _level0.used18 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 5) { if (_level0.used19 == 2) { _level0.used19 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } _root.rewinder.gotoAndPlay(17); } } }
Instance of Symbol 221 MovieClip in Frame 244
onClipEvent (enterFrame) { if (_level0.used12 == 3) { _level0.used12 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used12 = 3; } } if (_level0.used12 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used12 == 2) { _level0.ppfocus = 1; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 355 MovieClip in Frame 244
onClipEvent (enterFrame) { if (_level0.used14 == 3) { _level0.used14 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used14 = 3; } } if (_level0.used14 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used14 == 2) { _level0.ppfocus = 2; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 200 MovieClip in Frame 244
onClipEvent (enterFrame) { if (_level0.used11 == 1) { _level0.used11 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used11 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used11 == 2) { _level0.used11 = 1; if (_level0.ppfocus == 1) { if (_level0.used12 == 2) { _level0.used12 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 2) { if (_level0.used14 == 2) { _level0.used14 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 3) { if (_level0.used17 == 2) { _level0.used17 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 4) { if (_level0.used18 == 2) { _level0.used18 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 5) { if (_level0.used19 == 2) { _level0.used19 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } _root.rewinder.gotoAndPlay(2); } } }
Instance of Symbol 237 MovieClip in Frame 244
onClipEvent (enterFrame) { if (_level0.used15 == 1) { this.gotoAndStop(51); } if (this.hitTest(_root.player)) { if (_level0.used15 == 2) { this.gotoAndStop(51); _root.gotoAndPlay("L3MF2"); } } }
Instance of Symbol 241 MovieClip in Frame 244
onClipEvent (enterFrame) { if (_level0.used16 == 1) { this.gotoAndStop(51); } if (this.hitTest(_root.player)) { if (_level0.used16 == 2) { _level0.used16 = 1; if (_level0.ppfocus == 1) { if (_level0.used12 == 2) { _level0.used12 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 2) { if (_level0.used14 == 2) { _level0.used14 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } _root.score = _root.score + 100; this.gotoAndPlay(52); _root.rewinder.gotoAndPlay(0); } } }
Instance of Symbol 339 MovieClip in Frame 244
onClipEvent (enterFrame) { if (_level0.used18 == 3) { _level0.used18 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used18 = 3; } } if (_level0.used18 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used18 == 2) { _level0.ppfocus = 4; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 343 MovieClip in Frame 244
onClipEvent (enterFrame) { if (_level0.used17 == 3) { _level0.used17 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used17 = 3; } } if (_level0.used17 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used17 == 2) { _level0.ppfocus = 3; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 348 MovieClip in Frame 244
onClipEvent (enterFrame) { if (_level0.used19 == 3) { _level0.used19 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used19 = 3; } } if (_level0.used19 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used19 == 2) { _level0.ppfocus = 5; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 200 MovieClip in Frame 244
onClipEvent (enterFrame) { if (_level0.used20 == 1) { _level0.used20 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used20 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used20 == 2) { _level0.used20 = 1; if (_level0.ppfocus == 1) { if (_level0.used12 == 2) { _level0.used12 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 2) { if (_level0.used14 == 2) { _level0.used14 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 3) { if (_level0.used17 == 2) { _level0.used17 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 4) { if (_level0.used18 == 2) { _level0.used18 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 5) { if (_level0.used19 == 2) { _level0.used19 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } _root.gotoAndPlay("L3MF7"); } } }
Instance of Symbol 200 MovieClip in Frame 244
onClipEvent (enterFrame) { if (_level0.used21 == 1) { _level0.used21 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used21 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used21 == 2) { _level0.used21 = 1; if (_level0.ppfocus == 1) { if (_level0.used12 == 2) { _level0.used12 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 2) { if (_level0.used14 == 2) { _level0.used14 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 3) { if (_level0.used17 == 2) { _level0.used17 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 4) { if (_level0.used18 == 2) { _level0.used18 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 5) { if (_level0.used19 == 2) { _level0.used19 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } } } }
Instance of Symbol 200 MovieClip in Frame 244
onClipEvent (enterFrame) { if (_level0.used21 == 1) { _level0.used21 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used21 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used21 == 2) { _level0.used21 = 1; if (_level0.ppfocus == 1) { if (_level0.used12 == 2) { _level0.used12 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 2) { if (_level0.used14 == 2) { _level0.used14 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 3) { if (_level0.used17 == 2) { _level0.used17 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 4) { if (_level0.used18 == 2) { _level0.used18 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 5) { if (_level0.used19 == 2) { _level0.used19 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } _root.gotoAndPlay(L4T); } } }
Instance of Symbol 50 MovieClip "player" in Frame 244
onClipEvent (load) { var grav = 0; var run = 10; var wlk = 2.5; var speed = run; var jumpHeight = 10; var dbl = 0; var tri = 0; var djump = false; var tjump = false; var thro = false; var slow = 0.7; var slowspd = (speed / 2); var setspeed = speed; var scale = _xscale; var ex = 5; this.gotoAndStop(2); } onClipEvent (enterFrame) { grav++; _y = (_y + grav); if (Key.isDown(65)) { setspeed = wlk; } else { setspeed = run; } while (_root.ground.hitTest(_x, _y, true)) { djump = false; tjump = false; _y = (_y-1); grav = 0; } if (_root.water.hitTest(_x, _y, true)) { grav = grav * (slow * 1.25); speed = slowspd; } else { speed = setspeed; } if (Key.isDown(39)) { _x = (_x + speed); _xscale = scale; if (_root.ground.hitTest(_x, _y + 3, true)) { this.gotoAndStop(1); } else if (djump == false) { this.gotoAndStop(2); } else if (tjump == false) { this.gotoAndStop(4); } else { this.gotoAndStop(5); } } else if (Key.isDown(37)) { _x = (_x - speed); _xscale = (-scale); if (_root.ground.hitTest(_x, _y + 3, true)) { this.gotoAndStop(1); } else if (djump == false) { this.gotoAndStop(2); } else if (tjump == false) { this.gotoAndStop(4); } else { this.gotoAndStop(5); } } else if ((_root.ground.hitTest(_x, _y + 3, true) && (!Key.isDown(68))) && (!Key.isDown(83))) { this.gotoAndStop(3); } if (((((Key.isDown(68) && (!Key.isDown(38))) && (!Key.isDown(39))) && (!Key.isDown(37))) && (!Key.isDown(83))) && (_root.ground.hitTest(_x, _y + 3, true))) { this.gotoAndStop(8); } if ((((((Key.isDown(83) && (!Key.isDown(39))) && (!Key.isDown(37))) && (!Key.isDown(38))) && (!Key.isDown(68))) && (_root.ground.hitTest(_x, _y + 3, true))) && (_currentframe != 6)) { this.gotoAndStop(7); } else if (Key.isDown(83) && (grav > 1)) { this.gotoAndStop(6); } if ((_root.ground.hitTest((_x + (_width / 2)) + ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - _height, true))) { _x = (_x - speed); } if ((_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - _height, true))) { _x = (_x + speed); } if (_root.ground.hitTest(_x, (_y - _height) - 15, true)) { grav = 1; } }
Frame 259
stop(); ground.gotoAndStop(2);
Instance of Symbol 339 MovieClip in Frame 259
onClipEvent (enterFrame) { if (_level0.used18 == 3) { _level0.used18 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used18 = 3; } } if (_level0.used18 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used18 == 2) { _level0.ppfocus = 4; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 343 MovieClip in Frame 259
onClipEvent (enterFrame) { if (_level0.used17 == 3) { _level0.used17 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used17 = 3; } } if (_level0.used17 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used17 == 2) { _level0.ppfocus = 3; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 348 MovieClip in Frame 259
onClipEvent (enterFrame) { if (_level0.used19 == 3) { _level0.used19 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used19 = 3; } } if (_level0.used19 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used19 == 2) { _level0.ppfocus = 5; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 221 MovieClip in Frame 259
onClipEvent (enterFrame) { if (_level0.used12 == 3) { _level0.used12 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used12 = 3; } } if (_level0.used12 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used12 == 2) { _level0.ppfocus = 1; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 349 MovieClip in Frame 259
onClipEvent (enterFrame) { if (_level0.used11 == 1) { _level0.used11 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used11 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used11 == 2) { _level0.used11 = 1; if (_level0.ppfocus == 1) { if (_level0.used12 == 2) { _level0.used12 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 2) { if (_level0.used14 == 2) { _level0.used14 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 3) { if (_level0.used17 == 2) { _level0.used17 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 4) { if (_level0.used18 == 2) { _level0.used18 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 5) { if (_level0.used19 == 2) { _level0.used19 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } _root.gotoAndPlay("L3MF1"); } } }
Instance of Symbol 350 MovieClip in Frame 259
onClipEvent (enterFrame) { if (_level0.used15 == 1) { this.gotoAndStop(51); } }
Instance of Symbol 200 MovieClip in Frame 259
onClipEvent (enterFrame) { if (_level0.used13 == 1) { _level0.used13 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used13 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used13 == 2) { _level0.used13 = 1; if (_level0.ppfocus == 1) { if (_level0.used12 == 2) { _level0.used12 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 2) { if (_level0.used14 == 2) { _level0.used14 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 3) { if (_level0.used17 == 2) { _level0.used17 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 4) { if (_level0.used18 == 2) { _level0.used18 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 5) { if (_level0.used19 == 2) { _level0.used19 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } _root.gotoAndPlay("L3MF6"); } } }
Instance of Symbol 241 MovieClip in Frame 259
onClipEvent (enterFrame) { if (_level0.used16 == 1) { this.gotoAndStop(51); } }
Instance of Symbol 355 MovieClip in Frame 259
onClipEvent (enterFrame) { if (_level0.used14 == 3) { _level0.used14 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used14 = 3; } } if (_level0.used14 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used14 == 2) { _level0.ppfocus = 2; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 200 MovieClip in Frame 259
onClipEvent (enterFrame) { if (_level0.used20 == 1) { _level0.used20 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used20 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used20 == 2) { _level0.used20 = 1; if (_level0.ppfocus == 1) { if (_level0.used12 == 2) { _level0.used12 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 2) { if (_level0.used14 == 2) { _level0.used14 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 3) { if (_level0.used17 == 2) { _level0.used17 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 4) { if (_level0.used18 == 2) { _level0.used18 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 5) { if (_level0.used19 == 2) { _level0.used19 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } _root.gotoAndPlay("L3MF7"); } } }
Instance of Symbol 200 MovieClip in Frame 259
onClipEvent (enterFrame) { if (_level0.used21 == 1) { _level0.used21 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used21 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used21 == 2) { _level0.used21 = 1; if (_level0.ppfocus == 1) { if (_level0.used12 == 2) { _level0.used12 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 2) { if (_level0.used14 == 2) { _level0.used14 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 3) { if (_level0.used17 == 2) { _level0.used17 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 4) { if (_level0.used18 == 2) { _level0.used18 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 5) { if (_level0.used19 == 2) { _level0.used19 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } _root.ground.gotoAndStop(3); _root.gotoAndPlay("L3MF9"); } } }
Instance of Symbol 200 MovieClip in Frame 259
onClipEvent (enterFrame) { if (_level0.used21 == 1) { _level0.used21 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used21 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used21 == 2) { _level0.used21 = 1; if (_level0.ppfocus == 1) { if (_level0.used12 == 2) { _level0.used12 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 2) { if (_level0.used14 == 2) { _level0.used14 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 3) { if (_level0.used17 == 2) { _level0.used17 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 4) { if (_level0.used18 == 2) { _level0.used18 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 5) { if (_level0.used19 == 2) { _level0.used19 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } _root.gotoAndPlay(L4T); } } }
Instance of Symbol 50 MovieClip "player" in Frame 259
onClipEvent (load) { var grav = 0; var run = 10; var wlk = 2.5; var speed = run; var jumpHeight = 10; var dbl = 0; var tri = 0; var djump = false; var tjump = false; var thro = false; var slow = 0.7; var slowspd = (speed / 2); var setspeed = speed; var scale = _xscale; var ex = 5; this.gotoAndStop(2); } onClipEvent (enterFrame) { grav++; _y = (_y + grav); if (Key.isDown(65)) { setspeed = wlk; } else { setspeed = run; } while (_root.ground.hitTest(_x, _y, true)) { djump = false; tjump = false; _y = (_y-1); grav = 0; } if (_root.water.hitTest(_x, _y, true)) { grav = grav * (slow * 1.25); speed = slowspd; } else { speed = setspeed; } if (Key.isDown(39)) { _x = (_x + speed); _xscale = scale; if (_root.ground.hitTest(_x, _y + 3, true)) { this.gotoAndStop(1); } else if (djump == false) { this.gotoAndStop(2); } else if (tjump == false) { this.gotoAndStop(4); } else { this.gotoAndStop(5); } } else if (Key.isDown(37)) { _x = (_x - speed); _xscale = (-scale); if (_root.ground.hitTest(_x, _y + 3, true)) { this.gotoAndStop(1); } else if (djump == false) { this.gotoAndStop(2); } else if (tjump == false) { this.gotoAndStop(4); } else { this.gotoAndStop(5); } } else if ((_root.ground.hitTest(_x, _y + 3, true) && (!Key.isDown(68))) && (!Key.isDown(83))) { this.gotoAndStop(3); } if (((((Key.isDown(68) && (!Key.isDown(38))) && (!Key.isDown(39))) && (!Key.isDown(37))) && (!Key.isDown(83))) && (_root.ground.hitTest(_x, _y + 3, true))) { this.gotoAndStop(8); } if ((((((Key.isDown(83) && (!Key.isDown(39))) && (!Key.isDown(37))) && (!Key.isDown(38))) && (!Key.isDown(68))) && (_root.ground.hitTest(_x, _y + 3, true))) && (_currentframe != 6)) { this.gotoAndStop(7); } else if (Key.isDown(83) && (grav > 1)) { this.gotoAndStop(6); } if ((_root.ground.hitTest((_x + (_width / 2)) + ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - _height, true))) { _x = (_x - speed); } if ((_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - _height, true))) { _x = (_x + speed); } if (_root.ground.hitTest(_x, (_y - _height) - 15, true)) { grav = 1; } }
Frame 260
stop();
Instance of Symbol 200 MovieClip in Frame 260
onClipEvent (enterFrame) { if (_level0.used13 == 1) { _level0.used13 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used13 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used13 == 2) { _level0.used13 = 1; if (_level0.ppfocus == 1) { if (_level0.used12 == 2) { _level0.used12 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 2) { if (_level0.used14 == 2) { _level0.used14 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 3) { if (_level0.used17 == 2) { _level0.used17 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 4) { if (_level0.used18 == 2) { _level0.used18 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 5) { if (_level0.used19 == 2) { _level0.used19 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } _root.gotoAndPlay("L3MF6"); } } }
Instance of Symbol 221 MovieClip in Frame 260
onClipEvent (enterFrame) { if (_level0.used12 == 3) { _level0.used12 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used12 = 3; } } if (_level0.used12 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used12 == 2) { _level0.ppfocus = 1; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 355 MovieClip in Frame 260
onClipEvent (enterFrame) { if (_level0.used14 == 3) { _level0.used14 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used14 = 3; } } if (_level0.used14 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used14 == 2) { _level0.ppfocus = 2; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 200 MovieClip in Frame 260
onClipEvent (enterFrame) { if (_level0.used11 == 1) { _level0.used11 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used11 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used11 == 2) { _level0.used11 = 1; if (_level0.ppfocus == 1) { if (_level0.used12 == 2) { _level0.used12 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 2) { if (_level0.used14 == 2) { _level0.used14 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 3) { if (_level0.used17 == 2) { _level0.used17 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 4) { if (_level0.used18 == 2) { _level0.used18 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 5) { if (_level0.used19 == 2) { _level0.used19 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } _root.rewinder.gotoAndPlay(2); } } }
Instance of Symbol 237 MovieClip in Frame 260
onClipEvent (enterFrame) { if (_level0.used15 == 1) { this.gotoAndStop(51); } if (this.hitTest(_root.player)) { if (_level0.used15 == 2) { this.gotoAndStop(51); _root.gotoAndPlay("L3MF2"); } } }
Instance of Symbol 241 MovieClip in Frame 260
onClipEvent (enterFrame) { if (_level0.used16 == 1) { this.gotoAndStop(51); } if (this.hitTest(_root.player)) { if (_level0.used16 == 2) { _level0.used16 = 1; if (_level0.ppfocus == 1) { if (_level0.used12 == 2) { _level0.used12 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 2) { if (_level0.used14 == 2) { _level0.used14 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } _root.score = _root.score + 100; this.gotoAndPlay(52); _root.rewinder.gotoAndPlay(0); } } }
Instance of Symbol 372 MovieClip in Frame 260
onClipEvent (enterFrame) { if (_level0.used20 == 1) { _level0.used20 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used20 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used20 == 2) { _level0.used20 = 1; if (_level0.ppfocus == 1) { if (_level0.used12 == 2) { _level0.used12 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 2) { if (_level0.used14 == 2) { _level0.used14 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 3) { if (_level0.used17 == 2) { _level0.used17 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 4) { if (_level0.used18 == 2) { _level0.used18 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 5) { if (_level0.used19 == 2) { _level0.used19 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } _root.gotoAndPlay("L3MF7"); } } }
Instance of Symbol 373 MovieClip in Frame 260
onClipEvent (enterFrame) { if (_level0.used21 == 1) { _level0.used21 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used21 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used21 == 2) { _level0.used21 = 1; if (_level0.ppfocus == 1) { if (_level0.used12 == 2) { _level0.used12 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 2) { if (_level0.used14 == 2) { _level0.used14 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 3) { if (_level0.used17 == 2) { _level0.used17 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 4) { if (_level0.used18 == 2) { _level0.used18 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 5) { if (_level0.used19 == 2) { _level0.used19 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } } } }
Instance of Symbol 374 MovieClip in Frame 260
onClipEvent (enterFrame) { if (_level0.used21 == 1) { _level0.used21 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used21 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used21 == 2) { _level0.used21 = 1; if (_level0.ppfocus == 1) { if (_level0.used12 == 2) { _level0.used12 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 2) { if (_level0.used14 == 2) { _level0.used14 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 3) { if (_level0.used17 == 2) { _level0.used17 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 4) { if (_level0.used18 == 2) { _level0.used18 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 5) { if (_level0.used19 == 2) { _level0.used19 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } _root.gotoAndPlay(L4T); } } }
Frame 276
stop();
Instance of Symbol 200 MovieClip in Frame 276
onClipEvent (enterFrame) { if (_level0.used13 == 1) { _level0.used13 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used13 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used13 == 2) { _level0.used13 = 1; if (_level0.ppfocus == 1) { if (_level0.used12 == 2) { _level0.used12 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 2) { if (_level0.used14 == 2) { _level0.used14 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 3) { if (_level0.used17 == 2) { _level0.used17 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 4) { if (_level0.used18 == 2) { _level0.used18 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 5) { if (_level0.used19 == 2) { _level0.used19 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } _root.gotoAndPlay("L3MF6"); } } }
Instance of Symbol 221 MovieClip in Frame 276
onClipEvent (enterFrame) { if (_level0.used12 == 3) { _level0.used12 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used12 = 3; } } if (_level0.used12 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used12 == 2) { _level0.ppfocus = 1; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 355 MovieClip in Frame 276
onClipEvent (enterFrame) { if (_level0.used14 == 3) { _level0.used14 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used14 = 3; } } if (_level0.used14 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used14 == 2) { _level0.ppfocus = 2; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 200 MovieClip in Frame 276
onClipEvent (enterFrame) { if (_level0.used11 == 1) { _level0.used11 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used11 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used11 == 2) { _level0.used11 = 1; if (_level0.ppfocus == 1) { if (_level0.used12 == 2) { _level0.used12 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 2) { if (_level0.used14 == 2) { _level0.used14 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } _root.rewinder.gotoAndPlay(2); } } }
Instance of Symbol 237 MovieClip in Frame 276
onClipEvent (enterFrame) { if (_level0.used15 == 1) { this.gotoAndStop(51); } if (this.hitTest(_root.player)) { if (_level0.used15 == 2) { this.gotoAndStop(51); _root.gotoAndPlay("L3MF2"); } } }
Instance of Symbol 241 MovieClip in Frame 276
onClipEvent (enterFrame) { if (_level0.used16 == 1) { this.gotoAndStop(51); } if (this.hitTest(_root.player)) { if (_level0.used16 == 2) { _level0.used16 = 1; if (_level0.ppfocus == 1) { if (_level0.used12 == 2) { _level0.used12 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 2) { if (_level0.used14 == 2) { _level0.used14 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 3) { if (_level0.used17 == 2) { _level0.used17 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 4) { if (_level0.used18 == 2) { _level0.used18 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 5) { if (_level0.used19 == 2) { _level0.used19 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } _root.score = _root.score + 100; this.gotoAndPlay(52); _root.gotoAndPlay("L3MF5"); } } }
Instance of Symbol 339 MovieClip in Frame 276
onClipEvent (enterFrame) { if (_level0.used18 == 3) { _level0.used18 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used18 = 3; } } if (_level0.used18 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used18 == 2) { _level0.ppfocus = 4; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 343 MovieClip in Frame 276
onClipEvent (enterFrame) { if (_level0.used17 == 3) { _level0.used17 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used17 = 3; } } if (_level0.used17 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used17 == 2) { _level0.ppfocus = 3; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 348 MovieClip in Frame 276
onClipEvent (enterFrame) { if (_level0.used19 == 3) { _level0.used19 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used19 = 3; } } if (_level0.used19 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used19 == 2) { _level0.ppfocus = 5; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 200 MovieClip in Frame 276
onClipEvent (enterFrame) { if (_level0.used20 == 1) { _level0.used20 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used20 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used20 == 2) { _level0.used20 = 1; if (_level0.ppfocus == 1) { if (_level0.used12 == 2) { _level0.used12 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 2) { if (_level0.used14 == 2) { _level0.used14 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 3) { if (_level0.used17 == 2) { _level0.used17 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 4) { if (_level0.used18 == 2) { _level0.used18 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 5) { if (_level0.used19 == 2) { _level0.used19 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } _root.gotoAndPlay("L3MF7"); } } }
Instance of Symbol 200 MovieClip in Frame 276
onClipEvent (enterFrame) { if (_level0.used21 == 1) { _level0.used21 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used21 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used21 == 2) { _level0.used21 = 1; if (_level0.ppfocus == 1) { if (_level0.used12 == 2) { _level0.used12 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 2) { if (_level0.used14 == 2) { _level0.used14 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 3) { if (_level0.used17 == 2) { _level0.used17 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 4) { if (_level0.used18 == 2) { _level0.used18 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 5) { if (_level0.used19 == 2) { _level0.used19 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } } } }
Instance of Symbol 200 MovieClip in Frame 276
onClipEvent (enterFrame) { if (_level0.used22 == 1) { _level0.used22 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used22 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used22 == 2) { _level0.used22 = 1; if (_level0.ppfocus == 1) { if (_level0.used12 == 2) { _level0.used12 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 2) { if (_level0.used14 == 2) { _level0.used14 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 3) { if (_level0.used17 == 2) { _level0.used17 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 4) { if (_level0.used18 == 2) { _level0.used18 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 5) { if (_level0.used19 == 2) { _level0.used19 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } _root.gotoAndPlay("L4T"); } } }
Instance of Symbol 50 MovieClip "player" in Frame 276
onClipEvent (load) { var grav = 0; var run = 10; var wlk = 2.5; var speed = run; var jumpHeight = 10; var dbl = 0; var tri = 0; var djump = false; var tjump = false; var thro = false; var slow = 0.7; var slowspd = (speed / 2); var setspeed = speed; var scale = _xscale; var ex = 5; this.gotoAndStop(2); } onClipEvent (enterFrame) { grav++; _y = (_y + grav); if (Key.isDown(65)) { setspeed = wlk; } else { setspeed = run; } while (_root.ground.hitTest(_x, _y, true)) { djump = false; tjump = false; _y = (_y-1); grav = 0; } if (_root.water.hitTest(_x, _y, true)) { grav = grav * (slow * 1.25); speed = slowspd; } else { speed = setspeed; } if (Key.isDown(39)) { _x = (_x + speed); _xscale = scale; if (_root.ground.hitTest(_x, _y + 3, true)) { this.gotoAndStop(1); } else if (djump == false) { this.gotoAndStop(2); } else if (tjump == false) { this.gotoAndStop(4); } else { this.gotoAndStop(5); } } else if (Key.isDown(37)) { _x = (_x - speed); _xscale = (-scale); if (_root.ground.hitTest(_x, _y + 3, true)) { this.gotoAndStop(1); } else if (djump == false) { this.gotoAndStop(2); } else if (tjump == false) { this.gotoAndStop(4); } else { this.gotoAndStop(5); } } else if ((_root.ground.hitTest(_x, _y + 3, true) && (!Key.isDown(68))) && (!Key.isDown(83))) { this.gotoAndStop(3); } if (((((Key.isDown(68) && (!Key.isDown(38))) && (!Key.isDown(39))) && (!Key.isDown(37))) && (!Key.isDown(83))) && (_root.ground.hitTest(_x, _y + 3, true))) { this.gotoAndStop(8); } if ((((((Key.isDown(83) && (!Key.isDown(39))) && (!Key.isDown(37))) && (!Key.isDown(38))) && (!Key.isDown(68))) && (_root.ground.hitTest(_x, _y + 3, true))) && (_currentframe != 6)) { this.gotoAndStop(7); } else if (Key.isDown(83) && (grav > 1)) { this.gotoAndStop(6); } if ((_root.ground.hitTest((_x + (_width / 2)) + ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - _height, true))) { _x = (_x - speed); } if ((_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - _height, true))) { _x = (_x + speed); } if (_root.ground.hitTest(_x, (_y - _height) - 15, true)) { grav = 1; } }
Frame 277
play(); lev1score = score + ntimer; score = lev1score; tempscore = score;
Frame 297
gotoAndPlay ("L4M");
Instance of Symbol 200 MovieClip in Frame 297
onClipEvent (enterFrame) { if (_level0.used21 == 1) { _level0.used21 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used21 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used21 == 2) { _level0.used21 = 1; if (_level0.ppfocus == 1) { if (_level0.used12 == 2) { _level0.used12 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 2) { if (_level0.used14 == 2) { _level0.used14 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 3) { if (_level0.used17 == 2) { _level0.used17 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 4) { if (_level0.used18 == 2) { _level0.used18 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 5) { if (_level0.used19 == 2) { _level0.used19 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } _root.gotoAndPlay("L4T"); } } }
Frame 300
used24 = 2; used25 = 2; used26 = 2; used27 = 2; used28 = 2; used29 = 2; used30 = 2; used31 = 2; used32 = 2; used33 = 2; used34 = 2; used35 = 2; used36 = 2; used37 = 2; used31sub = 1; quiz2ready = 1; ynvar = 1; ntimer = 300;
Frame 301
stop();
Instance of Symbol 375 MovieClip "rewinder2" in Frame 301
onClipEvent (enterFrame) { if (_root.ntimer < 1) { _root.ntimer = 0; } }
Instance of Symbol 60 MovieClip "background" in Frame 301
onClipEvent (enterFrame) { if (_level0.bkvar == 2) { this.gotoAndStop(1); } }
Instance of Symbol 399 MovieClip in Frame 301
onClipEvent (enterFrame) { if (_level0.used27 == 3) { _level0.used27 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used27 = 3; } } if (_level0.used27 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used27 == 2) { _level0.ppfocus = 8; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 404 MovieClip in Frame 301
onClipEvent (enterFrame) { if (_level0.used24 == 3) { _level0.used24 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used24 = 3; } } if (_level0.used24 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used24 == 2) { _level0.ppfocus = 5; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 409 MovieClip in Frame 301
onClipEvent (enterFrame) { if (_level0.used25 == 3) { _level0.used25 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used25 = 3; } } if (_level0.used25 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used25 == 2) { _level0.ppfocus = 6; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 414 MovieClip in Frame 301
onClipEvent (enterFrame) { if (_level0.used28 == 3) { _level0.used28 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used28 = 3; } } if (_level0.used28 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used28 == 2) { _level0.ppfocus = 9; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 419 MovieClip in Frame 301
onClipEvent (enterFrame) { if (_level0.used26 == 3) { _level0.used26 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used26 = 3; } } if (_level0.used26 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used26 == 2) { _level0.ppfocus = 7; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 424 MovieClip in Frame 301
onClipEvent (enterFrame) { if (_level0.used29 == 3) { _level0.used29 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used29 = 3; } } if (_level0.used29 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used29 == 2) { _level0.ppfocus = 10; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 237 MovieClip in Frame 301
onClipEvent (enterFrame) { if (_level0.used30 == 1) { this.gotoAndStop(51); } if (this.hitTest(_root.player)) { if (_level0.used30 == 2) { this.gotoAndStop(51); _root.gotoAndStop("L4MF2"); } } }
Instance of Symbol 50 MovieClip "player" in Frame 301
onClipEvent (load) { var grav = 0; var run = 10; var wlk = 2.5; var speed = run; var jumpHeight = 10; var dbl = 0; var tri = 0; var djump = false; var tjump = false; var thro = false; var slow = 0.7; var slowspd = (speed / 2); var setspeed = speed; var scale = _xscale; var ex = 5; this.gotoAndStop(2); } onClipEvent (enterFrame) { grav++; _y = (_y + grav); if (Key.isDown(65)) { setspeed = wlk; } else { setspeed = run; } while (_root.ground.hitTest(_x, _y, true)) { djump = false; tjump = false; _y = (_y-1); grav = 0; } if (_root.water.hitTest(_x, _y, true)) { grav = grav * (slow * 1.25); speed = slowspd; } else { speed = setspeed; } if (Key.isDown(39)) { _x = (_x + speed); _xscale = scale; if (_root.ground.hitTest(_x, _y + 3, true)) { this.gotoAndStop(1); } else if (djump == false) { this.gotoAndStop(2); } else if (tjump == false) { this.gotoAndStop(4); } else { this.gotoAndStop(5); } } else if (Key.isDown(37)) { _x = (_x - speed); _xscale = (-scale); if (_root.ground.hitTest(_x, _y + 3, true)) { this.gotoAndStop(1); } else if (djump == false) { this.gotoAndStop(2); } else if (tjump == false) { this.gotoAndStop(4); } else { this.gotoAndStop(5); } } else if ((_root.ground.hitTest(_x, _y + 3, true) && (!Key.isDown(68))) && (!Key.isDown(83))) { this.gotoAndStop(3); } if (((((Key.isDown(68) && (!Key.isDown(38))) && (!Key.isDown(39))) && (!Key.isDown(37))) && (!Key.isDown(83))) && (_root.ground.hitTest(_x, _y + 3, true))) { this.gotoAndStop(8); } if ((((((Key.isDown(83) && (!Key.isDown(39))) && (!Key.isDown(37))) && (!Key.isDown(38))) && (!Key.isDown(68))) && (_root.ground.hitTest(_x, _y + 3, true))) && (_currentframe != 6)) { this.gotoAndStop(7); } else if (Key.isDown(83) && (grav > 1)) { this.gotoAndStop(6); } if ((_root.ground.hitTest((_x + (_width / 2)) + ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - _height, true))) { _x = (_x - speed); } if ((_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - _height, true))) { _x = (_x + speed); } if (_root.ground.hitTest(_x, (_y - _height) - 15, true)) { grav = 1; } }
Frame 302
if (_level0.ppfocus == 5) { if (_level0.used24 == 2) { _level0.used24 = 3; _level0.ppfocus = 0; _level0.quiz2ready = 2; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 6) { if (_level0.used25 == 2) { _level0.used25 = 3; _level0.ppfocus = 0; _level0.quiz2ready = 2; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 7) { if (_level0.used26 == 2) { _level0.used26 = 3; _level0.ppfocus = 0; _level0.quiz2ready = 2; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 8) { if (_level0.used27 == 2) { _level0.used27 = 3; _level0.ppfocus = 0; _level0.quiz2ready = 2; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 9) { if (_level0.used28 == 2) { _level0.used28 = 3; _level0.ppfocus = 0; _level0.quiz2ready = 2; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 10) { if (_level0.used29 == 2) { _level0.used29 = 3; _level0.ppfocus = 0; _level0.quiz2ready = 2; _level0.popupp.gotoAndPlay(17); } } if (_level0.quiz2ready == 1) { _level0.popupp.gotoAndPlay(31); }
Instance of Symbol 367 MovieClip in Frame 303
onClipEvent (enterFrame) { if (_level0.used30 == 1) { _level0.used30 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used30 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used30 == 2) { _level0.used30 = 1; if (_level0.ppfocus == 5) { if (_level0.used24 == 2) { _level0.used24 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 6) { if (_level0.used25 == 2) { _level0.used25 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 7) { if (_level0.used26 == 2) { _level0.used26 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 8) { if (_level0.used27 == 2) { _level0.used27 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 9) { if (_level0.used28 == 2) { _level0.used28 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 10) { if (_level0.used29 == 2) { _level0.used29 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } _root.gotoAndPlay("L4MF4"); } } }
Instance of Symbol 50 MovieClip "player" in Frame 303
onClipEvent (load) { var grav = 0; var run = 10; var wlk = 2.5; var speed = run; var jumpHeight = 10; var dbl = 0; var tri = 0; var djump = false; var tjump = false; var thro = false; var slow = 0.7; var slowspd = (speed / 2); var setspeed = speed; var scale = _xscale; var ex = 5; this.gotoAndStop(2); } onClipEvent (enterFrame) { grav++; _y = (_y + grav); if (Key.isDown(65)) { setspeed = wlk; } else { setspeed = run; } while (_root.ground.hitTest(_x, _y, true)) { djump = false; tjump = false; _y = (_y-1); grav = 0; } if (_root.water.hitTest(_x, _y, true)) { grav = grav * (slow * 1.25); speed = slowspd; } else { speed = setspeed; } if (Key.isDown(39)) { _x = (_x + speed); _xscale = scale; if (_root.ground.hitTest(_x, _y + 3, true)) { this.gotoAndStop(1); } else if (djump == false) { this.gotoAndStop(2); } else if (tjump == false) { this.gotoAndStop(4); } else { this.gotoAndStop(5); } } else if (Key.isDown(37)) { _x = (_x - speed); _xscale = (-scale); if (_root.ground.hitTest(_x, _y + 3, true)) { this.gotoAndStop(1); } else if (djump == false) { this.gotoAndStop(2); } else if (tjump == false) { this.gotoAndStop(4); } else { this.gotoAndStop(5); } } else if ((_root.ground.hitTest(_x, _y + 3, true) && (!Key.isDown(68))) && (!Key.isDown(83))) { this.gotoAndStop(3); } if (((((Key.isDown(68) && (!Key.isDown(38))) && (!Key.isDown(39))) && (!Key.isDown(37))) && (!Key.isDown(83))) && (_root.ground.hitTest(_x, _y + 3, true))) { this.gotoAndStop(8); } if ((((((Key.isDown(83) && (!Key.isDown(39))) && (!Key.isDown(37))) && (!Key.isDown(38))) && (!Key.isDown(68))) && (_root.ground.hitTest(_x, _y + 3, true))) && (_currentframe != 6)) { this.gotoAndStop(7); } else if (Key.isDown(83) && (grav > 1)) { this.gotoAndStop(6); } if ((_root.ground.hitTest((_x + (_width / 2)) + ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - _height, true))) { _x = (_x - speed); } if ((_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - _height, true))) { _x = (_x + speed); } if (_root.ground.hitTest(_x, (_y - _height) - 15, true)) { grav = 1; } }
Frame 319
stop();
Instance of Symbol 399 MovieClip in Frame 319
onClipEvent (enterFrame) { if (_level0.used27 == 3) { _level0.used27 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used27 = 3; } } if (_level0.used27 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used27 == 2) { _level0.ppfocus = 8; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 404 MovieClip in Frame 319
onClipEvent (enterFrame) { if (_level0.used24 == 3) { _level0.used24 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used24 = 3; } } if (_level0.used24 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used24 == 2) { _level0.ppfocus = 5; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 409 MovieClip in Frame 319
onClipEvent (enterFrame) { if (_level0.used25 == 3) { _level0.used25 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used25 = 3; } } if (_level0.used25 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used25 == 2) { _level0.ppfocus = 6; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 414 MovieClip in Frame 319
onClipEvent (enterFrame) { if (_level0.used28 == 3) { _level0.used28 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used28 = 3; } } if (_level0.used28 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used28 == 2) { _level0.ppfocus = 9; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 419 MovieClip in Frame 319
onClipEvent (enterFrame) { if (_level0.used26 == 3) { _level0.used26 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used26 = 3; } } if (_level0.used26 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used26 == 2) { _level0.ppfocus = 7; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 424 MovieClip in Frame 319
onClipEvent (enterFrame) { if (_level0.used29 == 3) { _level0.used29 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used29 = 3; } } if (_level0.used29 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used29 == 2) { _level0.ppfocus = 10; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 367 MovieClip in Frame 319
onClipEvent (enterFrame) { if (_level0.used30 == 1) { _level0.used30 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used30 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used30 == 2) { _level0.used30 = 1; if (_level0.ppfocus == 5) { if (_level0.used24 == 2) { _level0.used24 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 6) { if (_level0.used25 == 2) { _level0.used25 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 7) { if (_level0.used26 == 2) { _level0.used26 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 8) { if (_level0.used27 == 2) { _level0.used27 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 9) { if (_level0.used28 == 2) { _level0.used28 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 10) { if (_level0.used29 == 2) { _level0.used29 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } _root.rewinder.gotoAndPlay(2); } } }
Instance of Symbol 241 MovieClip in Frame 319
onClipEvent (enterFrame) { if (_level0.used31 == 1) { _level0.used31 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used31 = 1; } } if (_level0.used31 == 4) { _level0.used31 = 2; this.gotoAndPlay(53); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used31 = 4; } } if (this.hitTest(_root.player)) { if (_level0.used31 == 2) { _level0.used31 = 1; if (_level0.used31sub == 2) { _level0.used31 = 4; } if (_level0.ppfocus == 5) { if (_level0.used24 == 2) { _level0.used24 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 6) { if (_level0.used25 == 2) { _level0.used25 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 7) { if (_level0.used26 == 2) { _level0.used26 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 8) { if (_level0.used27 == 2) { _level0.used27 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 9) { if (_level0.used28 == 2) { _level0.used28 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 10) { if (_level0.used29 == 2) { _level0.used29 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.used31sub == 1) { _root.score = _root.score + 100; } _level0.used31 = 4; _root.gotoAndPlay("L4MF5"); } } }
Instance of Symbol 50 MovieClip "player" in Frame 319
onClipEvent (load) { var grav = 0; var run = 10; var wlk = 2.5; var speed = run; var jumpHeight = 10; var dbl = 0; var tri = 0; var djump = false; var tjump = false; var thro = false; var slow = 0.7; var slowspd = (speed / 2); var setspeed = speed; var scale = _xscale; var ex = 5; this.gotoAndStop(2); } onClipEvent (enterFrame) { grav++; _y = (_y + grav); if (Key.isDown(65)) { setspeed = wlk; } else { setspeed = run; } while (_root.ground.hitTest(_x, _y, true)) { djump = false; tjump = false; _y = (_y-1); grav = 0; } if (_root.water.hitTest(_x, _y, true)) { grav = grav * (slow * 1.25); speed = slowspd; } else { speed = setspeed; } if (Key.isDown(39)) { _x = (_x + speed); _xscale = scale; if (_root.ground.hitTest(_x, _y + 3, true)) { this.gotoAndStop(1); } else if (djump == false) { this.gotoAndStop(2); } else if (tjump == false) { this.gotoAndStop(4); } else { this.gotoAndStop(5); } } else if (Key.isDown(37)) { _x = (_x - speed); _xscale = (-scale); if (_root.ground.hitTest(_x, _y + 3, true)) { this.gotoAndStop(1); } else if (djump == false) { this.gotoAndStop(2); } else if (tjump == false) { this.gotoAndStop(4); } else { this.gotoAndStop(5); } } else if ((_root.ground.hitTest(_x, _y + 3, true) && (!Key.isDown(68))) && (!Key.isDown(83))) { this.gotoAndStop(3); } if (((((Key.isDown(68) && (!Key.isDown(38))) && (!Key.isDown(39))) && (!Key.isDown(37))) && (!Key.isDown(83))) && (_root.ground.hitTest(_x, _y + 3, true))) { this.gotoAndStop(8); } if ((((((Key.isDown(83) && (!Key.isDown(39))) && (!Key.isDown(37))) && (!Key.isDown(38))) && (!Key.isDown(68))) && (_root.ground.hitTest(_x, _y + 3, true))) && (_currentframe != 6)) { this.gotoAndStop(7); } else if (Key.isDown(83) && (grav > 1)) { this.gotoAndStop(6); } if ((_root.ground.hitTest((_x + (_width / 2)) + ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - _height, true))) { _x = (_x - speed); } if ((_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - _height, true))) { _x = (_x + speed); } if (_root.ground.hitTest(_x, (_y - _height) - 15, true)) { grav = 1; } }
Frame 335
stop();
Instance of Symbol 399 MovieClip in Frame 335
onClipEvent (enterFrame) { if (_level0.used27 == 3) { _level0.used27 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used27 = 3; } } if (_level0.used27 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used27 == 2) { _level0.ppfocus = 8; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 404 MovieClip in Frame 335
onClipEvent (enterFrame) { if (_level0.used24 == 3) { _level0.used24 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used24 = 3; } } if (_level0.used24 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used24 == 2) { _level0.ppfocus = 5; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 409 MovieClip in Frame 335
onClipEvent (enterFrame) { if (_level0.used25 == 3) { _level0.used25 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used25 = 3; } } if (_level0.used25 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used25 == 2) { _level0.ppfocus = 6; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 414 MovieClip in Frame 335
onClipEvent (enterFrame) { if (_level0.used28 == 3) { _level0.used28 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used28 = 3; } } if (_level0.used28 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used28 == 2) { _level0.ppfocus = 9; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 419 MovieClip in Frame 335
onClipEvent (enterFrame) { if (_level0.used26 == 3) { _level0.used26 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used26 = 3; } } if (_level0.used26 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used26 == 2) { _level0.ppfocus = 7; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 424 MovieClip in Frame 335
onClipEvent (enterFrame) { if (_level0.used29 == 3) { _level0.used29 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used29 = 3; } } if (_level0.used29 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used29 == 2) { _level0.ppfocus = 10; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 367 MovieClip in Frame 335
onClipEvent (enterFrame) { if (_level0.used30 == 1) { _level0.used30 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used30 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used30 == 2) { _level0.used30 = 1; if (_level0.ppfocus == 5) { if (_level0.used24 == 2) { _level0.used24 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 6) { if (_level0.used25 == 2) { _level0.used25 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 7) { if (_level0.used26 == 2) { _level0.used26 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 8) { if (_level0.used27 == 2) { _level0.used27 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 9) { if (_level0.used28 == 2) { _level0.used28 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 10) { if (_level0.used29 == 2) { _level0.used29 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } _root.gotoAndPlay("L4MF4"); } } }
Instance of Symbol 241 MovieClip in Frame 335
onClipEvent (enterFrame) { if (_level0.used31 == 1) { _level0.used31 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used31 = 1; } } if (_level0.used31 == 4) { _level0.used31 = 2; this.gotoAndPlay(53); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used31 = 4; } } if (this.hitTest(_root.player)) { if (_level0.used31 == 2) { _level0.used31 = 1; if (_level0.used31sub == 2) { _level0.used31 = 4; } if (_level0.ppfocus == 5) { if (_level0.used24 == 2) { _level0.used24 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 6) { if (_level0.used25 == 2) { _level0.used25 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 7) { if (_level0.used26 == 2) { _level0.used26 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 8) { if (_level0.used27 == 2) { _level0.used27 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 9) { if (_level0.used28 == 2) { _level0.used28 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 10) { if (_level0.used29 == 2) { _level0.used29 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.used31sub == 1) { _root.score = _root.score + 100; } _root.gotoAndPlay("L4MF5"); } } }
Instance of Symbol 208 MovieClip in Frame 335
onClipEvent (enterFrame) { if (_level0.used32 == 1) { _level0.used32 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used32 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used32 == 2) { _level0.used32 = 1; if (_level0.ppfocus == 5) { if (_level0.used24 == 2) { _level0.used24 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 6) { if (_level0.used25 == 2) { _level0.used25 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 7) { if (_level0.used26 == 2) { _level0.used26 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 8) { if (_level0.used27 == 2) { _level0.used27 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 9) { if (_level0.used28 == 2) { _level0.used28 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 10) { if (_level0.used29 == 2) { _level0.used29 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } _root.gotoAndPlay("L4MF6"); } } }
Instance of Symbol 50 MovieClip "player" in Frame 335
onClipEvent (load) { var grav = 0; var run = 10; var wlk = 2.5; var speed = run; var jumpHeight = 10; var dbl = 0; var tri = 0; var djump = false; var tjump = false; var thro = false; var slow = 0.7; var slowspd = (speed / 2); var setspeed = speed; var scale = _xscale; var ex = 5; this.gotoAndStop(2); } onClipEvent (enterFrame) { grav++; _y = (_y + grav); if (Key.isDown(65)) { setspeed = wlk; } else { setspeed = run; } while (_root.ground.hitTest(_x, _y, true)) { djump = false; tjump = false; _y = (_y-1); grav = 0; } if (_root.water.hitTest(_x, _y, true)) { grav = grav * (slow * 1.25); speed = slowspd; } else { speed = setspeed; } if (Key.isDown(39)) { _x = (_x + speed); _xscale = scale; if (_root.ground.hitTest(_x, _y + 3, true)) { this.gotoAndStop(1); } else if (djump == false) { this.gotoAndStop(2); } else if (tjump == false) { this.gotoAndStop(4); } else { this.gotoAndStop(5); } } else if (Key.isDown(37)) { _x = (_x - speed); _xscale = (-scale); if (_root.ground.hitTest(_x, _y + 3, true)) { this.gotoAndStop(1); } else if (djump == false) { this.gotoAndStop(2); } else if (tjump == false) { this.gotoAndStop(4); } else { this.gotoAndStop(5); } } else if ((_root.ground.hitTest(_x, _y + 3, true) && (!Key.isDown(68))) && (!Key.isDown(83))) { this.gotoAndStop(3); } if (((((Key.isDown(68) && (!Key.isDown(38))) && (!Key.isDown(39))) && (!Key.isDown(37))) && (!Key.isDown(83))) && (_root.ground.hitTest(_x, _y + 3, true))) { this.gotoAndStop(8); } if ((((((Key.isDown(83) && (!Key.isDown(39))) && (!Key.isDown(37))) && (!Key.isDown(38))) && (!Key.isDown(68))) && (_root.ground.hitTest(_x, _y + 3, true))) && (_currentframe != 6)) { this.gotoAndStop(7); } else if (Key.isDown(83) && (grav > 1)) { this.gotoAndStop(6); } if ((_root.ground.hitTest((_x + (_width / 2)) + ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - _height, true))) { _x = (_x - speed); } if ((_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - _height, true))) { _x = (_x + speed); } if (_root.ground.hitTest(_x, (_y - _height) - 15, true)) { grav = 1; } }
Frame 351
stop();
Instance of Symbol 399 MovieClip in Frame 351
onClipEvent (enterFrame) { if (_level0.used27 == 3) { _level0.used27 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used27 = 3; } } if (_level0.used27 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used27 == 2) { _level0.ppfocus = 8; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 404 MovieClip in Frame 351
onClipEvent (enterFrame) { if (_level0.used24 == 3) { _level0.used24 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used24 = 3; } } if (_level0.used24 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used24 == 2) { _level0.ppfocus = 5; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 409 MovieClip in Frame 351
onClipEvent (enterFrame) { if (_level0.used25 == 3) { _level0.used25 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used25 = 3; } } if (_level0.used25 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used25 == 2) { _level0.ppfocus = 6; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 414 MovieClip in Frame 351
onClipEvent (enterFrame) { if (_level0.used28 == 3) { _level0.used28 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used28 = 3; } } if (_level0.used28 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used28 == 2) { _level0.ppfocus = 9; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 419 MovieClip in Frame 351
onClipEvent (enterFrame) { if (_level0.used26 == 3) { _level0.used26 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used26 = 3; } } if (_level0.used26 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used26 == 2) { _level0.ppfocus = 7; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 424 MovieClip in Frame 351
onClipEvent (enterFrame) { if (_level0.used29 == 3) { _level0.used29 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used29 = 3; } } if (_level0.used29 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used29 == 2) { _level0.ppfocus = 10; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 367 MovieClip in Frame 351
onClipEvent (enterFrame) { if (_level0.used30 == 1) { _level0.used30 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used30 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used30 == 2) { _level0.used30 = 1; if (_level0.ppfocus == 5) { if (_level0.used24 == 2) { _level0.used24 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 6) { if (_level0.used25 == 2) { _level0.used25 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 7) { if (_level0.used26 == 2) { _level0.used26 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 8) { if (_level0.used27 == 2) { _level0.used27 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 9) { if (_level0.used28 == 2) { _level0.used28 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 10) { if (_level0.used29 == 2) { _level0.used29 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } _root.gotoAndPlay("L4MF4"); } } }
Instance of Symbol 349 MovieClip in Frame 351
onClipEvent (enterFrame) { if (_level0.used33 == 1) { _level0.used33 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used33 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used33 == 2) { _level0.used33 = 1; if (_level0.ppfocus == 5) { if (_level0.used24 == 2) { _level0.used24 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 6) { if (_level0.used25 == 2) { _level0.used25 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 7) { if (_level0.used26 == 2) { _level0.used26 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 8) { if (_level0.used27 == 2) { _level0.used27 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 9) { if (_level0.used28 == 2) { _level0.used28 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 10) { if (_level0.used29 == 2) { _level0.used29 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } _root.ground.gotoAndStop(2); _root.gotoAndPlay("L4MF7"); } } }
Instance of Symbol 241 MovieClip in Frame 351
onClipEvent (enterFrame) { if (_level0.used31 == 1) { _level0.used31 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used31 = 1; } } if (_level0.used31 == 4) { _level0.used31 = 2; this.gotoAndPlay(53); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used31 = 4; } } if (this.hitTest(_root.player)) { if (_level0.used31 == 2) { _level0.used31 = 1; if (_level0.used31sub == 2) { _level0.used31 = 4; } if (_level0.ppfocus == 5) { if (_level0.used24 == 2) { _level0.used24 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 6) { if (_level0.used25 == 2) { _level0.used25 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 7) { if (_level0.used26 == 2) { _level0.used26 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 8) { if (_level0.used27 == 2) { _level0.used27 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 9) { if (_level0.used28 == 2) { _level0.used28 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 10) { if (_level0.used29 == 2) { _level0.used29 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.used31sub == 1) { _root.score = _root.score + 100; } _root.gotoAndPlay("L4MF5"); } } }
Instance of Symbol 208 MovieClip in Frame 351
onClipEvent (enterFrame) { if (_level0.used32 == 1) { _level0.used32 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used32 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used32 == 2) { _level0.used32 = 1; if (_level0.ppfocus == 5) { if (_level0.used24 == 2) { _level0.used24 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 6) { if (_level0.used25 == 2) { _level0.used25 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 7) { if (_level0.used26 == 2) { _level0.used26 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 8) { if (_level0.used27 == 2) { _level0.used27 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 9) { if (_level0.used28 == 2) { _level0.used28 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 10) { if (_level0.used29 == 2) { _level0.used29 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } _root.gotoAndPlay("L4MF6"); } } }
Instance of Symbol 50 MovieClip "player" in Frame 351
onClipEvent (load) { var grav = 0; var run = 10; var wlk = 2.5; var speed = run; var jumpHeight = 10; var dbl = 0; var tri = 0; var djump = false; var tjump = false; var thro = false; var slow = 0.7; var slowspd = (speed / 2); var setspeed = speed; var scale = _xscale; var ex = 5; this.gotoAndStop(2); } onClipEvent (enterFrame) { grav++; _y = (_y + grav); if (Key.isDown(65)) { setspeed = wlk; } else { setspeed = run; } while (_root.ground.hitTest(_x, _y, true)) { djump = false; tjump = false; _y = (_y-1); grav = 0; } if (_root.water.hitTest(_x, _y, true)) { grav = grav * (slow * 1.25); speed = slowspd; } else { speed = setspeed; } if (Key.isDown(39)) { _x = (_x + speed); _xscale = scale; if (_root.ground.hitTest(_x, _y + 3, true)) { this.gotoAndStop(1); } else if (djump == false) { this.gotoAndStop(2); } else if (tjump == false) { this.gotoAndStop(4); } else { this.gotoAndStop(5); } } else if (Key.isDown(37)) { _x = (_x - speed); _xscale = (-scale); if (_root.ground.hitTest(_x, _y + 3, true)) { this.gotoAndStop(1); } else if (djump == false) { this.gotoAndStop(2); } else if (tjump == false) { this.gotoAndStop(4); } else { this.gotoAndStop(5); } } else if ((_root.ground.hitTest(_x, _y + 3, true) && (!Key.isDown(68))) && (!Key.isDown(83))) { this.gotoAndStop(3); } if (((((Key.isDown(68) && (!Key.isDown(38))) && (!Key.isDown(39))) && (!Key.isDown(37))) && (!Key.isDown(83))) && (_root.ground.hitTest(_x, _y + 3, true))) { this.gotoAndStop(8); } if ((((((Key.isDown(83) && (!Key.isDown(39))) && (!Key.isDown(37))) && (!Key.isDown(38))) && (!Key.isDown(68))) && (_root.ground.hitTest(_x, _y + 3, true))) && (_currentframe != 6)) { this.gotoAndStop(7); } else if (Key.isDown(83) && (grav > 1)) { this.gotoAndStop(6); } if ((_root.ground.hitTest((_x + (_width / 2)) + ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - _height, true))) { _x = (_x - speed); } if ((_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - _height, true))) { _x = (_x + speed); } if (_root.ground.hitTest(_x, (_y - _height) - 15, true)) { grav = 1; } }
Frame 366
stop();
Instance of Symbol 399 MovieClip in Frame 366
onClipEvent (enterFrame) { if (_level0.used27 == 3) { _level0.used27 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used27 = 3; } } if (_level0.used27 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used27 == 2) { _level0.ppfocus = 8; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 404 MovieClip in Frame 366
onClipEvent (enterFrame) { if (_level0.used24 == 3) { _level0.used24 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used24 = 3; } } if (_level0.used24 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used24 == 2) { _level0.ppfocus = 5; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 409 MovieClip in Frame 366
onClipEvent (enterFrame) { if (_level0.used25 == 3) { _level0.used25 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used25 = 3; } } if (_level0.used25 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used25 == 2) { _level0.ppfocus = 6; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 414 MovieClip in Frame 366
onClipEvent (enterFrame) { if (_level0.used28 == 3) { _level0.used28 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used28 = 3; } } if (_level0.used28 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used28 == 2) { _level0.ppfocus = 9; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 419 MovieClip in Frame 366
onClipEvent (enterFrame) { if (_level0.used26 == 3) { _level0.used26 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used26 = 3; } } if (_level0.used26 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used26 == 2) { _level0.ppfocus = 7; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 424 MovieClip in Frame 366
onClipEvent (enterFrame) { if (_level0.used29 == 3) { _level0.used29 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used29 = 3; } } if (_level0.used29 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used29 == 2) { _level0.ppfocus = 10; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 367 MovieClip in Frame 366
onClipEvent (enterFrame) { if (_level0.used30 == 1) { _level0.used30 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used30 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used30 == 2) { _level0.used30 = 1; if (_level0.ppfocus == 5) { if (_level0.used24 == 2) { _level0.used24 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 6) { if (_level0.used25 == 2) { _level0.used25 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 7) { if (_level0.used26 == 2) { _level0.used26 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 8) { if (_level0.used27 == 2) { _level0.used27 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 9) { if (_level0.used28 == 2) { _level0.used28 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 10) { if (_level0.used29 == 2) { _level0.used29 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } _root.gotoAndPlay("L4MF4"); } } }
Instance of Symbol 349 MovieClip in Frame 366
onClipEvent (enterFrame) { if (_level0.used33 == 1) { _level0.used33 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used33 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used33 == 2) { _level0.used33 = 1; if (_level0.ppfocus == 5) { if (_level0.used24 == 2) { _level0.used24 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 6) { if (_level0.used25 == 2) { _level0.used25 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 7) { if (_level0.used26 == 2) { _level0.used26 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 8) { if (_level0.used27 == 2) { _level0.used27 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 9) { if (_level0.used28 == 2) { _level0.used28 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 10) { if (_level0.used29 == 2) { _level0.used29 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } _root.gotoAndPlay("L4MF7"); } } }
Instance of Symbol 241 MovieClip in Frame 366
onClipEvent (enterFrame) { if (_level0.used31 == 1) { _level0.used31 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used31 = 1; } } if (_level0.used31 == 4) { _level0.used31 = 2; this.gotoAndPlay(53); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used31 = 4; } } if (this.hitTest(_root.player)) { if (_level0.used31 == 2) { _level0.used31 = 1; if (_level0.used31sub == 2) { _level0.used31 = 4; } if (_level0.ppfocus == 5) { if (_level0.used24 == 2) { _level0.used24 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 6) { if (_level0.used25 == 2) { _level0.used25 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 7) { if (_level0.used26 == 2) { _level0.used26 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 8) { if (_level0.used27 == 2) { _level0.used27 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 9) { if (_level0.used28 == 2) { _level0.used28 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 10) { if (_level0.used29 == 2) { _level0.used29 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.used31sub == 1) { _root.score = _root.score + 100; } _root.gotoAndPlay("L4MF5"); } } }
Instance of Symbol 208 MovieClip in Frame 366
onClipEvent (enterFrame) { if (_level0.used32 == 1) { _level0.used32 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used32 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used32 == 2) { _level0.used32 = 1; if (_level0.ppfocus == 5) { if (_level0.used24 == 2) { _level0.used24 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 6) { if (_level0.used25 == 2) { _level0.used25 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 7) { if (_level0.used26 == 2) { _level0.used26 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 8) { if (_level0.used27 == 2) { _level0.used27 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 9) { if (_level0.used28 == 2) { _level0.used28 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 10) { if (_level0.used29 == 2) { _level0.used29 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } _root.gotoAndPlay("L4MF6"); } } }
Instance of Symbol 426 MovieClip in Frame 366
onClipEvent (enterFrame) { if (_level0.used34 == 1) { _level0.used34 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used34 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used34 == 2) { _level0.used34 = 1; if (_level0.ppfocus == 5) { if (_level0.used24 == 2) { _level0.used24 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 6) { if (_level0.used25 == 2) { _level0.used25 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 7) { if (_level0.used26 == 2) { _level0.used26 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 8) { if (_level0.used27 == 2) { _level0.used27 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 9) { if (_level0.used28 == 2) { _level0.used28 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 10) { if (_level0.used29 == 2) { _level0.used29 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } _root.gotoAndPlay("L4MF8"); } } }
Instance of Symbol 50 MovieClip "player" in Frame 366
onClipEvent (load) { var grav = 0; var run = 10; var wlk = 2.5; var speed = run; var jumpHeight = 10; var dbl = 0; var tri = 0; var djump = false; var tjump = false; var thro = false; var slow = 0.7; var slowspd = (speed / 2); var setspeed = speed; var scale = _xscale; var ex = 5; this.gotoAndStop(2); } onClipEvent (enterFrame) { grav++; _y = (_y + grav); if (Key.isDown(65)) { setspeed = wlk; } else { setspeed = run; } while (_root.ground.hitTest(_x, _y, true)) { djump = false; tjump = false; _y = (_y-1); grav = 0; } if (_root.water.hitTest(_x, _y, true)) { grav = grav * (slow * 1.25); speed = slowspd; } else { speed = setspeed; } if (Key.isDown(39)) { _x = (_x + speed); _xscale = scale; if (_root.ground.hitTest(_x, _y + 3, true)) { this.gotoAndStop(1); } else if (djump == false) { this.gotoAndStop(2); } else if (tjump == false) { this.gotoAndStop(4); } else { this.gotoAndStop(5); } } else if (Key.isDown(37)) { _x = (_x - speed); _xscale = (-scale); if (_root.ground.hitTest(_x, _y + 3, true)) { this.gotoAndStop(1); } else if (djump == false) { this.gotoAndStop(2); } else if (tjump == false) { this.gotoAndStop(4); } else { this.gotoAndStop(5); } } else if ((_root.ground.hitTest(_x, _y + 3, true) && (!Key.isDown(68))) && (!Key.isDown(83))) { this.gotoAndStop(3); } if (((((Key.isDown(68) && (!Key.isDown(38))) && (!Key.isDown(39))) && (!Key.isDown(37))) && (!Key.isDown(83))) && (_root.ground.hitTest(_x, _y + 3, true))) { this.gotoAndStop(8); } if ((((((Key.isDown(83) && (!Key.isDown(39))) && (!Key.isDown(37))) && (!Key.isDown(38))) && (!Key.isDown(68))) && (_root.ground.hitTest(_x, _y + 3, true))) && (_currentframe != 6)) { this.gotoAndStop(7); } else if (Key.isDown(83) && (grav > 1)) { this.gotoAndStop(6); } if ((_root.ground.hitTest((_x + (_width / 2)) + ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - _height, true))) { _x = (_x - speed); } if ((_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - _height, true))) { _x = (_x + speed); } if (_root.ground.hitTest(_x, (_y - _height) - 15, true)) { grav = 1; } }
Frame 381
stop();
Instance of Symbol 399 MovieClip in Frame 381
onClipEvent (enterFrame) { if (_level0.used27 == 3) { _level0.used27 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used27 = 3; } } if (_level0.used27 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used27 == 2) { _level0.ppfocus = 8; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 404 MovieClip in Frame 381
onClipEvent (enterFrame) { if (_level0.used24 == 3) { _level0.used24 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used24 = 3; } } if (_level0.used24 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used24 == 2) { _level0.ppfocus = 5; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 409 MovieClip in Frame 381
onClipEvent (enterFrame) { if (_level0.used25 == 3) { _level0.used25 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used25 = 3; } } if (_level0.used25 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used25 == 2) { _level0.ppfocus = 6; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 414 MovieClip in Frame 381
onClipEvent (enterFrame) { if (_level0.used28 == 3) { _level0.used28 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used28 = 3; } } if (_level0.used28 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used28 == 2) { _level0.ppfocus = 9; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 419 MovieClip in Frame 381
onClipEvent (enterFrame) { if (_level0.used26 == 3) { _level0.used26 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used26 = 3; } } if (_level0.used26 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used26 == 2) { _level0.ppfocus = 7; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 424 MovieClip in Frame 381
onClipEvent (enterFrame) { if (_level0.used29 == 3) { _level0.used29 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used29 = 3; } } if (_level0.used29 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used29 == 2) { _level0.ppfocus = 10; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 367 MovieClip in Frame 381
onClipEvent (enterFrame) { if (_level0.used30 == 1) { _level0.used30 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used30 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used30 == 2) { _level0.used30 = 1; if (_level0.ppfocus == 5) { if (_level0.used24 == 2) { _level0.used24 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 6) { if (_level0.used25 == 2) { _level0.used25 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 7) { if (_level0.used26 == 2) { _level0.used26 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 8) { if (_level0.used27 == 2) { _level0.used27 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 9) { if (_level0.used28 == 2) { _level0.used28 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 10) { if (_level0.used29 == 2) { _level0.used29 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } _root.gotoAndPlay("L4MF4"); } } }
Instance of Symbol 349 MovieClip in Frame 381
onClipEvent (enterFrame) { if (_level0.used33 == 1) { _level0.used33 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used33 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used33 == 2) { _level0.used33 = 1; if (_level0.ppfocus == 5) { if (_level0.used24 == 2) { _level0.used24 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 6) { if (_level0.used25 == 2) { _level0.used25 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 7) { if (_level0.used26 == 2) { _level0.used26 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 8) { if (_level0.used27 == 2) { _level0.used27 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 9) { if (_level0.used28 == 2) { _level0.used28 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 10) { if (_level0.used29 == 2) { _level0.used29 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } _root.gotoAndPlay("L4MF7"); } } }
Instance of Symbol 241 MovieClip in Frame 381
onClipEvent (enterFrame) { if (_level0.used31 == 1) { _level0.used31 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used31 = 1; } } if (_level0.used31 == 4) { _level0.used31 = 2; this.gotoAndPlay(53); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used31 = 4; } } if (this.hitTest(_root.player)) { if (_level0.used31 == 2) { _level0.used31 = 1; if (_level0.used31sub == 2) { _level0.used31 = 4; } if (_level0.ppfocus == 5) { if (_level0.used24 == 2) { _level0.used24 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 6) { if (_level0.used25 == 2) { _level0.used25 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 7) { if (_level0.used26 == 2) { _level0.used26 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 8) { if (_level0.used27 == 2) { _level0.used27 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 9) { if (_level0.used28 == 2) { _level0.used28 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 10) { if (_level0.used29 == 2) { _level0.used29 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.used31sub == 1) { _root.score = _root.score + 100; } _root.gotoAndPlay("L4MF5"); } } }
Instance of Symbol 208 MovieClip in Frame 381
onClipEvent (enterFrame) { if (_level0.used32 == 1) { _level0.used32 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used32 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used32 == 2) { _level0.used32 = 1; if (_level0.ppfocus == 5) { if (_level0.used24 == 2) { _level0.used24 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 6) { if (_level0.used25 == 2) { _level0.used25 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 7) { if (_level0.used26 == 2) { _level0.used26 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 8) { if (_level0.used27 == 2) { _level0.used27 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 9) { if (_level0.used28 == 2) { _level0.used28 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 10) { if (_level0.used29 == 2) { _level0.used29 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } _root.gotoAndPlay("L4MF6"); } } }
Instance of Symbol 426 MovieClip in Frame 381
onClipEvent (enterFrame) { if (_level0.used34 == 1) { _level0.used34 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used34 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used34 == 2) { _level0.used34 = 1; if (_level0.ppfocus == 5) { if (_level0.used24 == 2) { _level0.used24 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 6) { if (_level0.used25 == 2) { _level0.used25 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 7) { if (_level0.used26 == 2) { _level0.used26 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 8) { if (_level0.used27 == 2) { _level0.used27 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 9) { if (_level0.used28 == 2) { _level0.used28 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 10) { if (_level0.used29 == 2) { _level0.used29 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } _root.rewinder2.gotoAndPlay(17); } } }
Instance of Symbol 367 MovieClip in Frame 381
onClipEvent (enterFrame) { if (_level0.used35 == 1) { _level0.used35 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used35 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used35 == 2) { _level0.used35 = 1; if (_level0.ppfocus == 5) { if (_level0.used24 == 2) { _level0.used24 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 6) { if (_level0.used25 == 2) { _level0.used25 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 7) { if (_level0.used26 == 2) { _level0.used26 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 8) { if (_level0.used27 == 2) { _level0.used27 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 9) { if (_level0.used28 == 2) { _level0.used28 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 10) { if (_level0.used29 == 2) { _level0.used29 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } _level0.ynvar = 2; _root.gotoAndPlay("L4MF9"); } } }
Instance of Symbol 50 MovieClip "player" in Frame 381
onClipEvent (load) { var grav = 0; var run = 10; var wlk = 2.5; var speed = run; var jumpHeight = 10; var dbl = 0; var tri = 0; var djump = false; var tjump = false; var thro = false; var slow = 0.7; var slowspd = (speed / 2); var setspeed = speed; var scale = _xscale; var ex = 5; this.gotoAndStop(2); } onClipEvent (enterFrame) { grav++; _y = (_y + grav); if (Key.isDown(65)) { setspeed = wlk; } else { setspeed = run; } while (_root.ground.hitTest(_x, _y, true)) { djump = false; tjump = false; _y = (_y-1); grav = 0; } if (_root.water.hitTest(_x, _y, true)) { grav = grav * (slow * 1.25); speed = slowspd; } else { speed = setspeed; } if (Key.isDown(39)) { _x = (_x + speed); _xscale = scale; if (_root.ground.hitTest(_x, _y + 3, true)) { this.gotoAndStop(1); } else if (djump == false) { this.gotoAndStop(2); } else if (tjump == false) { this.gotoAndStop(4); } else { this.gotoAndStop(5); } } else if (Key.isDown(37)) { _x = (_x - speed); _xscale = (-scale); if (_root.ground.hitTest(_x, _y + 3, true)) { this.gotoAndStop(1); } else if (djump == false) { this.gotoAndStop(2); } else if (tjump == false) { this.gotoAndStop(4); } else { this.gotoAndStop(5); } } else if ((_root.ground.hitTest(_x, _y + 3, true) && (!Key.isDown(68))) && (!Key.isDown(83))) { this.gotoAndStop(3); } if (((((Key.isDown(68) && (!Key.isDown(38))) && (!Key.isDown(39))) && (!Key.isDown(37))) && (!Key.isDown(83))) && (_root.ground.hitTest(_x, _y + 3, true))) { this.gotoAndStop(8); } if ((((((Key.isDown(83) && (!Key.isDown(39))) && (!Key.isDown(37))) && (!Key.isDown(38))) && (!Key.isDown(68))) && (_root.ground.hitTest(_x, _y + 3, true))) && (_currentframe != 6)) { this.gotoAndStop(7); } else if (Key.isDown(83) && (grav > 1)) { this.gotoAndStop(6); } if ((_root.ground.hitTest((_x + (_width / 2)) + ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - _height, true))) { _x = (_x - speed); } if ((_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - _height, true))) { _x = (_x + speed); } if (_root.ground.hitTest(_x, (_y - _height) - 15, true)) { grav = 1; } }
Frame 396
stop();
Instance of Symbol 399 MovieClip in Frame 396
onClipEvent (enterFrame) { if (_level0.used27 == 3) { _level0.used27 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used27 = 3; } } if (_level0.used27 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used27 == 2) { _level0.ppfocus = 8; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 404 MovieClip in Frame 396
onClipEvent (enterFrame) { if (_level0.used24 == 3) { _level0.used24 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used24 = 3; } } if (_level0.used24 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used24 == 2) { _level0.ppfocus = 5; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 409 MovieClip in Frame 396
onClipEvent (enterFrame) { if (_level0.used25 == 3) { _level0.used25 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used25 = 3; } } if (_level0.used25 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used25 == 2) { _level0.ppfocus = 6; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 414 MovieClip in Frame 396
onClipEvent (enterFrame) { if (_level0.used28 == 3) { _level0.used28 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used28 = 3; } } if (_level0.used28 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used28 == 2) { _level0.ppfocus = 9; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 419 MovieClip in Frame 396
onClipEvent (enterFrame) { if (_level0.used26 == 3) { _level0.used26 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used26 = 3; } } if (_level0.used26 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used26 == 2) { _level0.ppfocus = 7; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 424 MovieClip in Frame 396
onClipEvent (enterFrame) { if (_level0.used29 == 3) { _level0.used29 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used29 = 3; } } if (_level0.used29 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used29 == 2) { _level0.ppfocus = 10; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 367 MovieClip in Frame 396
onClipEvent (enterFrame) { if (_level0.used30 == 1) { _level0.used30 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used30 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used30 == 2) { _level0.used30 = 1; if (_level0.ppfocus == 5) { if (_level0.used24 == 2) { _level0.used24 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 6) { if (_level0.used25 == 2) { _level0.used25 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 7) { if (_level0.used26 == 2) { _level0.used26 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 8) { if (_level0.used27 == 2) { _level0.used27 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 9) { if (_level0.used28 == 2) { _level0.used28 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 10) { if (_level0.used29 == 2) { _level0.used29 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } _root.gotoAndPlay("L4MF4"); } } }
Instance of Symbol 349 MovieClip in Frame 396
onClipEvent (enterFrame) { if (_level0.used33 == 1) { _level0.used33 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used33 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used33 == 2) { _level0.used33 = 1; if (_level0.ppfocus == 5) { if (_level0.used24 == 2) { _level0.used24 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 6) { if (_level0.used25 == 2) { _level0.used25 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 7) { if (_level0.used26 == 2) { _level0.used26 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 8) { if (_level0.used27 == 2) { _level0.used27 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 9) { if (_level0.used28 == 2) { _level0.used28 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 10) { if (_level0.used29 == 2) { _level0.used29 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } _root.gotoAndPlay("L4MF7"); } } }
Instance of Symbol 241 MovieClip in Frame 396
onClipEvent (enterFrame) { if (_level0.used31 == 1) { _level0.used31 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used31 = 1; } } if (_level0.used31 == 4) { _level0.used31 = 2; this.gotoAndPlay(53); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used31 = 4; } } if (this.hitTest(_root.player)) { if (_level0.used31 == 2) { _level0.used31 = 1; if (_level0.used31sub == 2) { _level0.used31 = 4; } if (_level0.ppfocus == 5) { if (_level0.used24 == 2) { _level0.used24 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 6) { if (_level0.used25 == 2) { _level0.used25 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 7) { if (_level0.used26 == 2) { _level0.used26 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 8) { if (_level0.used27 == 2) { _level0.used27 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 9) { if (_level0.used28 == 2) { _level0.used28 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 10) { if (_level0.used29 == 2) { _level0.used29 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.used31sub == 1) { _root.score = _root.score + 100; } _root.gotoAndPlay("L4MF5"); } } }
Instance of Symbol 208 MovieClip in Frame 396
onClipEvent (enterFrame) { if (_level0.used32 == 1) { _level0.used32 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used32 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used32 == 2) { _level0.used32 = 1; if (_level0.ppfocus == 5) { if (_level0.used24 == 2) { _level0.used24 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 6) { if (_level0.used25 == 2) { _level0.used25 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 7) { if (_level0.used26 == 2) { _level0.used26 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 8) { if (_level0.used27 == 2) { _level0.used27 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 9) { if (_level0.used28 == 2) { _level0.used28 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 10) { if (_level0.used29 == 2) { _level0.used29 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } _root.gotoAndPlay("L4MF6"); } } }
Instance of Symbol 426 MovieClip in Frame 396
onClipEvent (enterFrame) { if (_level0.used34 == 1) { _level0.used34 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used34 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used34 == 2) { _level0.used34 = 1; if (_level0.ppfocus == 5) { if (_level0.used24 == 2) { _level0.used24 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 6) { if (_level0.used25 == 2) { _level0.used25 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 7) { if (_level0.used26 == 2) { _level0.used26 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 8) { if (_level0.used27 == 2) { _level0.used27 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 9) { if (_level0.used28 == 2) { _level0.used28 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 10) { if (_level0.used29 == 2) { _level0.used29 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } _root.gotoAndPlay("L4MF8"); } } }
Instance of Symbol 367 MovieClip in Frame 396
onClipEvent (enterFrame) { if (_level0.used35 == 1) { _level0.used35 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used35 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used35 == 2) { _level0.used35 = 1; if (_level0.ppfocus == 5) { if (_level0.used24 == 2) { _level0.used24 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 6) { if (_level0.used25 == 2) { _level0.used25 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 7) { if (_level0.used26 == 2) { _level0.used26 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 8) { if (_level0.used27 == 2) { _level0.used27 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 9) { if (_level0.used28 == 2) { _level0.used28 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 10) { if (_level0.used29 == 2) { _level0.used29 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } _root.rewinder2.gotoAndPlay(2); } } }
Instance of Symbol 200 MovieClip in Frame 396
onClipEvent (enterFrame) { if (_level0.used36 == 1) { _level0.used36 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used36 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used36 == 2) { _level0.used36 = 1; if (_level0.ppfocus == 5) { if (_level0.used24 == 2) { _level0.used24 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 6) { if (_level0.used25 == 2) { _level0.used25 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 7) { if (_level0.used26 == 2) { _level0.used26 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 8) { if (_level0.used27 == 2) { _level0.used27 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 9) { if (_level0.used28 == 2) { _level0.used28 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 10) { if (_level0.used29 == 2) { _level0.used29 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } _root.gotoAndPlay("L5T"); } } }
Instance of Symbol 50 MovieClip "player" in Frame 396
onClipEvent (load) { var grav = 0; var run = 10; var wlk = 2.5; var speed = run; var jumpHeight = 10; var dbl = 0; var tri = 0; var djump = false; var tjump = false; var thro = false; var slow = 0.7; var slowspd = (speed / 2); var setspeed = speed; var scale = _xscale; var ex = 5; this.gotoAndStop(2); } onClipEvent (enterFrame) { grav++; _y = (_y + grav); if (Key.isDown(65)) { setspeed = wlk; } else { setspeed = run; } while (_root.ground.hitTest(_x, _y, true)) { djump = false; tjump = false; _y = (_y-1); grav = 0; } if (_root.water.hitTest(_x, _y, true)) { grav = grav * (slow * 1.25); speed = slowspd; } else { speed = setspeed; } if (Key.isDown(39)) { _x = (_x + speed); _xscale = scale; if (_root.ground.hitTest(_x, _y + 3, true)) { this.gotoAndStop(1); } else if (djump == false) { this.gotoAndStop(2); } else if (tjump == false) { this.gotoAndStop(4); } else { this.gotoAndStop(5); } } else if (Key.isDown(37)) { _x = (_x - speed); _xscale = (-scale); if (_root.ground.hitTest(_x, _y + 3, true)) { this.gotoAndStop(1); } else if (djump == false) { this.gotoAndStop(2); } else if (tjump == false) { this.gotoAndStop(4); } else { this.gotoAndStop(5); } } else if ((_root.ground.hitTest(_x, _y + 3, true) && (!Key.isDown(68))) && (!Key.isDown(83))) { this.gotoAndStop(3); } if (((((Key.isDown(68) && (!Key.isDown(38))) && (!Key.isDown(39))) && (!Key.isDown(37))) && (!Key.isDown(83))) && (_root.ground.hitTest(_x, _y + 3, true))) { this.gotoAndStop(8); } if ((((((Key.isDown(83) && (!Key.isDown(39))) && (!Key.isDown(37))) && (!Key.isDown(38))) && (!Key.isDown(68))) && (_root.ground.hitTest(_x, _y + 3, true))) && (_currentframe != 6)) { this.gotoAndStop(7); } else if (Key.isDown(83) && (grav > 1)) { this.gotoAndStop(6); } if ((_root.ground.hitTest((_x + (_width / 2)) + ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - _height, true))) { _x = (_x - speed); } if ((_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - _height, true))) { _x = (_x + speed); } if (_root.ground.hitTest(_x, (_y - _height) - 15, true)) { grav = 1; } }
Frame 397
stop();
Instance of Symbol 438 MovieClip in Frame 397
onClipEvent (enterFrame) { if (_level0.used34 == 1) { _level0.used34 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used34 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used34 == 2) { _level0.used34 = 1; if (_level0.ppfocus == 5) { if (_level0.used24 == 2) { _level0.used24 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 6) { if (_level0.used25 == 2) { _level0.used25 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 7) { if (_level0.used26 == 2) { _level0.used26 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 8) { if (_level0.used27 == 2) { _level0.used27 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 9) { if (_level0.used28 == 2) { _level0.used28 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 10) { if (_level0.used29 == 2) { _level0.used29 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } _root.rewinder2.gotoAndPlay(17); } } }
Instance of Symbol 439 MovieClip in Frame 397
onClipEvent (enterFrame) { if (_level0.used35 == 1) { _level0.used35 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used35 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used35 == 2) { _level0.used35 = 1; if (_level0.ppfocus == 5) { if (_level0.used24 == 2) { _level0.used24 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 6) { if (_level0.used25 == 2) { _level0.used25 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 7) { if (_level0.used26 == 2) { _level0.used26 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 8) { if (_level0.used27 == 2) { _level0.used27 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 9) { if (_level0.used28 == 2) { _level0.used28 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 10) { if (_level0.used29 == 2) { _level0.used29 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } _root.gotoAndPlay("L4MF9"); } } }
Frame 398
stop();
Instance of Symbol 426 MovieClip in Frame 398
onClipEvent (enterFrame) { if (_level0.used34 == 1) { _level0.used34 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used34 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used34 == 2) { _level0.used34 = 1; if (_level0.ppfocus == 5) { if (_level0.used24 == 2) { _level0.used24 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 6) { if (_level0.used25 == 2) { _level0.used25 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 7) { if (_level0.used26 == 2) { _level0.used26 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 8) { if (_level0.used27 == 2) { _level0.used27 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 9) { if (_level0.used28 == 2) { _level0.used28 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 10) { if (_level0.used29 == 2) { _level0.used29 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } _root.gotoAndPlay("L4MF8"); } } }
Frame 399
stop();
Instance of Symbol 441 MovieClip in Frame 399
onClipEvent (enterFrame) { if (_level0.used37 == 1) { _level0.used37 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used37 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used37 == 2) { _level0.used37 = 1; if (_level0.ppfocus == 5) { if (_level0.used24 == 2) { _level0.used24 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 6) { if (_level0.used25 == 2) { _level0.used25 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 7) { if (_level0.used26 == 2) { _level0.used26 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 8) { if (_level0.used27 == 2) { _level0.used27 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 9) { if (_level0.used28 == 2) { _level0.used28 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 10) { if (_level0.used29 == 2) { _level0.used29 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } _root.gotoAndPlay("L4MF10"); } } }
Frame 428
stop(); ground.gotoAndStop(1);
Instance of Symbol 399 MovieClip in Frame 428
onClipEvent (enterFrame) { if (_level0.used27 == 3) { _level0.used27 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used27 = 3; } } if (_level0.used27 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used27 == 2) { _level0.ppfocus = 8; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 404 MovieClip in Frame 428
onClipEvent (enterFrame) { if (_level0.used24 == 3) { _level0.used24 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used24 = 3; } } if (_level0.used24 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used24 == 2) { _level0.ppfocus = 5; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 409 MovieClip in Frame 428
onClipEvent (enterFrame) { if (_level0.used25 == 3) { _level0.used25 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used25 = 3; } } if (_level0.used25 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used25 == 2) { _level0.ppfocus = 6; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 414 MovieClip in Frame 428
onClipEvent (enterFrame) { if (_level0.used28 == 3) { _level0.used28 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used28 = 3; } } if (_level0.used28 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used28 == 2) { _level0.ppfocus = 9; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 419 MovieClip in Frame 428
onClipEvent (enterFrame) { if (_level0.used26 == 3) { _level0.used26 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used26 = 3; } } if (_level0.used26 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used26 == 2) { _level0.ppfocus = 7; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 424 MovieClip in Frame 428
onClipEvent (enterFrame) { if (_level0.used29 == 3) { _level0.used29 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used29 = 3; } } if (_level0.used29 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used29 == 2) { _level0.ppfocus = 10; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 367 MovieClip in Frame 428
onClipEvent (enterFrame) { if (_level0.used30 == 1) { _level0.used30 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used30 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used30 == 2) { _level0.used30 = 1; if (_level0.ppfocus == 5) { if (_level0.used24 == 2) { _level0.used24 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 6) { if (_level0.used25 == 2) { _level0.used25 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 7) { if (_level0.used26 == 2) { _level0.used26 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 8) { if (_level0.used27 == 2) { _level0.used27 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 9) { if (_level0.used28 == 2) { _level0.used28 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 10) { if (_level0.used29 == 2) { _level0.used29 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } _root.gotoAndPlay("L4MF4"); } } }
Instance of Symbol 349 MovieClip in Frame 428
onClipEvent (enterFrame) { if (_level0.used33 == 1) { _level0.used33 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used33 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used33 == 2) { _level0.used33 = 1; if (_level0.ppfocus == 5) { if (_level0.used24 == 2) { _level0.used24 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 6) { if (_level0.used25 == 2) { _level0.used25 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 7) { if (_level0.used26 == 2) { _level0.used26 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 8) { if (_level0.used27 == 2) { _level0.used27 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 9) { if (_level0.used28 == 2) { _level0.used28 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 10) { if (_level0.used29 == 2) { _level0.used29 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } _root.ground.gotoAndStop(2); _root.gotoAndPlay("L4MF7"); } } }
Instance of Symbol 241 MovieClip in Frame 428
onClipEvent (enterFrame) { if (_level0.used31 == 1) { _level0.used31 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used31 = 1; } } if (_level0.used31 == 4) { _level0.used31 = 2; this.gotoAndPlay(53); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used31 = 4; } } if (this.hitTest(_root.player)) { if (_level0.used31 == 2) { _level0.used31 = 1; if (_level0.used31sub == 2) { _level0.used31 = 4; } if (_level0.ppfocus == 5) { if (_level0.used24 == 2) { _level0.used24 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 6) { if (_level0.used25 == 2) { _level0.used25 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 7) { if (_level0.used26 == 2) { _level0.used26 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 8) { if (_level0.used27 == 2) { _level0.used27 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 9) { if (_level0.used28 == 2) { _level0.used28 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 10) { if (_level0.used29 == 2) { _level0.used29 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.used31sub == 1) { _root.score = _root.score + 100; } _root.gotoAndPlay("L4MF5"); } } }
Instance of Symbol 208 MovieClip in Frame 428
onClipEvent (enterFrame) { if (_level0.used32 == 1) { _level0.used32 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used32 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used32 == 2) { _level0.used32 = 1; if (_level0.ppfocus == 5) { if (_level0.used24 == 2) { _level0.used24 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 6) { if (_level0.used25 == 2) { _level0.used25 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 7) { if (_level0.used26 == 2) { _level0.used26 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 8) { if (_level0.used27 == 2) { _level0.used27 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 9) { if (_level0.used28 == 2) { _level0.used28 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 10) { if (_level0.used29 == 2) { _level0.used29 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } _root.gotoAndPlay("L4MF6"); } } }
Instance of Symbol 426 MovieClip in Frame 428
onClipEvent (enterFrame) { if (_level0.used34 == 1) { _level0.used34 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used34 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used34 == 2) { _level0.used34 = 1; if (_level0.ppfocus == 5) { if (_level0.used24 == 2) { _level0.used24 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 6) { if (_level0.used25 == 2) { _level0.used25 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 7) { if (_level0.used26 == 2) { _level0.used26 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 8) { if (_level0.used27 == 2) { _level0.used27 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 9) { if (_level0.used28 == 2) { _level0.used28 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 10) { if (_level0.used29 == 2) { _level0.used29 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } _root.gotoAndPlay("L4MF8"); } } }
Instance of Symbol 50 MovieClip "player" in Frame 428
onClipEvent (load) { var grav = 0; var run = 10; var wlk = 2.5; var speed = run; var jumpHeight = 10; var dbl = 0; var tri = 0; var djump = false; var tjump = false; var thro = false; var slow = 0.7; var slowspd = (speed / 2); var setspeed = speed; var scale = _xscale; var ex = 5; this.gotoAndStop(2); } onClipEvent (enterFrame) { grav++; _y = (_y + grav); if (Key.isDown(65)) { setspeed = wlk; } else { setspeed = run; } while (_root.ground.hitTest(_x, _y, true)) { djump = false; tjump = false; _y = (_y-1); grav = 0; } if (_root.water.hitTest(_x, _y, true)) { grav = grav * (slow * 1.25); speed = slowspd; } else { speed = setspeed; } if (Key.isDown(39)) { _x = (_x + speed); _xscale = scale; if (_root.ground.hitTest(_x, _y + 3, true)) { this.gotoAndStop(1); } else if (djump == false) { this.gotoAndStop(2); } else if (tjump == false) { this.gotoAndStop(4); } else { this.gotoAndStop(5); } } else if (Key.isDown(37)) { _x = (_x - speed); _xscale = (-scale); if (_root.ground.hitTest(_x, _y + 3, true)) { this.gotoAndStop(1); } else if (djump == false) { this.gotoAndStop(2); } else if (tjump == false) { this.gotoAndStop(4); } else { this.gotoAndStop(5); } } else if ((_root.ground.hitTest(_x, _y + 3, true) && (!Key.isDown(68))) && (!Key.isDown(83))) { this.gotoAndStop(3); } if (((((Key.isDown(68) && (!Key.isDown(38))) && (!Key.isDown(39))) && (!Key.isDown(37))) && (!Key.isDown(83))) && (_root.ground.hitTest(_x, _y + 3, true))) { this.gotoAndStop(8); } if ((((((Key.isDown(83) && (!Key.isDown(39))) && (!Key.isDown(37))) && (!Key.isDown(38))) && (!Key.isDown(68))) && (_root.ground.hitTest(_x, _y + 3, true))) && (_currentframe != 6)) { this.gotoAndStop(7); } else if (Key.isDown(83) && (grav > 1)) { this.gotoAndStop(6); } if ((_root.ground.hitTest((_x + (_width / 2)) + ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - _height, true))) { _x = (_x - speed); } if ((_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - _height, true))) { _x = (_x + speed); } if (_root.ground.hitTest(_x, (_y - _height) - 15, true)) { grav = 1; } }
Frame 429
play(); lev2tscore = score + ntimer; lev2score = lev2tscore - lev1score; score = lev2tscore; tempscore = score;
Instance of Symbol 349 MovieClip in Frame 429
onClipEvent (enterFrame) { if (_level0.used33 == 1) { _level0.used33 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used33 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used33 == 2) { _level0.used33 = 1; if (_level0.ppfocus == 5) { if (_level0.used24 == 2) { _level0.used24 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 6) { if (_level0.used25 == 2) { _level0.used25 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 7) { if (_level0.used26 == 2) { _level0.used26 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 8) { if (_level0.used27 == 2) { _level0.used27 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 9) { if (_level0.used28 == 2) { _level0.used28 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 10) { if (_level0.used29 == 2) { _level0.used29 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } _root.gotoAndPlay("L4MF7"); } } }
Instance of Symbol 367 MovieClip in Frame 429
onClipEvent (enterFrame) { if (_level0.used35 == 1) { _level0.used35 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used35 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used35 == 2) { _level0.used35 = 1; if (_level0.ppfocus == 5) { if (_level0.used24 == 2) { _level0.used24 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 6) { if (_level0.used25 == 2) { _level0.used25 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 7) { if (_level0.used26 == 2) { _level0.used26 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 8) { if (_level0.used27 == 2) { _level0.used27 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 9) { if (_level0.used28 == 2) { _level0.used28 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 10) { if (_level0.used29 == 2) { _level0.used29 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } _root.rewinder2.gotoAndPlay(2); } } }
Frame 449
gotoAndPlay ("L5M");
Frame 455
used38 = 2; used39 = 2; used40 = 2; used41 = 2; used42 = 2; used43 = 2; used44 = 2; used45 = 2; used46 = 2; used47 = 2; used48 = 2; used49 = 2; used50 = 2; used51 = 2; quiz3ready = 1; ntimer = 350;
Frame 456
stop();
Instance of Symbol 442 MovieClip "rewinder3" in Frame 456
onClipEvent (enterFrame) { if (_root.ntimer < 1) { _root.ntimer = 0; } }
Instance of Symbol 60 MovieClip "background" in Frame 456
onClipEvent (enterFrame) { if (_level0.bkvar == 2) { this.gotoAndStop(1); } }
Instance of Symbol 472 MovieClip in Frame 456
onClipEvent (enterFrame) { if (_level0.used40 == 3) { _level0.used40 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used40 = 3; } } if (_level0.used40 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used40 == 2) { _level0.ppfocus = 13; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 477 MovieClip in Frame 456
onClipEvent (enterFrame) { if (_level0.used39 == 3) { _level0.used39 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used39 = 3; } } if (_level0.used39 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used39 == 2) { _level0.ppfocus = 12; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 482 MovieClip in Frame 456
onClipEvent (enterFrame) { if (_level0.used44 == 3) { _level0.used44 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used44 = 3; } } if (_level0.used44 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used44 == 2) { _level0.ppfocus = 17; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 487 MovieClip in Frame 456
onClipEvent (enterFrame) { if (_level0.used38 == 3) { _level0.used38 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used38 = 3; } } if (_level0.used38 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used38 == 2) { _level0.ppfocus = 11; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 492 MovieClip in Frame 456
onClipEvent (enterFrame) { if (_level0.used41 == 3) { _level0.used41 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used41 = 3; } } if (_level0.used41 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used41 == 2) { _level0.ppfocus = 14; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 497 MovieClip in Frame 456
onClipEvent (enterFrame) { if (_level0.used43 == 3) { _level0.used43 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used43 = 3; } } if (_level0.used43 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used43 == 2) { _level0.ppfocus = 16; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 237 MovieClip in Frame 456
onClipEvent (enterFrame) { if (_level0.used45 == 1) { this.gotoAndStop(51); } if (this.hitTest(_root.player)) { if (_level0.used45 == 2) { this.gotoAndStop(51); _root.gotoAndStop("L5MF2"); } } }
Instance of Symbol 502 MovieClip in Frame 456
onClipEvent (enterFrame) { if (_level0.used42 == 3) { _level0.used42 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used42 = 3; } } if (_level0.used42 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used42 == 2) { _level0.ppfocus = 15; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 367 MovieClip "usedfo1" in Frame 456
onClipEvent (enterFrame) { if (_level0.used48 == 1) { _level0.used48 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used48 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used48 == 2) { _level0.used48 = 1; if (_level0.ppfocus == 11) { if (_level0.used38 == 2) { _level0.ppfocus = 0; _level0.used38 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 12) { if (_level0.used39 == 2) { _level0.ppfocus = 0; _level0.used39 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 13) { if (_level0.used40 == 2) { _level0.ppfocus = 0; _level0.used40 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 14) { if (_level0.used41 == 2) { _level0.ppfocus = 0; _level0.used41 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 15) { if (_level0.used42 == 2) { _level0.ppfocus = 0; _level0.used42 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 16) { if (_level0.used43 == 2) { _level0.ppfocus = 0; _level0.used43 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 17) { if (_level0.used44 == 2) { _level0.ppfocus = 0; _level0.used44 = 3; _level0.popupp.gotoAndPlay(17); } } _root.gotoAndPlay("L5MF4"); } } }
Instance of Symbol 50 MovieClip "player" in Frame 456
onClipEvent (load) { var grav = 0; var run = 10; var wlk = 2.5; var speed = run; var jumpHeight = 10; var dbl = 0; var tri = 0; var djump = false; var tjump = false; var thro = false; var slow = 0.7; var slowspd = (speed / 2); var setspeed = speed; var scale = _xscale; var ex = 5; this.gotoAndStop(2); } onClipEvent (enterFrame) { grav++; _y = (_y + grav); if (Key.isDown(65)) { setspeed = wlk; } else { setspeed = run; } while (_root.ground.hitTest(_x, _y, true)) { djump = false; tjump = false; _y = (_y-1); grav = 0; } if (_root.water.hitTest(_x, _y, true)) { grav = grav * (slow * 1.25); speed = slowspd; } else { speed = setspeed; } if (Key.isDown(39)) { _x = (_x + speed); _xscale = scale; if (_root.ground.hitTest(_x, _y + 3, true)) { this.gotoAndStop(1); } else if (djump == false) { this.gotoAndStop(2); } else if (tjump == false) { this.gotoAndStop(4); } else { this.gotoAndStop(5); } } else if (Key.isDown(37)) { _x = (_x - speed); _xscale = (-scale); if (_root.ground.hitTest(_x, _y + 3, true)) { this.gotoAndStop(1); } else if (djump == false) { this.gotoAndStop(2); } else if (tjump == false) { this.gotoAndStop(4); } else { this.gotoAndStop(5); } } else if ((_root.ground.hitTest(_x, _y + 3, true) && (!Key.isDown(68))) && (!Key.isDown(83))) { this.gotoAndStop(3); } if (((((Key.isDown(68) && (!Key.isDown(38))) && (!Key.isDown(39))) && (!Key.isDown(37))) && (!Key.isDown(83))) && (_root.ground.hitTest(_x, _y + 3, true))) { this.gotoAndStop(8); } if ((((((Key.isDown(83) && (!Key.isDown(39))) && (!Key.isDown(37))) && (!Key.isDown(38))) && (!Key.isDown(68))) && (_root.ground.hitTest(_x, _y + 3, true))) && (_currentframe != 6)) { this.gotoAndStop(7); } else if (Key.isDown(83) && (grav > 1)) { this.gotoAndStop(6); } if ((_root.ground.hitTest((_x + (_width / 2)) + ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - _height, true))) { _x = (_x - speed); } if ((_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - _height, true))) { _x = (_x + speed); } if (_root.ground.hitTest(_x, (_y - _height) - 15, true)) { grav = 1; } }
Frame 457
if (_level0.ppfocus == 11) { if (_level0.used38 == 2) { _level0.ppfocus = 0; _level0.quiz3ready = 2; _level0.used38 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 12) { if (_level0.used39 == 2) { _level0.ppfocus = 0; _level0.quiz3ready = 2; _level0.used39 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 13) { if (_level0.used40 == 2) { _level0.ppfocus = 0; _level0.quiz3ready = 2; _level0.used40 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 14) { if (_level0.used41 == 2) { _level0.ppfocus = 0; _level0.quiz3ready = 2; _level0.used41 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 15) { if (_level0.used42 == 2) { _level0.ppfocus = 0; _level0.quiz3ready = 2; _level0.used42 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 16) { if (_level0.used43 == 2) { _level0.ppfocus = 0; _level0.quiz3ready = 2; _level0.used43 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 17) { if (_level0.used44 == 2) { _level0.ppfocus = 0; _level0.quiz3ready = 2; _level0.used44 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.quiz3ready == 1) { _level0.popupp.gotoAndPlay(31); }
Frame 472
stop();
Instance of Symbol 477 MovieClip in Frame 472
onClipEvent (enterFrame) { if (_level0.used39 == 3) { _level0.used39 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used39 = 3; } } if (_level0.used39 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used39 == 2) { _level0.ppfocus = 12; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 482 MovieClip in Frame 472
onClipEvent (enterFrame) { if (_level0.used44 == 3) { _level0.used44 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used44 = 3; } } if (_level0.used44 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used44 == 2) { _level0.ppfocus = 17; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 487 MovieClip in Frame 472
onClipEvent (enterFrame) { if (_level0.used38 == 3) { _level0.used38 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used38 = 3; } } if (_level0.used38 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used38 == 2) { _level0.ppfocus = 11; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 492 MovieClip in Frame 472
onClipEvent (enterFrame) { if (_level0.used41 == 3) { _level0.used41 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used41 = 3; } } if (_level0.used41 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used41 == 2) { _level0.ppfocus = 14; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 497 MovieClip in Frame 472
onClipEvent (enterFrame) { if (_level0.used43 == 3) { _level0.used43 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used43 = 3; } } if (_level0.used43 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used43 == 2) { _level0.ppfocus = 16; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 349 MovieClip in Frame 472
onClipEvent (enterFrame) { if (_level0.used46 == 1) { _level0.used46 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used46 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used46 == 2) { _level0.used46 = 1; if (_level0.ppfocus == 11) { if (_level0.used38 == 2) { _level0.ppfocus = 0; _level0.used38 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 12) { if (_level0.used39 == 2) { _level0.ppfocus = 0; _level0.used39 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 13) { if (_level0.used40 == 2) { _level0.ppfocus = 0; _level0.used40 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 14) { if (_level0.used41 == 2) { _level0.ppfocus = 0; _level0.used41 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 15) { if (_level0.used42 == 2) { _level0.ppfocus = 0; _level0.used42 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 16) { if (_level0.used43 == 2) { _level0.ppfocus = 0; _level0.used43 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 17) { if (_level0.used44 == 2) { _level0.ppfocus = 0; _level0.used44 = 3; _level0.popupp.gotoAndPlay(17); } } _root.gotoAndPlay("L5MF4"); } } }
Instance of Symbol 502 MovieClip in Frame 472
onClipEvent (enterFrame) { if (_level0.used42 == 3) { _level0.used42 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used42 = 3; } } if (_level0.used42 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used42 == 2) { _level0.ppfocus = 15; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 472 MovieClip in Frame 472
onClipEvent (enterFrame) { if (_level0.used40 == 3) { _level0.used40 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used40 = 3; } } if (_level0.used40 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used40 == 2) { _level0.ppfocus = 13; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 367 MovieClip "usedfo1" in Frame 472
onClipEvent (enterFrame) { if (_level0.used48 == 1) { _level0.used48 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used48 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used48 == 2) { _level0.used48 = 1; if (_level0.ppfocus == 11) { if (_level0.used38 == 2) { _level0.ppfocus = 0; _level0.used38 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 12) { if (_level0.used39 == 2) { _level0.ppfocus = 0; _level0.used39 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 13) { if (_level0.used40 == 2) { _level0.ppfocus = 0; _level0.used40 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 14) { if (_level0.used41 == 2) { _level0.ppfocus = 0; _level0.used41 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 15) { if (_level0.used42 == 2) { _level0.ppfocus = 0; _level0.used42 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 16) { if (_level0.used43 == 2) { _level0.ppfocus = 0; _level0.used43 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 17) { if (_level0.used44 == 2) { _level0.ppfocus = 0; _level0.used44 = 3; _level0.popupp.gotoAndPlay(17); } } _root.gotoAndPlay("L5MF4"); } } }
Instance of Symbol 50 MovieClip "player" in Frame 472
onClipEvent (load) { var grav = 0; var run = 10; var wlk = 2.5; var speed = run; var jumpHeight = 10; var dbl = 0; var tri = 0; var djump = false; var tjump = false; var thro = false; var slow = 0.7; var slowspd = (speed / 2); var setspeed = speed; var scale = _xscale; var ex = 5; this.gotoAndStop(2); } onClipEvent (enterFrame) { grav++; _y = (_y + grav); if (Key.isDown(65)) { setspeed = wlk; } else { setspeed = run; } while (_root.ground.hitTest(_x, _y, true)) { djump = false; tjump = false; _y = (_y-1); grav = 0; } if (_root.water.hitTest(_x, _y, true)) { grav = grav * (slow * 1.25); speed = slowspd; } else { speed = setspeed; } if (Key.isDown(39)) { _x = (_x + speed); _xscale = scale; if (_root.ground.hitTest(_x, _y + 3, true)) { this.gotoAndStop(1); } else if (djump == false) { this.gotoAndStop(2); } else if (tjump == false) { this.gotoAndStop(4); } else { this.gotoAndStop(5); } } else if (Key.isDown(37)) { _x = (_x - speed); _xscale = (-scale); if (_root.ground.hitTest(_x, _y + 3, true)) { this.gotoAndStop(1); } else if (djump == false) { this.gotoAndStop(2); } else if (tjump == false) { this.gotoAndStop(4); } else { this.gotoAndStop(5); } } else if ((_root.ground.hitTest(_x, _y + 3, true) && (!Key.isDown(68))) && (!Key.isDown(83))) { this.gotoAndStop(3); } if (((((Key.isDown(68) && (!Key.isDown(38))) && (!Key.isDown(39))) && (!Key.isDown(37))) && (!Key.isDown(83))) && (_root.ground.hitTest(_x, _y + 3, true))) { this.gotoAndStop(8); } if ((((((Key.isDown(83) && (!Key.isDown(39))) && (!Key.isDown(37))) && (!Key.isDown(38))) && (!Key.isDown(68))) && (_root.ground.hitTest(_x, _y + 3, true))) && (_currentframe != 6)) { this.gotoAndStop(7); } else if (Key.isDown(83) && (grav > 1)) { this.gotoAndStop(6); } if ((_root.ground.hitTest((_x + (_width / 2)) + ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - _height, true))) { _x = (_x - speed); } if ((_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - _height, true))) { _x = (_x + speed); } if (_root.ground.hitTest(_x, (_y - _height) - 15, true)) { grav = 1; } }
Frame 487
stop();
Instance of Symbol 472 MovieClip in Frame 487
onClipEvent (enterFrame) { if (_level0.used40 == 3) { _level0.used40 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used40 = 3; } } if (_level0.used40 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used40 == 2) { _level0.ppfocus = 13; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 477 MovieClip in Frame 487
onClipEvent (enterFrame) { if (_level0.used39 == 3) { _level0.used39 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used39 = 3; } } if (_level0.used39 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used39 == 2) { _level0.ppfocus = 12; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 482 MovieClip in Frame 487
onClipEvent (enterFrame) { if (_level0.used44 == 3) { _level0.used44 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used44 = 3; } } if (_level0.used44 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used44 == 2) { _level0.ppfocus = 17; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 487 MovieClip in Frame 487
onClipEvent (enterFrame) { if (_level0.used38 == 3) { _level0.used38 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used38 = 3; } } if (_level0.used38 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used38 == 2) { _level0.ppfocus = 11; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 492 MovieClip in Frame 487
onClipEvent (enterFrame) { if (_level0.used41 == 3) { _level0.used41 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used41 = 3; } } if (_level0.used41 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used41 == 2) { _level0.ppfocus = 14; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 497 MovieClip in Frame 487
onClipEvent (enterFrame) { if (_level0.used43 == 3) { _level0.used43 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used43 = 3; } } if (_level0.used43 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used43 == 2) { _level0.ppfocus = 16; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 237 MovieClip in Frame 487
onClipEvent (enterFrame) { if (_level0.used45 == 1) { this.gotoAndStop(51); } if (this.hitTest(_root.player)) { if (_level0.used45 == 2) { this.gotoAndStop(51); _root.gotoAndStop("L5MF2"); } } }
Instance of Symbol 349 MovieClip in Frame 487
onClipEvent (enterFrame) { if (_level0.used46 == 1) { _level0.used46 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used46 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used46 == 2) { _level0.used46 = 1; if (_level0.ppfocus == 11) { if (_level0.used38 == 2) { _level0.ppfocus = 0; _level0.used38 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 12) { if (_level0.used39 == 2) { _level0.ppfocus = 0; _level0.used39 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 13) { if (_level0.used40 == 2) { _level0.ppfocus = 0; _level0.used40 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 14) { if (_level0.used41 == 2) { _level0.ppfocus = 0; _level0.used41 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 15) { if (_level0.used42 == 2) { _level0.ppfocus = 0; _level0.used42 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 16) { if (_level0.used43 == 2) { _level0.ppfocus = 0; _level0.used43 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 17) { if (_level0.used44 == 2) { _level0.ppfocus = 0; _level0.used44 = 3; _level0.popupp.gotoAndPlay(17); } } _root.gotoAndPlay("L5MF4"); } } }
Instance of Symbol 425 MovieClip in Frame 487
onClipEvent (enterFrame) { if (_level0.used47 == 1) { _level0.used47 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used47 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used47 == 2) { _level0.used47 = 1; if (_level0.ppfocus == 11) { if (_level0.used38 == 2) { _level0.ppfocus = 0; _level0.used38 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 12) { if (_level0.used39 == 2) { _level0.ppfocus = 0; _level0.used39 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 13) { if (_level0.used40 == 2) { _level0.ppfocus = 0; _level0.used40 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 14) { if (_level0.used41 == 2) { _level0.ppfocus = 0; _level0.used41 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 15) { if (_level0.used42 == 2) { _level0.ppfocus = 0; _level0.used42 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 16) { if (_level0.used43 == 2) { _level0.ppfocus = 0; _level0.used43 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 17) { if (_level0.used44 == 2) { _level0.ppfocus = 0; _level0.used44 = 3; _level0.popupp.gotoAndPlay(17); } } _root.gotoAndPlay("L5MF5"); } } }
Instance of Symbol 502 MovieClip in Frame 487
onClipEvent (enterFrame) { if (_level0.used42 == 3) { _level0.used42 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used42 = 3; } } if (_level0.used42 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used42 == 2) { _level0.ppfocus = 15; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 367 MovieClip "usedfo1" in Frame 487
onClipEvent (enterFrame) { if (_level0.used48 == 1) { _level0.used48 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used48 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used48 == 2) { _level0.used48 = 1; if (_level0.ppfocus == 11) { if (_level0.used38 == 2) { _level0.ppfocus = 0; _level0.used38 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 12) { if (_level0.used39 == 2) { _level0.ppfocus = 0; _level0.used39 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 13) { if (_level0.used40 == 2) { _level0.ppfocus = 0; _level0.used40 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 14) { if (_level0.used41 == 2) { _level0.ppfocus = 0; _level0.used41 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 15) { if (_level0.used42 == 2) { _level0.ppfocus = 0; _level0.used42 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 16) { if (_level0.used43 == 2) { _level0.ppfocus = 0; _level0.used43 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 17) { if (_level0.used44 == 2) { _level0.ppfocus = 0; _level0.used44 = 3; _level0.popupp.gotoAndPlay(17); } } _root.gotoAndPlay("L5MF4"); } } }
Instance of Symbol 50 MovieClip "player" in Frame 487
onClipEvent (load) { var grav = 0; var run = 10; var wlk = 2.5; var speed = run; var jumpHeight = 10; var dbl = 0; var tri = 0; var djump = false; var tjump = false; var thro = false; var slow = 0.7; var slowspd = (speed / 2); var setspeed = speed; var scale = _xscale; var ex = 5; this.gotoAndStop(2); } onClipEvent (enterFrame) { grav++; _y = (_y + grav); if (Key.isDown(65)) { setspeed = wlk; } else { setspeed = run; } while (_root.ground.hitTest(_x, _y, true)) { djump = false; tjump = false; _y = (_y-1); grav = 0; } if (_root.water.hitTest(_x, _y, true)) { grav = grav * (slow * 1.25); speed = slowspd; } else { speed = setspeed; } if (Key.isDown(39)) { _x = (_x + speed); _xscale = scale; if (_root.ground.hitTest(_x, _y + 3, true)) { this.gotoAndStop(1); } else if (djump == false) { this.gotoAndStop(2); } else if (tjump == false) { this.gotoAndStop(4); } else { this.gotoAndStop(5); } } else if (Key.isDown(37)) { _x = (_x - speed); _xscale = (-scale); if (_root.ground.hitTest(_x, _y + 3, true)) { this.gotoAndStop(1); } else if (djump == false) { this.gotoAndStop(2); } else if (tjump == false) { this.gotoAndStop(4); } else { this.gotoAndStop(5); } } else if ((_root.ground.hitTest(_x, _y + 3, true) && (!Key.isDown(68))) && (!Key.isDown(83))) { this.gotoAndStop(3); } if (((((Key.isDown(68) && (!Key.isDown(38))) && (!Key.isDown(39))) && (!Key.isDown(37))) && (!Key.isDown(83))) && (_root.ground.hitTest(_x, _y + 3, true))) { this.gotoAndStop(8); } if ((((((Key.isDown(83) && (!Key.isDown(39))) && (!Key.isDown(37))) && (!Key.isDown(38))) && (!Key.isDown(68))) && (_root.ground.hitTest(_x, _y + 3, true))) && (_currentframe != 6)) { this.gotoAndStop(7); } else if (Key.isDown(83) && (grav > 1)) { this.gotoAndStop(6); } if ((_root.ground.hitTest((_x + (_width / 2)) + ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - _height, true))) { _x = (_x - speed); } if ((_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - _height, true))) { _x = (_x + speed); } if (_root.ground.hitTest(_x, (_y - _height) - 15, true)) { grav = 1; } }
Frame 502
stop();
Instance of Symbol 477 MovieClip in Frame 502
onClipEvent (enterFrame) { if (_level0.used39 == 3) { _level0.used39 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used39 = 3; } } if (_level0.used39 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used39 == 2) { _level0.ppfocus = 12; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 482 MovieClip in Frame 502
onClipEvent (enterFrame) { if (_level0.used44 == 3) { _level0.used44 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used44 = 3; } } if (_level0.used44 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used44 == 2) { _level0.ppfocus = 17; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 487 MovieClip in Frame 502
onClipEvent (enterFrame) { if (_level0.used38 == 3) { _level0.used38 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used38 = 3; } } if (_level0.used38 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used38 == 2) { _level0.ppfocus = 11; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 492 MovieClip in Frame 502
onClipEvent (enterFrame) { if (_level0.used41 == 3) { _level0.used41 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used41 = 3; } } if (_level0.used41 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used41 == 2) { _level0.ppfocus = 14; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 497 MovieClip in Frame 502
onClipEvent (enterFrame) { if (_level0.used43 == 3) { _level0.used43 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used43 = 3; } } if (_level0.used43 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used43 == 2) { _level0.ppfocus = 16; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 349 MovieClip in Frame 502
onClipEvent (enterFrame) { if (_level0.used46 == 1) { _level0.used46 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used46 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used46 == 2) { _level0.used46 = 1; if (_level0.ppfocus == 11) { if (_level0.used38 == 2) { _level0.ppfocus = 0; _level0.used38 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 12) { if (_level0.used39 == 2) { _level0.ppfocus = 0; _level0.used39 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 13) { if (_level0.used40 == 2) { _level0.ppfocus = 0; _level0.used40 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 14) { if (_level0.used41 == 2) { _level0.ppfocus = 0; _level0.used41 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 15) { if (_level0.used42 == 2) { _level0.ppfocus = 0; _level0.used42 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 16) { if (_level0.used43 == 2) { _level0.ppfocus = 0; _level0.used43 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 17) { if (_level0.used44 == 2) { _level0.ppfocus = 0; _level0.used44 = 3; _level0.popupp.gotoAndPlay(17); } } _root.gotoAndPlay("L5MF4"); } } }
Instance of Symbol 425 MovieClip in Frame 502
onClipEvent (enterFrame) { if (_level0.used47 == 1) { _level0.used47 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used47 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used47 == 2) { _level0.used47 = 1; if (_level0.ppfocus == 11) { if (_level0.used38 == 2) { _level0.ppfocus = 0; _level0.used38 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 12) { if (_level0.used39 == 2) { _level0.ppfocus = 0; _level0.used39 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 13) { if (_level0.used40 == 2) { _level0.ppfocus = 0; _level0.used40 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 14) { if (_level0.used41 == 2) { _level0.ppfocus = 0; _level0.used41 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 15) { if (_level0.used42 == 2) { _level0.ppfocus = 0; _level0.used42 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 16) { if (_level0.used43 == 2) { _level0.ppfocus = 0; _level0.used43 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 17) { if (_level0.used44 == 2) { _level0.ppfocus = 0; _level0.used44 = 3; _level0.popupp.gotoAndPlay(17); } } _root.ground.gotoAndStop(3); _root.gotoAndPlay("L5MF6"); } } }
Instance of Symbol 502 MovieClip in Frame 502
onClipEvent (enterFrame) { if (_level0.used42 == 3) { _level0.used42 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used42 = 3; } } if (_level0.used42 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used42 == 2) { _level0.ppfocus = 15; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 472 MovieClip in Frame 502
onClipEvent (enterFrame) { if (_level0.used40 == 3) { _level0.used40 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used40 = 3; } } if (_level0.used40 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used40 == 2) { _level0.ppfocus = 13; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 367 MovieClip "usedfo1" in Frame 502
onClipEvent (enterFrame) { if (_level0.used48 == 1) { _level0.used48 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used48 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used48 == 2) { _level0.used48 = 1; if (_level0.ppfocus == 11) { if (_level0.used38 == 2) { _level0.ppfocus = 0; _level0.used38 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 12) { if (_level0.used39 == 2) { _level0.ppfocus = 0; _level0.used39 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 13) { if (_level0.used40 == 2) { _level0.ppfocus = 0; _level0.used40 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 14) { if (_level0.used41 == 2) { _level0.ppfocus = 0; _level0.used41 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 15) { if (_level0.used42 == 2) { _level0.ppfocus = 0; _level0.used42 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 16) { if (_level0.used43 == 2) { _level0.ppfocus = 0; _level0.used43 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 17) { if (_level0.used44 == 2) { _level0.ppfocus = 0; _level0.used44 = 3; _level0.popupp.gotoAndPlay(17); } } _root.gotoAndPlay("L5MF4"); } } }
Instance of Symbol 50 MovieClip "player" in Frame 502
onClipEvent (load) { var grav = 0; var run = 10; var wlk = 2.5; var speed = run; var jumpHeight = 10; var dbl = 0; var tri = 0; var djump = false; var tjump = false; var thro = false; var slow = 0.7; var slowspd = (speed / 2); var setspeed = speed; var scale = _xscale; var ex = 5; this.gotoAndStop(2); } onClipEvent (enterFrame) { grav++; _y = (_y + grav); if (Key.isDown(65)) { setspeed = wlk; } else { setspeed = run; } while (_root.ground.hitTest(_x, _y, true)) { djump = false; tjump = false; _y = (_y-1); grav = 0; } if (_root.water.hitTest(_x, _y, true)) { grav = grav * (slow * 1.25); speed = slowspd; } else { speed = setspeed; } if (Key.isDown(39)) { _x = (_x + speed); _xscale = scale; if (_root.ground.hitTest(_x, _y + 3, true)) { this.gotoAndStop(1); } else if (djump == false) { this.gotoAndStop(2); } else if (tjump == false) { this.gotoAndStop(4); } else { this.gotoAndStop(5); } } else if (Key.isDown(37)) { _x = (_x - speed); _xscale = (-scale); if (_root.ground.hitTest(_x, _y + 3, true)) { this.gotoAndStop(1); } else if (djump == false) { this.gotoAndStop(2); } else if (tjump == false) { this.gotoAndStop(4); } else { this.gotoAndStop(5); } } else if ((_root.ground.hitTest(_x, _y + 3, true) && (!Key.isDown(68))) && (!Key.isDown(83))) { this.gotoAndStop(3); } if (((((Key.isDown(68) && (!Key.isDown(38))) && (!Key.isDown(39))) && (!Key.isDown(37))) && (!Key.isDown(83))) && (_root.ground.hitTest(_x, _y + 3, true))) { this.gotoAndStop(8); } if ((((((Key.isDown(83) && (!Key.isDown(39))) && (!Key.isDown(37))) && (!Key.isDown(38))) && (!Key.isDown(68))) && (_root.ground.hitTest(_x, _y + 3, true))) && (_currentframe != 6)) { this.gotoAndStop(7); } else if (Key.isDown(83) && (grav > 1)) { this.gotoAndStop(6); } if ((_root.ground.hitTest((_x + (_width / 2)) + ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - _height, true))) { _x = (_x - speed); } if ((_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - _height, true))) { _x = (_x + speed); } if (_root.ground.hitTest(_x, (_y - _height) - 15, true)) { grav = 1; } }
Frame 517
stop();
Instance of Symbol 477 MovieClip in Frame 517
onClipEvent (enterFrame) { if (_level0.used39 == 3) { _level0.used39 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used39 = 3; } } if (_level0.used39 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used39 == 2) { _level0.ppfocus = 12; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 482 MovieClip in Frame 517
onClipEvent (enterFrame) { if (_level0.used44 == 3) { _level0.used44 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used44 = 3; } } if (_level0.used44 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used44 == 2) { _level0.ppfocus = 17; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 487 MovieClip in Frame 517
onClipEvent (enterFrame) { if (_level0.used38 == 3) { _level0.used38 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used38 = 3; } } if (_level0.used38 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used38 == 2) { _level0.ppfocus = 11; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 492 MovieClip in Frame 517
onClipEvent (enterFrame) { if (_level0.used41 == 3) { _level0.used41 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used41 = 3; } } if (_level0.used41 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used41 == 2) { _level0.ppfocus = 14; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 497 MovieClip in Frame 517
onClipEvent (enterFrame) { if (_level0.used43 == 3) { _level0.used43 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used43 = 3; } } if (_level0.used43 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used43 == 2) { _level0.ppfocus = 16; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 237 MovieClip in Frame 517
onClipEvent (enterFrame) { if (_level0.used45 == 1) { this.gotoAndStop(51); } if (this.hitTest(_root.player)) { if (_level0.used45 == 2) { this.gotoAndStop(51); _root.gotoAndStop("L5MF2"); } } }
Instance of Symbol 349 MovieClip in Frame 517
onClipEvent (enterFrame) { if (_level0.used46 == 1) { _level0.used46 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used46 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used46 == 2) { _level0.used46 = 1; if (_level0.ppfocus == 11) { if (_level0.used38 == 2) { _level0.ppfocus = 0; _level0.used38 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 12) { if (_level0.used39 == 2) { _level0.ppfocus = 0; _level0.used39 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 13) { if (_level0.used40 == 2) { _level0.ppfocus = 0; _level0.used40 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 14) { if (_level0.used41 == 2) { _level0.ppfocus = 0; _level0.used41 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 15) { if (_level0.used42 == 2) { _level0.ppfocus = 0; _level0.used42 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 16) { if (_level0.used43 == 2) { _level0.ppfocus = 0; _level0.used43 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 17) { if (_level0.used44 == 2) { _level0.ppfocus = 0; _level0.used44 = 3; _level0.popupp.gotoAndPlay(17); } } _root.gotoAndPlay("L5MF7"); } } }
Instance of Symbol 425 MovieClip in Frame 517
onClipEvent (enterFrame) { if (_level0.used47 == 1) { _level0.used47 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used47 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used47 == 2) { _level0.used47 = 1; if (_level0.ppfocus == 11) { if (_level0.used38 == 2) { _level0.ppfocus = 0; _level0.used38 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 12) { if (_level0.used39 == 2) { _level0.ppfocus = 0; _level0.used39 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 13) { if (_level0.used40 == 2) { _level0.ppfocus = 0; _level0.used40 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 14) { if (_level0.used41 == 2) { _level0.ppfocus = 0; _level0.used41 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 15) { if (_level0.used42 == 2) { _level0.ppfocus = 0; _level0.used42 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 16) { if (_level0.used43 == 2) { _level0.ppfocus = 0; _level0.used43 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 17) { if (_level0.used44 == 2) { _level0.ppfocus = 0; _level0.used44 = 3; _level0.popupp.gotoAndPlay(17); } } _root.gotoAndPlay("L5MF5"); } } }
Instance of Symbol 502 MovieClip in Frame 517
onClipEvent (enterFrame) { if (_level0.used42 == 3) { _level0.used42 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used42 = 3; } } if (_level0.used42 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used42 == 2) { _level0.ppfocus = 15; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 367 MovieClip "usedfo1" in Frame 517
onClipEvent (enterFrame) { if (_level0.used48 == 1) { _level0.used48 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used48 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used48 == 2) { _level0.used48 = 1; if (_level0.ppfocus == 11) { if (_level0.used38 == 2) { _level0.ppfocus = 0; _level0.used38 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 12) { if (_level0.used39 == 2) { _level0.ppfocus = 0; _level0.used39 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 13) { if (_level0.used40 == 2) { _level0.ppfocus = 0; _level0.used40 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 14) { if (_level0.used41 == 2) { _level0.ppfocus = 0; _level0.used41 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 15) { if (_level0.used42 == 2) { _level0.ppfocus = 0; _level0.used42 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 16) { if (_level0.used43 == 2) { _level0.ppfocus = 0; _level0.used43 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 17) { if (_level0.used44 == 2) { _level0.ppfocus = 0; _level0.used44 = 3; _level0.popupp.gotoAndPlay(17); } } _root.gotoAndPlay("L5MF4"); } } }
Instance of Symbol 50 MovieClip "player" in Frame 517
onClipEvent (load) { var grav = 0; var run = 10; var wlk = 2.5; var speed = run; var jumpHeight = 10; var dbl = 0; var tri = 0; var djump = false; var tjump = false; var thro = false; var slow = 0.7; var slowspd = (speed / 2); var setspeed = speed; var scale = _xscale; var ex = 5; this.gotoAndStop(2); } onClipEvent (enterFrame) { grav++; _y = (_y + grav); if (Key.isDown(65)) { setspeed = wlk; } else { setspeed = run; } while (_root.ground.hitTest(_x, _y, true)) { djump = false; tjump = false; _y = (_y-1); grav = 0; } if (_root.water.hitTest(_x, _y, true)) { grav = grav * (slow * 1.25); speed = slowspd; } else { speed = setspeed; } if (Key.isDown(39)) { _x = (_x + speed); _xscale = scale; if (_root.ground.hitTest(_x, _y + 3, true)) { this.gotoAndStop(1); } else if (djump == false) { this.gotoAndStop(2); } else if (tjump == false) { this.gotoAndStop(4); } else { this.gotoAndStop(5); } } else if (Key.isDown(37)) { _x = (_x - speed); _xscale = (-scale); if (_root.ground.hitTest(_x, _y + 3, true)) { this.gotoAndStop(1); } else if (djump == false) { this.gotoAndStop(2); } else if (tjump == false) { this.gotoAndStop(4); } else { this.gotoAndStop(5); } } else if ((_root.ground.hitTest(_x, _y + 3, true) && (!Key.isDown(68))) && (!Key.isDown(83))) { this.gotoAndStop(3); } if (((((Key.isDown(68) && (!Key.isDown(38))) && (!Key.isDown(39))) && (!Key.isDown(37))) && (!Key.isDown(83))) && (_root.ground.hitTest(_x, _y + 3, true))) { this.gotoAndStop(8); } if ((((((Key.isDown(83) && (!Key.isDown(39))) && (!Key.isDown(37))) && (!Key.isDown(38))) && (!Key.isDown(68))) && (_root.ground.hitTest(_x, _y + 3, true))) && (_currentframe != 6)) { this.gotoAndStop(7); } else if (Key.isDown(83) && (grav > 1)) { this.gotoAndStop(6); } if ((_root.ground.hitTest((_x + (_width / 2)) + ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - _height, true))) { _x = (_x - speed); } if ((_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - _height, true))) { _x = (_x + speed); } if (_root.ground.hitTest(_x, (_y - _height) - 15, true)) { grav = 1; } }
Frame 532
stop();
Instance of Symbol 482 MovieClip in Frame 532
onClipEvent (enterFrame) { if (_level0.used44 == 3) { _level0.used44 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used44 = 3; } } if (_level0.used44 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used44 == 2) { _level0.ppfocus = 17; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 487 MovieClip in Frame 532
onClipEvent (enterFrame) { if (_level0.used38 == 3) { _level0.used38 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used38 = 3; } } if (_level0.used38 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used38 == 2) { _level0.ppfocus = 11; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 492 MovieClip in Frame 532
onClipEvent (enterFrame) { if (_level0.used41 == 3) { _level0.used41 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used41 = 3; } } if (_level0.used41 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used41 == 2) { _level0.ppfocus = 14; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 497 MovieClip in Frame 532
onClipEvent (enterFrame) { if (_level0.used43 == 3) { _level0.used43 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used43 = 3; } } if (_level0.used43 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used43 == 2) { _level0.ppfocus = 16; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 349 MovieClip in Frame 532
onClipEvent (enterFrame) { if (_level0.used46 == 1) { _level0.used46 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used46 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used46 == 2) { _level0.used46 = 1; if (_level0.ppfocus == 11) { if (_level0.used38 == 2) { _level0.ppfocus = 0; _level0.used38 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 12) { if (_level0.used39 == 2) { _level0.ppfocus = 0; _level0.used39 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 13) { if (_level0.used40 == 2) { _level0.ppfocus = 0; _level0.used40 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 14) { if (_level0.used41 == 2) { _level0.ppfocus = 0; _level0.used41 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 15) { if (_level0.used42 == 2) { _level0.ppfocus = 0; _level0.used42 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 16) { if (_level0.used43 == 2) { _level0.ppfocus = 0; _level0.used43 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 17) { if (_level0.used44 == 2) { _level0.ppfocus = 0; _level0.used44 = 3; _level0.popupp.gotoAndPlay(17); } } _root.gotoAndPlay("L5MF4"); } } }
Instance of Symbol 425 MovieClip in Frame 532
onClipEvent (enterFrame) { if (_level0.used47 == 1) { _level0.used47 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used47 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used47 == 2) { _level0.used47 = 1; if (_level0.ppfocus == 11) { if (_level0.used38 == 2) { _level0.ppfocus = 0; _level0.used38 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 12) { if (_level0.used39 == 2) { _level0.ppfocus = 0; _level0.used39 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 13) { if (_level0.used40 == 2) { _level0.ppfocus = 0; _level0.used40 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 14) { if (_level0.used41 == 2) { _level0.ppfocus = 0; _level0.used41 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 15) { if (_level0.used42 == 2) { _level0.ppfocus = 0; _level0.used42 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 16) { if (_level0.used43 == 2) { _level0.ppfocus = 0; _level0.used43 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 17) { if (_level0.used44 == 2) { _level0.ppfocus = 0; _level0.used44 = 3; _level0.popupp.gotoAndPlay(17); } } _root.ground.gotoAndStop(3); _root.gotoAndPlay("L5MF6"); } } }
Instance of Symbol 502 MovieClip in Frame 532
onClipEvent (enterFrame) { if (_level0.used42 == 3) { _level0.used42 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used42 = 3; } } if (_level0.used42 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used42 == 2) { _level0.ppfocus = 15; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 208 MovieClip in Frame 532
onClipEvent (enterFrame) { if (_level0.used49 == 1) { _level0.used49 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used49 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used49 == 2) { _level0.used49 = 1; if (_level0.ppfocus == 11) { if (_level0.used38 == 2) { _level0.ppfocus = 0; _level0.used38 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 12) { if (_level0.used39 == 2) { _level0.ppfocus = 0; _level0.used39 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 13) { if (_level0.used40 == 2) { _level0.ppfocus = 0; _level0.used40 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 14) { if (_level0.used41 == 2) { _level0.ppfocus = 0; _level0.used41 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 15) { if (_level0.used42 == 2) { _level0.ppfocus = 0; _level0.used42 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 16) { if (_level0.used43 == 2) { _level0.ppfocus = 0; _level0.used43 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 17) { if (_level0.used44 == 2) { _level0.ppfocus = 0; _level0.used44 = 3; _level0.popupp.gotoAndPlay(17); } } _root.ground.gotoAndStop(4); _root.gotoAndPlay("L5MF9"); } } }
Instance of Symbol 477 MovieClip in Frame 532
onClipEvent (enterFrame) { if (_level0.used39 == 3) { _level0.used39 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used39 = 3; } } if (_level0.used39 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used39 == 2) { _level0.ppfocus = 12; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 472 MovieClip in Frame 532
onClipEvent (enterFrame) { if (_level0.used40 == 3) { _level0.used40 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used40 = 3; } } if (_level0.used40 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used40 == 2) { _level0.ppfocus = 13; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 50 MovieClip "player" in Frame 532
onClipEvent (load) { var grav = 0; var run = 10; var wlk = 2.5; var speed = run; var jumpHeight = 10; var dbl = 0; var tri = 0; var djump = false; var tjump = false; var thro = false; var slow = 0.7; var slowspd = (speed / 2); var setspeed = speed; var scale = _xscale; var ex = 5; this.gotoAndStop(2); } onClipEvent (enterFrame) { grav++; _y = (_y + grav); if (Key.isDown(65)) { setspeed = wlk; } else { setspeed = run; } while (_root.ground.hitTest(_x, _y, true)) { djump = false; tjump = false; _y = (_y-1); grav = 0; } if (_root.water.hitTest(_x, _y, true)) { grav = grav * (slow * 1.25); speed = slowspd; } else { speed = setspeed; } if (Key.isDown(39)) { _x = (_x + speed); _xscale = scale; if (_root.ground.hitTest(_x, _y + 3, true)) { this.gotoAndStop(1); } else if (djump == false) { this.gotoAndStop(2); } else if (tjump == false) { this.gotoAndStop(4); } else { this.gotoAndStop(5); } } else if (Key.isDown(37)) { _x = (_x - speed); _xscale = (-scale); if (_root.ground.hitTest(_x, _y + 3, true)) { this.gotoAndStop(1); } else if (djump == false) { this.gotoAndStop(2); } else if (tjump == false) { this.gotoAndStop(4); } else { this.gotoAndStop(5); } } else if ((_root.ground.hitTest(_x, _y + 3, true) && (!Key.isDown(68))) && (!Key.isDown(83))) { this.gotoAndStop(3); } if (((((Key.isDown(68) && (!Key.isDown(38))) && (!Key.isDown(39))) && (!Key.isDown(37))) && (!Key.isDown(83))) && (_root.ground.hitTest(_x, _y + 3, true))) { this.gotoAndStop(8); } if ((((((Key.isDown(83) && (!Key.isDown(39))) && (!Key.isDown(37))) && (!Key.isDown(38))) && (!Key.isDown(68))) && (_root.ground.hitTest(_x, _y + 3, true))) && (_currentframe != 6)) { this.gotoAndStop(7); } else if (Key.isDown(83) && (grav > 1)) { this.gotoAndStop(6); } if ((_root.ground.hitTest((_x + (_width / 2)) + ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - _height, true))) { _x = (_x - speed); } if ((_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - _height, true))) { _x = (_x + speed); } if (_root.ground.hitTest(_x, (_y - _height) - 15, true)) { grav = 1; } }
Frame 548
stop();
Instance of Symbol 477 MovieClip in Frame 548
onClipEvent (enterFrame) { if (_level0.used39 == 3) { _level0.used39 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used39 = 3; } } if (_level0.used39 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used39 == 2) { _level0.ppfocus = 12; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 482 MovieClip in Frame 548
onClipEvent (enterFrame) { if (_level0.used44 == 3) { _level0.used44 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used44 = 3; } } if (_level0.used44 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used44 == 2) { _level0.ppfocus = 17; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 487 MovieClip in Frame 548
onClipEvent (enterFrame) { if (_level0.used38 == 3) { _level0.used38 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used38 = 3; } } if (_level0.used38 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used38 == 2) { _level0.ppfocus = 11; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 492 MovieClip in Frame 548
onClipEvent (enterFrame) { if (_level0.used41 == 3) { _level0.used41 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used41 = 3; } } if (_level0.used41 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used41 == 2) { _level0.ppfocus = 14; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 497 MovieClip in Frame 548
onClipEvent (enterFrame) { if (_level0.used43 == 3) { _level0.used43 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used43 = 3; } } if (_level0.used43 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used43 == 2) { _level0.ppfocus = 16; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 208 MovieClip in Frame 548
onClipEvent (enterFrame) { if (_level0.used49 == 1) { _level0.used49 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used49 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used49 == 2) { _level0.used49 = 1; if (_level0.ppfocus == 11) { if (_level0.used38 == 2) { _level0.ppfocus = 0; _level0.used38 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 12) { if (_level0.used39 == 2) { _level0.ppfocus = 0; _level0.used39 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 13) { if (_level0.used40 == 2) { _level0.ppfocus = 0; _level0.used40 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 14) { if (_level0.used41 == 2) { _level0.ppfocus = 0; _level0.used41 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 15) { if (_level0.used42 == 2) { _level0.ppfocus = 0; _level0.used42 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 16) { if (_level0.used43 == 2) { _level0.ppfocus = 0; _level0.used43 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 17) { if (_level0.used44 == 2) { _level0.ppfocus = 0; _level0.used44 = 3; _level0.popupp.gotoAndPlay(17); } } _root.ground.gotoAndStop(4); _root.gotoAndPlay("L5MF9"); } } }
Instance of Symbol 349 MovieClip in Frame 548
onClipEvent (enterFrame) { if (_level0.used46 == 1) { _level0.used46 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used46 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used46 == 2) { _level0.used46 = 1; if (_level0.ppfocus == 11) { if (_level0.used38 == 2) { _level0.ppfocus = 0; _level0.used38 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 12) { if (_level0.used39 == 2) { _level0.ppfocus = 0; _level0.used39 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 13) { if (_level0.used40 == 2) { _level0.ppfocus = 0; _level0.used40 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 14) { if (_level0.used41 == 2) { _level0.ppfocus = 0; _level0.used41 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 15) { if (_level0.used42 == 2) { _level0.ppfocus = 0; _level0.used42 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 16) { if (_level0.used43 == 2) { _level0.ppfocus = 0; _level0.used43 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 17) { if (_level0.used44 == 2) { _level0.ppfocus = 0; _level0.used44 = 3; _level0.popupp.gotoAndPlay(17); } } _root.gotoAndPlay("L5MF4"); } } }
Instance of Symbol 425 MovieClip in Frame 548
onClipEvent (enterFrame) { if (_level0.used47 == 1) { _level0.used47 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used47 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used47 == 2) { _level0.used47 = 1; if (_level0.ppfocus == 11) { if (_level0.used38 == 2) { _level0.ppfocus = 0; _level0.used38 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 12) { if (_level0.used39 == 2) { _level0.ppfocus = 0; _level0.used39 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 13) { if (_level0.used40 == 2) { _level0.ppfocus = 0; _level0.used40 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 14) { if (_level0.used41 == 2) { _level0.ppfocus = 0; _level0.used41 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 15) { if (_level0.used42 == 2) { _level0.ppfocus = 0; _level0.used42 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 16) { if (_level0.used43 == 2) { _level0.ppfocus = 0; _level0.used43 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 17) { if (_level0.used44 == 2) { _level0.ppfocus = 0; _level0.used44 = 3; _level0.popupp.gotoAndPlay(17); } } _root.ground.gotoAndStop(3); _root.gotoAndPlay("L5MF6"); } } }
Instance of Symbol 502 MovieClip in Frame 548
onClipEvent (enterFrame) { if (_level0.used42 == 3) { _level0.used42 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used42 = 3; } } if (_level0.used42 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used42 == 2) { _level0.ppfocus = 15; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 472 MovieClip in Frame 548
onClipEvent (enterFrame) { if (_level0.used40 == 3) { _level0.used40 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used40 = 3; } } if (_level0.used40 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used40 == 2) { _level0.ppfocus = 13; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 367 MovieClip "usedfo1" in Frame 548
onClipEvent (enterFrame) { if (_level0.used48 == 1) { _level0.used48 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used48 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used48 == 2) { _level0.used48 = 1; if (_level0.ppfocus == 11) { if (_level0.used38 == 2) { _level0.ppfocus = 0; _level0.used38 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 12) { if (_level0.used39 == 2) { _level0.ppfocus = 0; _level0.used39 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 13) { if (_level0.used40 == 2) { _level0.ppfocus = 0; _level0.used40 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 14) { if (_level0.used41 == 2) { _level0.ppfocus = 0; _level0.used41 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 15) { if (_level0.used42 == 2) { _level0.ppfocus = 0; _level0.used42 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 16) { if (_level0.used43 == 2) { _level0.ppfocus = 0; _level0.used43 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 17) { if (_level0.used44 == 2) { _level0.ppfocus = 0; _level0.used44 = 3; _level0.popupp.gotoAndPlay(17); } } _root.gotoAndPlay("L5MF4"); } } }
Instance of Symbol 50 MovieClip "player" in Frame 548
onClipEvent (load) { var grav = 0; var run = 10; var wlk = 2.5; var speed = run; var jumpHeight = 10; var dbl = 0; var tri = 0; var djump = false; var tjump = false; var thro = false; var slow = 0.7; var slowspd = (speed / 2); var setspeed = speed; var scale = _xscale; var ex = 5; this.gotoAndStop(2); } onClipEvent (enterFrame) { grav++; _y = (_y + grav); if (Key.isDown(65)) { setspeed = wlk; } else { setspeed = run; } while (_root.ground.hitTest(_x, _y, true)) { djump = false; tjump = false; _y = (_y-1); grav = 0; } if (_root.water.hitTest(_x, _y, true)) { grav = grav * (slow * 1.25); speed = slowspd; } else { speed = setspeed; } if (Key.isDown(39)) { _x = (_x + speed); _xscale = scale; if (_root.ground.hitTest(_x, _y + 3, true)) { this.gotoAndStop(1); } else if (djump == false) { this.gotoAndStop(2); } else if (tjump == false) { this.gotoAndStop(4); } else { this.gotoAndStop(5); } } else if (Key.isDown(37)) { _x = (_x - speed); _xscale = (-scale); if (_root.ground.hitTest(_x, _y + 3, true)) { this.gotoAndStop(1); } else if (djump == false) { this.gotoAndStop(2); } else if (tjump == false) { this.gotoAndStop(4); } else { this.gotoAndStop(5); } } else if ((_root.ground.hitTest(_x, _y + 3, true) && (!Key.isDown(68))) && (!Key.isDown(83))) { this.gotoAndStop(3); } if (((((Key.isDown(68) && (!Key.isDown(38))) && (!Key.isDown(39))) && (!Key.isDown(37))) && (!Key.isDown(83))) && (_root.ground.hitTest(_x, _y + 3, true))) { this.gotoAndStop(8); } if ((((((Key.isDown(83) && (!Key.isDown(39))) && (!Key.isDown(37))) && (!Key.isDown(38))) && (!Key.isDown(68))) && (_root.ground.hitTest(_x, _y + 3, true))) && (_currentframe != 6)) { this.gotoAndStop(7); } else if (Key.isDown(83) && (grav > 1)) { this.gotoAndStop(6); } if ((_root.ground.hitTest((_x + (_width / 2)) + ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - _height, true))) { _x = (_x - speed); } if ((_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - _height, true))) { _x = (_x + speed); } if (_root.ground.hitTest(_x, (_y - _height) - 15, true)) { grav = 1; } }
Frame 563
_root.ground.gotoAndStop(4); stop();
Instance of Symbol 477 MovieClip in Frame 563
onClipEvent (enterFrame) { if (_level0.used39 == 3) { _level0.used39 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used39 = 3; } } if (_level0.used39 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used39 == 2) { _level0.ppfocus = 12; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 482 MovieClip in Frame 563
onClipEvent (enterFrame) { if (_level0.used44 == 3) { _level0.used44 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used44 = 3; } } if (_level0.used44 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used44 == 2) { _level0.ppfocus = 17; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 487 MovieClip in Frame 563
onClipEvent (enterFrame) { if (_level0.used38 == 3) { _level0.used38 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used38 = 3; } } if (_level0.used38 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used38 == 2) { _level0.ppfocus = 11; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 492 MovieClip in Frame 563
onClipEvent (enterFrame) { if (_level0.used41 == 3) { _level0.used41 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used41 = 3; } } if (_level0.used41 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used41 == 2) { _level0.ppfocus = 14; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 497 MovieClip in Frame 563
onClipEvent (enterFrame) { if (_level0.used43 == 3) { _level0.used43 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used43 = 3; } } if (_level0.used43 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used43 == 2) { _level0.ppfocus = 16; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 237 MovieClip in Frame 563
onClipEvent (enterFrame) { if (_level0.used45 == 1) { this.gotoAndStop(51); } if (this.hitTest(_root.player)) { if (_level0.used45 == 2) { this.gotoAndStop(51); _root.gotoAndStop("L5MF2"); } } }
Instance of Symbol 208 MovieClip in Frame 563
onClipEvent (enterFrame) { if (_level0.used49 == 1) { _level0.used49 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used49 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used49 == 2) { _level0.used49 = 1; if (_level0.ppfocus == 11) { if (_level0.used38 == 2) { _level0.ppfocus = 0; _level0.used38 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 12) { if (_level0.used39 == 2) { _level0.ppfocus = 0; _level0.used39 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 13) { if (_level0.used40 == 2) { _level0.ppfocus = 0; _level0.used40 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 14) { if (_level0.used41 == 2) { _level0.ppfocus = 0; _level0.used41 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 15) { if (_level0.used42 == 2) { _level0.ppfocus = 0; _level0.used42 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 16) { if (_level0.used43 == 2) { _level0.ppfocus = 0; _level0.used43 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 17) { if (_level0.used44 == 2) { _level0.ppfocus = 0; _level0.used44 = 3; _level0.popupp.gotoAndPlay(17); } } _root.ground.gotoAndStop(3); _root.gotoAndPlay("L5MF10"); } } }
Instance of Symbol 426 MovieClip in Frame 563
onClipEvent (enterFrame) { if (_level0.used50 == 1) { _level0.used50 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used50 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used50 == 2) { _level0.used50 = 1; if (_level0.ppfocus == 11) { if (_level0.used38 == 2) { _level0.ppfocus = 0; _level0.used38 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 12) { if (_level0.used39 == 2) { _level0.ppfocus = 0; _level0.used39 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 13) { if (_level0.used40 == 2) { _level0.ppfocus = 0; _level0.used40 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 14) { if (_level0.used41 == 2) { _level0.ppfocus = 0; _level0.used41 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 15) { if (_level0.used42 == 2) { _level0.ppfocus = 0; _level0.used42 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 16) { if (_level0.used43 == 2) { _level0.ppfocus = 0; _level0.used43 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 17) { if (_level0.used44 == 2) { _level0.ppfocus = 0; _level0.used44 = 3; _level0.popupp.gotoAndPlay(17); } } _root.ground.gotoAndStop(5); _root.gotoAndPlay("L5MF11"); } } }
Instance of Symbol 502 MovieClip in Frame 563
onClipEvent (enterFrame) { if (_level0.used42 == 3) { _level0.used42 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used42 = 3; } } if (_level0.used42 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used42 == 2) { _level0.ppfocus = 15; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 367 MovieClip "usedfo1" in Frame 563
onClipEvent (enterFrame) { if (_level0.used48 == 1) { _level0.used48 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used48 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used48 == 2) { _level0.used48 = 1; if (_level0.ppfocus == 11) { if (_level0.used38 == 2) { _level0.ppfocus = 0; _level0.used38 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 12) { if (_level0.used39 == 2) { _level0.ppfocus = 0; _level0.used39 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 13) { if (_level0.used40 == 2) { _level0.ppfocus = 0; _level0.used40 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 14) { if (_level0.used41 == 2) { _level0.ppfocus = 0; _level0.used41 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 15) { if (_level0.used42 == 2) { _level0.ppfocus = 0; _level0.used42 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 16) { if (_level0.used43 == 2) { _level0.ppfocus = 0; _level0.used43 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 17) { if (_level0.used44 == 2) { _level0.ppfocus = 0; _level0.used44 = 3; _level0.popupp.gotoAndPlay(17); } } _root.ground.gotoAndStop(3); _root.gotoAndPlay("L5MF10"); } } }
Instance of Symbol 50 MovieClip "player" in Frame 563
onClipEvent (load) { var grav = 0; var run = 10; var wlk = 2.5; var speed = run; var jumpHeight = 10; var dbl = 0; var tri = 0; var djump = false; var tjump = false; var thro = false; var slow = 0.7; var slowspd = (speed / 2); var setspeed = speed; var scale = _xscale; var ex = 5; this.gotoAndStop(2); } onClipEvent (enterFrame) { grav++; _y = (_y + grav); if (Key.isDown(65)) { setspeed = wlk; } else { setspeed = run; } while (_root.ground.hitTest(_x, _y, true)) { djump = false; tjump = false; _y = (_y-1); grav = 0; } if (_root.water.hitTest(_x, _y, true)) { grav = grav * (slow * 1.25); speed = slowspd; } else { speed = setspeed; } if (Key.isDown(39)) { _x = (_x + speed); _xscale = scale; if (_root.ground.hitTest(_x, _y + 3, true)) { this.gotoAndStop(1); } else if (djump == false) { this.gotoAndStop(2); } else if (tjump == false) { this.gotoAndStop(4); } else { this.gotoAndStop(5); } } else if (Key.isDown(37)) { _x = (_x - speed); _xscale = (-scale); if (_root.ground.hitTest(_x, _y + 3, true)) { this.gotoAndStop(1); } else if (djump == false) { this.gotoAndStop(2); } else if (tjump == false) { this.gotoAndStop(4); } else { this.gotoAndStop(5); } } else if ((_root.ground.hitTest(_x, _y + 3, true) && (!Key.isDown(68))) && (!Key.isDown(83))) { this.gotoAndStop(3); } if (((((Key.isDown(68) && (!Key.isDown(38))) && (!Key.isDown(39))) && (!Key.isDown(37))) && (!Key.isDown(83))) && (_root.ground.hitTest(_x, _y + 3, true))) { this.gotoAndStop(8); } if ((((((Key.isDown(83) && (!Key.isDown(39))) && (!Key.isDown(37))) && (!Key.isDown(38))) && (!Key.isDown(68))) && (_root.ground.hitTest(_x, _y + 3, true))) && (_currentframe != 6)) { this.gotoAndStop(7); } else if (Key.isDown(83) && (grav > 1)) { this.gotoAndStop(6); } if ((_root.ground.hitTest((_x + (_width / 2)) + ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - _height, true))) { _x = (_x - speed); } if ((_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - _height, true))) { _x = (_x + speed); } if (_root.ground.hitTest(_x, (_y - _height) - 15, true)) { grav = 1; } }
Frame 578
stop();
Instance of Symbol 482 MovieClip in Frame 578
onClipEvent (enterFrame) { if (_level0.used44 == 3) { _level0.used44 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used44 = 3; } } if (_level0.used44 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used44 == 2) { _level0.ppfocus = 17; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 487 MovieClip in Frame 578
onClipEvent (enterFrame) { if (_level0.used38 == 3) { _level0.used38 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used38 = 3; } } if (_level0.used38 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used38 == 2) { _level0.ppfocus = 11; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 492 MovieClip in Frame 578
onClipEvent (enterFrame) { if (_level0.used41 == 3) { _level0.used41 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used41 = 3; } } if (_level0.used41 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used41 == 2) { _level0.ppfocus = 14; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 497 MovieClip in Frame 578
onClipEvent (enterFrame) { if (_level0.used43 == 3) { _level0.used43 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used43 = 3; } } if (_level0.used43 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used43 == 2) { _level0.ppfocus = 16; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 349 MovieClip in Frame 578
onClipEvent (enterFrame) { if (_level0.used46 == 1) { _level0.used46 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used46 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used46 == 2) { _level0.used46 = 1; if (_level0.ppfocus == 11) { if (_level0.used38 == 2) { _level0.ppfocus = 0; _level0.used38 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 12) { if (_level0.used39 == 2) { _level0.ppfocus = 0; _level0.used39 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 13) { if (_level0.used40 == 2) { _level0.ppfocus = 0; _level0.used40 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 14) { if (_level0.used41 == 2) { _level0.ppfocus = 0; _level0.used41 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 15) { if (_level0.used42 == 2) { _level0.ppfocus = 0; _level0.used42 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 16) { if (_level0.used43 == 2) { _level0.ppfocus = 0; _level0.used43 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 17) { if (_level0.used44 == 2) { _level0.ppfocus = 0; _level0.used44 = 3; _level0.popupp.gotoAndPlay(17); } } _root.gotoAndPlay("L5MF4"); } } }
Instance of Symbol 425 MovieClip in Frame 578
onClipEvent (enterFrame) { if (_level0.used47 == 1) { _level0.used47 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used47 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used47 == 2) { _level0.used47 = 1; if (_level0.ppfocus == 11) { if (_level0.used38 == 2) { _level0.ppfocus = 0; _level0.used38 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 12) { if (_level0.used39 == 2) { _level0.ppfocus = 0; _level0.used39 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 13) { if (_level0.used40 == 2) { _level0.ppfocus = 0; _level0.used40 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 14) { if (_level0.used41 == 2) { _level0.ppfocus = 0; _level0.used41 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 15) { if (_level0.used42 == 2) { _level0.ppfocus = 0; _level0.used42 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 16) { if (_level0.used43 == 2) { _level0.ppfocus = 0; _level0.used43 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 17) { if (_level0.used44 == 2) { _level0.ppfocus = 0; _level0.used44 = 3; _level0.popupp.gotoAndPlay(17); } } _root.ground.gotoAndStop(3); _root.gotoAndPlay("L5MF6"); } } }
Instance of Symbol 426 MovieClip in Frame 578
onClipEvent (enterFrame) { if (_level0.used50 == 1) { _level0.used50 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used50 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used50 == 2) { _level0.used50 = 1; if (_level0.ppfocus == 11) { if (_level0.used38 == 2) { _level0.ppfocus = 0; _level0.used38 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 12) { if (_level0.used39 == 2) { _level0.ppfocus = 0; _level0.used39 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 13) { if (_level0.used40 == 2) { _level0.ppfocus = 0; _level0.used40 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 14) { if (_level0.used41 == 2) { _level0.ppfocus = 0; _level0.used41 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 15) { if (_level0.used42 == 2) { _level0.ppfocus = 0; _level0.used42 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 16) { if (_level0.used43 == 2) { _level0.ppfocus = 0; _level0.used43 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 17) { if (_level0.used44 == 2) { _level0.ppfocus = 0; _level0.used44 = 3; _level0.popupp.gotoAndPlay(17); } } _root.ground.gotoAndStop(4); _root.gotoAndPlay("L5MF11"); } } }
Instance of Symbol 502 MovieClip in Frame 578
onClipEvent (enterFrame) { if (_level0.used42 == 3) { _level0.used42 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used42 = 3; } } if (_level0.used42 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used42 == 2) { _level0.ppfocus = 15; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 208 MovieClip in Frame 578
onClipEvent (enterFrame) { if (_level0.used49 == 1) { _level0.used49 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used49 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used49 == 2) { _level0.used49 = 1; if (_level0.ppfocus == 11) { if (_level0.used38 == 2) { _level0.ppfocus = 0; _level0.used38 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 12) { if (_level0.used39 == 2) { _level0.ppfocus = 0; _level0.used39 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 13) { if (_level0.used40 == 2) { _level0.ppfocus = 0; _level0.used40 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 14) { if (_level0.used41 == 2) { _level0.ppfocus = 0; _level0.used41 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 15) { if (_level0.used42 == 2) { _level0.ppfocus = 0; _level0.used42 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 16) { if (_level0.used43 == 2) { _level0.ppfocus = 0; _level0.used43 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 17) { if (_level0.used44 == 2) { _level0.ppfocus = 0; _level0.used44 = 3; _level0.popupp.gotoAndPlay(17); } } _root.ground.gotoAndStop(4); _root.gotoAndPlay("L5MF9"); } } }
Instance of Symbol 477 MovieClip in Frame 578
onClipEvent (enterFrame) { if (_level0.used39 == 3) { _level0.used39 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used39 = 3; } } if (_level0.used39 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used39 == 2) { _level0.ppfocus = 12; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 472 MovieClip in Frame 578
onClipEvent (enterFrame) { if (_level0.used40 == 3) { _level0.used40 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used40 = 3; } } if (_level0.used40 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used40 == 2) { _level0.ppfocus = 13; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 50 MovieClip "player" in Frame 578
onClipEvent (load) { var grav = 0; var run = 10; var wlk = 2.5; var speed = run; var jumpHeight = 10; var dbl = 0; var tri = 0; var djump = false; var tjump = false; var thro = false; var slow = 0.7; var slowspd = (speed / 2); var setspeed = speed; var scale = _xscale; var ex = 5; this.gotoAndStop(2); } onClipEvent (enterFrame) { grav++; _y = (_y + grav); if (Key.isDown(65)) { setspeed = wlk; } else { setspeed = run; } while (_root.ground.hitTest(_x, _y, true)) { djump = false; tjump = false; _y = (_y-1); grav = 0; } if (_root.water.hitTest(_x, _y, true)) { grav = grav * (slow * 1.25); speed = slowspd; } else { speed = setspeed; } if (Key.isDown(39)) { _x = (_x + speed); _xscale = scale; if (_root.ground.hitTest(_x, _y + 3, true)) { this.gotoAndStop(1); } else if (djump == false) { this.gotoAndStop(2); } else if (tjump == false) { this.gotoAndStop(4); } else { this.gotoAndStop(5); } } else if (Key.isDown(37)) { _x = (_x - speed); _xscale = (-scale); if (_root.ground.hitTest(_x, _y + 3, true)) { this.gotoAndStop(1); } else if (djump == false) { this.gotoAndStop(2); } else if (tjump == false) { this.gotoAndStop(4); } else { this.gotoAndStop(5); } } else if ((_root.ground.hitTest(_x, _y + 3, true) && (!Key.isDown(68))) && (!Key.isDown(83))) { this.gotoAndStop(3); } if (((((Key.isDown(68) && (!Key.isDown(38))) && (!Key.isDown(39))) && (!Key.isDown(37))) && (!Key.isDown(83))) && (_root.ground.hitTest(_x, _y + 3, true))) { this.gotoAndStop(8); } if ((((((Key.isDown(83) && (!Key.isDown(39))) && (!Key.isDown(37))) && (!Key.isDown(38))) && (!Key.isDown(68))) && (_root.ground.hitTest(_x, _y + 3, true))) && (_currentframe != 6)) { this.gotoAndStop(7); } else if (Key.isDown(83) && (grav > 1)) { this.gotoAndStop(6); } if ((_root.ground.hitTest((_x + (_width / 2)) + ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - _height, true))) { _x = (_x - speed); } if ((_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - _height, true))) { _x = (_x + speed); } if (_root.ground.hitTest(_x, (_y - _height) - 15, true)) { grav = 1; } }
Frame 593
stop();
Instance of Symbol 477 MovieClip in Frame 593
onClipEvent (enterFrame) { if (_level0.used39 == 3) { _level0.used39 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used39 = 3; } } if (_level0.used39 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used39 == 2) { _level0.ppfocus = 12; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 482 MovieClip in Frame 593
onClipEvent (enterFrame) { if (_level0.used44 == 3) { _level0.used44 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used44 = 3; } } if (_level0.used44 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used44 == 2) { _level0.ppfocus = 17; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 487 MovieClip in Frame 593
onClipEvent (enterFrame) { if (_level0.used38 == 3) { _level0.used38 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used38 = 3; } } if (_level0.used38 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used38 == 2) { _level0.ppfocus = 11; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 492 MovieClip in Frame 593
onClipEvent (enterFrame) { if (_level0.used41 == 3) { _level0.used41 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used41 = 3; } } if (_level0.used41 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used41 == 2) { _level0.ppfocus = 14; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 497 MovieClip in Frame 593
onClipEvent (enterFrame) { if (_level0.used43 == 3) { _level0.used43 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used43 = 3; } } if (_level0.used43 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used43 == 2) { _level0.ppfocus = 16; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 349 MovieClip in Frame 593
onClipEvent (enterFrame) { if (_level0.used46 == 1) { _level0.used46 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used46 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used46 == 2) { _level0.used46 = 1; if (_level0.ppfocus == 11) { if (_level0.used38 == 2) { _level0.ppfocus = 0; _level0.used38 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 12) { if (_level0.used39 == 2) { _level0.ppfocus = 0; _level0.used39 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 13) { if (_level0.used40 == 2) { _level0.ppfocus = 0; _level0.used40 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 14) { if (_level0.used41 == 2) { _level0.ppfocus = 0; _level0.used41 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 15) { if (_level0.used42 == 2) { _level0.ppfocus = 0; _level0.used42 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 16) { if (_level0.used43 == 2) { _level0.ppfocus = 0; _level0.used43 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 17) { if (_level0.used44 == 2) { _level0.ppfocus = 0; _level0.used44 = 3; _level0.popupp.gotoAndPlay(17); } } _root.gotoAndPlay("L5MF4"); } } }
Instance of Symbol 472 MovieClip in Frame 593
onClipEvent (enterFrame) { if (_level0.used40 == 3) { _level0.used40 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used40 = 3; } } if (_level0.used40 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used40 == 2) { _level0.ppfocus = 13; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 374 MovieClip in Frame 593
onClipEvent (enterFrame) { if (_level0.used51 == 1) { _level0.used51 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used51 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used51 == 2) { _level0.used51 = 1; if (_level0.ppfocus == 5) { if (_level0.used24 == 2) { _level0.used24 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 6) { if (_level0.used25 == 2) { _level0.used25 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 7) { if (_level0.used26 == 2) { _level0.used26 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 8) { if (_level0.used27 == 2) { _level0.used27 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 9) { if (_level0.used28 == 2) { _level0.used28 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 10) { if (_level0.used29 == 2) { _level0.used29 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } _root.gotoAndPlay("L6T"); } } }
Instance of Symbol 50 MovieClip "player" in Frame 593
onClipEvent (load) { var grav = 0; var run = 10; var wlk = 2.5; var speed = run; var jumpHeight = 10; var dbl = 0; var tri = 0; var djump = false; var tjump = false; var thro = false; var slow = 0.7; var slowspd = (speed / 2); var setspeed = speed; var scale = _xscale; var ex = 5; this.gotoAndStop(2); } onClipEvent (enterFrame) { grav++; _y = (_y + grav); if (Key.isDown(65)) { setspeed = wlk; } else { setspeed = run; } while (_root.ground.hitTest(_x, _y, true)) { djump = false; tjump = false; _y = (_y-1); grav = 0; } if (_root.water.hitTest(_x, _y, true)) { grav = grav * (slow * 1.25); speed = slowspd; } else { speed = setspeed; } if (Key.isDown(39)) { _x = (_x + speed); _xscale = scale; if (_root.ground.hitTest(_x, _y + 3, true)) { this.gotoAndStop(1); } else if (djump == false) { this.gotoAndStop(2); } else if (tjump == false) { this.gotoAndStop(4); } else { this.gotoAndStop(5); } } else if (Key.isDown(37)) { _x = (_x - speed); _xscale = (-scale); if (_root.ground.hitTest(_x, _y + 3, true)) { this.gotoAndStop(1); } else if (djump == false) { this.gotoAndStop(2); } else if (tjump == false) { this.gotoAndStop(4); } else { this.gotoAndStop(5); } } else if ((_root.ground.hitTest(_x, _y + 3, true) && (!Key.isDown(68))) && (!Key.isDown(83))) { this.gotoAndStop(3); } if (((((Key.isDown(68) && (!Key.isDown(38))) && (!Key.isDown(39))) && (!Key.isDown(37))) && (!Key.isDown(83))) && (_root.ground.hitTest(_x, _y + 3, true))) { this.gotoAndStop(8); } if ((((((Key.isDown(83) && (!Key.isDown(39))) && (!Key.isDown(37))) && (!Key.isDown(38))) && (!Key.isDown(68))) && (_root.ground.hitTest(_x, _y + 3, true))) && (_currentframe != 6)) { this.gotoAndStop(7); } else if (Key.isDown(83) && (grav > 1)) { this.gotoAndStop(6); } if ((_root.ground.hitTest((_x + (_width / 2)) + ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - _height, true))) { _x = (_x - speed); } if ((_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - _height, true))) { _x = (_x + speed); } if (_root.ground.hitTest(_x, (_y - _height) - 15, true)) { grav = 1; } }
Frame 594
play(); lev3tscore = score + ntimer; lev3score = (lev3tscore - lev2score) - lev1score; score = lev3tscore; tempscore = score;
Instance of Symbol 502 MovieClip in Frame 594
onClipEvent (enterFrame) { if (_level0.used42 == 3) { _level0.used42 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used42 = 3; } } if (_level0.used42 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used42 == 2) { _level0.ppfocus = 15; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 367 MovieClip "usedfo1" in Frame 594
onClipEvent (enterFrame) { if (_level0.used48 == 1) { _level0.used48 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used48 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used48 == 2) { _level0.used48 = 1; if (_level0.ppfocus == 11) { if (_level0.used38 == 2) { _level0.ppfocus = 0; _level0.used38 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 12) { if (_level0.used39 == 2) { _level0.ppfocus = 0; _level0.used39 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 13) { if (_level0.used40 == 2) { _level0.ppfocus = 0; _level0.used40 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 14) { if (_level0.used41 == 2) { _level0.ppfocus = 0; _level0.used41 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 15) { if (_level0.used42 == 2) { _level0.ppfocus = 0; _level0.used42 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 16) { if (_level0.used43 == 2) { _level0.ppfocus = 0; _level0.used43 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 17) { if (_level0.used44 == 2) { _level0.ppfocus = 0; _level0.used44 = 3; _level0.popupp.gotoAndPlay(17); } } _root.gotoAndPlay("L5MF4"); } } }
Frame 615
gotoAndPlay ("L6M");
Frame 616
used52 = 2; used53 = 2; used54 = 2; used55 = 2; used56 = 2; used57 = 2; used58 = 2; used59 = 2; used60 = 2; used61 = 2; used62 = 2; used63 = 2; used64 = 2; used65 = 2; used66 = 2; used67 = 2; used68 = 2; used69 = 2; used70 = 2; used60sub = 1; quiz4ready = 1; quiz5ready = 1; ntimer = 500;
Frame 617
stop();
Instance of Symbol 515 MovieClip "rewinder4" in Frame 617
onClipEvent (enterFrame) { if (_root.ntimer < 1) { _root.ntimer = 0; } }
Instance of Symbol 60 MovieClip "background" in Frame 617
onClipEvent (enterFrame) { if (_level0.bkvar == 2) { this.gotoAndStop(1); } }
Instance of Symbol 241 MovieClip in Frame 617
onClipEvent (enterFrame) { if (_level0.used62 == 1) { this.gotoAndStop(51); } if (this.hitTest(_root.player)) { if (_level0.used62 == 2) { _level0.used62 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used62 == 2) { _level0.used62 = 1; if (_level0.ppfocus == 18) { if (_level0.used52 == 2) { _level0.ppfocus = 0; _level0.used52 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 19) { if (_level0.used53 == 2) { _level0.ppfocus = 0; _level0.used53 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 20) { if (_level0.used54 == 2) { _level0.ppfocus = 0; _level0.used54 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 21) { if (_level0.used55 == 2) { _level0.ppfocus = 0; _level0.used55 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 22) { if (_level0.used56 == 2) { _level0.ppfocus = 0; _level0.used56 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 23) { if (_level0.used57 == 2) { _level0.ppfocus = 0; _level0.used57 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 24) { if (_level0.used58 == 2) { _level0.ppfocus = 0; _level0.used58 = 3; _level0.popupp.gotoAndPlay(17); } } _root.gotoAndPlay(""); } } }
Instance of Symbol 200 MovieClip in Frame 617
onClipEvent (enterFrame) { if (_level0.used59 == 1) { _level0.used59 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used59 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used59 == 2) { _level0.used59 = 1; if (_level0.ppfocus == 18) { if (_level0.used52 == 2) { _level0.ppfocus = 0; _level0.used52 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 19) { if (_level0.used53 == 2) { _level0.ppfocus = 0; _level0.used53 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 20) { if (_level0.used54 == 2) { _level0.ppfocus = 0; _level0.used54 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 21) { if (_level0.used55 == 2) { _level0.ppfocus = 0; _level0.used55 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 22) { if (_level0.used56 == 2) { _level0.ppfocus = 0; _level0.used56 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 23) { if (_level0.used57 == 2) { _level0.ppfocus = 0; _level0.used57 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 24) { if (_level0.used58 == 2) { _level0.ppfocus = 0; _level0.used58 = 3; _level0.popupp.gotoAndPlay(17); } } _root.ground.gotoAndStop(2); _root.gotoAndPlay("L6MF2"); } } }
Instance of Symbol 414 MovieClip in Frame 617
onClipEvent (enterFrame) { if (_level0.used56 == 3) { _level0.used56 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used56 = 3; } } if (_level0.used56 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used56 == 2) { _level0.ppfocus = 22; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 424 MovieClip in Frame 617
onClipEvent (enterFrame) { if (_level0.used58 == 3) { _level0.used58 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used58 = 3; } } if (_level0.used58 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used58 == 2) { _level0.ppfocus = 24; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 472 MovieClip in Frame 617
onClipEvent (enterFrame) { if (_level0.used57 == 3) { _level0.used57 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used57 = 3; } } if (_level0.used57 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used57 == 2) { _level0.ppfocus = 23; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 343 MovieClip in Frame 617
onClipEvent (enterFrame) { if (_level0.used55 == 3) { _level0.used55 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used55 = 3; } } if (_level0.used55 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used55 == 2) { _level0.ppfocus = 21; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 492 MovieClip in Frame 617
onClipEvent (enterFrame) { if (_level0.used54 == 3) { _level0.used54 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used54 = 3; } } if (_level0.used54 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used54 == 2) { _level0.ppfocus = 20; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 487 MovieClip in Frame 617
onClipEvent (enterFrame) { if (_level0.used52 == 3) { _level0.used52 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used52 = 3; } } if (_level0.used52 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used52 == 2) { _level0.ppfocus = 18; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 221 MovieClip in Frame 617
onClipEvent (enterFrame) { if (_level0.used53 == 3) { _level0.used53 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used53 = 3; } } if (_level0.used53 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used53 == 2) { _level0.ppfocus = 19; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 50 MovieClip "player" in Frame 617
onClipEvent (load) { var grav = 0; var run = 7; var wlk = 2.5; var speed = run; var jumpHeight = 10; var dbl = 0; var tri = 0; var djump = false; var tjump = false; var thro = false; var slow = 0.7; var slowspd = (speed / 2); var setspeed = speed; var scale = _xscale; var ex = 5; this.gotoAndStop(2); } onClipEvent (enterFrame) { grav++; _y = (_y + grav); if (Key.isDown(65)) { setspeed = wlk; } else { setspeed = run; } while (_root.ground.hitTest(_x, _y, true)) { djump = false; tjump = false; _y = (_y-1); grav = 0; } if (_root.water.hitTest(_x, _y, true)) { grav = grav * (slow * 1.25); speed = slowspd; } else { speed = setspeed; } if (Key.isDown(39)) { _x = (_x + speed); _xscale = scale; if (_root.ground.hitTest(_x, _y + 3, true)) { this.gotoAndStop(1); } else if (djump == false) { this.gotoAndStop(2); } else if (tjump == false) { this.gotoAndStop(4); } else { this.gotoAndStop(5); } } else if (Key.isDown(37)) { _x = (_x - speed); _xscale = (-scale); if (_root.ground.hitTest(_x, _y + 3, true)) { this.gotoAndStop(1); } else if (djump == false) { this.gotoAndStop(2); } else if (tjump == false) { this.gotoAndStop(4); } else { this.gotoAndStop(5); } } else if ((_root.ground.hitTest(_x, _y + 3, true) && (!Key.isDown(68))) && (!Key.isDown(83))) { this.gotoAndStop(3); } if (((((Key.isDown(68) && (!Key.isDown(38))) && (!Key.isDown(39))) && (!Key.isDown(37))) && (!Key.isDown(83))) && (_root.ground.hitTest(_x, _y + 3, true))) { this.gotoAndStop(8); } if ((((((Key.isDown(83) && (!Key.isDown(39))) && (!Key.isDown(37))) && (!Key.isDown(38))) && (!Key.isDown(68))) && (_root.ground.hitTest(_x, _y + 3, true))) && (_currentframe != 6)) { this.gotoAndStop(7); } else if (Key.isDown(83) && (grav > 1)) { this.gotoAndStop(6); } if ((_root.ground.hitTest((_x + (_width / 2)) + ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - _height, true))) { _x = (_x - speed); } if ((_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - _height, true))) { _x = (_x + speed); } if (_root.ground.hitTest(_x, (_y - _height) - 15, true)) { grav = 1; } }
Frame 632
stop();
Instance of Symbol 241 MovieClip in Frame 632
onClipEvent (enterFrame) { if (_level0.used62 == 1) { this.gotoAndStop(51); } if (this.hitTest(_root.player)) { if (_level0.used62 == 2) { _level0.used62 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used62 == 2) { _level0.used62 = 1; if (_level0.ppfocus == 18) { if (_level0.used52 == 2) { _level0.ppfocus = 0; _level0.used52 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 19) { if (_level0.used53 == 2) { _level0.ppfocus = 0; _level0.used53 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 20) { if (_level0.used54 == 2) { _level0.ppfocus = 0; _level0.used54 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 21) { if (_level0.used55 == 2) { _level0.ppfocus = 0; _level0.used55 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 22) { if (_level0.used56 == 2) { _level0.ppfocus = 0; _level0.used56 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 23) { if (_level0.used57 == 2) { _level0.ppfocus = 0; _level0.used57 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 24) { if (_level0.used58 == 2) { _level0.ppfocus = 0; _level0.used58 = 3; _level0.popupp.gotoAndPlay(17); } } _root.gotoAndPlay(""); } } }
Instance of Symbol 425 MovieClip in Frame 632
onClipEvent (enterFrame) { if (_level0.used60 == 1) { _level0.used60 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used60 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used60 == 2) { _level0.used60 = 1; if (_level0.ppfocus == 18) { if (_level0.used52 == 2) { _level0.ppfocus = 0; _level0.used52 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 19) { if (_level0.used53 == 2) { _level0.ppfocus = 0; _level0.used53 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 20) { if (_level0.used54 == 2) { _level0.ppfocus = 0; _level0.used54 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 21) { if (_level0.used55 == 2) { _level0.ppfocus = 0; _level0.used55 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 22) { if (_level0.used56 == 2) { _level0.ppfocus = 0; _level0.used56 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 23) { if (_level0.used57 == 2) { _level0.ppfocus = 0; _level0.used57 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 24) { if (_level0.used58 == 2) { _level0.ppfocus = 0; _level0.used58 = 3; _level0.popupp.gotoAndPlay(17); } } _root.gotoAndPlay("L6MF3"); } } }
Instance of Symbol 414 MovieClip in Frame 632
onClipEvent (enterFrame) { if (_level0.used56 == 3) { _level0.used56 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used56 = 3; } } if (_level0.used56 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used56 == 2) { _level0.ppfocus = 22; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 424 MovieClip in Frame 632
onClipEvent (enterFrame) { if (_level0.used58 == 3) { _level0.used58 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used58 = 3; } } if (_level0.used58 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used58 == 2) { _level0.ppfocus = 24; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 472 MovieClip in Frame 632
onClipEvent (enterFrame) { if (_level0.used57 == 3) { _level0.used57 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used57 = 3; } } if (_level0.used57 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used57 == 2) { _level0.ppfocus = 23; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 343 MovieClip in Frame 632
onClipEvent (enterFrame) { if (_level0.used55 == 3) { _level0.used55 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used55 = 3; } } if (_level0.used55 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used55 == 2) { _level0.ppfocus = 21; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 492 MovieClip in Frame 632
onClipEvent (enterFrame) { if (_level0.used54 == 3) { _level0.used54 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used54 = 3; } } if (_level0.used54 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used54 == 2) { _level0.ppfocus = 20; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 487 MovieClip in Frame 632
onClipEvent (enterFrame) { if (_level0.used52 == 3) { _level0.used52 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used52 = 3; } } if (_level0.used52 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used52 == 2) { _level0.ppfocus = 18; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 221 MovieClip in Frame 632
onClipEvent (enterFrame) { if (_level0.used53 == 3) { _level0.used53 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used53 = 3; } } if (_level0.used53 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used53 == 2) { _level0.ppfocus = 19; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 50 MovieClip "player" in Frame 632
onClipEvent (load) { var grav = 0; var run = 7; var wlk = 2.5; var speed = run; var jumpHeight = 10; var dbl = 0; var tri = 0; var djump = false; var tjump = false; var thro = false; var slow = 0.7; var slowspd = (speed / 2); var setspeed = speed; var scale = _xscale; var ex = 5; this.gotoAndStop(2); } onClipEvent (enterFrame) { grav++; _y = (_y + grav); if (Key.isDown(65)) { setspeed = wlk; } else { setspeed = run; } while (_root.ground.hitTest(_x, _y, true)) { djump = false; tjump = false; _y = (_y-1); grav = 0; } if (_root.water.hitTest(_x, _y, true)) { grav = grav * (slow * 1.25); speed = slowspd; } else { speed = setspeed; } if (Key.isDown(39)) { _x = (_x + speed); _xscale = scale; if (_root.ground.hitTest(_x, _y + 3, true)) { this.gotoAndStop(1); } else if (djump == false) { this.gotoAndStop(2); } else if (tjump == false) { this.gotoAndStop(4); } else { this.gotoAndStop(5); } } else if (Key.isDown(37)) { _x = (_x - speed); _xscale = (-scale); if (_root.ground.hitTest(_x, _y + 3, true)) { this.gotoAndStop(1); } else if (djump == false) { this.gotoAndStop(2); } else if (tjump == false) { this.gotoAndStop(4); } else { this.gotoAndStop(5); } } else if ((_root.ground.hitTest(_x, _y + 3, true) && (!Key.isDown(68))) && (!Key.isDown(83))) { this.gotoAndStop(3); } if (((((Key.isDown(68) && (!Key.isDown(38))) && (!Key.isDown(39))) && (!Key.isDown(37))) && (!Key.isDown(83))) && (_root.ground.hitTest(_x, _y + 3, true))) { this.gotoAndStop(8); } if ((((((Key.isDown(83) && (!Key.isDown(39))) && (!Key.isDown(37))) && (!Key.isDown(38))) && (!Key.isDown(68))) && (_root.ground.hitTest(_x, _y + 3, true))) && (_currentframe != 6)) { this.gotoAndStop(7); } else if (Key.isDown(83) && (grav > 1)) { this.gotoAndStop(6); } if ((_root.ground.hitTest((_x + (_width / 2)) + ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - _height, true))) { _x = (_x - speed); } if ((_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - _height, true))) { _x = (_x + speed); } if (_root.ground.hitTest(_x, (_y - _height) - 15, true)) { grav = 1; } }
Frame 647
stop();
Instance of Symbol 241 MovieClip in Frame 647
onClipEvent (enterFrame) { if (_level0.used62 == 1) { this.gotoAndStop(51); } if (this.hitTest(_root.player)) { if (_level0.used62 == 2) { _level0.used62 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used62 == 2) { _level0.used62 = 1; if (_level0.ppfocus == 18) { if (_level0.used52 == 2) { _level0.ppfocus = 0; _level0.used52 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 19) { if (_level0.used53 == 2) { _level0.ppfocus = 0; _level0.used53 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 20) { if (_level0.used54 == 2) { _level0.ppfocus = 0; _level0.used54 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 21) { if (_level0.used55 == 2) { _level0.ppfocus = 0; _level0.used55 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 22) { if (_level0.used56 == 2) { _level0.ppfocus = 0; _level0.used56 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 23) { if (_level0.used57 == 2) { _level0.ppfocus = 0; _level0.used57 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 24) { if (_level0.used58 == 2) { _level0.ppfocus = 0; _level0.used58 = 3; _level0.popupp.gotoAndPlay(17); } } _root.gotoAndPlay(""); } } }
Instance of Symbol 200 MovieClip in Frame 647
onClipEvent (enterFrame) { if (_level0.used59 == 1) { _level0.used59 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used59 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used59 == 2) { _level0.used59 = 1; if (_level0.ppfocus == 18) { if (_level0.used52 == 2) { _level0.ppfocus = 0; _level0.used52 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 19) { if (_level0.used53 == 2) { _level0.ppfocus = 0; _level0.used53 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 20) { if (_level0.used54 == 2) { _level0.ppfocus = 0; _level0.used54 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 21) { if (_level0.used55 == 2) { _level0.ppfocus = 0; _level0.used55 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 22) { if (_level0.used56 == 2) { _level0.ppfocus = 0; _level0.used56 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 23) { if (_level0.used57 == 2) { _level0.ppfocus = 0; _level0.used57 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 24) { if (_level0.used58 == 2) { _level0.ppfocus = 0; _level0.used58 = 3; _level0.popupp.gotoAndPlay(17); } } _root.ground.gotoAndStop(2); _root.gotoAndPlay("L6MF2"); } } }
Instance of Symbol 349 MovieClip in Frame 647
onClipEvent (enterFrame) { if (_level0.used61 == 1) { _level0.used61 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used61 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used61 == 2) { _level0.used61 = 1; if (_level0.ppfocus == 18) { if (_level0.used52 == 2) { _level0.ppfocus = 0; _level0.used52 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 19) { if (_level0.used53 == 2) { _level0.ppfocus = 0; _level0.used53 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 20) { if (_level0.used54 == 2) { _level0.ppfocus = 0; _level0.used54 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 21) { if (_level0.used55 == 2) { _level0.ppfocus = 0; _level0.used55 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 22) { if (_level0.used56 == 2) { _level0.ppfocus = 0; _level0.used56 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 23) { if (_level0.used57 == 2) { _level0.ppfocus = 0; _level0.used57 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 24) { if (_level0.used58 == 2) { _level0.ppfocus = 0; _level0.used58 = 3; _level0.popupp.gotoAndPlay(17); } } _root.gotoAndPlay("L6MF4"); } } }
Instance of Symbol 425 MovieClip in Frame 647
onClipEvent (enterFrame) { if (_level0.used60 == 1) { _level0.used60 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used60 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used60 == 2) { _level0.used60 = 1; if (_level0.ppfocus == 18) { if (_level0.used52 == 2) { _level0.ppfocus = 0; _level0.used52 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 19) { if (_level0.used53 == 2) { _level0.ppfocus = 0; _level0.used53 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 20) { if (_level0.used54 == 2) { _level0.ppfocus = 0; _level0.used54 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 21) { if (_level0.used55 == 2) { _level0.ppfocus = 0; _level0.used55 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 22) { if (_level0.used56 == 2) { _level0.ppfocus = 0; _level0.used56 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 23) { if (_level0.used57 == 2) { _level0.ppfocus = 0; _level0.used57 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 24) { if (_level0.used58 == 2) { _level0.ppfocus = 0; _level0.used58 = 3; _level0.popupp.gotoAndPlay(17); } } _root.gotoAndPlay(""); } } }
Instance of Symbol 414 MovieClip in Frame 647
onClipEvent (enterFrame) { if (_level0.used56 == 3) { _level0.used56 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used56 = 3; } } if (_level0.used56 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used56 == 2) { _level0.ppfocus = 22; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 424 MovieClip in Frame 647
onClipEvent (enterFrame) { if (_level0.used58 == 3) { _level0.used58 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used58 = 3; } } if (_level0.used58 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used58 == 2) { _level0.ppfocus = 24; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 472 MovieClip in Frame 647
onClipEvent (enterFrame) { if (_level0.used57 == 3) { _level0.used57 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used57 = 3; } } if (_level0.used57 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used57 == 2) { _level0.ppfocus = 23; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 343 MovieClip in Frame 647
onClipEvent (enterFrame) { if (_level0.used55 == 3) { _level0.used55 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used55 = 3; } } if (_level0.used55 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used55 == 2) { _level0.ppfocus = 21; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 492 MovieClip in Frame 647
onClipEvent (enterFrame) { if (_level0.used54 == 3) { _level0.used54 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used54 = 3; } } if (_level0.used54 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used54 == 2) { _level0.ppfocus = 20; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 487 MovieClip in Frame 647
onClipEvent (enterFrame) { if (_level0.used52 == 3) { _level0.used52 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used52 = 3; } } if (_level0.used52 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used52 == 2) { _level0.ppfocus = 18; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 221 MovieClip in Frame 647
onClipEvent (enterFrame) { if (_level0.used53 == 3) { _level0.used53 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used53 = 3; } } if (_level0.used53 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used53 == 2) { _level0.ppfocus = 19; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 50 MovieClip "player" in Frame 647
onClipEvent (load) { var grav = 0; var run = 7; var wlk = 2.5; var speed = run; var jumpHeight = 10; var dbl = 0; var tri = 0; var djump = false; var tjump = false; var thro = false; var slow = 0.7; var slowspd = (speed / 2); var setspeed = speed; var scale = _xscale; var ex = 5; this.gotoAndStop(2); } onClipEvent (enterFrame) { grav++; _y = (_y + grav); if (Key.isDown(65)) { setspeed = wlk; } else { setspeed = run; } while (_root.ground.hitTest(_x, _y, true)) { djump = false; tjump = false; _y = (_y-1); grav = 0; } if (_root.water.hitTest(_x, _y, true)) { grav = grav * (slow * 1.25); speed = slowspd; } else { speed = setspeed; } if (Key.isDown(39)) { _x = (_x + speed); _xscale = scale; if (_root.ground.hitTest(_x, _y + 3, true)) { this.gotoAndStop(1); } else if (djump == false) { this.gotoAndStop(2); } else if (tjump == false) { this.gotoAndStop(4); } else { this.gotoAndStop(5); } } else if (Key.isDown(37)) { _x = (_x - speed); _xscale = (-scale); if (_root.ground.hitTest(_x, _y + 3, true)) { this.gotoAndStop(1); } else if (djump == false) { this.gotoAndStop(2); } else if (tjump == false) { this.gotoAndStop(4); } else { this.gotoAndStop(5); } } else if ((_root.ground.hitTest(_x, _y + 3, true) && (!Key.isDown(68))) && (!Key.isDown(83))) { this.gotoAndStop(3); } if (((((Key.isDown(68) && (!Key.isDown(38))) && (!Key.isDown(39))) && (!Key.isDown(37))) && (!Key.isDown(83))) && (_root.ground.hitTest(_x, _y + 3, true))) { this.gotoAndStop(8); } if ((((((Key.isDown(83) && (!Key.isDown(39))) && (!Key.isDown(37))) && (!Key.isDown(38))) && (!Key.isDown(68))) && (_root.ground.hitTest(_x, _y + 3, true))) && (_currentframe != 6)) { this.gotoAndStop(7); } else if (Key.isDown(83) && (grav > 1)) { this.gotoAndStop(6); } if ((_root.ground.hitTest((_x + (_width / 2)) + ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - _height, true))) { _x = (_x - speed); } if ((_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - _height, true))) { _x = (_x + speed); } if (_root.ground.hitTest(_x, (_y - _height) - 15, true)) { grav = 1; } }
Frame 662
stop();
Instance of Symbol 241 MovieClip in Frame 662
onClipEvent (enterFrame) { if (_level0.used62 == 1) { this.gotoAndStop(51); } if (this.hitTest(_root.player)) { if (_level0.used62 == 2) { _level0.used62 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used62 == 2) { _level0.used62 = 1; if (_level0.ppfocus == 18) { if (_level0.used52 == 2) { _level0.ppfocus = 0; _level0.used52 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 19) { if (_level0.used53 == 2) { _level0.ppfocus = 0; _level0.used53 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 20) { if (_level0.used54 == 2) { _level0.ppfocus = 0; _level0.used54 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 21) { if (_level0.used55 == 2) { _level0.ppfocus = 0; _level0.used55 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 22) { if (_level0.used56 == 2) { _level0.ppfocus = 0; _level0.used56 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 23) { if (_level0.used57 == 2) { _level0.ppfocus = 0; _level0.used57 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 24) { if (_level0.used58 == 2) { _level0.ppfocus = 0; _level0.used58 = 3; _level0.popupp.gotoAndPlay(17); } } _root.gotoAndPlay(""); } } }
Instance of Symbol 349 MovieClip in Frame 662
onClipEvent (enterFrame) { if (_level0.used61 == 1) { _level0.used61 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used61 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used61 == 2) { _level0.used61 = 1; if (_level0.ppfocus == 18) { if (_level0.used52 == 2) { _level0.ppfocus = 0; _level0.used52 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 19) { if (_level0.used53 == 2) { _level0.ppfocus = 0; _level0.used53 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 20) { if (_level0.used54 == 2) { _level0.ppfocus = 0; _level0.used54 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 21) { if (_level0.used55 == 2) { _level0.ppfocus = 0; _level0.used55 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 22) { if (_level0.used56 == 2) { _level0.ppfocus = 0; _level0.used56 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 23) { if (_level0.used57 == 2) { _level0.ppfocus = 0; _level0.used57 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 24) { if (_level0.used58 == 2) { _level0.ppfocus = 0; _level0.used58 = 3; _level0.popupp.gotoAndPlay(17); } } _root.gotoAndPlay(""); } } }
Instance of Symbol 425 MovieClip in Frame 662
onClipEvent (enterFrame) { if (_level0.used60 == 1) { _level0.used60 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used60 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used60 == 2) { _level0.used60 = 1; if (_level0.ppfocus == 18) { if (_level0.used52 == 2) { _level0.ppfocus = 0; _level0.used52 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 19) { if (_level0.used53 == 2) { _level0.ppfocus = 0; _level0.used53 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 20) { if (_level0.used54 == 2) { _level0.ppfocus = 0; _level0.used54 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 21) { if (_level0.used55 == 2) { _level0.ppfocus = 0; _level0.used55 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 22) { if (_level0.used56 == 2) { _level0.ppfocus = 0; _level0.used56 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 23) { if (_level0.used57 == 2) { _level0.ppfocus = 0; _level0.used57 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 24) { if (_level0.used58 == 2) { _level0.ppfocus = 0; _level0.used58 = 3; _level0.popupp.gotoAndPlay(17); } } _root.gotoAndPlay("L6MF5"); } } }
Instance of Symbol 414 MovieClip in Frame 662
onClipEvent (enterFrame) { if (_level0.used56 == 3) { _level0.used56 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used56 = 3; } } if (_level0.used56 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used56 == 2) { _level0.ppfocus = 22; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 424 MovieClip in Frame 662
onClipEvent (enterFrame) { if (_level0.used58 == 3) { _level0.used58 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used58 = 3; } } if (_level0.used58 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used58 == 2) { _level0.ppfocus = 24; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 472 MovieClip in Frame 662
onClipEvent (enterFrame) { if (_level0.used57 == 3) { _level0.used57 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used57 = 3; } } if (_level0.used57 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used57 == 2) { _level0.ppfocus = 23; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 343 MovieClip in Frame 662
onClipEvent (enterFrame) { if (_level0.used55 == 3) { _level0.used55 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used55 = 3; } } if (_level0.used55 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used55 == 2) { _level0.ppfocus = 21; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 492 MovieClip in Frame 662
onClipEvent (enterFrame) { if (_level0.used54 == 3) { _level0.used54 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used54 = 3; } } if (_level0.used54 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used54 == 2) { _level0.ppfocus = 20; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 487 MovieClip in Frame 662
onClipEvent (enterFrame) { if (_level0.used52 == 3) { _level0.used52 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used52 = 3; } } if (_level0.used52 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used52 == 2) { _level0.ppfocus = 18; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 221 MovieClip in Frame 662
onClipEvent (enterFrame) { if (_level0.used53 == 3) { _level0.used53 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used53 = 3; } } if (_level0.used53 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used53 == 2) { _level0.ppfocus = 19; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 50 MovieClip "player" in Frame 662
onClipEvent (load) { var grav = 0; var run = 7; var wlk = 2.5; var speed = run; var jumpHeight = 10; var dbl = 0; var tri = 0; var djump = false; var tjump = false; var thro = false; var slow = 0.7; var slowspd = (speed / 2); var setspeed = speed; var scale = _xscale; var ex = 5; this.gotoAndStop(2); } onClipEvent (enterFrame) { grav++; _y = (_y + grav); if (Key.isDown(65)) { setspeed = wlk; } else { setspeed = run; } while (_root.ground.hitTest(_x, _y, true)) { djump = false; tjump = false; _y = (_y-1); grav = 0; } if (_root.water.hitTest(_x, _y, true)) { grav = grav * (slow * 1.25); speed = slowspd; } else { speed = setspeed; } if (Key.isDown(39)) { _x = (_x + speed); _xscale = scale; if (_root.ground.hitTest(_x, _y + 3, true)) { this.gotoAndStop(1); } else if (djump == false) { this.gotoAndStop(2); } else if (tjump == false) { this.gotoAndStop(4); } else { this.gotoAndStop(5); } } else if (Key.isDown(37)) { _x = (_x - speed); _xscale = (-scale); if (_root.ground.hitTest(_x, _y + 3, true)) { this.gotoAndStop(1); } else if (djump == false) { this.gotoAndStop(2); } else if (tjump == false) { this.gotoAndStop(4); } else { this.gotoAndStop(5); } } else if ((_root.ground.hitTest(_x, _y + 3, true) && (!Key.isDown(68))) && (!Key.isDown(83))) { this.gotoAndStop(3); } if (((((Key.isDown(68) && (!Key.isDown(38))) && (!Key.isDown(39))) && (!Key.isDown(37))) && (!Key.isDown(83))) && (_root.ground.hitTest(_x, _y + 3, true))) { this.gotoAndStop(8); } if ((((((Key.isDown(83) && (!Key.isDown(39))) && (!Key.isDown(37))) && (!Key.isDown(38))) && (!Key.isDown(68))) && (_root.ground.hitTest(_x, _y + 3, true))) && (_currentframe != 6)) { this.gotoAndStop(7); } else if (Key.isDown(83) && (grav > 1)) { this.gotoAndStop(6); } if ((_root.ground.hitTest((_x + (_width / 2)) + ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - _height, true))) { _x = (_x - speed); } if ((_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - _height, true))) { _x = (_x + speed); } if (_root.ground.hitTest(_x, (_y - _height) - 15, true)) { grav = 1; } }
Frame 676
if (used60sub == 2) { gotoAndStop ("L6MF7"); }
Frame 677
stop();
Instance of Symbol 241 MovieClip in Frame 677
onClipEvent (enterFrame) { if (_level0.used62 == 1) { _level0.used62 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used62 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used62 == 2) { _level0.used62 = 1; if (_level0.ppfocus == 18) { if (_level0.used52 == 2) { _level0.ppfocus = 0; _level0.used52 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 19) { if (_level0.used53 == 2) { _level0.ppfocus = 0; _level0.used53 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 20) { if (_level0.used54 == 2) { _level0.ppfocus = 0; _level0.used54 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 21) { if (_level0.used55 == 2) { _level0.ppfocus = 0; _level0.used55 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 22) { if (_level0.used56 == 2) { _level0.ppfocus = 0; _level0.used56 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 23) { if (_level0.used57 == 2) { _level0.ppfocus = 0; _level0.used57 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 24) { if (_level0.used58 == 2) { _level0.ppfocus = 0; _level0.used58 = 3; _level0.popupp.gotoAndPlay(17); } } _root.score = _root.score + 100; _root.gotoAndPlay("L6MF6"); } } }
Instance of Symbol 200 MovieClip in Frame 677
onClipEvent (enterFrame) { if (_level0.used59 == 1) { _level0.used59 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used59 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used59 == 2) { _level0.used59 = 1; if (_level0.ppfocus == 18) { if (_level0.used52 == 2) { _level0.ppfocus = 0; _level0.used52 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 19) { if (_level0.used53 == 2) { _level0.ppfocus = 0; _level0.used53 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 20) { if (_level0.used54 == 2) { _level0.ppfocus = 0; _level0.used54 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 21) { if (_level0.used55 == 2) { _level0.ppfocus = 0; _level0.used55 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 22) { if (_level0.used56 == 2) { _level0.ppfocus = 0; _level0.used56 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 23) { if (_level0.used57 == 2) { _level0.ppfocus = 0; _level0.used57 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 24) { if (_level0.used58 == 2) { _level0.ppfocus = 0; _level0.used58 = 3; _level0.popupp.gotoAndPlay(17); } } _root.ground.gotoAndStop(2); _root.gotoAndPlay("L6MF2"); } } }
Instance of Symbol 349 MovieClip in Frame 677
onClipEvent (enterFrame) { if (_level0.used61 == 1) { _level0.used61 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used61 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used61 == 2) { _level0.used61 = 1; if (_level0.ppfocus == 18) { if (_level0.used52 == 2) { _level0.ppfocus = 0; _level0.used52 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 19) { if (_level0.used53 == 2) { _level0.ppfocus = 0; _level0.used53 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 20) { if (_level0.used54 == 2) { _level0.ppfocus = 0; _level0.used54 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 21) { if (_level0.used55 == 2) { _level0.ppfocus = 0; _level0.used55 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 22) { if (_level0.used56 == 2) { _level0.ppfocus = 0; _level0.used56 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 23) { if (_level0.used57 == 2) { _level0.ppfocus = 0; _level0.used57 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 24) { if (_level0.used58 == 2) { _level0.ppfocus = 0; _level0.used58 = 3; _level0.popupp.gotoAndPlay(17); } } _root.gotoAndPlay("L6MF4"); } } }
Instance of Symbol 368 MovieClip in Frame 677
onClipEvent (enterFrame) { if (_level0.used63 == 1) { _level0.used63 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used63 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used63 == 2) { _level0.used63 = 1; if (_level0.ppfocus == 18) { if (_level0.used52 == 2) { _level0.ppfocus = 0; _level0.used52 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 19) { if (_level0.used53 == 2) { _level0.ppfocus = 0; _level0.used53 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 20) { if (_level0.used54 == 2) { _level0.ppfocus = 0; _level0.used54 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 21) { if (_level0.used55 == 2) { _level0.ppfocus = 0; _level0.used55 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 22) { if (_level0.used56 == 2) { _level0.ppfocus = 0; _level0.used56 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 23) { if (_level0.used57 == 2) { _level0.ppfocus = 0; _level0.used57 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 24) { if (_level0.used58 == 2) { _level0.ppfocus = 0; _level0.used58 = 3; _level0.popupp.gotoAndPlay(17); } } _root.gotoAndPlay("L6MF8"); } } }
Instance of Symbol 414 MovieClip in Frame 677
onClipEvent (enterFrame) { if (_level0.used56 == 3) { _level0.used56 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used56 = 3; } } if (_level0.used56 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used56 == 2) { _level0.ppfocus = 22; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 424 MovieClip in Frame 677
onClipEvent (enterFrame) { if (_level0.used58 == 3) { _level0.used58 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used58 = 3; } } if (_level0.used58 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used58 == 2) { _level0.ppfocus = 24; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 472 MovieClip in Frame 677
onClipEvent (enterFrame) { if (_level0.used57 == 3) { _level0.used57 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used57 = 3; } } if (_level0.used57 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used57 == 2) { _level0.ppfocus = 23; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 343 MovieClip in Frame 677
onClipEvent (enterFrame) { if (_level0.used55 == 3) { _level0.used55 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used55 = 3; } } if (_level0.used55 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used55 == 2) { _level0.ppfocus = 21; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 492 MovieClip in Frame 677
onClipEvent (enterFrame) { if (_level0.used54 == 3) { _level0.used54 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used54 = 3; } } if (_level0.used54 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used54 == 2) { _level0.ppfocus = 20; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 487 MovieClip in Frame 677
onClipEvent (enterFrame) { if (_level0.used52 == 3) { _level0.used52 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used52 = 3; } } if (_level0.used52 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used52 == 2) { _level0.ppfocus = 18; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 221 MovieClip in Frame 677
onClipEvent (enterFrame) { if (_level0.used53 == 3) { _level0.used53 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used53 = 3; } } if (_level0.used53 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used53 == 2) { _level0.ppfocus = 19; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 50 MovieClip "player" in Frame 677
onClipEvent (load) { var grav = 0; var run = 7; var wlk = 2.5; var speed = run; var jumpHeight = 10; var dbl = 0; var tri = 0; var djump = false; var tjump = false; var thro = false; var slow = 0.7; var slowspd = (speed / 2); var setspeed = speed; var scale = _xscale; var ex = 5; this.gotoAndStop(2); } onClipEvent (enterFrame) { grav++; _y = (_y + grav); if (Key.isDown(65)) { setspeed = wlk; } else { setspeed = run; } while (_root.ground.hitTest(_x, _y, true)) { djump = false; tjump = false; _y = (_y-1); grav = 0; } if (_root.water.hitTest(_x, _y, true)) { grav = grav * (slow * 1.25); speed = slowspd; } else { speed = setspeed; } if (Key.isDown(39)) { _x = (_x + speed); _xscale = scale; if (_root.ground.hitTest(_x, _y + 3, true)) { this.gotoAndStop(1); } else if (djump == false) { this.gotoAndStop(2); } else if (tjump == false) { this.gotoAndStop(4); } else { this.gotoAndStop(5); } } else if (Key.isDown(37)) { _x = (_x - speed); _xscale = (-scale); if (_root.ground.hitTest(_x, _y + 3, true)) { this.gotoAndStop(1); } else if (djump == false) { this.gotoAndStop(2); } else if (tjump == false) { this.gotoAndStop(4); } else { this.gotoAndStop(5); } } else if ((_root.ground.hitTest(_x, _y + 3, true) && (!Key.isDown(68))) && (!Key.isDown(83))) { this.gotoAndStop(3); } if (((((Key.isDown(68) && (!Key.isDown(38))) && (!Key.isDown(39))) && (!Key.isDown(37))) && (!Key.isDown(83))) && (_root.ground.hitTest(_x, _y + 3, true))) { this.gotoAndStop(8); } if ((((((Key.isDown(83) && (!Key.isDown(39))) && (!Key.isDown(37))) && (!Key.isDown(38))) && (!Key.isDown(68))) && (_root.ground.hitTest(_x, _y + 3, true))) && (_currentframe != 6)) { this.gotoAndStop(7); } else if (Key.isDown(83) && (grav > 1)) { this.gotoAndStop(6); } if ((_root.ground.hitTest((_x + (_width / 2)) + ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - _height, true))) { _x = (_x - speed); } if ((_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - _height, true))) { _x = (_x + speed); } if (_root.ground.hitTest(_x, (_y - _height) - 15, true)) { grav = 1; } }
Frame 692
stop();
Instance of Symbol 241 MovieClip in Frame 692
onClipEvent (enterFrame) { if (_level0.used62 == 1) { this.gotoAndStop(51); } if (this.hitTest(_root.player)) { if (_level0.used62 == 2) { _level0.used62 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used62 == 2) { _level0.used62 = 1; if (_level0.ppfocus == 18) { if (_level0.used52 == 2) { _level0.ppfocus = 0; _level0.used52 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 19) { if (_level0.used53 == 2) { _level0.ppfocus = 0; _level0.used53 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 20) { if (_level0.used54 == 2) { _level0.ppfocus = 0; _level0.used54 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 21) { if (_level0.used55 == 2) { _level0.ppfocus = 0; _level0.used55 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 22) { if (_level0.used56 == 2) { _level0.ppfocus = 0; _level0.used56 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 23) { if (_level0.used57 == 2) { _level0.ppfocus = 0; _level0.used57 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 24) { if (_level0.used58 == 2) { _level0.ppfocus = 0; _level0.used58 = 3; _level0.popupp.gotoAndPlay(17); } } _root.gotoAndPlay(""); } } }
Instance of Symbol 349 MovieClip in Frame 692
onClipEvent (enterFrame) { if (_level0.used61 == 1) { _level0.used61 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used61 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used61 == 2) { _level0.used61 = 1; if (_level0.ppfocus == 18) { if (_level0.used52 == 2) { _level0.ppfocus = 0; _level0.used52 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 19) { if (_level0.used53 == 2) { _level0.ppfocus = 0; _level0.used53 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 20) { if (_level0.used54 == 2) { _level0.ppfocus = 0; _level0.used54 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 21) { if (_level0.used55 == 2) { _level0.ppfocus = 0; _level0.used55 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 22) { if (_level0.used56 == 2) { _level0.ppfocus = 0; _level0.used56 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 23) { if (_level0.used57 == 2) { _level0.ppfocus = 0; _level0.used57 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 24) { if (_level0.used58 == 2) { _level0.ppfocus = 0; _level0.used58 = 3; _level0.popupp.gotoAndPlay(17); } } _root.gotoAndPlay(""); } } }
Instance of Symbol 425 MovieClip in Frame 692
onClipEvent (enterFrame) { if (_level0.used60 == 1) { _level0.used60 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used60 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used60 == 2) { _level0.used60 = 1; if (_level0.ppfocus == 18) { if (_level0.used52 == 2) { _level0.ppfocus = 0; _level0.used52 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 19) { if (_level0.used53 == 2) { _level0.ppfocus = 0; _level0.used53 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 20) { if (_level0.used54 == 2) { _level0.ppfocus = 0; _level0.used54 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 21) { if (_level0.used55 == 2) { _level0.ppfocus = 0; _level0.used55 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 22) { if (_level0.used56 == 2) { _level0.ppfocus = 0; _level0.used56 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 23) { if (_level0.used57 == 2) { _level0.ppfocus = 0; _level0.used57 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 24) { if (_level0.used58 == 2) { _level0.ppfocus = 0; _level0.used58 = 3; _level0.popupp.gotoAndPlay(17); } } _root.ground.gotoAndStop(3); _level0.used60sub = 2; _root.gotoAndPlay("L6MF3"); } } }
Instance of Symbol 414 MovieClip in Frame 692
onClipEvent (enterFrame) { if (_level0.used56 == 3) { _level0.used56 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used56 = 3; } } if (_level0.used56 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used56 == 2) { _level0.ppfocus = 22; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 424 MovieClip in Frame 692
onClipEvent (enterFrame) { if (_level0.used58 == 3) { _level0.used58 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used58 = 3; } } if (_level0.used58 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used58 == 2) { _level0.ppfocus = 24; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 472 MovieClip in Frame 692
onClipEvent (enterFrame) { if (_level0.used57 == 3) { _level0.used57 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used57 = 3; } } if (_level0.used57 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used57 == 2) { _level0.ppfocus = 23; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 343 MovieClip in Frame 692
onClipEvent (enterFrame) { if (_level0.used55 == 3) { _level0.used55 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used55 = 3; } } if (_level0.used55 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used55 == 2) { _level0.ppfocus = 21; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 492 MovieClip in Frame 692
onClipEvent (enterFrame) { if (_level0.used54 == 3) { _level0.used54 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used54 = 3; } } if (_level0.used54 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used54 == 2) { _level0.ppfocus = 20; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 487 MovieClip in Frame 692
onClipEvent (enterFrame) { if (_level0.used52 == 3) { _level0.used52 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used52 = 3; } } if (_level0.used52 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used52 == 2) { _level0.ppfocus = 18; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 221 MovieClip in Frame 692
onClipEvent (enterFrame) { if (_level0.used53 == 3) { _level0.used53 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used53 = 3; } } if (_level0.used53 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used53 == 2) { _level0.ppfocus = 19; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 50 MovieClip "player" in Frame 692
onClipEvent (load) { var grav = 0; var run = 7; var wlk = 2.5; var speed = run; var jumpHeight = 10; var dbl = 0; var tri = 0; var djump = false; var tjump = false; var thro = false; var slow = 0.7; var slowspd = (speed / 2); var setspeed = speed; var scale = _xscale; var ex = 5; this.gotoAndStop(2); } onClipEvent (enterFrame) { grav++; _y = (_y + grav); if (Key.isDown(65)) { setspeed = wlk; } else { setspeed = run; } while (_root.ground.hitTest(_x, _y, true)) { djump = false; tjump = false; _y = (_y-1); grav = 0; } if (_root.water.hitTest(_x, _y, true)) { grav = grav * (slow * 1.25); speed = slowspd; } else { speed = setspeed; } if (Key.isDown(39)) { _x = (_x + speed); _xscale = scale; if (_root.ground.hitTest(_x, _y + 3, true)) { this.gotoAndStop(1); } else if (djump == false) { this.gotoAndStop(2); } else if (tjump == false) { this.gotoAndStop(4); } else { this.gotoAndStop(5); } } else if (Key.isDown(37)) { _x = (_x - speed); _xscale = (-scale); if (_root.ground.hitTest(_x, _y + 3, true)) { this.gotoAndStop(1); } else if (djump == false) { this.gotoAndStop(2); } else if (tjump == false) { this.gotoAndStop(4); } else { this.gotoAndStop(5); } } else if ((_root.ground.hitTest(_x, _y + 3, true) && (!Key.isDown(68))) && (!Key.isDown(83))) { this.gotoAndStop(3); } if (((((Key.isDown(68) && (!Key.isDown(38))) && (!Key.isDown(39))) && (!Key.isDown(37))) && (!Key.isDown(83))) && (_root.ground.hitTest(_x, _y + 3, true))) { this.gotoAndStop(8); } if ((((((Key.isDown(83) && (!Key.isDown(39))) && (!Key.isDown(37))) && (!Key.isDown(38))) && (!Key.isDown(68))) && (_root.ground.hitTest(_x, _y + 3, true))) && (_currentframe != 6)) { this.gotoAndStop(7); } else if (Key.isDown(83) && (grav > 1)) { this.gotoAndStop(6); } if ((_root.ground.hitTest((_x + (_width / 2)) + ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - _height, true))) { _x = (_x - speed); } if ((_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - _height, true))) { _x = (_x + speed); } if (_root.ground.hitTest(_x, (_y - _height) - 15, true)) { grav = 1; } }
Frame 693
stop();
Instance of Symbol 241 MovieClip in Frame 693
onClipEvent (enterFrame) { if (_level0.used62 == 1) { this.gotoAndStop(51); } if (this.hitTest(_root.player)) { if (_level0.used62 == 2) { _level0.used62 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used62 == 2) { _level0.used62 = 1; if (_level0.ppfocus == 18) { if (_level0.used52 == 2) { _level0.ppfocus = 0; _level0.used52 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 19) { if (_level0.used53 == 2) { _level0.ppfocus = 0; _level0.used53 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 20) { if (_level0.used54 == 2) { _level0.ppfocus = 0; _level0.used54 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 21) { if (_level0.used55 == 2) { _level0.ppfocus = 0; _level0.used55 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 22) { if (_level0.used56 == 2) { _level0.ppfocus = 0; _level0.used56 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 23) { if (_level0.used57 == 2) { _level0.ppfocus = 0; _level0.used57 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 24) { if (_level0.used58 == 2) { _level0.ppfocus = 0; _level0.used58 = 3; _level0.popupp.gotoAndPlay(17); } } _root.score = _root.score + 100; _root.gotoAndPlay("L6MF6"); } } }
Instance of Symbol 577 MovieClip in Frame 693
onClipEvent (enterFrame) { if (_level0.used59 == 1) { _level0.used59 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used59 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used59 == 2) { _level0.used59 = 1; if (_level0.ppfocus == 18) { if (_level0.used52 == 2) { _level0.ppfocus = 0; _level0.used52 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 19) { if (_level0.used53 == 2) { _level0.ppfocus = 0; _level0.used53 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 20) { if (_level0.used54 == 2) { _level0.ppfocus = 0; _level0.used54 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 21) { if (_level0.used55 == 2) { _level0.ppfocus = 0; _level0.used55 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 22) { if (_level0.used56 == 2) { _level0.ppfocus = 0; _level0.used56 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 23) { if (_level0.used57 == 2) { _level0.ppfocus = 0; _level0.used57 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 24) { if (_level0.used58 == 2) { _level0.ppfocus = 0; _level0.used58 = 3; _level0.popupp.gotoAndPlay(17); } } _root.ground.gotoAndStop(2); _root.gotoAndPlay("L6MF2"); } } }
Instance of Symbol 578 MovieClip in Frame 693
onClipEvent (enterFrame) { if (_level0.used61 == 1) { _level0.used61 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used61 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used61 == 2) { _level0.used61 = 1; if (_level0.ppfocus == 18) { if (_level0.used52 == 2) { _level0.ppfocus = 0; _level0.used52 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 19) { if (_level0.used53 == 2) { _level0.ppfocus = 0; _level0.used53 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 20) { if (_level0.used54 == 2) { _level0.ppfocus = 0; _level0.used54 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 21) { if (_level0.used55 == 2) { _level0.ppfocus = 0; _level0.used55 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 22) { if (_level0.used56 == 2) { _level0.ppfocus = 0; _level0.used56 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 23) { if (_level0.used57 == 2) { _level0.ppfocus = 0; _level0.used57 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 24) { if (_level0.used58 == 2) { _level0.ppfocus = 0; _level0.used58 = 3; _level0.popupp.gotoAndPlay(17); } } _root.gotoAndPlay("L6MF4"); } } }
Instance of Symbol 368 MovieClip in Frame 693
onClipEvent (enterFrame) { if (_level0.used63 == 1) { _level0.used63 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used63 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used63 == 2) { _level0.used63 = 1; if (_level0.ppfocus == 18) { if (_level0.used52 == 2) { _level0.ppfocus = 0; _level0.used52 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 19) { if (_level0.used53 == 2) { _level0.ppfocus = 0; _level0.used53 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 20) { if (_level0.used54 == 2) { _level0.ppfocus = 0; _level0.used54 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 21) { if (_level0.used55 == 2) { _level0.ppfocus = 0; _level0.used55 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 22) { if (_level0.used56 == 2) { _level0.ppfocus = 0; _level0.used56 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 23) { if (_level0.used57 == 2) { _level0.ppfocus = 0; _level0.used57 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 24) { if (_level0.used58 == 2) { _level0.ppfocus = 0; _level0.used58 = 3; _level0.popupp.gotoAndPlay(17); } } _root.gotoAndPlay("L6MF8"); } } }
Instance of Symbol 547 MovieClip in Frame 693
onClipEvent (enterFrame) { if (_level0.used66 == 1) { this.gotoAndStop(51); } if (this.hitTest(_root.player)) { if (_level0.used66 == 2) { _level0.used66 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used66 == 2) { _level0.used66 = 1; if (_level0.ppfocus == 18) { if (_level0.used52 == 2) { _level0.ppfocus = 0; _level0.used52 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 19) { if (_level0.used53 == 2) { _level0.ppfocus = 0; _level0.used53 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 20) { if (_level0.used54 == 2) { _level0.ppfocus = 0; _level0.used54 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 21) { if (_level0.used55 == 2) { _level0.ppfocus = 0; _level0.used55 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 22) { if (_level0.used56 == 2) { _level0.ppfocus = 0; _level0.used56 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 23) { if (_level0.used57 == 2) { _level0.ppfocus = 0; _level0.used57 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 24) { if (_level0.used58 == 2) { _level0.ppfocus = 0; _level0.used58 = 3; _level0.popupp.gotoAndPlay(17); } } _root.score = _root.score + 100; _root.gotoAndPlay("L6MF14"); } } }
Frame 708
stop();
Instance of Symbol 241 MovieClip in Frame 708
onClipEvent (enterFrame) { if (_level0.used62 == 1) { this.gotoAndStop(51); } if (this.hitTest(_root.player)) { if (_level0.used62 == 2) { _level0.used62 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used62 == 2) { _level0.used62 = 1; if (_level0.ppfocus == 18) { if (_level0.used52 == 2) { _level0.ppfocus = 0; _level0.used52 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 19) { if (_level0.used53 == 2) { _level0.ppfocus = 0; _level0.used53 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 20) { if (_level0.used54 == 2) { _level0.ppfocus = 0; _level0.used54 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 21) { if (_level0.used55 == 2) { _level0.ppfocus = 0; _level0.used55 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 22) { if (_level0.used56 == 2) { _level0.ppfocus = 0; _level0.used56 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 23) { if (_level0.used57 == 2) { _level0.ppfocus = 0; _level0.used57 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 24) { if (_level0.used58 == 2) { _level0.ppfocus = 0; _level0.used58 = 3; _level0.popupp.gotoAndPlay(17); } } _root.score = _root.score + 100; _root.gotoAndPlay("L6MF6"); } } }
Instance of Symbol 577 MovieClip in Frame 708
onClipEvent (enterFrame) { if (_level0.used59 == 1) { _level0.used59 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used59 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used59 == 2) { _level0.used59 = 1; if (_level0.ppfocus == 18) { if (_level0.used52 == 2) { _level0.ppfocus = 0; _level0.used52 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 19) { if (_level0.used53 == 2) { _level0.ppfocus = 0; _level0.used53 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 20) { if (_level0.used54 == 2) { _level0.ppfocus = 0; _level0.used54 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 21) { if (_level0.used55 == 2) { _level0.ppfocus = 0; _level0.used55 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 22) { if (_level0.used56 == 2) { _level0.ppfocus = 0; _level0.used56 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 23) { if (_level0.used57 == 2) { _level0.ppfocus = 0; _level0.used57 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 24) { if (_level0.used58 == 2) { _level0.ppfocus = 0; _level0.used58 = 3; _level0.popupp.gotoAndPlay(17); } } _root.ground.gotoAndStop(2); _root.gotoAndPlay("L6MF2"); } } }
Instance of Symbol 578 MovieClip in Frame 708
onClipEvent (enterFrame) { if (_level0.used61 == 1) { _level0.used61 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used61 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used61 == 2) { _level0.used61 = 1; if (_level0.ppfocus == 18) { if (_level0.used52 == 2) { _level0.ppfocus = 0; _level0.used52 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 19) { if (_level0.used53 == 2) { _level0.ppfocus = 0; _level0.used53 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 20) { if (_level0.used54 == 2) { _level0.ppfocus = 0; _level0.used54 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 21) { if (_level0.used55 == 2) { _level0.ppfocus = 0; _level0.used55 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 22) { if (_level0.used56 == 2) { _level0.ppfocus = 0; _level0.used56 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 23) { if (_level0.used57 == 2) { _level0.ppfocus = 0; _level0.used57 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 24) { if (_level0.used58 == 2) { _level0.ppfocus = 0; _level0.used58 = 3; _level0.popupp.gotoAndPlay(17); } } _root.gotoAndPlay("L6MF4"); } } }
Instance of Symbol 368 MovieClip in Frame 708
onClipEvent (enterFrame) { if (_level0.used63 == 1) { _level0.used63 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used63 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used63 == 2) { _level0.used63 = 1; if (_level0.ppfocus == 18) { if (_level0.used52 == 2) { _level0.ppfocus = 0; _level0.used52 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 19) { if (_level0.used53 == 2) { _level0.ppfocus = 0; _level0.used53 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 20) { if (_level0.used54 == 2) { _level0.ppfocus = 0; _level0.used54 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 21) { if (_level0.used55 == 2) { _level0.ppfocus = 0; _level0.used55 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 22) { if (_level0.used56 == 2) { _level0.ppfocus = 0; _level0.used56 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 23) { if (_level0.used57 == 2) { _level0.ppfocus = 0; _level0.used57 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 24) { if (_level0.used58 == 2) { _level0.ppfocus = 0; _level0.used58 = 3; _level0.popupp.gotoAndPlay(17); } } _root.gotoAndPlay("L6MF8"); } } }
Instance of Symbol 237 MovieClip in Frame 708
onClipEvent (enterFrame) { if (_level0.used64 == 1) { _level0.used64 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used64 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used64 == 2) { this.gotoAndStop(51); _root.gotoAndStop("L6MF11"); } } }
Instance of Symbol 547 MovieClip in Frame 708
onClipEvent (enterFrame) { if (_level0.used66 == 1) { this.gotoAndStop(51); } if (this.hitTest(_root.player)) { if (_level0.used66 == 2) { _level0.used66 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used66 == 2) { _level0.used66 = 1; if (_level0.ppfocus == 18) { if (_level0.used52 == 2) { _level0.ppfocus = 0; _level0.used52 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 19) { if (_level0.used53 == 2) { _level0.ppfocus = 0; _level0.used53 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 20) { if (_level0.used54 == 2) { _level0.ppfocus = 0; _level0.used54 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 21) { if (_level0.used55 == 2) { _level0.ppfocus = 0; _level0.used55 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 22) { if (_level0.used56 == 2) { _level0.ppfocus = 0; _level0.used56 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 23) { if (_level0.used57 == 2) { _level0.ppfocus = 0; _level0.used57 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 24) { if (_level0.used58 == 2) { _level0.ppfocus = 0; _level0.used58 = 3; _level0.popupp.gotoAndPlay(17); } } _root.score = _root.score + 100; _root.gotoAndPlay("L6MF14"); } } }
Instance of Symbol 414 MovieClip in Frame 708
onClipEvent (enterFrame) { if (_level0.used56 == 3) { _level0.used56 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used56 = 3; } } if (_level0.used56 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used56 == 2) { _level0.ppfocus = 22; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 424 MovieClip in Frame 708
onClipEvent (enterFrame) { if (_level0.used58 == 3) { _level0.used58 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used58 = 3; } } if (_level0.used58 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used58 == 2) { _level0.ppfocus = 24; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 472 MovieClip in Frame 708
onClipEvent (enterFrame) { if (_level0.used57 == 3) { _level0.used57 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used57 = 3; } } if (_level0.used57 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used57 == 2) { _level0.ppfocus = 23; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 343 MovieClip in Frame 708
onClipEvent (enterFrame) { if (_level0.used55 == 3) { _level0.used55 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used55 = 3; } } if (_level0.used55 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used55 == 2) { _level0.ppfocus = 21; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 492 MovieClip in Frame 708
onClipEvent (enterFrame) { if (_level0.used54 == 3) { _level0.used54 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used54 = 3; } } if (_level0.used54 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used54 == 2) { _level0.ppfocus = 20; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 487 MovieClip in Frame 708
onClipEvent (enterFrame) { if (_level0.used52 == 3) { _level0.used52 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used52 = 3; } } if (_level0.used52 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used52 == 2) { _level0.ppfocus = 18; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 221 MovieClip in Frame 708
onClipEvent (enterFrame) { if (_level0.used53 == 3) { _level0.used53 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used53 = 3; } } if (_level0.used53 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used53 == 2) { _level0.ppfocus = 19; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 50 MovieClip "player" in Frame 708
onClipEvent (load) { var grav = 0; var run = 7; var wlk = 2.5; var speed = run; var jumpHeight = 10; var dbl = 0; var tri = 0; var djump = false; var tjump = false; var thro = false; var slow = 0.7; var slowspd = (speed / 2); var setspeed = speed; var scale = _xscale; var ex = 5; this.gotoAndStop(2); } onClipEvent (enterFrame) { grav++; _y = (_y + grav); if (Key.isDown(65)) { setspeed = wlk; } else { setspeed = run; } while (_root.ground.hitTest(_x, _y, true)) { djump = false; tjump = false; _y = (_y-1); grav = 0; } if (_root.water.hitTest(_x, _y, true)) { grav = grav * (slow * 1.25); speed = slowspd; } else { speed = setspeed; } if (Key.isDown(39)) { _x = (_x + speed); _xscale = scale; if (_root.ground.hitTest(_x, _y + 3, true)) { this.gotoAndStop(1); } else if (djump == false) { this.gotoAndStop(2); } else if (tjump == false) { this.gotoAndStop(4); } else { this.gotoAndStop(5); } } else if (Key.isDown(37)) { _x = (_x - speed); _xscale = (-scale); if (_root.ground.hitTest(_x, _y + 3, true)) { this.gotoAndStop(1); } else if (djump == false) { this.gotoAndStop(2); } else if (tjump == false) { this.gotoAndStop(4); } else { this.gotoAndStop(5); } } else if ((_root.ground.hitTest(_x, _y + 3, true) && (!Key.isDown(68))) && (!Key.isDown(83))) { this.gotoAndStop(3); } if (((((Key.isDown(68) && (!Key.isDown(38))) && (!Key.isDown(39))) && (!Key.isDown(37))) && (!Key.isDown(83))) && (_root.ground.hitTest(_x, _y + 3, true))) { this.gotoAndStop(8); } if ((((((Key.isDown(83) && (!Key.isDown(39))) && (!Key.isDown(37))) && (!Key.isDown(38))) && (!Key.isDown(68))) && (_root.ground.hitTest(_x, _y + 3, true))) && (_currentframe != 6)) { this.gotoAndStop(7); } else if (Key.isDown(83) && (grav > 1)) { this.gotoAndStop(6); } if ((_root.ground.hitTest((_x + (_width / 2)) + ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - _height, true))) { _x = (_x - speed); } if ((_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - _height, true))) { _x = (_x + speed); } if (_root.ground.hitTest(_x, (_y - _height) - 15, true)) { grav = 1; } }
Frame 709
if (_level0.ppfocus == 18) { if (_level0.used52 == 2) { _level0.ppfocus = 0; _level0.used52 = 3; _level0.quiz4ready = 2; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 19) { if (_level0.used53 == 2) { _level0.ppfocus = 0; _level0.used53 = 3; _level0.quiz4ready = 2; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 20) { if (_level0.used54 == 2) { _level0.ppfocus = 0; _level0.used54 = 3; _level0.quiz4ready = 2; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 21) { if (_level0.used55 == 2) { _level0.ppfocus = 0; _level0.used55 = 3; _level0.quiz4ready = 2; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 22) { if (_level0.used56 == 2) { _level0.ppfocus = 0; _level0.used56 = 3; _level0.quiz4ready = 2; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 23) { if (_level0.used57 == 2) { _level0.ppfocus = 0; _level0.used57 = 3; _level0.quiz4ready = 2; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 24) { if (_level0.used58 == 2) { _level0.ppfocus = 0; _level0.used58 = 3; _level0.quiz4ready = 2; _level0.popupp.gotoAndPlay(17); } } if (_level0.quiz4ready == 1) { _level0.popupp.gotoAndPlay(31); }
Frame 724
stop();
Instance of Symbol 241 MovieClip in Frame 724
onClipEvent (enterFrame) { if (_level0.used62 == 1) { this.gotoAndStop(51); } if (this.hitTest(_root.player)) { if (_level0.used62 == 2) { _level0.used62 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used62 == 2) { _level0.used62 = 1; if (_level0.ppfocus == 18) { if (_level0.used52 == 2) { _level0.ppfocus = 0; _level0.used52 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 19) { if (_level0.used53 == 2) { _level0.ppfocus = 0; _level0.used53 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 20) { if (_level0.used54 == 2) { _level0.ppfocus = 0; _level0.used54 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 21) { if (_level0.used55 == 2) { _level0.ppfocus = 0; _level0.used55 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 22) { if (_level0.used56 == 2) { _level0.ppfocus = 0; _level0.used56 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 23) { if (_level0.used57 == 2) { _level0.ppfocus = 0; _level0.used57 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 24) { if (_level0.used58 == 2) { _level0.ppfocus = 0; _level0.used58 = 3; _level0.popupp.gotoAndPlay(17); } } _root.score = _root.score + 100; _root.gotoAndPlay("L6MF6"); } } }
Instance of Symbol 577 MovieClip in Frame 724
onClipEvent (enterFrame) { if (_level0.used59 == 1) { _level0.used59 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used59 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used59 == 2) { _level0.used59 = 1; if (_level0.ppfocus == 18) { if (_level0.used52 == 2) { _level0.ppfocus = 0; _level0.used52 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 19) { if (_level0.used53 == 2) { _level0.ppfocus = 0; _level0.used53 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 20) { if (_level0.used54 == 2) { _level0.ppfocus = 0; _level0.used54 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 21) { if (_level0.used55 == 2) { _level0.ppfocus = 0; _level0.used55 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 22) { if (_level0.used56 == 2) { _level0.ppfocus = 0; _level0.used56 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 23) { if (_level0.used57 == 2) { _level0.ppfocus = 0; _level0.used57 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 24) { if (_level0.used58 == 2) { _level0.ppfocus = 0; _level0.used58 = 3; _level0.popupp.gotoAndPlay(17); } } _root.ground.gotoAndStop(2); _root.gotoAndPlay("L6MF2"); } } }
Instance of Symbol 578 MovieClip in Frame 724
onClipEvent (enterFrame) { if (_level0.used61 == 1) { _level0.used61 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used61 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used61 == 2) { _level0.used61 = 1; if (_level0.ppfocus == 18) { if (_level0.used52 == 2) { _level0.ppfocus = 0; _level0.used52 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 19) { if (_level0.used53 == 2) { _level0.ppfocus = 0; _level0.used53 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 20) { if (_level0.used54 == 2) { _level0.ppfocus = 0; _level0.used54 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 21) { if (_level0.used55 == 2) { _level0.ppfocus = 0; _level0.used55 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 22) { if (_level0.used56 == 2) { _level0.ppfocus = 0; _level0.used56 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 23) { if (_level0.used57 == 2) { _level0.ppfocus = 0; _level0.used57 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 24) { if (_level0.used58 == 2) { _level0.ppfocus = 0; _level0.used58 = 3; _level0.popupp.gotoAndPlay(17); } } _root.gotoAndPlay("L6MF4"); } } }
Instance of Symbol 366 MovieClip in Frame 724
onClipEvent (enterFrame) { if (_level0.used65 == 1) { _level0.used65 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used65 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used65 == 2) { _level0.used65 = 1; if (_level0.ppfocus == 18) { if (_level0.used52 == 2) { _level0.ppfocus = 0; _level0.used52 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 19) { if (_level0.used53 == 2) { _level0.ppfocus = 0; _level0.used53 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 20) { if (_level0.used54 == 2) { _level0.ppfocus = 0; _level0.used54 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 21) { if (_level0.used55 == 2) { _level0.ppfocus = 0; _level0.used55 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 22) { if (_level0.used56 == 2) { _level0.ppfocus = 0; _level0.used56 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 23) { if (_level0.used57 == 2) { _level0.ppfocus = 0; _level0.used57 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 24) { if (_level0.used58 == 2) { _level0.ppfocus = 0; _level0.used58 = 3; _level0.popupp.gotoAndPlay(17); } } _root.gotoAndPlay("L6MF13"); } } }
Instance of Symbol 237 MovieClip in Frame 724
onClipEvent (enterFrame) { if (_level0.used64 == 1) { _level0.used64 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used64 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used64 == 2) { this.gotoAndStop(51); _root.gotoAndStop("L6MF11"); } } }
Instance of Symbol 547 MovieClip in Frame 724
onClipEvent (enterFrame) { if (_level0.used66 == 1) { this.gotoAndStop(51); } if (this.hitTest(_root.player)) { if (_level0.used66 == 2) { _level0.used66 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used66 == 2) { _level0.used66 = 1; if (_level0.ppfocus == 18) { if (_level0.used52 == 2) { _level0.ppfocus = 0; _level0.used52 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 19) { if (_level0.used53 == 2) { _level0.ppfocus = 0; _level0.used53 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 20) { if (_level0.used54 == 2) { _level0.ppfocus = 0; _level0.used54 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 21) { if (_level0.used55 == 2) { _level0.ppfocus = 0; _level0.used55 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 22) { if (_level0.used56 == 2) { _level0.ppfocus = 0; _level0.used56 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 23) { if (_level0.used57 == 2) { _level0.ppfocus = 0; _level0.used57 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 24) { if (_level0.used58 == 2) { _level0.ppfocus = 0; _level0.used58 = 3; _level0.popupp.gotoAndPlay(17); } } _root.score = _root.score + 100; _root.gotoAndPlay("L6MF14"); } } }
Instance of Symbol 414 MovieClip in Frame 724
onClipEvent (enterFrame) { if (_level0.used56 == 3) { _level0.used56 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used56 = 3; } } if (_level0.used56 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used56 == 2) { _level0.ppfocus = 22; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 424 MovieClip in Frame 724
onClipEvent (enterFrame) { if (_level0.used58 == 3) { _level0.used58 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used58 = 3; } } if (_level0.used58 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used58 == 2) { _level0.ppfocus = 24; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 472 MovieClip in Frame 724
onClipEvent (enterFrame) { if (_level0.used57 == 3) { _level0.used57 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used57 = 3; } } if (_level0.used57 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used57 == 2) { _level0.ppfocus = 23; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 343 MovieClip in Frame 724
onClipEvent (enterFrame) { if (_level0.used55 == 3) { _level0.used55 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used55 = 3; } } if (_level0.used55 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used55 == 2) { _level0.ppfocus = 21; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 492 MovieClip in Frame 724
onClipEvent (enterFrame) { if (_level0.used54 == 3) { _level0.used54 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used54 = 3; } } if (_level0.used54 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used54 == 2) { _level0.ppfocus = 20; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 487 MovieClip in Frame 724
onClipEvent (enterFrame) { if (_level0.used52 == 3) { _level0.used52 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used52 = 3; } } if (_level0.used52 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used52 == 2) { _level0.ppfocus = 18; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 221 MovieClip in Frame 724
onClipEvent (enterFrame) { if (_level0.used53 == 3) { _level0.used53 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used53 = 3; } } if (_level0.used53 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used53 == 2) { _level0.ppfocus = 19; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 50 MovieClip "player" in Frame 724
onClipEvent (load) { var grav = 0; var run = 7; var wlk = 2.5; var speed = run; var jumpHeight = 10; var dbl = 0; var tri = 0; var djump = false; var tjump = false; var thro = false; var slow = 0.7; var slowspd = (speed / 2); var setspeed = speed; var scale = _xscale; var ex = 5; this.gotoAndStop(2); } onClipEvent (enterFrame) { grav++; _y = (_y + grav); if (Key.isDown(65)) { setspeed = wlk; } else { setspeed = run; } while (_root.ground.hitTest(_x, _y, true)) { djump = false; tjump = false; _y = (_y-1); grav = 0; } if (_root.water.hitTest(_x, _y, true)) { grav = grav * (slow * 1.25); speed = slowspd; } else { speed = setspeed; } if (Key.isDown(39)) { _x = (_x + speed); _xscale = scale; if (_root.ground.hitTest(_x, _y + 3, true)) { this.gotoAndStop(1); } else if (djump == false) { this.gotoAndStop(2); } else if (tjump == false) { this.gotoAndStop(4); } else { this.gotoAndStop(5); } } else if (Key.isDown(37)) { _x = (_x - speed); _xscale = (-scale); if (_root.ground.hitTest(_x, _y + 3, true)) { this.gotoAndStop(1); } else if (djump == false) { this.gotoAndStop(2); } else if (tjump == false) { this.gotoAndStop(4); } else { this.gotoAndStop(5); } } else if ((_root.ground.hitTest(_x, _y + 3, true) && (!Key.isDown(68))) && (!Key.isDown(83))) { this.gotoAndStop(3); } if (((((Key.isDown(68) && (!Key.isDown(38))) && (!Key.isDown(39))) && (!Key.isDown(37))) && (!Key.isDown(83))) && (_root.ground.hitTest(_x, _y + 3, true))) { this.gotoAndStop(8); } if ((((((Key.isDown(83) && (!Key.isDown(39))) && (!Key.isDown(37))) && (!Key.isDown(38))) && (!Key.isDown(68))) && (_root.ground.hitTest(_x, _y + 3, true))) && (_currentframe != 6)) { this.gotoAndStop(7); } else if (Key.isDown(83) && (grav > 1)) { this.gotoAndStop(6); } if ((_root.ground.hitTest((_x + (_width / 2)) + ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - _height, true))) { _x = (_x - speed); } if ((_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - _height, true))) { _x = (_x + speed); } if (_root.ground.hitTest(_x, (_y - _height) - 15, true)) { grav = 1; } }
Frame 739
stop();
Instance of Symbol 241 MovieClip in Frame 739
onClipEvent (enterFrame) { if (_level0.used62 == 1) { this.gotoAndStop(51); } if (this.hitTest(_root.player)) { if (_level0.used62 == 2) { _level0.used62 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used62 == 2) { _level0.used62 = 1; if (_level0.ppfocus == 18) { if (_level0.used52 == 2) { _level0.ppfocus = 0; _level0.used52 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 19) { if (_level0.used53 == 2) { _level0.ppfocus = 0; _level0.used53 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 20) { if (_level0.used54 == 2) { _level0.ppfocus = 0; _level0.used54 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 21) { if (_level0.used55 == 2) { _level0.ppfocus = 0; _level0.used55 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 22) { if (_level0.used56 == 2) { _level0.ppfocus = 0; _level0.used56 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 23) { if (_level0.used57 == 2) { _level0.ppfocus = 0; _level0.used57 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 24) { if (_level0.used58 == 2) { _level0.ppfocus = 0; _level0.used58 = 3; _level0.popupp.gotoAndPlay(17); } } _root.score = _root.score + 100; _root.gotoAndPlay("L6MF6"); } } }
Instance of Symbol 577 MovieClip in Frame 739
onClipEvent (enterFrame) { if (_level0.used59 == 1) { _level0.used59 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used59 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used59 == 2) { _level0.used59 = 1; if (_level0.ppfocus == 18) { if (_level0.used52 == 2) { _level0.ppfocus = 0; _level0.used52 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 19) { if (_level0.used53 == 2) { _level0.ppfocus = 0; _level0.used53 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 20) { if (_level0.used54 == 2) { _level0.ppfocus = 0; _level0.used54 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 21) { if (_level0.used55 == 2) { _level0.ppfocus = 0; _level0.used55 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 22) { if (_level0.used56 == 2) { _level0.ppfocus = 0; _level0.used56 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 23) { if (_level0.used57 == 2) { _level0.ppfocus = 0; _level0.used57 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 24) { if (_level0.used58 == 2) { _level0.ppfocus = 0; _level0.used58 = 3; _level0.popupp.gotoAndPlay(17); } } _root.ground.gotoAndStop(2); _root.gotoAndPlay("L6MF2"); } } }
Instance of Symbol 578 MovieClip in Frame 739
onClipEvent (enterFrame) { if (_level0.used61 == 1) { _level0.used61 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used61 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used61 == 2) { _level0.used61 = 1; if (_level0.ppfocus == 18) { if (_level0.used52 == 2) { _level0.ppfocus = 0; _level0.used52 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 19) { if (_level0.used53 == 2) { _level0.ppfocus = 0; _level0.used53 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 20) { if (_level0.used54 == 2) { _level0.ppfocus = 0; _level0.used54 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 21) { if (_level0.used55 == 2) { _level0.ppfocus = 0; _level0.used55 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 22) { if (_level0.used56 == 2) { _level0.ppfocus = 0; _level0.used56 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 23) { if (_level0.used57 == 2) { _level0.ppfocus = 0; _level0.used57 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 24) { if (_level0.used58 == 2) { _level0.ppfocus = 0; _level0.used58 = 3; _level0.popupp.gotoAndPlay(17); } } _root.gotoAndPlay("L6MF4"); } } }
Instance of Symbol 368 MovieClip in Frame 739
onClipEvent (enterFrame) { if (_level0.used63 == 1) { _level0.used63 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used63 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used63 == 2) { _level0.used63 = 1; if (_level0.ppfocus == 18) { if (_level0.used52 == 2) { _level0.ppfocus = 0; _level0.used52 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 19) { if (_level0.used53 == 2) { _level0.ppfocus = 0; _level0.used53 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 20) { if (_level0.used54 == 2) { _level0.ppfocus = 0; _level0.used54 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 21) { if (_level0.used55 == 2) { _level0.ppfocus = 0; _level0.used55 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 22) { if (_level0.used56 == 2) { _level0.ppfocus = 0; _level0.used56 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 23) { if (_level0.used57 == 2) { _level0.ppfocus = 0; _level0.used57 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 24) { if (_level0.used58 == 2) { _level0.ppfocus = 0; _level0.used58 = 3; _level0.popupp.gotoAndPlay(17); } } _root.gotoAndPlay("L6MF8"); } } }
Instance of Symbol 350 MovieClip in Frame 739
onClipEvent (enterFrame) { if (_level0.used68 == 1) { _level0.used68 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used68 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used68 == 2) { this.gotoAndStop(51); _root.gotoAndStop("L6MF15"); } } }
Instance of Symbol 547 MovieClip in Frame 739
onClipEvent (enterFrame) { if (_level0.used66 == 1) { this.gotoAndStop(51); } if (this.hitTest(_root.player)) { if (_level0.used66 == 2) { _level0.used66 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used66 == 2) { _level0.used66 = 1; if (_level0.ppfocus == 18) { if (_level0.used52 == 2) { _level0.ppfocus = 0; _level0.used52 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 19) { if (_level0.used53 == 2) { _level0.ppfocus = 0; _level0.used53 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 20) { if (_level0.used54 == 2) { _level0.ppfocus = 0; _level0.used54 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 21) { if (_level0.used55 == 2) { _level0.ppfocus = 0; _level0.used55 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 22) { if (_level0.used56 == 2) { _level0.ppfocus = 0; _level0.used56 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 23) { if (_level0.used57 == 2) { _level0.ppfocus = 0; _level0.used57 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 24) { if (_level0.used58 == 2) { _level0.ppfocus = 0; _level0.used58 = 3; _level0.popupp.gotoAndPlay(17); } } _root.score = _root.score + 100; _root.gotoAndPlay("L6MF14"); } } }
Instance of Symbol 414 MovieClip in Frame 739
onClipEvent (enterFrame) { if (_level0.used56 == 3) { _level0.used56 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used56 = 3; } } if (_level0.used56 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used56 == 2) { _level0.ppfocus = 22; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 424 MovieClip in Frame 739
onClipEvent (enterFrame) { if (_level0.used58 == 3) { _level0.used58 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used58 = 3; } } if (_level0.used58 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used58 == 2) { _level0.ppfocus = 24; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 472 MovieClip in Frame 739
onClipEvent (enterFrame) { if (_level0.used57 == 3) { _level0.used57 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used57 = 3; } } if (_level0.used57 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used57 == 2) { _level0.ppfocus = 23; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 343 MovieClip in Frame 739
onClipEvent (enterFrame) { if (_level0.used55 == 3) { _level0.used55 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used55 = 3; } } if (_level0.used55 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used55 == 2) { _level0.ppfocus = 21; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 492 MovieClip in Frame 739
onClipEvent (enterFrame) { if (_level0.used54 == 3) { _level0.used54 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used54 = 3; } } if (_level0.used54 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used54 == 2) { _level0.ppfocus = 20; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 487 MovieClip in Frame 739
onClipEvent (enterFrame) { if (_level0.used52 == 3) { _level0.used52 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used52 = 3; } } if (_level0.used52 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used52 == 2) { _level0.ppfocus = 18; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 221 MovieClip in Frame 739
onClipEvent (enterFrame) { if (_level0.used53 == 3) { _level0.used53 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used53 = 3; } } if (_level0.used53 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used53 == 2) { _level0.ppfocus = 19; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 50 MovieClip "player" in Frame 739
onClipEvent (load) { var grav = 0; var run = 7; var wlk = 2.5; var speed = run; var jumpHeight = 10; var dbl = 0; var tri = 0; var djump = false; var tjump = false; var thro = false; var slow = 0.7; var slowspd = (speed / 2); var setspeed = speed; var scale = _xscale; var ex = 5; this.gotoAndStop(2); } onClipEvent (enterFrame) { grav++; _y = (_y + grav); if (Key.isDown(65)) { setspeed = wlk; } else { setspeed = run; } while (_root.ground.hitTest(_x, _y, true)) { djump = false; tjump = false; _y = (_y-1); grav = 0; } if (_root.water.hitTest(_x, _y, true)) { grav = grav * (slow * 1.25); speed = slowspd; } else { speed = setspeed; } if (Key.isDown(39)) { _x = (_x + speed); _xscale = scale; if (_root.ground.hitTest(_x, _y + 3, true)) { this.gotoAndStop(1); } else if (djump == false) { this.gotoAndStop(2); } else if (tjump == false) { this.gotoAndStop(4); } else { this.gotoAndStop(5); } } else if (Key.isDown(37)) { _x = (_x - speed); _xscale = (-scale); if (_root.ground.hitTest(_x, _y + 3, true)) { this.gotoAndStop(1); } else if (djump == false) { this.gotoAndStop(2); } else if (tjump == false) { this.gotoAndStop(4); } else { this.gotoAndStop(5); } } else if ((_root.ground.hitTest(_x, _y + 3, true) && (!Key.isDown(68))) && (!Key.isDown(83))) { this.gotoAndStop(3); } if (((((Key.isDown(68) && (!Key.isDown(38))) && (!Key.isDown(39))) && (!Key.isDown(37))) && (!Key.isDown(83))) && (_root.ground.hitTest(_x, _y + 3, true))) { this.gotoAndStop(8); } if ((((((Key.isDown(83) && (!Key.isDown(39))) && (!Key.isDown(37))) && (!Key.isDown(38))) && (!Key.isDown(68))) && (_root.ground.hitTest(_x, _y + 3, true))) && (_currentframe != 6)) { this.gotoAndStop(7); } else if (Key.isDown(83) && (grav > 1)) { this.gotoAndStop(6); } if ((_root.ground.hitTest((_x + (_width / 2)) + ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - _height, true))) { _x = (_x - speed); } if ((_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - _height, true))) { _x = (_x + speed); } if (_root.ground.hitTest(_x, (_y - _height) - 15, true)) { grav = 1; } }
Frame 754
stop();
Instance of Symbol 241 MovieClip in Frame 754
onClipEvent (enterFrame) { if (_level0.used62 == 1) { this.gotoAndStop(51); } if (this.hitTest(_root.player)) { if (_level0.used62 == 2) { _level0.used62 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used62 == 2) { _level0.used62 = 1; if (_level0.ppfocus == 18) { if (_level0.used52 == 2) { _level0.ppfocus = 0; _level0.used52 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 19) { if (_level0.used53 == 2) { _level0.ppfocus = 0; _level0.used53 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 20) { if (_level0.used54 == 2) { _level0.ppfocus = 0; _level0.used54 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 21) { if (_level0.used55 == 2) { _level0.ppfocus = 0; _level0.used55 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 22) { if (_level0.used56 == 2) { _level0.ppfocus = 0; _level0.used56 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 23) { if (_level0.used57 == 2) { _level0.ppfocus = 0; _level0.used57 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 24) { if (_level0.used58 == 2) { _level0.ppfocus = 0; _level0.used58 = 3; _level0.popupp.gotoAndPlay(17); } } _root.gotoAndPlay(""); } } }
Instance of Symbol 349 MovieClip in Frame 754
onClipEvent (enterFrame) { if (_level0.used61 == 1) { _level0.used61 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used61 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used61 == 2) { _level0.used61 = 1; if (_level0.ppfocus == 18) { if (_level0.used52 == 2) { _level0.ppfocus = 0; _level0.used52 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 19) { if (_level0.used53 == 2) { _level0.ppfocus = 0; _level0.used53 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 20) { if (_level0.used54 == 2) { _level0.ppfocus = 0; _level0.used54 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 21) { if (_level0.used55 == 2) { _level0.ppfocus = 0; _level0.used55 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 22) { if (_level0.used56 == 2) { _level0.ppfocus = 0; _level0.used56 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 23) { if (_level0.used57 == 2) { _level0.ppfocus = 0; _level0.used57 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 24) { if (_level0.used58 == 2) { _level0.ppfocus = 0; _level0.used58 = 3; _level0.popupp.gotoAndPlay(17); } } _root.gotoAndPlay(""); } } }
Instance of Symbol 425 MovieClip in Frame 754
onClipEvent (enterFrame) { if (_level0.used60 == 1) { _level0.used60 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used60 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used60 == 2) { _level0.used60 = 1; if (_level0.ppfocus == 18) { if (_level0.used52 == 2) { _level0.ppfocus = 0; _level0.used52 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 19) { if (_level0.used53 == 2) { _level0.ppfocus = 0; _level0.used53 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 20) { if (_level0.used54 == 2) { _level0.ppfocus = 0; _level0.used54 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 21) { if (_level0.used55 == 2) { _level0.ppfocus = 0; _level0.used55 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 22) { if (_level0.used56 == 2) { _level0.ppfocus = 0; _level0.used56 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 23) { if (_level0.used57 == 2) { _level0.ppfocus = 0; _level0.used57 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 24) { if (_level0.used58 == 2) { _level0.ppfocus = 0; _level0.used58 = 3; _level0.popupp.gotoAndPlay(17); } } _root.ground.gotoAndStop(3); _level0.used60sub = 2; _root.gotoAndPlay("L6MF3"); } } }
Instance of Symbol 547 MovieClip in Frame 754
onClipEvent (enterFrame) { if (_level0.used66 == 1) { _level0.used66 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used66 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used66 == 2) { _level0.used66 = 1; if (_level0.ppfocus == 18) { if (_level0.used52 == 2) { _level0.ppfocus = 0; _level0.used52 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 19) { if (_level0.used53 == 2) { _level0.ppfocus = 0; _level0.used53 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 20) { if (_level0.used54 == 2) { _level0.ppfocus = 0; _level0.used54 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 21) { if (_level0.used55 == 2) { _level0.ppfocus = 0; _level0.used55 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 22) { if (_level0.used56 == 2) { _level0.ppfocus = 0; _level0.used56 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 23) { if (_level0.used57 == 2) { _level0.ppfocus = 0; _level0.used57 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 24) { if (_level0.used58 == 2) { _level0.ppfocus = 0; _level0.used58 = 3; _level0.popupp.gotoAndPlay(17); } } _root.score = _root.score + 100; _root.gotoAndPlay("L6MF14"); } } }
Instance of Symbol 414 MovieClip in Frame 754
onClipEvent (enterFrame) { if (_level0.used56 == 3) { _level0.used56 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used56 = 3; } } if (_level0.used56 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used56 == 2) { _level0.ppfocus = 22; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 424 MovieClip in Frame 754
onClipEvent (enterFrame) { if (_level0.used58 == 3) { _level0.used58 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used58 = 3; } } if (_level0.used58 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used58 == 2) { _level0.ppfocus = 24; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 472 MovieClip in Frame 754
onClipEvent (enterFrame) { if (_level0.used57 == 3) { _level0.used57 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used57 = 3; } } if (_level0.used57 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used57 == 2) { _level0.ppfocus = 23; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 343 MovieClip in Frame 754
onClipEvent (enterFrame) { if (_level0.used55 == 3) { _level0.used55 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used55 = 3; } } if (_level0.used55 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used55 == 2) { _level0.ppfocus = 21; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 492 MovieClip in Frame 754
onClipEvent (enterFrame) { if (_level0.used54 == 3) { _level0.used54 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used54 = 3; } } if (_level0.used54 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used54 == 2) { _level0.ppfocus = 20; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 487 MovieClip in Frame 754
onClipEvent (enterFrame) { if (_level0.used52 == 3) { _level0.used52 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used52 = 3; } } if (_level0.used52 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used52 == 2) { _level0.ppfocus = 18; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 221 MovieClip in Frame 754
onClipEvent (enterFrame) { if (_level0.used53 == 3) { _level0.used53 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used53 = 3; } } if (_level0.used53 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used53 == 2) { _level0.ppfocus = 19; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 50 MovieClip "player" in Frame 754
onClipEvent (load) { var grav = 0; var run = 7; var wlk = 2.5; var speed = run; var jumpHeight = 10; var dbl = 0; var tri = 0; var djump = false; var tjump = false; var thro = false; var slow = 0.7; var slowspd = (speed / 2); var setspeed = speed; var scale = _xscale; var ex = 5; this.gotoAndStop(2); } onClipEvent (enterFrame) { grav++; _y = (_y + grav); if (Key.isDown(65)) { setspeed = wlk; } else { setspeed = run; } while (_root.ground.hitTest(_x, _y, true)) { djump = false; tjump = false; _y = (_y-1); grav = 0; } if (_root.water.hitTest(_x, _y, true)) { grav = grav * (slow * 1.25); speed = slowspd; } else { speed = setspeed; } if (Key.isDown(39)) { _x = (_x + speed); _xscale = scale; if (_root.ground.hitTest(_x, _y + 3, true)) { this.gotoAndStop(1); } else if (djump == false) { this.gotoAndStop(2); } else if (tjump == false) { this.gotoAndStop(4); } else { this.gotoAndStop(5); } } else if (Key.isDown(37)) { _x = (_x - speed); _xscale = (-scale); if (_root.ground.hitTest(_x, _y + 3, true)) { this.gotoAndStop(1); } else if (djump == false) { this.gotoAndStop(2); } else if (tjump == false) { this.gotoAndStop(4); } else { this.gotoAndStop(5); } } else if ((_root.ground.hitTest(_x, _y + 3, true) && (!Key.isDown(68))) && (!Key.isDown(83))) { this.gotoAndStop(3); } if (((((Key.isDown(68) && (!Key.isDown(38))) && (!Key.isDown(39))) && (!Key.isDown(37))) && (!Key.isDown(83))) && (_root.ground.hitTest(_x, _y + 3, true))) { this.gotoAndStop(8); } if ((((((Key.isDown(83) && (!Key.isDown(39))) && (!Key.isDown(37))) && (!Key.isDown(38))) && (!Key.isDown(68))) && (_root.ground.hitTest(_x, _y + 3, true))) && (_currentframe != 6)) { this.gotoAndStop(7); } else if (Key.isDown(83) && (grav > 1)) { this.gotoAndStop(6); } if ((_root.ground.hitTest((_x + (_width / 2)) + ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - _height, true))) { _x = (_x - speed); } if ((_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - _height, true))) { _x = (_x + speed); } if (_root.ground.hitTest(_x, (_y - _height) - 15, true)) { grav = 1; } }
Frame 769
stop();
Instance of Symbol 241 MovieClip in Frame 769
onClipEvent (enterFrame) { if (_level0.used62 == 1) { this.gotoAndStop(51); } if (this.hitTest(_root.player)) { if (_level0.used62 == 2) { _level0.used62 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used62 == 2) { _level0.used62 = 1; if (_level0.ppfocus == 18) { if (_level0.used52 == 2) { _level0.ppfocus = 0; _level0.used52 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 19) { if (_level0.used53 == 2) { _level0.ppfocus = 0; _level0.used53 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 20) { if (_level0.used54 == 2) { _level0.ppfocus = 0; _level0.used54 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 21) { if (_level0.used55 == 2) { _level0.ppfocus = 0; _level0.used55 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 22) { if (_level0.used56 == 2) { _level0.ppfocus = 0; _level0.used56 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 23) { if (_level0.used57 == 2) { _level0.ppfocus = 0; _level0.used57 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 24) { if (_level0.used58 == 2) { _level0.ppfocus = 0; _level0.used58 = 3; _level0.popupp.gotoAndPlay(17); } } _root.score = _root.score + 100; _root.gotoAndPlay("L6MF6"); } } }
Instance of Symbol 577 MovieClip in Frame 769
onClipEvent (enterFrame) { if (_level0.used59 == 1) { _level0.used59 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used59 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used59 == 2) { _level0.used59 = 1; if (_level0.ppfocus == 18) { if (_level0.used52 == 2) { _level0.ppfocus = 0; _level0.used52 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 19) { if (_level0.used53 == 2) { _level0.ppfocus = 0; _level0.used53 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 20) { if (_level0.used54 == 2) { _level0.ppfocus = 0; _level0.used54 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 21) { if (_level0.used55 == 2) { _level0.ppfocus = 0; _level0.used55 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 22) { if (_level0.used56 == 2) { _level0.ppfocus = 0; _level0.used56 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 23) { if (_level0.used57 == 2) { _level0.ppfocus = 0; _level0.used57 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 24) { if (_level0.used58 == 2) { _level0.ppfocus = 0; _level0.used58 = 3; _level0.popupp.gotoAndPlay(17); } } _root.ground.gotoAndStop(2); _root.gotoAndPlay("L6MF2"); } } }
Instance of Symbol 578 MovieClip in Frame 769
onClipEvent (enterFrame) { if (_level0.used61 == 1) { _level0.used61 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used61 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used61 == 2) { _level0.used61 = 1; if (_level0.ppfocus == 18) { if (_level0.used52 == 2) { _level0.ppfocus = 0; _level0.used52 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 19) { if (_level0.used53 == 2) { _level0.ppfocus = 0; _level0.used53 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 20) { if (_level0.used54 == 2) { _level0.ppfocus = 0; _level0.used54 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 21) { if (_level0.used55 == 2) { _level0.ppfocus = 0; _level0.used55 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 22) { if (_level0.used56 == 2) { _level0.ppfocus = 0; _level0.used56 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 23) { if (_level0.used57 == 2) { _level0.ppfocus = 0; _level0.used57 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 24) { if (_level0.used58 == 2) { _level0.ppfocus = 0; _level0.used58 = 3; _level0.popupp.gotoAndPlay(17); } } _root.gotoAndPlay("L6MF4"); } } }
Instance of Symbol 368 MovieClip in Frame 769
onClipEvent (enterFrame) { if (_level0.used63 == 1) { _level0.used63 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used63 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used63 == 2) { _level0.used63 = 1; if (_level0.ppfocus == 18) { if (_level0.used52 == 2) { _level0.ppfocus = 0; _level0.used52 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 19) { if (_level0.used53 == 2) { _level0.ppfocus = 0; _level0.used53 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 20) { if (_level0.used54 == 2) { _level0.ppfocus = 0; _level0.used54 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 21) { if (_level0.used55 == 2) { _level0.ppfocus = 0; _level0.used55 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 22) { if (_level0.used56 == 2) { _level0.ppfocus = 0; _level0.used56 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 23) { if (_level0.used57 == 2) { _level0.ppfocus = 0; _level0.used57 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 24) { if (_level0.used58 == 2) { _level0.ppfocus = 0; _level0.used58 = 3; _level0.popupp.gotoAndPlay(17); } } _root.ground.gotoAndStop(4); _root.gotoAndPlay("L6MF8"); } } }
Instance of Symbol 547 MovieClip in Frame 769
onClipEvent (enterFrame) { if (_level0.used66 == 1) { this.gotoAndStop(51); } if (this.hitTest(_root.player)) { if (_level0.used66 == 2) { _level0.used66 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used66 == 2) { _level0.used66 = 1; if (_level0.ppfocus == 18) { if (_level0.used52 == 2) { _level0.ppfocus = 0; _level0.used52 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 19) { if (_level0.used53 == 2) { _level0.ppfocus = 0; _level0.used53 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 20) { if (_level0.used54 == 2) { _level0.ppfocus = 0; _level0.used54 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 21) { if (_level0.used55 == 2) { _level0.ppfocus = 0; _level0.used55 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 22) { if (_level0.used56 == 2) { _level0.ppfocus = 0; _level0.used56 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 23) { if (_level0.used57 == 2) { _level0.ppfocus = 0; _level0.used57 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 24) { if (_level0.used58 == 2) { _level0.ppfocus = 0; _level0.used58 = 3; _level0.popupp.gotoAndPlay(17); } } _root.score = _root.score + 100; _root.gotoAndPlay("L6MF14"); } } }
Instance of Symbol 414 MovieClip in Frame 769
onClipEvent (enterFrame) { if (_level0.used56 == 3) { _level0.used56 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used56 = 3; } } if (_level0.used56 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used56 == 2) { _level0.ppfocus = 22; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 424 MovieClip in Frame 769
onClipEvent (enterFrame) { if (_level0.used58 == 3) { _level0.used58 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used58 = 3; } } if (_level0.used58 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used58 == 2) { _level0.ppfocus = 24; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 472 MovieClip in Frame 769
onClipEvent (enterFrame) { if (_level0.used57 == 3) { _level0.used57 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used57 = 3; } } if (_level0.used57 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used57 == 2) { _level0.ppfocus = 23; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 343 MovieClip in Frame 769
onClipEvent (enterFrame) { if (_level0.used55 == 3) { _level0.used55 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used55 = 3; } } if (_level0.used55 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used55 == 2) { _level0.ppfocus = 21; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 492 MovieClip in Frame 769
onClipEvent (enterFrame) { if (_level0.used54 == 3) { _level0.used54 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used54 = 3; } } if (_level0.used54 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used54 == 2) { _level0.ppfocus = 20; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 487 MovieClip in Frame 769
onClipEvent (enterFrame) { if (_level0.used52 == 3) { _level0.used52 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used52 = 3; } } if (_level0.used52 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used52 == 2) { _level0.ppfocus = 18; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 221 MovieClip in Frame 769
onClipEvent (enterFrame) { if (_level0.used53 == 3) { _level0.used53 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used53 = 3; } } if (_level0.used53 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used53 == 2) { _level0.ppfocus = 19; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 50 MovieClip "player" in Frame 769
onClipEvent (load) { var grav = 0; var run = 7; var wlk = 2.5; var speed = run; var jumpHeight = 10; var dbl = 0; var tri = 0; var djump = false; var tjump = false; var thro = false; var slow = 0.7; var slowspd = (speed / 2); var setspeed = speed; var scale = _xscale; var ex = 5; this.gotoAndStop(2); } onClipEvent (enterFrame) { grav++; _y = (_y + grav); if (Key.isDown(65)) { setspeed = wlk; } else { setspeed = run; } while (_root.ground.hitTest(_x, _y, true)) { djump = false; tjump = false; _y = (_y-1); grav = 0; } if (_root.water.hitTest(_x, _y, true)) { grav = grav * (slow * 1.25); speed = slowspd; } else { speed = setspeed; } if (Key.isDown(39)) { _x = (_x + speed); _xscale = scale; if (_root.ground.hitTest(_x, _y + 3, true)) { this.gotoAndStop(1); } else if (djump == false) { this.gotoAndStop(2); } else if (tjump == false) { this.gotoAndStop(4); } else { this.gotoAndStop(5); } } else if (Key.isDown(37)) { _x = (_x - speed); _xscale = (-scale); if (_root.ground.hitTest(_x, _y + 3, true)) { this.gotoAndStop(1); } else if (djump == false) { this.gotoAndStop(2); } else if (tjump == false) { this.gotoAndStop(4); } else { this.gotoAndStop(5); } } else if ((_root.ground.hitTest(_x, _y + 3, true) && (!Key.isDown(68))) && (!Key.isDown(83))) { this.gotoAndStop(3); } if (((((Key.isDown(68) && (!Key.isDown(38))) && (!Key.isDown(39))) && (!Key.isDown(37))) && (!Key.isDown(83))) && (_root.ground.hitTest(_x, _y + 3, true))) { this.gotoAndStop(8); } if ((((((Key.isDown(83) && (!Key.isDown(39))) && (!Key.isDown(37))) && (!Key.isDown(38))) && (!Key.isDown(68))) && (_root.ground.hitTest(_x, _y + 3, true))) && (_currentframe != 6)) { this.gotoAndStop(7); } else if (Key.isDown(83) && (grav > 1)) { this.gotoAndStop(6); } if ((_root.ground.hitTest((_x + (_width / 2)) + ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - _height, true))) { _x = (_x - speed); } if ((_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - _height, true))) { _x = (_x + speed); } if (_root.ground.hitTest(_x, (_y - _height) - 15, true)) { grav = 1; } }
Frame 770
if (_level0.ppfocus == 18) { if (_level0.used52 == 2) { _level0.ppfocus = 0; _level0.used52 = 3; _level0.quiz5ready = 2; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 19) { if (_level0.used53 == 2) { _level0.ppfocus = 0; _level0.used53 = 3; _level0.quiz5ready = 2; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 20) { if (_level0.used54 == 2) { _level0.ppfocus = 0; _level0.used54 = 3; _level0.quiz5ready = 2; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 21) { if (_level0.used55 == 2) { _level0.ppfocus = 0; _level0.used55 = 3; _level0.quiz5ready = 2; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 22) { if (_level0.used56 == 2) { _level0.ppfocus = 0; _level0.used56 = 3; _level0.quiz5ready = 2; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 23) { if (_level0.used57 == 2) { _level0.ppfocus = 0; _level0.used57 = 3; _level0.quiz5ready = 2; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 24) { if (_level0.used58 == 2) { _level0.ppfocus = 0; _level0.used58 = 3; _level0.quiz5ready = 2; _level0.popupp.gotoAndPlay(17); } } if (_level0.quiz5ready == 1) { _level0.popupp.gotoAndPlay(61); } stop();
Instance of Symbol 368 MovieClip in Frame 770
onClipEvent (enterFrame) { if (_level0.used63 == 1) { _level0.used63 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used63 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used63 == 2) { _level0.used63 = 1; if (_level0.ppfocus == 18) { if (_level0.used52 == 2) { _level0.ppfocus = 0; _level0.used52 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 19) { if (_level0.used53 == 2) { _level0.ppfocus = 0; _level0.used53 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 20) { if (_level0.used54 == 2) { _level0.ppfocus = 0; _level0.used54 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 21) { if (_level0.used55 == 2) { _level0.ppfocus = 0; _level0.used55 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 22) { if (_level0.used56 == 2) { _level0.ppfocus = 0; _level0.used56 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 23) { if (_level0.used57 == 2) { _level0.ppfocus = 0; _level0.used57 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 24) { if (_level0.used58 == 2) { _level0.ppfocus = 0; _level0.used58 = 3; _level0.popupp.gotoAndPlay(17); } } _root.gotoAndPlay("L6MF8"); } } }
Frame 785
stop();
Instance of Symbol 241 MovieClip in Frame 785
onClipEvent (enterFrame) { if (_level0.used62 == 1) { this.gotoAndStop(51); } if (this.hitTest(_root.player)) { if (_level0.used62 == 2) { _level0.used62 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used62 == 2) { _level0.used62 = 1; if (_level0.ppfocus == 18) { if (_level0.used52 == 2) { _level0.ppfocus = 0; _level0.used52 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 19) { if (_level0.used53 == 2) { _level0.ppfocus = 0; _level0.used53 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 20) { if (_level0.used54 == 2) { _level0.ppfocus = 0; _level0.used54 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 21) { if (_level0.used55 == 2) { _level0.ppfocus = 0; _level0.used55 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 22) { if (_level0.used56 == 2) { _level0.ppfocus = 0; _level0.used56 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 23) { if (_level0.used57 == 2) { _level0.ppfocus = 0; _level0.used57 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 24) { if (_level0.used58 == 2) { _level0.ppfocus = 0; _level0.used58 = 3; _level0.popupp.gotoAndPlay(17); } } _root.score = _root.score + 100; _root.gotoAndPlay("L6MF6"); } } }
Instance of Symbol 577 MovieClip in Frame 785
onClipEvent (enterFrame) { if (_level0.used59 == 1) { _level0.used59 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used59 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used59 == 2) { _level0.used59 = 1; if (_level0.ppfocus == 18) { if (_level0.used52 == 2) { _level0.ppfocus = 0; _level0.used52 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 19) { if (_level0.used53 == 2) { _level0.ppfocus = 0; _level0.used53 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 20) { if (_level0.used54 == 2) { _level0.ppfocus = 0; _level0.used54 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 21) { if (_level0.used55 == 2) { _level0.ppfocus = 0; _level0.used55 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 22) { if (_level0.used56 == 2) { _level0.ppfocus = 0; _level0.used56 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 23) { if (_level0.used57 == 2) { _level0.ppfocus = 0; _level0.used57 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 24) { if (_level0.used58 == 2) { _level0.ppfocus = 0; _level0.used58 = 3; _level0.popupp.gotoAndPlay(17); } } _root.ground.gotoAndStop(2); _root.gotoAndPlay("L6MF2"); } } }
Instance of Symbol 208 MovieClip in Frame 785
onClipEvent (enterFrame) { if (_level0.used67 == 1) { _level0.used67 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used67 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used67 == 2) { _level0.used67 = 1; if (_level0.ppfocus == 18) { if (_level0.used52 == 2) { _level0.ppfocus = 0; _level0.used52 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 19) { if (_level0.used53 == 2) { _level0.ppfocus = 0; _level0.used53 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 20) { if (_level0.used54 == 2) { _level0.ppfocus = 0; _level0.used54 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 21) { if (_level0.used55 == 2) { _level0.ppfocus = 0; _level0.used55 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 22) { if (_level0.used56 == 2) { _level0.ppfocus = 0; _level0.used56 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 23) { if (_level0.used57 == 2) { _level0.ppfocus = 0; _level0.used57 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 24) { if (_level0.used58 == 2) { _level0.ppfocus = 0; _level0.used58 = 3; _level0.popupp.gotoAndPlay(17); } } _root.gotoAndPlay("L6MF17"); } } }
Instance of Symbol 578 MovieClip in Frame 785
onClipEvent (enterFrame) { if (_level0.used61 == 1) { _level0.used61 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used61 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used61 == 2) { _level0.used61 = 1; if (_level0.ppfocus == 18) { if (_level0.used52 == 2) { _level0.ppfocus = 0; _level0.used52 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 19) { if (_level0.used53 == 2) { _level0.ppfocus = 0; _level0.used53 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 20) { if (_level0.used54 == 2) { _level0.ppfocus = 0; _level0.used54 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 21) { if (_level0.used55 == 2) { _level0.ppfocus = 0; _level0.used55 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 22) { if (_level0.used56 == 2) { _level0.ppfocus = 0; _level0.used56 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 23) { if (_level0.used57 == 2) { _level0.ppfocus = 0; _level0.used57 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 24) { if (_level0.used58 == 2) { _level0.ppfocus = 0; _level0.used58 = 3; _level0.popupp.gotoAndPlay(17); } } _root.gotoAndPlay("L6MF4"); } } }
Instance of Symbol 368 MovieClip in Frame 785
onClipEvent (enterFrame) { if (_level0.used63 == 1) { _level0.used63 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used63 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used63 == 2) { _level0.used63 = 1; if (_level0.ppfocus == 18) { if (_level0.used52 == 2) { _level0.ppfocus = 0; _level0.used52 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 19) { if (_level0.used53 == 2) { _level0.ppfocus = 0; _level0.used53 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 20) { if (_level0.used54 == 2) { _level0.ppfocus = 0; _level0.used54 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 21) { if (_level0.used55 == 2) { _level0.ppfocus = 0; _level0.used55 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 22) { if (_level0.used56 == 2) { _level0.ppfocus = 0; _level0.used56 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 23) { if (_level0.used57 == 2) { _level0.ppfocus = 0; _level0.used57 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 24) { if (_level0.used58 == 2) { _level0.ppfocus = 0; _level0.used58 = 3; _level0.popupp.gotoAndPlay(17); } } _root.gotoAndPlay("L6MF8"); } } }
Instance of Symbol 547 MovieClip in Frame 785
onClipEvent (enterFrame) { if (_level0.used66 == 1) { this.gotoAndStop(51); } if (this.hitTest(_root.player)) { if (_level0.used66 == 2) { _level0.used66 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used66 == 2) { _level0.used66 = 1; if (_level0.ppfocus == 18) { if (_level0.used52 == 2) { _level0.ppfocus = 0; _level0.used52 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 19) { if (_level0.used53 == 2) { _level0.ppfocus = 0; _level0.used53 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 20) { if (_level0.used54 == 2) { _level0.ppfocus = 0; _level0.used54 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 21) { if (_level0.used55 == 2) { _level0.ppfocus = 0; _level0.used55 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 22) { if (_level0.used56 == 2) { _level0.ppfocus = 0; _level0.used56 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 23) { if (_level0.used57 == 2) { _level0.ppfocus = 0; _level0.used57 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 24) { if (_level0.used58 == 2) { _level0.ppfocus = 0; _level0.used58 = 3; _level0.popupp.gotoAndPlay(17); } } _root.score = _root.score + 100; _root.gotoAndPlay("L6MF14"); } } }
Instance of Symbol 414 MovieClip in Frame 785
onClipEvent (enterFrame) { if (_level0.used56 == 3) { _level0.used56 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used56 = 3; } } if (_level0.used56 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used56 == 2) { _level0.ppfocus = 22; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 424 MovieClip in Frame 785
onClipEvent (enterFrame) { if (_level0.used58 == 3) { _level0.used58 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used58 = 3; } } if (_level0.used58 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used58 == 2) { _level0.ppfocus = 24; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 472 MovieClip in Frame 785
onClipEvent (enterFrame) { if (_level0.used57 == 3) { _level0.used57 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used57 = 3; } } if (_level0.used57 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used57 == 2) { _level0.ppfocus = 23; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 343 MovieClip in Frame 785
onClipEvent (enterFrame) { if (_level0.used55 == 3) { _level0.used55 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used55 = 3; } } if (_level0.used55 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used55 == 2) { _level0.ppfocus = 21; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 492 MovieClip in Frame 785
onClipEvent (enterFrame) { if (_level0.used54 == 3) { _level0.used54 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used54 = 3; } } if (_level0.used54 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used54 == 2) { _level0.ppfocus = 20; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 487 MovieClip in Frame 785
onClipEvent (enterFrame) { if (_level0.used52 == 3) { _level0.used52 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used52 = 3; } } if (_level0.used52 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used52 == 2) { _level0.ppfocus = 18; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 221 MovieClip in Frame 785
onClipEvent (enterFrame) { if (_level0.used53 == 3) { _level0.used53 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used53 = 3; } } if (_level0.used53 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used53 == 2) { _level0.ppfocus = 19; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 50 MovieClip "player" in Frame 785
onClipEvent (load) { var grav = 0; var run = 7; var wlk = 2.5; var speed = run; var jumpHeight = 10; var dbl = 0; var tri = 0; var djump = false; var tjump = false; var thro = false; var slow = 0.7; var slowspd = (speed / 2); var setspeed = speed; var scale = _xscale; var ex = 5; this.gotoAndStop(2); } onClipEvent (enterFrame) { grav++; _y = (_y + grav); if (Key.isDown(65)) { setspeed = wlk; } else { setspeed = run; } while (_root.ground.hitTest(_x, _y, true)) { djump = false; tjump = false; _y = (_y-1); grav = 0; } if (_root.water.hitTest(_x, _y, true)) { grav = grav * (slow * 1.25); speed = slowspd; } else { speed = setspeed; } if (Key.isDown(39)) { _x = (_x + speed); _xscale = scale; if (_root.ground.hitTest(_x, _y + 3, true)) { this.gotoAndStop(1); } else if (djump == false) { this.gotoAndStop(2); } else if (tjump == false) { this.gotoAndStop(4); } else { this.gotoAndStop(5); } } else if (Key.isDown(37)) { _x = (_x - speed); _xscale = (-scale); if (_root.ground.hitTest(_x, _y + 3, true)) { this.gotoAndStop(1); } else if (djump == false) { this.gotoAndStop(2); } else if (tjump == false) { this.gotoAndStop(4); } else { this.gotoAndStop(5); } } else if ((_root.ground.hitTest(_x, _y + 3, true) && (!Key.isDown(68))) && (!Key.isDown(83))) { this.gotoAndStop(3); } if (((((Key.isDown(68) && (!Key.isDown(38))) && (!Key.isDown(39))) && (!Key.isDown(37))) && (!Key.isDown(83))) && (_root.ground.hitTest(_x, _y + 3, true))) { this.gotoAndStop(8); } if ((((((Key.isDown(83) && (!Key.isDown(39))) && (!Key.isDown(37))) && (!Key.isDown(38))) && (!Key.isDown(68))) && (_root.ground.hitTest(_x, _y + 3, true))) && (_currentframe != 6)) { this.gotoAndStop(7); } else if (Key.isDown(83) && (grav > 1)) { this.gotoAndStop(6); } if ((_root.ground.hitTest((_x + (_width / 2)) + ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - _height, true))) { _x = (_x - speed); } if ((_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - _height, true))) { _x = (_x + speed); } if (_root.ground.hitTest(_x, (_y - _height) - 15, true)) { grav = 1; } }
Frame 800
stop();
Instance of Symbol 241 MovieClip in Frame 800
onClipEvent (enterFrame) { if (_level0.used62 == 1) { this.gotoAndStop(51); } if (this.hitTest(_root.player)) { if (_level0.used62 == 2) { _level0.used62 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used62 == 2) { _level0.used62 = 1; if (_level0.ppfocus == 18) { if (_level0.used52 == 2) { _level0.ppfocus = 0; _level0.used52 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 19) { if (_level0.used53 == 2) { _level0.ppfocus = 0; _level0.used53 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 20) { if (_level0.used54 == 2) { _level0.ppfocus = 0; _level0.used54 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 21) { if (_level0.used55 == 2) { _level0.ppfocus = 0; _level0.used55 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 22) { if (_level0.used56 == 2) { _level0.ppfocus = 0; _level0.used56 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 23) { if (_level0.used57 == 2) { _level0.ppfocus = 0; _level0.used57 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 24) { if (_level0.used58 == 2) { _level0.ppfocus = 0; _level0.used58 = 3; _level0.popupp.gotoAndPlay(17); } } _root.score = _root.score + 100; _root.gotoAndPlay("L6MF6"); } } }
Instance of Symbol 577 MovieClip in Frame 800
onClipEvent (enterFrame) { if (_level0.used59 == 1) { _level0.used59 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used59 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used59 == 2) { _level0.used59 = 1; if (_level0.ppfocus == 18) { if (_level0.used52 == 2) { _level0.ppfocus = 0; _level0.used52 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 19) { if (_level0.used53 == 2) { _level0.ppfocus = 0; _level0.used53 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 20) { if (_level0.used54 == 2) { _level0.ppfocus = 0; _level0.used54 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 21) { if (_level0.used55 == 2) { _level0.ppfocus = 0; _level0.used55 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 22) { if (_level0.used56 == 2) { _level0.ppfocus = 0; _level0.used56 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 23) { if (_level0.used57 == 2) { _level0.ppfocus = 0; _level0.used57 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 24) { if (_level0.used58 == 2) { _level0.ppfocus = 0; _level0.used58 = 3; _level0.popupp.gotoAndPlay(17); } } _root.ground.gotoAndStop(2); _root.gotoAndPlay("L6MF2"); } } }
Instance of Symbol 578 MovieClip in Frame 800
onClipEvent (enterFrame) { if (_level0.used61 == 1) { _level0.used61 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used61 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used61 == 2) { _level0.used61 = 1; if (_level0.ppfocus == 18) { if (_level0.used52 == 2) { _level0.ppfocus = 0; _level0.used52 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 19) { if (_level0.used53 == 2) { _level0.ppfocus = 0; _level0.used53 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 20) { if (_level0.used54 == 2) { _level0.ppfocus = 0; _level0.used54 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 21) { if (_level0.used55 == 2) { _level0.ppfocus = 0; _level0.used55 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 22) { if (_level0.used56 == 2) { _level0.ppfocus = 0; _level0.used56 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 23) { if (_level0.used57 == 2) { _level0.ppfocus = 0; _level0.used57 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 24) { if (_level0.used58 == 2) { _level0.ppfocus = 0; _level0.used58 = 3; _level0.popupp.gotoAndPlay(17); } } _root.gotoAndPlay("L6MF4"); } } }
Instance of Symbol 368 MovieClip in Frame 800
onClipEvent (enterFrame) { if (_level0.used63 == 1) { _level0.used63 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used63 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used63 == 2) { _level0.used63 = 1; if (_level0.ppfocus == 18) { if (_level0.used52 == 2) { _level0.ppfocus = 0; _level0.used52 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 19) { if (_level0.used53 == 2) { _level0.ppfocus = 0; _level0.used53 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 20) { if (_level0.used54 == 2) { _level0.ppfocus = 0; _level0.used54 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 21) { if (_level0.used55 == 2) { _level0.ppfocus = 0; _level0.used55 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 22) { if (_level0.used56 == 2) { _level0.ppfocus = 0; _level0.used56 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 23) { if (_level0.used57 == 2) { _level0.ppfocus = 0; _level0.used57 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 24) { if (_level0.used58 == 2) { _level0.ppfocus = 0; _level0.used58 = 3; _level0.popupp.gotoAndPlay(17); } } _root.gotoAndPlay("L6MF8"); } } }
Instance of Symbol 350 MovieClip in Frame 800
onClipEvent (enterFrame) { if (_level0.used68 == 1) { _level0.used68 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used68 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used68 == 2) { _level0.used68 = 1; if (_level0.ppfocus == 18) { if (_level0.used52 == 2) { _level0.ppfocus = 0; _level0.used52 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 19) { if (_level0.used53 == 2) { _level0.ppfocus = 0; _level0.used53 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 20) { if (_level0.used54 == 2) { _level0.ppfocus = 0; _level0.used54 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 21) { if (_level0.used55 == 2) { _level0.ppfocus = 0; _level0.used55 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 22) { if (_level0.used56 == 2) { _level0.ppfocus = 0; _level0.used56 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 23) { if (_level0.used57 == 2) { _level0.ppfocus = 0; _level0.used57 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 24) { if (_level0.used58 == 2) { _level0.ppfocus = 0; _level0.used58 = 3; _level0.popupp.gotoAndPlay(17); } } _root.gotoAndPlay("L6MF18"); } } }
Instance of Symbol 547 MovieClip in Frame 800
onClipEvent (enterFrame) { if (_level0.used66 == 1) { this.gotoAndStop(51); } if (this.hitTest(_root.player)) { if (_level0.used66 == 2) { _level0.used66 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used66 == 2) { _level0.used66 = 1; if (_level0.ppfocus == 18) { if (_level0.used52 == 2) { _level0.ppfocus = 0; _level0.used52 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 19) { if (_level0.used53 == 2) { _level0.ppfocus = 0; _level0.used53 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 20) { if (_level0.used54 == 2) { _level0.ppfocus = 0; _level0.used54 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 21) { if (_level0.used55 == 2) { _level0.ppfocus = 0; _level0.used55 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 22) { if (_level0.used56 == 2) { _level0.ppfocus = 0; _level0.used56 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 23) { if (_level0.used57 == 2) { _level0.ppfocus = 0; _level0.used57 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 24) { if (_level0.used58 == 2) { _level0.ppfocus = 0; _level0.used58 = 3; _level0.popupp.gotoAndPlay(17); } } _root.score = _root.score + 100; _root.gotoAndPlay("L6MF14"); } } }
Instance of Symbol 414 MovieClip in Frame 800
onClipEvent (enterFrame) { if (_level0.used56 == 3) { _level0.used56 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used56 = 3; } } if (_level0.used56 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used56 == 2) { _level0.ppfocus = 22; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 424 MovieClip in Frame 800
onClipEvent (enterFrame) { if (_level0.used58 == 3) { _level0.used58 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used58 = 3; } } if (_level0.used58 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used58 == 2) { _level0.ppfocus = 24; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 472 MovieClip in Frame 800
onClipEvent (enterFrame) { if (_level0.used57 == 3) { _level0.used57 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used57 = 3; } } if (_level0.used57 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used57 == 2) { _level0.ppfocus = 23; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 343 MovieClip in Frame 800
onClipEvent (enterFrame) { if (_level0.used55 == 3) { _level0.used55 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used55 = 3; } } if (_level0.used55 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used55 == 2) { _level0.ppfocus = 21; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 492 MovieClip in Frame 800
onClipEvent (enterFrame) { if (_level0.used54 == 3) { _level0.used54 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used54 = 3; } } if (_level0.used54 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used54 == 2) { _level0.ppfocus = 20; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 487 MovieClip in Frame 800
onClipEvent (enterFrame) { if (_level0.used52 == 3) { _level0.used52 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used52 = 3; } } if (_level0.used52 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used52 == 2) { _level0.ppfocus = 18; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 221 MovieClip in Frame 800
onClipEvent (enterFrame) { if (_level0.used53 == 3) { _level0.used53 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used53 = 3; } } if (_level0.used53 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used53 == 2) { _level0.ppfocus = 19; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 50 MovieClip "player" in Frame 800
onClipEvent (load) { var grav = 0; var run = 7; var wlk = 2.5; var speed = run; var jumpHeight = 10; var dbl = 0; var tri = 0; var djump = false; var tjump = false; var thro = false; var slow = 0.7; var slowspd = (speed / 2); var setspeed = speed; var scale = _xscale; var ex = 5; this.gotoAndStop(2); } onClipEvent (enterFrame) { grav++; _y = (_y + grav); if (Key.isDown(65)) { setspeed = wlk; } else { setspeed = run; } while (_root.ground.hitTest(_x, _y, true)) { djump = false; tjump = false; _y = (_y-1); grav = 0; } if (_root.water.hitTest(_x, _y, true)) { grav = grav * (slow * 1.25); speed = slowspd; } else { speed = setspeed; } if (Key.isDown(39)) { _x = (_x + speed); _xscale = scale; if (_root.ground.hitTest(_x, _y + 3, true)) { this.gotoAndStop(1); } else if (djump == false) { this.gotoAndStop(2); } else if (tjump == false) { this.gotoAndStop(4); } else { this.gotoAndStop(5); } } else if (Key.isDown(37)) { _x = (_x - speed); _xscale = (-scale); if (_root.ground.hitTest(_x, _y + 3, true)) { this.gotoAndStop(1); } else if (djump == false) { this.gotoAndStop(2); } else if (tjump == false) { this.gotoAndStop(4); } else { this.gotoAndStop(5); } } else if ((_root.ground.hitTest(_x, _y + 3, true) && (!Key.isDown(68))) && (!Key.isDown(83))) { this.gotoAndStop(3); } if (((((Key.isDown(68) && (!Key.isDown(38))) && (!Key.isDown(39))) && (!Key.isDown(37))) && (!Key.isDown(83))) && (_root.ground.hitTest(_x, _y + 3, true))) { this.gotoAndStop(8); } if ((((((Key.isDown(83) && (!Key.isDown(39))) && (!Key.isDown(37))) && (!Key.isDown(38))) && (!Key.isDown(68))) && (_root.ground.hitTest(_x, _y + 3, true))) && (_currentframe != 6)) { this.gotoAndStop(7); } else if (Key.isDown(83) && (grav > 1)) { this.gotoAndStop(6); } if ((_root.ground.hitTest((_x + (_width / 2)) + ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - _height, true))) { _x = (_x - speed); } if ((_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - _height, true))) { _x = (_x + speed); } if (_root.ground.hitTest(_x, (_y - _height) - 15, true)) { grav = 1; } }
Frame 815
stop();
Instance of Symbol 241 MovieClip in Frame 815
onClipEvent (enterFrame) { if (_level0.used62 == 1) { this.gotoAndStop(51); } if (this.hitTest(_root.player)) { if (_level0.used62 == 2) { _level0.used62 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used62 == 2) { _level0.used62 = 1; if (_level0.ppfocus == 18) { if (_level0.used52 == 2) { _level0.ppfocus = 0; _level0.used52 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 19) { if (_level0.used53 == 2) { _level0.ppfocus = 0; _level0.used53 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 20) { if (_level0.used54 == 2) { _level0.ppfocus = 0; _level0.used54 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 21) { if (_level0.used55 == 2) { _level0.ppfocus = 0; _level0.used55 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 22) { if (_level0.used56 == 2) { _level0.ppfocus = 0; _level0.used56 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 23) { if (_level0.used57 == 2) { _level0.ppfocus = 0; _level0.used57 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 24) { if (_level0.used58 == 2) { _level0.ppfocus = 0; _level0.used58 = 3; _level0.popupp.gotoAndPlay(17); } } _root.score = _root.score + 100; _root.gotoAndPlay("L6MF6"); } } }
Instance of Symbol 577 MovieClip in Frame 815
onClipEvent (enterFrame) { if (_level0.used59 == 1) { _level0.used59 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used59 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used59 == 2) { _level0.used59 = 1; if (_level0.ppfocus == 18) { if (_level0.used52 == 2) { _level0.ppfocus = 0; _level0.used52 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 19) { if (_level0.used53 == 2) { _level0.ppfocus = 0; _level0.used53 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 20) { if (_level0.used54 == 2) { _level0.ppfocus = 0; _level0.used54 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 21) { if (_level0.used55 == 2) { _level0.ppfocus = 0; _level0.used55 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 22) { if (_level0.used56 == 2) { _level0.ppfocus = 0; _level0.used56 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 23) { if (_level0.used57 == 2) { _level0.ppfocus = 0; _level0.used57 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 24) { if (_level0.used58 == 2) { _level0.ppfocus = 0; _level0.used58 = 3; _level0.popupp.gotoAndPlay(17); } } _root.ground.gotoAndStop(2); _root.gotoAndPlay("L6MF2"); } } }
Instance of Symbol 208 MovieClip in Frame 815
onClipEvent (enterFrame) { if (_level0.used67 == 1) { _level0.used67 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used67 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used67 == 2) { _level0.used67 = 1; if (_level0.ppfocus == 18) { if (_level0.used52 == 2) { _level0.ppfocus = 0; _level0.used52 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 19) { if (_level0.used53 == 2) { _level0.ppfocus = 0; _level0.used53 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 20) { if (_level0.used54 == 2) { _level0.ppfocus = 0; _level0.used54 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 21) { if (_level0.used55 == 2) { _level0.ppfocus = 0; _level0.used55 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 22) { if (_level0.used56 == 2) { _level0.ppfocus = 0; _level0.used56 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 23) { if (_level0.used57 == 2) { _level0.ppfocus = 0; _level0.used57 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 24) { if (_level0.used58 == 2) { _level0.ppfocus = 0; _level0.used58 = 3; _level0.popupp.gotoAndPlay(17); } } _root.gotoAndPlay("L6MF17"); } } }
Instance of Symbol 578 MovieClip in Frame 815
onClipEvent (enterFrame) { if (_level0.used61 == 1) { _level0.used61 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used61 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used61 == 2) { _level0.used61 = 1; if (_level0.ppfocus == 18) { if (_level0.used52 == 2) { _level0.ppfocus = 0; _level0.used52 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 19) { if (_level0.used53 == 2) { _level0.ppfocus = 0; _level0.used53 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 20) { if (_level0.used54 == 2) { _level0.ppfocus = 0; _level0.used54 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 21) { if (_level0.used55 == 2) { _level0.ppfocus = 0; _level0.used55 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 22) { if (_level0.used56 == 2) { _level0.ppfocus = 0; _level0.used56 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 23) { if (_level0.used57 == 2) { _level0.ppfocus = 0; _level0.used57 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 24) { if (_level0.used58 == 2) { _level0.ppfocus = 0; _level0.used58 = 3; _level0.popupp.gotoAndPlay(17); } } _root.gotoAndPlay("L6MF4"); } } }
Instance of Symbol 426 MovieClip in Frame 815
onClipEvent (enterFrame) { if (_level0.used69 == 1) { _level0.used69 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used69 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used69 == 2) { _level0.used69 = 1; if (_level0.ppfocus == 18) { if (_level0.used52 == 2) { _level0.ppfocus = 0; _level0.used52 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 19) { if (_level0.used53 == 2) { _level0.ppfocus = 0; _level0.used53 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 20) { if (_level0.used54 == 2) { _level0.ppfocus = 0; _level0.used54 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 21) { if (_level0.used55 == 2) { _level0.ppfocus = 0; _level0.used55 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 22) { if (_level0.used56 == 2) { _level0.ppfocus = 0; _level0.used56 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 23) { if (_level0.used57 == 2) { _level0.ppfocus = 0; _level0.used57 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 24) { if (_level0.used58 == 2) { _level0.ppfocus = 0; _level0.used58 = 3; _level0.popupp.gotoAndPlay(17); } } _root.gotoAndPlay("L6MF19"); } } }
Instance of Symbol 368 MovieClip in Frame 815
onClipEvent (enterFrame) { if (_level0.used63 == 1) { _level0.used63 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used63 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used63 == 2) { _level0.used63 = 1; if (_level0.ppfocus == 18) { if (_level0.used52 == 2) { _level0.ppfocus = 0; _level0.used52 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 19) { if (_level0.used53 == 2) { _level0.ppfocus = 0; _level0.used53 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 20) { if (_level0.used54 == 2) { _level0.ppfocus = 0; _level0.used54 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 21) { if (_level0.used55 == 2) { _level0.ppfocus = 0; _level0.used55 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 22) { if (_level0.used56 == 2) { _level0.ppfocus = 0; _level0.used56 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 23) { if (_level0.used57 == 2) { _level0.ppfocus = 0; _level0.used57 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 24) { if (_level0.used58 == 2) { _level0.ppfocus = 0; _level0.used58 = 3; _level0.popupp.gotoAndPlay(17); } } _root.gotoAndPlay("L6MF8"); } } }
Instance of Symbol 547 MovieClip in Frame 815
onClipEvent (enterFrame) { if (_level0.used66 == 1) { this.gotoAndStop(51); } if (this.hitTest(_root.player)) { if (_level0.used66 == 2) { _level0.used66 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used66 == 2) { _level0.used66 = 1; if (_level0.ppfocus == 18) { if (_level0.used52 == 2) { _level0.ppfocus = 0; _level0.used52 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 19) { if (_level0.used53 == 2) { _level0.ppfocus = 0; _level0.used53 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 20) { if (_level0.used54 == 2) { _level0.ppfocus = 0; _level0.used54 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 21) { if (_level0.used55 == 2) { _level0.ppfocus = 0; _level0.used55 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 22) { if (_level0.used56 == 2) { _level0.ppfocus = 0; _level0.used56 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 23) { if (_level0.used57 == 2) { _level0.ppfocus = 0; _level0.used57 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 24) { if (_level0.used58 == 2) { _level0.ppfocus = 0; _level0.used58 = 3; _level0.popupp.gotoAndPlay(17); } } _root.score = _root.score + 100; _root.gotoAndPlay("L6MF14"); } } }
Instance of Symbol 414 MovieClip in Frame 815
onClipEvent (enterFrame) { if (_level0.used56 == 3) { _level0.used56 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used56 = 3; } } if (_level0.used56 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used56 == 2) { _level0.ppfocus = 22; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 424 MovieClip in Frame 815
onClipEvent (enterFrame) { if (_level0.used58 == 3) { _level0.used58 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used58 = 3; } } if (_level0.used58 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used58 == 2) { _level0.ppfocus = 24; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 472 MovieClip in Frame 815
onClipEvent (enterFrame) { if (_level0.used57 == 3) { _level0.used57 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used57 = 3; } } if (_level0.used57 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used57 == 2) { _level0.ppfocus = 23; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 343 MovieClip in Frame 815
onClipEvent (enterFrame) { if (_level0.used55 == 3) { _level0.used55 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used55 = 3; } } if (_level0.used55 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used55 == 2) { _level0.ppfocus = 21; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 492 MovieClip in Frame 815
onClipEvent (enterFrame) { if (_level0.used54 == 3) { _level0.used54 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used54 = 3; } } if (_level0.used54 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used54 == 2) { _level0.ppfocus = 20; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 487 MovieClip in Frame 815
onClipEvent (enterFrame) { if (_level0.used52 == 3) { _level0.used52 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used52 = 3; } } if (_level0.used52 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used52 == 2) { _level0.ppfocus = 18; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 221 MovieClip in Frame 815
onClipEvent (enterFrame) { if (_level0.used53 == 3) { _level0.used53 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used53 = 3; } } if (_level0.used53 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used53 == 2) { _level0.ppfocus = 19; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 50 MovieClip "player" in Frame 815
onClipEvent (load) { var grav = 0; var run = 7; var wlk = 2.5; var speed = run; var jumpHeight = 10; var dbl = 0; var tri = 0; var djump = false; var tjump = false; var thro = false; var slow = 0.7; var slowspd = (speed / 2); var setspeed = speed; var scale = _xscale; var ex = 5; this.gotoAndStop(2); } onClipEvent (enterFrame) { grav++; _y = (_y + grav); if (Key.isDown(65)) { setspeed = wlk; } else { setspeed = run; } while (_root.ground.hitTest(_x, _y, true)) { djump = false; tjump = false; _y = (_y-1); grav = 0; } if (_root.water.hitTest(_x, _y, true)) { grav = grav * (slow * 1.25); speed = slowspd; } else { speed = setspeed; } if (Key.isDown(39)) { _x = (_x + speed); _xscale = scale; if (_root.ground.hitTest(_x, _y + 3, true)) { this.gotoAndStop(1); } else if (djump == false) { this.gotoAndStop(2); } else if (tjump == false) { this.gotoAndStop(4); } else { this.gotoAndStop(5); } } else if (Key.isDown(37)) { _x = (_x - speed); _xscale = (-scale); if (_root.ground.hitTest(_x, _y + 3, true)) { this.gotoAndStop(1); } else if (djump == false) { this.gotoAndStop(2); } else if (tjump == false) { this.gotoAndStop(4); } else { this.gotoAndStop(5); } } else if ((_root.ground.hitTest(_x, _y + 3, true) && (!Key.isDown(68))) && (!Key.isDown(83))) { this.gotoAndStop(3); } if (((((Key.isDown(68) && (!Key.isDown(38))) && (!Key.isDown(39))) && (!Key.isDown(37))) && (!Key.isDown(83))) && (_root.ground.hitTest(_x, _y + 3, true))) { this.gotoAndStop(8); } if ((((((Key.isDown(83) && (!Key.isDown(39))) && (!Key.isDown(37))) && (!Key.isDown(38))) && (!Key.isDown(68))) && (_root.ground.hitTest(_x, _y + 3, true))) && (_currentframe != 6)) { this.gotoAndStop(7); } else if (Key.isDown(83) && (grav > 1)) { this.gotoAndStop(6); } if ((_root.ground.hitTest((_x + (_width / 2)) + ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - _height, true))) { _x = (_x - speed); } if ((_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - _height, true))) { _x = (_x + speed); } if (_root.ground.hitTest(_x, (_y - _height) - 15, true)) { grav = 1; } }
Frame 831
stop();
Instance of Symbol 241 MovieClip in Frame 831
onClipEvent (enterFrame) { if (_level0.used62 == 1) { this.gotoAndStop(51); } if (this.hitTest(_root.player)) { if (_level0.used62 == 2) { _level0.used62 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used62 == 2) { _level0.used62 = 1; if (_level0.ppfocus == 18) { if (_level0.used52 == 2) { _level0.ppfocus = 0; _level0.used52 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 19) { if (_level0.used53 == 2) { _level0.ppfocus = 0; _level0.used53 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 20) { if (_level0.used54 == 2) { _level0.ppfocus = 0; _level0.used54 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 21) { if (_level0.used55 == 2) { _level0.ppfocus = 0; _level0.used55 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 22) { if (_level0.used56 == 2) { _level0.ppfocus = 0; _level0.used56 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 23) { if (_level0.used57 == 2) { _level0.ppfocus = 0; _level0.used57 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 24) { if (_level0.used58 == 2) { _level0.ppfocus = 0; _level0.used58 = 3; _level0.popupp.gotoAndPlay(17); } } _root.score = _root.score + 100; _root.gotoAndPlay("L6MF6"); } } }
Instance of Symbol 577 MovieClip in Frame 831
onClipEvent (enterFrame) { if (_level0.used59 == 1) { _level0.used59 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used59 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used59 == 2) { _level0.used59 = 1; if (_level0.ppfocus == 18) { if (_level0.used52 == 2) { _level0.ppfocus = 0; _level0.used52 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 19) { if (_level0.used53 == 2) { _level0.ppfocus = 0; _level0.used53 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 20) { if (_level0.used54 == 2) { _level0.ppfocus = 0; _level0.used54 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 21) { if (_level0.used55 == 2) { _level0.ppfocus = 0; _level0.used55 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 22) { if (_level0.used56 == 2) { _level0.ppfocus = 0; _level0.used56 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 23) { if (_level0.used57 == 2) { _level0.ppfocus = 0; _level0.used57 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 24) { if (_level0.used58 == 2) { _level0.ppfocus = 0; _level0.used58 = 3; _level0.popupp.gotoAndPlay(17); } } _root.ground.gotoAndStop(2); _root.gotoAndPlay("L6MF2"); } } }
Instance of Symbol 578 MovieClip in Frame 831
onClipEvent (enterFrame) { if (_level0.used61 == 1) { _level0.used61 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used61 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used61 == 2) { _level0.used61 = 1; if (_level0.ppfocus == 18) { if (_level0.used52 == 2) { _level0.ppfocus = 0; _level0.used52 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 19) { if (_level0.used53 == 2) { _level0.ppfocus = 0; _level0.used53 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 20) { if (_level0.used54 == 2) { _level0.ppfocus = 0; _level0.used54 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 21) { if (_level0.used55 == 2) { _level0.ppfocus = 0; _level0.used55 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 22) { if (_level0.used56 == 2) { _level0.ppfocus = 0; _level0.used56 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 23) { if (_level0.used57 == 2) { _level0.ppfocus = 0; _level0.used57 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 24) { if (_level0.used58 == 2) { _level0.ppfocus = 0; _level0.used58 = 3; _level0.popupp.gotoAndPlay(17); } } _root.gotoAndPlay("L6MF4"); } } }
Instance of Symbol 368 MovieClip in Frame 831
onClipEvent (enterFrame) { if (_level0.used63 == 1) { _level0.used63 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used63 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used63 == 2) { _level0.used63 = 1; if (_level0.ppfocus == 18) { if (_level0.used52 == 2) { _level0.ppfocus = 0; _level0.used52 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 19) { if (_level0.used53 == 2) { _level0.ppfocus = 0; _level0.used53 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 20) { if (_level0.used54 == 2) { _level0.ppfocus = 0; _level0.used54 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 21) { if (_level0.used55 == 2) { _level0.ppfocus = 0; _level0.used55 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 22) { if (_level0.used56 == 2) { _level0.ppfocus = 0; _level0.used56 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 23) { if (_level0.used57 == 2) { _level0.ppfocus = 0; _level0.used57 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 24) { if (_level0.used58 == 2) { _level0.ppfocus = 0; _level0.used58 = 3; _level0.popupp.gotoAndPlay(17); } } _root.gotoAndPlay("L6MF8"); } } }
Instance of Symbol 350 MovieClip in Frame 831
onClipEvent (enterFrame) { if (_level0.used68 == 1) { _level0.used68 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used68 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used68 == 2) { _level0.used68 = 1; if (_level0.ppfocus == 18) { if (_level0.used52 == 2) { _level0.ppfocus = 0; _level0.used52 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 19) { if (_level0.used53 == 2) { _level0.ppfocus = 0; _level0.used53 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 20) { if (_level0.used54 == 2) { _level0.ppfocus = 0; _level0.used54 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 21) { if (_level0.used55 == 2) { _level0.ppfocus = 0; _level0.used55 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 22) { if (_level0.used56 == 2) { _level0.ppfocus = 0; _level0.used56 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 23) { if (_level0.used57 == 2) { _level0.ppfocus = 0; _level0.used57 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 24) { if (_level0.used58 == 2) { _level0.ppfocus = 0; _level0.used58 = 3; _level0.popupp.gotoAndPlay(17); } } _root.gotoAndPlay("L6MF18"); } } }
Instance of Symbol 547 MovieClip in Frame 831
onClipEvent (enterFrame) { if (_level0.used66 == 1) { this.gotoAndStop(51); } if (this.hitTest(_root.player)) { if (_level0.used66 == 2) { _level0.used66 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used66 == 2) { _level0.used66 = 1; if (_level0.ppfocus == 18) { if (_level0.used52 == 2) { _level0.ppfocus = 0; _level0.used52 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 19) { if (_level0.used53 == 2) { _level0.ppfocus = 0; _level0.used53 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 20) { if (_level0.used54 == 2) { _level0.ppfocus = 0; _level0.used54 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 21) { if (_level0.used55 == 2) { _level0.ppfocus = 0; _level0.used55 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 22) { if (_level0.used56 == 2) { _level0.ppfocus = 0; _level0.used56 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 23) { if (_level0.used57 == 2) { _level0.ppfocus = 0; _level0.used57 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 24) { if (_level0.used58 == 2) { _level0.ppfocus = 0; _level0.used58 = 3; _level0.popupp.gotoAndPlay(17); } } _root.score = _root.score + 100; _root.gotoAndPlay("L6MF14"); } } }
Instance of Symbol 414 MovieClip in Frame 831
onClipEvent (enterFrame) { if (_level0.used56 == 3) { _level0.used56 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used56 = 3; } } if (_level0.used56 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used56 == 2) { _level0.ppfocus = 22; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 424 MovieClip in Frame 831
onClipEvent (enterFrame) { if (_level0.used58 == 3) { _level0.used58 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used58 = 3; } } if (_level0.used58 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used58 == 2) { _level0.ppfocus = 24; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 472 MovieClip in Frame 831
onClipEvent (enterFrame) { if (_level0.used57 == 3) { _level0.used57 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used57 = 3; } } if (_level0.used57 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used57 == 2) { _level0.ppfocus = 23; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 343 MovieClip in Frame 831
onClipEvent (enterFrame) { if (_level0.used55 == 3) { _level0.used55 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used55 = 3; } } if (_level0.used55 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used55 == 2) { _level0.ppfocus = 21; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 492 MovieClip in Frame 831
onClipEvent (enterFrame) { if (_level0.used54 == 3) { _level0.used54 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used54 = 3; } } if (_level0.used54 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used54 == 2) { _level0.ppfocus = 20; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 487 MovieClip in Frame 831
onClipEvent (enterFrame) { if (_level0.used52 == 3) { _level0.used52 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used52 = 3; } } if (_level0.used52 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used52 == 2) { _level0.ppfocus = 18; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 221 MovieClip in Frame 831
onClipEvent (enterFrame) { if (_level0.used53 == 3) { _level0.used53 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { _level0.used53 = 3; } } if (_level0.used53 == 1) { this.gotoAndStop(11); } if (this.hitTest(_root.player)) { if (_level0.used53 == 2) { _level0.ppfocus = 19; _root.popupp.gotoAndPlay(2); this.gotoAndStop(11); } } }
Instance of Symbol 374 MovieClip in Frame 831
onClipEvent (enterFrame) { if (_level0.used70 == 1) { _level0.used70 = 2; this.gotoAndPlay(1); if (this.hitTest(_root.player)) { this.gotoAndStop(51); _level0.used70 = 1; } } if (this.hitTest(_root.player)) { if (_level0.used70 == 2) { _level0.used70 = 1; if (_level0.ppfocus == 18) { if (_level0.used52 == 2) { _level0.ppfocus = 0; _level0.used52 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 19) { if (_level0.used53 == 2) { _level0.ppfocus = 0; _level0.used53 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 20) { if (_level0.used54 == 2) { _level0.ppfocus = 0; _level0.used54 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 21) { if (_level0.used55 == 2) { _level0.ppfocus = 0; _level0.used55 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 22) { if (_level0.used56 == 2) { _level0.ppfocus = 0; _level0.used56 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 23) { if (_level0.used57 == 2) { _level0.ppfocus = 0; _level0.used57 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 24) { if (_level0.used58 == 2) { _level0.ppfocus = 0; _level0.used58 = 3; _level0.popupp.gotoAndPlay(17); } } _root.gotoAndPlay("L7T"); } } }
Instance of Symbol 50 MovieClip "player" in Frame 831
onClipEvent (load) { var grav = 0; var run = 7; var wlk = 2.5; var speed = run; var jumpHeight = 10; var dbl = 0; var tri = 0; var djump = false; var tjump = false; var thro = false; var slow = 0.7; var slowspd = (speed / 2); var setspeed = speed; var scale = _xscale; var ex = 5; this.gotoAndStop(2); } onClipEvent (enterFrame) { grav++; _y = (_y + grav); if (Key.isDown(65)) { setspeed = wlk; } else { setspeed = run; } while (_root.ground.hitTest(_x, _y, true)) { djump = false; tjump = false; _y = (_y-1); grav = 0; } if (_root.water.hitTest(_x, _y, true)) { grav = grav * (slow * 1.25); speed = slowspd; } else { speed = setspeed; } if (Key.isDown(39)) { _x = (_x + speed); _xscale = scale; if (_root.ground.hitTest(_x, _y + 3, true)) { this.gotoAndStop(1); } else if (djump == false) { this.gotoAndStop(2); } else if (tjump == false) { this.gotoAndStop(4); } else { this.gotoAndStop(5); } } else if (Key.isDown(37)) { _x = (_x - speed); _xscale = (-scale); if (_root.ground.hitTest(_x, _y + 3, true)) { this.gotoAndStop(1); } else if (djump == false) { this.gotoAndStop(2); } else if (tjump == false) { this.gotoAndStop(4); } else { this.gotoAndStop(5); } } else if ((_root.ground.hitTest(_x, _y + 3, true) && (!Key.isDown(68))) && (!Key.isDown(83))) { this.gotoAndStop(3); } if (((((Key.isDown(68) && (!Key.isDown(38))) && (!Key.isDown(39))) && (!Key.isDown(37))) && (!Key.isDown(83))) && (_root.ground.hitTest(_x, _y + 3, true))) { this.gotoAndStop(8); } if ((((((Key.isDown(83) && (!Key.isDown(39))) && (!Key.isDown(37))) && (!Key.isDown(38))) && (!Key.isDown(68))) && (_root.ground.hitTest(_x, _y + 3, true))) && (_currentframe != 6)) { this.gotoAndStop(7); } else if (Key.isDown(83) && (grav > 1)) { this.gotoAndStop(6); } if ((_root.ground.hitTest((_x + (_width / 2)) + ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - _height, true))) { _x = (_x - speed); } if ((_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - _height, true))) { _x = (_x + speed); } if (_root.ground.hitTest(_x, (_y - _height) - 15, true)) { grav = 1; } }
Frame 832
play(); lev4tscore = score + ntimer; lev4score = ((lev4tscore - lev3score) - lev2score) - lev1score; score = lev4tscore; tempscore = score;
Frame 852
_root.gotoAndStop("wmss");
Frame 856
wmsstimescore = tstimer; wmsstimescore = wmsstimescore / -2; wmsstimescore = wmsstimescore + 300; wmsstimescore = Math.ceil((wmsstimescore = wmsstimescore * 1.5)); if (wmsstimescore < 1) { wmsstimescore = 0; } if (wmlear == 2) { wmsstimescore = 0; } wmssmin = tsmin; wmsssec = tsmtimer; score = tempscore; dscore = score; fscore = score; itused = 1; if (itused == 1) { if (itscore > 23) { mscore = 1.34; dscore = Math.ceil((dscore = dscore * mscore)); itbonus = Math.ceil(dscore - fscore); itused = 2; } } if (itused == 1) { if (itscore > 20) { mscore = 1.28; dscore = Math.ceil((dscore = dscore * mscore)); itbonus = Math.ceil(dscore - fscore); itused = 2; } } if (itused == 1) { if (itscore > 17) { mscore = 1.24; dscore = Math.ceil((dscore = dscore * mscore)); itbonus = Math.ceil(dscore - fscore); itused = 2; } } if (itused == 1) { if (itscore > 14) { mscore = 1.2; dscore = Math.ceil((dscore = dscore * mscore)); itbonus = Math.ceil(dscore - fscore); itused = 2; } } if (itused == 1) { if (itscore > 11) { mscore = 1.16; dscore = Math.ceil((dscore = dscore * mscore)); itbonus = Math.ceil(dscore - fscore); itused = 2; } } if (itused == 1) { if (itscore > 8) { mscore = 1.12; dscore = Math.ceil((dscore = dscore * mscore)); itbonus = Math.ceil(dscore - fscore); itused = 2; } } if (itused == 1) { if (itscore > 5) { mscore = 1.08; dscore = Math.ceil((dscore = dscore * mscore)); itbonus = Math.ceil(dscore - fscore); itused = 2; } } if (itused == 1) { if (itscore > 2) { mscore = 1.04; dscore = Math.ceil((dscore = dscore * mscore)); itbonus = Math.ceil(dscore - fscore); itused = 2; } } if (itused == 1) { if (itscore > 0) { itbonus = 0; itused = 2; } } if (wmlear == 1) { dscore = dscore + wmsstimescore; } gotoAndStop ("wmss2");
Frame 857
score = dscore;
Frame 859
ABvar = 2; __top10_send__ = new LoadVars(); __top10_receive__ = new LoadVars(); __top10_url_1__ = "http://www.armorbot.com/flashcomm"; __top10_url_2__ = "/top10_b"; __top10_send__.hid = 1482; __top10_send__.kid = "BGJFEY"; __top10_send__.sendAndLoad(__top10_url_1__ + __top10_url_2__, __top10_receive__, "POST"); __top10_receive__.onLoad = function (success) { if (success) { i = 1; while (i < 11) { _root.hstab[("_name" + i) + "_"].text = __top10_receive__["name" + i]; _root.hstab[("_score" + i) + "_"].text = __top10_receive__["score" + i]; i++; } } else { _root.hstab.__err__.gotoAndStop(2); } };
Frame 930
getURL ("http://www.lantay77.com/wiggi_maze/highscores.html", "_blank"); _root.gotoAndStop("wmhs");
Symbol 9 MovieClip Frame 17
gotoAndPlay (15);
Symbol 10 Button
on (release) { getURL ("http://www.wiggiworld.com", "_blank"); }
Symbol 19 MovieClip Frame 15
stop();
Symbol 21 Button
on (release) { _root.gotoAndPlay("start"); }
Symbol 35 MovieClip Frame 1
stop(); this.onEnterFrame = function () { bl = _root.getBytesLoaded(); bt = _root.getBytesTotal(); perc = (bl / bt) * 100; bar.bar._xscale = perc; if (perc >= 100) { this.gotoAndPlay("goplay"); delete this.onEnterFrame; } };
Symbol 35 MovieClip Frame 25
stop();
Symbol 47 MovieClip Frame 6
stop();
Symbol 50 MovieClip Frame 1
stop();
Symbol 52 MovieClip Frame 1
this.gotoAndStop("playbuttonnoAS");
Symbol 52 MovieClip Frame 25
stop();
Symbol 71 Button
on (press) { if ((backgroundvar = "Background Off Button")) { _level0.background.gotoAndStop(1); backgroundvar = "Background On Button"; gotoAndStop (2); } }
Symbol 74 Button
on (press) { if ((backgroundvar = "Background On Button")) { _level0.background.gotoAndPlay(2); backgroundvar = "Background Off Button"; gotoAndStop (1); } }
Symbol 89 Button
on (release) { if (_root.bkvar == 2) { _level0.background.gotoAndPlay(2); backgroundvar = "Background Off Button"; _level0.bkvar = 1; _root.bkvar = 1; gotoAndStop (2); } if (_root.bkvar == 1) { _level0.background.gotoAndStop(1); backgroundvar = "Background On Button"; _level0.bkvar = 2; _root.bkvar = 2; gotoAndStop (2); } }
Symbol 90 Button
on (release) { if (_root.bkvar == 1) { _level0.background.gotoAndStop(1); backgroundvar = "Background On Button"; _level0.bkvar = 2; _root.bkvar = 2; gotoAndStop (1); } if (_root.bkvar == 2) { _level0.background.gotoAndPlay(2); backgroundvar = "Background Off Button"; _level0.bkvar = 1; _root.bkvar = 1; gotoAndStop (1); } }
Symbol 91 MovieClip Frame 1
stop();
Symbol 95 Button
on (press) { _root.sound1.gotoAndPlay(2); }
Symbol 99 MovieClip Frame 1
stop();
Symbol 101 Button
on (press) { _root.sound2.gotoAndPlay(2); }
Symbol 103 MovieClip Frame 1
stop();
Symbol 105 Button
on (press) { _root.sound3.gotoAndPlay(2); }
Symbol 107 MovieClip Frame 1
stop();
Symbol 110 Button
on (press) { _root.sound4.gotoAndPlay(2); }
Symbol 112 MovieClip Frame 1
stop();
Symbol 121 Button
on (release) { getURL ("http://www.Lantay77.com/productions", "_blank"); }
Symbol 123 Button
on (press) { if (_level0.ivar == 1) { _level0.gotoAndStop("ins0"); } if (_level0.ivar == 2) { _root.WPI_ArcadeStartSingleGame(); _level0.gotoAndStop("L1"); } }
Symbol 125 Button
on (press) { _root.gotoAndStop("ins1"); }
Symbol 128 Button
on (press) { _level0.creditsclip.gotoAndStop(2); _level0.buttoncol.gotoAndStop(2); }
Symbol 130 Button
on (press) { _root.gotoAndStop("wmhs"); }
Symbol 134 MovieClip Frame 1
stop();
Symbol 134 MovieClip Frame 2
stop();
Symbol 152 Button
on (press) { _level0.buttoncol.gotoAndStop(1); this.gotoAndStop(1); }
Symbol 157 Button
on (release) { getURL ("http://www.armorbot.com", "_blank"); }
Symbol 191 Button
on (release) { getURL ("http://www.newgrounds.com", "_blank"); }
Symbol 192 MovieClip Frame 1
stop();
Symbol 192 MovieClip Frame 2
stop();
Symbol 196 Button
on (press) { _root.gotoAndStop("wmts"); }
Symbol 200 MovieClip Frame 50
gotoAndPlay (1);
Symbol 215 MovieClip Frame 1
stop();
Symbol 221 MovieClip Frame 10
gotoAndPlay (1);
Symbol 230 Button
on (press) { if (_level0.ppfocus == I1) { if (_level0.usedI1 == 2) { _level0.usedI1 = 1; _level0.tooth3check.gotoAndStop(2); _level0.popupp.gotoAndPlay(17); } } }
Symbol 231 Button
on (press) { if (_level0.ppfocus == I1) { if (_level0.usedI1 == 2) { _level0.usedI1 = 3; _level.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } }
Symbol 232 MovieClip Frame 1
stop();
Symbol 232 MovieClip Frame 16
stop();
Symbol 232 MovieClip Frame 30
stop();
Symbol 237 MovieClip Frame 50
gotoAndPlay (1);
Symbol 241 MovieClip Frame 50
gotoAndPlay (1);
Symbol 241 MovieClip Frame 52
gotoAndStop (51);
Symbol 241 MovieClip Frame 102
gotoAndPlay (53);
Symbol 252 Button
on (press) { _root.gotoAndStop("ins1"); }
Symbol 256 Button
on (press) { _root.WPI_ArcadeStartSingleGame(); _level0.gotoAndStop("L1"); }
Symbol 285 MovieClip Frame 1
stop();
Symbol 285 MovieClip Frame 2
stop();
Symbol 290 Button
on (press) { _root.ABvar = 1; _root.gotoAndStop("wmts"); }
Symbol 295 Button
on (press) { getURL ("http://www.lantay77.com/wiggi_maze/highscores.html", "_blank"); }
Symbol 310 MovieClip Frame 20
stop();
Symbol 312 MovieClip Frame 20
stop();
Symbol 313 MovieClip Frame 1
stop();
Symbol 313 MovieClip Frame 2
_level0.gotoAndStop("e7");
Symbol 313 MovieClip Frame 3
_level0.gotoAndStop("e6");
Symbol 313 MovieClip Frame 4
_level0.gotoAndStop("e5");
Symbol 313 MovieClip Frame 5
_level0.gotoAndStop("e4");
Symbol 313 MovieClip Frame 6
_level0.gotoAndStop("e3");
Symbol 313 MovieClip Frame 7
_level0.gotoAndStop("e2");
Symbol 313 MovieClip Frame 8
_level0.gotoAndStop("e1");
Symbol 313 MovieClip Frame 9
_level0.gotoAndStop("d9");
Symbol 313 MovieClip Frame 10
_level0.gotoAndStop("d8");
Symbol 313 MovieClip Frame 11
_level0.gotoAndStop("d7");
Symbol 313 MovieClip Frame 12
_level0.gotoAndStop("d6");
Symbol 313 MovieClip Frame 13
_level0.gotoAndStop("d5");
Symbol 313 MovieClip Frame 14
_level0.gotoAndStop("d4");
Symbol 313 MovieClip Frame 15
_level0.gotoAndStop("d3");
Symbol 313 MovieClip Frame 16
_level0.gotoAndStop("L3MF0B"); gotoAndStop (1);
Symbol 313 MovieClip Frame 17
_level0.gotoAndStop("zz1");
Symbol 313 MovieClip Frame 18
_level0.gotoAndStop("zz2");
Symbol 313 MovieClip Frame 19
_level0.gotoAndStop("zz3");
Symbol 313 MovieClip Frame 20
_level0.gotoAndStop("zz4");
Symbol 313 MovieClip Frame 21
_level0.gotoAndStop("zz5");
Symbol 313 MovieClip Frame 22
_level0.gotoAndStop("zz6");
Symbol 313 MovieClip Frame 23
_level0.gotoAndStop("zz7");
Symbol 313 MovieClip Frame 24
_level0.gotoAndStop("zz8");
Symbol 313 MovieClip Frame 25
_level0.gotoAndStop("zz9");
Symbol 313 MovieClip Frame 26
_level0.gotoAndStop("zz10");
Symbol 313 MovieClip Frame 27
_level0.gotoAndStop("zz11");
Symbol 313 MovieClip Frame 28
_level0.gotoAndStop("zz12");
Symbol 313 MovieClip Frame 29
_level0.gotoAndStop("zz13");
Symbol 313 MovieClip Frame 30
_level0.gotoAndStop("zz14");
Symbol 313 MovieClip Frame 31
_level0.gotoAndStop("L3MF8"); gotoAndStop (1);
Symbol 316 MovieClip Frame 1
stop();
Symbol 319 MovieClip Frame 1
stop();
Symbol 322 MovieClip Frame 1
stop();
Symbol 330 Button
on (press) { wmlear = 2; _root.lev1score = _root.score; _root.score = _root.lev1score; _root.tempscore = _root.score; _root.gotoAndStop("wmss"); }
Symbol 335 MovieClip Frame 1
stop();
Symbol 335 MovieClip Frame 2
stop();
Symbol 335 MovieClip Frame 3
stop();
Symbol 339 MovieClip Frame 10
gotoAndPlay (1);
Symbol 343 MovieClip Frame 10
gotoAndPlay (1);
Symbol 348 MovieClip Frame 10
gotoAndPlay (1);
Symbol 349 MovieClip Frame 50
gotoAndPlay (1);
Symbol 350 MovieClip Frame 50
gotoAndPlay (1);
Symbol 355 MovieClip Frame 10
gotoAndPlay (1);
Symbol 356 Button
on (press) { if (_level0.ppfocus == 1) { if (_level0.used12 == 2) { _root.score = _root.score + 50; _root.itscore = _root.itscore + 1; _level0.used12 = 1; _level0.toothcheck.gotoAndStop(2); _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 2) { if (_level0.used14 == 2) { _root.score = _root.score + 50; _root.itscore = _root.itscore + 1; _level0.used14 = 1; _level0.soapcheck.gotoAndStop(2); _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 3) { if (_level0.used17 == 2) { _root.score = _root.score - 50; _root.itscore = _root.itscore + 1; _level0.used17 = 1; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 4) { if (_level0.used18 == 2) { _root.score = _root.score + 50; _root.itscore = _root.itscore + 1; _level0.used18 = 1; _level0.bookcheck.gotoAndStop(2); _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 5) { if (_level0.used19 == 2) { _root.score = _root.score + 50; _root.itscore = _root.itscore + 1; _level0.used19 = 1; _level0.carcheck.gotoAndStop(2); _level0.popupp.gotoAndPlay(17); } } }
Symbol 357 Button
on (press) { if (_level0.ppfocus == 1) { if (_level0.used12 == 2) { _level0.used12 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 2) { if (_level0.used14 == 2) { _level0.used14 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 3) { if (_level0.used17 == 2) { _level0.used17 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 4) { if (_level0.used18 == 2) { _level0.used18 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 5) { if (_level0.used19 == 2) { _level0.used19 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } }
Symbol 363 Button
on (press) { _level0.popupp.gotoAndPlay(46); _level0.used15 = 1; _root.gotoAndStop("L3MF3"); }
Symbol 364 Button
on (press) { _level0.popupp.gotoAndPlay(46); _level0.used15 = 1; _root.gotoAndPlay("L3MF4"); }
Symbol 365 MovieClip Frame 1
stop();
Symbol 365 MovieClip Frame 16
stop();
Symbol 365 MovieClip Frame 30
if (_level0.quiz1ready == 1) { stop(); }
Symbol 365 MovieClip Frame 31
_level0.quiz1ready = 1;
Symbol 365 MovieClip Frame 45
stop();
Symbol 366 MovieClip Frame 50
gotoAndPlay (1);
Symbol 367 MovieClip Frame 50
gotoAndPlay (1);
Symbol 368 MovieClip Frame 50
gotoAndPlay (1);
Symbol 369 MovieClip Frame 50
gotoAndPlay (1);
Symbol 370 MovieClip Frame 50
gotoAndPlay (1);
Symbol 371 MovieClip Frame 50
gotoAndPlay (1);
Symbol 372 MovieClip Frame 50
gotoAndPlay (1);
Symbol 373 MovieClip Frame 50
gotoAndPlay (1);
Symbol 374 MovieClip Frame 50
gotoAndPlay (1);
Symbol 375 MovieClip Frame 1
stop();
Symbol 375 MovieClip Frame 2
_level0.gotoAndStop("q1");
Symbol 375 MovieClip Frame 3
_level0.gotoAndStop("q2");
Symbol 375 MovieClip Frame 4
_level0.gotoAndStop("q3");
Symbol 375 MovieClip Frame 5
_level0.gotoAndStop("q4");
Symbol 375 MovieClip Frame 6
_level0.gotoAndStop("q5");
Symbol 375 MovieClip Frame 7
_level0.gotoAndStop("q6");
Symbol 375 MovieClip Frame 8
_level0.gotoAndStop("q7");
Symbol 375 MovieClip Frame 9
_level0.gotoAndStop("q8");
Symbol 375 MovieClip Frame 10
_level0.gotoAndStop("q9");
Symbol 375 MovieClip Frame 11
_level0.gotoAndStop("q10");
Symbol 375 MovieClip Frame 12
_level0.gotoAndStop("q11");
Symbol 375 MovieClip Frame 13
_level0.gotoAndStop("q12");
Symbol 375 MovieClip Frame 14
_level0.gotoAndStop("q13");
Symbol 375 MovieClip Frame 15
_level0.gotoAndStop("q14");
Symbol 375 MovieClip Frame 16
_level0.gotoAndStop("q15"); gotoAndStop (1);
Symbol 375 MovieClip Frame 17
_level0.gotoAndStop("y2");
Symbol 375 MovieClip Frame 18
_level0.gotoAndStop("y3");
Symbol 375 MovieClip Frame 19
_level0.gotoAndStop("y4");
Symbol 375 MovieClip Frame 20
_level0.gotoAndStop("y5");
Symbol 375 MovieClip Frame 21
_level0.gotoAndStop("y6");
Symbol 375 MovieClip Frame 22
_level0.gotoAndStop("y7");
Symbol 375 MovieClip Frame 23
_level0.gotoAndStop("y8");
Symbol 375 MovieClip Frame 24
_level0.gotoAndStop("y9");
Symbol 375 MovieClip Frame 25
_level0.gotoAndStop("y10");
Symbol 375 MovieClip Frame 26
_level0.gotoAndStop("y11");
Symbol 375 MovieClip Frame 27
_level0.gotoAndStop("y12");
Symbol 375 MovieClip Frame 28
_level0.gotoAndStop("y13");
Symbol 375 MovieClip Frame 29
_level0.gotoAndStop("y14");
Symbol 375 MovieClip Frame 30
_level0.gotoAndStop("y15");
Symbol 375 MovieClip Frame 31
if (_level0.ynvar == 1) { _level0.gotoAndStop("ya"); }
Symbol 375 MovieClip Frame 32
if (_level0.ynvar == 2) { _level0.gotoAndStop("yb"); } gotoAndStop (1);
Symbol 378 MovieClip Frame 1
stop();
Symbol 381 MovieClip Frame 1
stop();
Symbol 384 MovieClip Frame 1
stop();
Symbol 387 MovieClip Frame 1
stop();
Symbol 390 Button
on (press) { wmlear = 2; _root.lev2tscore = _root.score; _root.lev2score = _root.lev2tscore - _root.lev1score; _root.score = _root.lev2tscore; _root.tempscore = _root.score; _root.gotoAndStop("wmss"); }
Symbol 394 MovieClip Frame 1
stop();
Symbol 394 MovieClip Frame 2
stop();
Symbol 399 MovieClip Frame 10
gotoAndPlay (1);
Symbol 404 MovieClip Frame 10
gotoAndPlay (1);
Symbol 409 MovieClip Frame 10
gotoAndPlay (1);
Symbol 414 MovieClip Frame 10
gotoAndPlay (1);
Symbol 419 MovieClip Frame 10
gotoAndPlay (1);
Symbol 424 MovieClip Frame 10
gotoAndPlay (1);
Symbol 425 MovieClip Frame 50
gotoAndPlay (1);
Symbol 426 MovieClip Frame 50
gotoAndPlay (1);
Symbol 427 Button
on (press) { if (_level0.ppfocus == 5) { if (_level0.used24 == 2) { _root.score = _root.score + 50; _root.itscore = _root.itscore + 1; _level0.used24 = 1; _level0.popcheck.gotoAndStop(2); _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 6) { if (_level0.used25 == 2) { _root.score = _root.score + 50; _level0.used25 = 1; _level0.sockcheck.gotoAndStop(2); _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 7) { if (_level0.used26 == 2) { _root.score = _root.score + 50; _root.itscore = _root.itscore + 1; _level0.used26 = 1; _level0.pencheck.gotoAndStop(2); _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 8) { if (_level0.used27 == 2) { _root.score = _root.score + 50; _root.itscore = _root.itscore + 1; _level0.used27 = 1; _level0.used31 = 4; _level0.used31sub = 2; _level0.calccheck.gotoAndStop(2); _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 9) { if (_level0.used28 == 2) { _root.score = _root.score - 50; _root.itscore = _root.itscore + 1; _level0.used28 = 1; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 10) { if (_level0.used29 == 2) { _root.score = _root.score - 50; _root.itscore = _root.itscore + 1; _level0.used29 = 1; _level0.popupp.gotoAndPlay(17); } } }
Symbol 428 Button
on (press) { if (_level0.ppfocus == 5) { if (_level0.used24 == 2) { _level0.used24 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 6) { if (_level0.used25 == 2) { _level0.used25 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 7) { if (_level0.used26 == 2) { _level0.used26 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 8) { if (_level0.used27 == 2) { _level0.used27 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 9) { if (_level0.used28 == 2) { _level0.used28 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 10) { if (_level0.used29 == 2) { _level0.used29 = 3; _level0.ppfocus = 0; _level0.popupp.gotoAndPlay(17); } } }
Symbol 434 Button
on (press) { _level0.popupp.gotoAndPlay(46); _level0.used30 = 1; _level0.quiz2ready = 1; _root.gotoAndPlay("L4MF4"); }
Symbol 435 Button
on (press) { _level0.popupp.gotoAndPlay(46); _level0.used30 = 1; _level0.quiz2ready = 1; _root.gotoAndStop("L4MF3"); }
Symbol 436 MovieClip Frame 1
stop();
Symbol 436 MovieClip Frame 16
stop();
Symbol 436 MovieClip Frame 30
if (_level0.quiz2ready == 1) { stop(); }
Symbol 436 MovieClip Frame 31
_level0.quiz1ready = 1;
Symbol 436 MovieClip Frame 45
stop();
Symbol 437 MovieClip Frame 50
gotoAndPlay (1);
Symbol 438 MovieClip Frame 50
gotoAndPlay (1);
Symbol 439 MovieClip Frame 50
gotoAndPlay (1);
Symbol 440 MovieClip Frame 50
gotoAndPlay (1);
Symbol 441 MovieClip Frame 50
gotoAndPlay (1);
Symbol 442 MovieClip Frame 1
stop();
Symbol 442 MovieClip Frame 2
_level0.gotoAndStop("q1");
Symbol 442 MovieClip Frame 3
_level0.gotoAndStop("q2");
Symbol 442 MovieClip Frame 4
_level0.gotoAndStop("q3");
Symbol 442 MovieClip Frame 5
_level0.gotoAndStop("q4");
Symbol 442 MovieClip Frame 6
_level0.gotoAndStop("q5");
Symbol 442 MovieClip Frame 7
_level0.gotoAndStop("q6");
Symbol 442 MovieClip Frame 8
_level0.gotoAndStop("q7");
Symbol 442 MovieClip Frame 9
_level0.gotoAndStop("q8");
Symbol 442 MovieClip Frame 10
_level0.gotoAndStop("q9");
Symbol 442 MovieClip Frame 11
_level0.gotoAndStop("q10");
Symbol 442 MovieClip Frame 12
_level0.gotoAndStop("q11");
Symbol 442 MovieClip Frame 13
_level0.gotoAndStop("q12");
Symbol 442 MovieClip Frame 14
_level0.gotoAndStop("q13");
Symbol 442 MovieClip Frame 15
_level0.gotoAndStop("q14");
Symbol 442 MovieClip Frame 16
_level0.gotoAndStop("q15"); gotoAndStop (1);
Symbol 442 MovieClip Frame 17
_level0.gotoAndStop("y2");
Symbol 442 MovieClip Frame 18
_level0.gotoAndStop("y3");
Symbol 442 MovieClip Frame 19
_level0.gotoAndStop("y4");
Symbol 442 MovieClip Frame 20
_level0.gotoAndStop("y5");
Symbol 442 MovieClip Frame 21
_level0.gotoAndStop("y6");
Symbol 442 MovieClip Frame 22
_level0.gotoAndStop("y7");
Symbol 442 MovieClip Frame 23
_level0.gotoAndStop("y8");
Symbol 442 MovieClip Frame 24
_level0.gotoAndStop("y9");
Symbol 442 MovieClip Frame 25
_level0.gotoAndStop("y10");
Symbol 442 MovieClip Frame 26
_level0.gotoAndStop("y11");
Symbol 442 MovieClip Frame 27
_level0.gotoAndStop("y12");
Symbol 442 MovieClip Frame 28
_level0.gotoAndStop("y13");
Symbol 442 MovieClip Frame 29
_level0.gotoAndStop("y14");
Symbol 442 MovieClip Frame 30
_level0.gotoAndStop("y15");
Symbol 442 MovieClip Frame 31
if (_level0.ynvar == 1) { _level0.gotoAndStop("ya"); }
Symbol 442 MovieClip Frame 32
if (_level0.ynvar == 2) { _level0.gotoAndStop("yb"); } gotoAndStop (1);
Symbol 445 MovieClip Frame 1
stop();
Symbol 448 MovieClip Frame 1
stop();
Symbol 451 MovieClip Frame 1
stop();
Symbol 454 MovieClip Frame 1
stop();
Symbol 457 Button
on (press) { wmlear = 2; _root.lev3tscore = _root.score; _root.lev3score = (_root.lev3tscore - _root.lev2score) - _root.lev1score; _root.score = _root.lev3tscore; _root.tempscore = _root.score; _root.gotoAndStop("wmss"); }
Symbol 467 MovieClip Frame 1
stop();
Symbol 467 MovieClip Frame 2
stop();
Symbol 467 MovieClip Frame 3
stop();
Symbol 467 MovieClip Frame 4
stop();
Symbol 467 MovieClip Frame 5
stop();
Symbol 472 MovieClip Frame 10
gotoAndPlay (1);
Symbol 477 MovieClip Frame 10
gotoAndPlay (1);
Symbol 482 MovieClip Frame 10
gotoAndPlay (1);
Symbol 487 MovieClip Frame 10
gotoAndPlay (1);
Symbol 492 MovieClip Frame 10
gotoAndPlay (1);
Symbol 497 MovieClip Frame 10
gotoAndPlay (1);
Symbol 502 MovieClip Frame 10
gotoAndPlay (1);
Symbol 503 Button
on (press) { if (_level0.ppfocus == 11) { if (_level0.used38 == 2) { _root.score = _root.score - 50; _root.itscore = _root.itscore + 1; _level0.used38 = 1; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 12) { if (_level0.used39 == 2) { _root.score = _root.score + 50; _root.itscore = _root.itscore + 1; _level0.used39 = 1; _level0.cancheck.gotoAndStop(2); _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 13) { if (_level0.used40 == 2) { _root.score = _root.score - 50; _root.itscore = _root.itscore + 1; _level0.used40 = 1; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 14) { if (_level0.used41 == 2) { _root.score = _root.score - 50; _root.itscore = _root.itscore + 1; _level0.used41 = 1; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 15) { if (_level0.used42 == 2) { _root.score = _root.score + 50; _root.itscore = _root.itscore + 1; _level0.used42 = 1; _level0.picklecheck.gotoAndStop(2); _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 16) { if (_level0.used43 == 2) { _root.score = _root.score + 50; _root.itscore = _root.itscore + 1; _level0.used43 = 1; _level0.bbcheck.gotoAndStop(2); _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 17) { if (_level0.used44 == 2) { _root.score = _root.score + 50; _root.itscore = _root.itscore + 1; _level0.used44 = 1; _level0.feathercheck.gotoAndStop(2); _level0.popupp.gotoAndPlay(17); } } }
Symbol 504 Button
on (press) { if (_level0.ppfocus == 11) { if (_level0.used38 == 2) { _level0.ppfocus = 0; _level0.used38 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 12) { if (_level0.used39 == 2) { _level0.ppfocus = 0; _level0.used39 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 13) { if (_level0.used40 == 2) { _level0.ppfocus = 0; _level0.used40 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 14) { if (_level0.used41 == 2) { _level0.ppfocus = 0; _level0.used41 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 15) { if (_level0.used42 == 2) { _level0.ppfocus = 0; _level0.used42 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 16) { if (_level0.used43 == 2) { _level0.ppfocus = 0; _level0.used43 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 17) { if (_level0.used44 == 2) { _level0.ppfocus = 0; _level0.used44 = 3; _level0.popupp.gotoAndPlay(17); } } }
Symbol 511 Button
on (press) { _level0.popupp.gotoAndPlay(46); _level0.used30 = 1; _level0.quiz3ready = 1; _root.gotoAndPlay("L5MF8"); }
Symbol 512 Button
on (press) { _level0.popupp.gotoAndPlay(46); _level0.used30 = 1; _level0.quiz3ready = 1; _root.ground.gotoAndStop(2); _root.gotoAndPlay("L5MF3"); }
Symbol 513 MovieClip Frame 1
stop();
Symbol 513 MovieClip Frame 16
stop();
Symbol 513 MovieClip Frame 30
if (_level0.quiz3ready == 1) { stop(); }
Symbol 513 MovieClip Frame 31
_level0.quiz3ready = 1;
Symbol 513 MovieClip Frame 45
stop();
Symbol 514 MovieClip Frame 50
gotoAndPlay (1);
Symbol 515 MovieClip Frame 1
stop();
Symbol 515 MovieClip Frame 2
_level0.gotoAndStop("q1");
Symbol 515 MovieClip Frame 3
_level0.gotoAndStop("q2");
Symbol 515 MovieClip Frame 4
_level0.gotoAndStop("q3");
Symbol 515 MovieClip Frame 5
_level0.gotoAndStop("q4");
Symbol 515 MovieClip Frame 6
_level0.gotoAndStop("q5");
Symbol 515 MovieClip Frame 7
_level0.gotoAndStop("q6");
Symbol 515 MovieClip Frame 8
_level0.gotoAndStop("q7");
Symbol 515 MovieClip Frame 9
_level0.gotoAndStop("q8");
Symbol 515 MovieClip Frame 10
_level0.gotoAndStop("q9");
Symbol 515 MovieClip Frame 11
_level0.gotoAndStop("q10");
Symbol 515 MovieClip Frame 12
_level0.gotoAndStop("q11");
Symbol 515 MovieClip Frame 13
_level0.gotoAndStop("q12");
Symbol 515 MovieClip Frame 14
_level0.gotoAndStop("q13");
Symbol 515 MovieClip Frame 15
_level0.gotoAndStop("q14");
Symbol 515 MovieClip Frame 16
_level0.gotoAndStop("q15"); gotoAndStop (1);
Symbol 515 MovieClip Frame 17
_level0.gotoAndStop("y2");
Symbol 515 MovieClip Frame 18
_level0.gotoAndStop("y3");
Symbol 515 MovieClip Frame 19
_level0.gotoAndStop("y4");
Symbol 515 MovieClip Frame 20
_level0.gotoAndStop("y5");
Symbol 515 MovieClip Frame 21
_level0.gotoAndStop("y6");
Symbol 515 MovieClip Frame 22
_level0.gotoAndStop("y7");
Symbol 515 MovieClip Frame 23
_level0.gotoAndStop("y8");
Symbol 515 MovieClip Frame 24
_level0.gotoAndStop("y9");
Symbol 515 MovieClip Frame 25
_level0.gotoAndStop("y10");
Symbol 515 MovieClip Frame 26
_level0.gotoAndStop("y11");
Symbol 515 MovieClip Frame 27
_level0.gotoAndStop("y12");
Symbol 515 MovieClip Frame 28
_level0.gotoAndStop("y13");
Symbol 515 MovieClip Frame 29
_level0.gotoAndStop("y14");
Symbol 515 MovieClip Frame 30
_level0.gotoAndStop("y15");
Symbol 515 MovieClip Frame 31
if (_level0.ynvar == 1) { _level0.gotoAndStop("ya"); }
Symbol 515 MovieClip Frame 32
if (_level0.ynvar == 2) { _level0.gotoAndStop("yb"); } gotoAndStop (1);
Symbol 519 MovieClip Frame 1
stop();
Symbol 522 MovieClip Frame 1
stop();
Symbol 525 MovieClip Frame 1
stop();
Symbol 528 MovieClip Frame 1
stop();
Symbol 531 MovieClip Frame 1
stop();
Symbol 534 MovieClip Frame 1
stop();
Symbol 537 MovieClip Frame 1
stop();
Symbol 538 Button
on (press) { wmlear = 2; _root.lev4tscore = _root.score; _root.lev4score = ((_root.lev4tscore - _root.lev3score) - _root.lev2score) - _root.lev1score; _root.score = _root.lev4tscore; _root.tempscore = score; _root.gotoAndStop("wmss"); }
Symbol 546 MovieClip Frame 1
stop();
Symbol 546 MovieClip Frame 2
stop();
Symbol 546 MovieClip Frame 3
stop();
Symbol 546 MovieClip Frame 4
stop();
Symbol 547 MovieClip Frame 50
gotoAndPlay (1);
Symbol 547 MovieClip Frame 52
gotoAndStop (51);
Symbol 547 MovieClip Frame 102
gotoAndPlay (53);
Symbol 548 Button
on (press) { if (_level0.ppfocus == 18) { if (_level0.used52 == 2) { _root.score = _root.score + 50; _root.itscore = _root.itscore + 1; _level0.used52 = 1; _level0.notecheck.gotoAndStop(2); _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 19) { if (_level0.used53 == 2) { _root.score = _root.score + 50; _root.itscore = _root.itscore + 1; _level0.used53 = 1; _level0.tooth2check.gotoAndStop(2); _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 20) { if (_level0.used54 == 2) { _root.score = _root.score + 50; _root.itscore = _root.itscore + 1; _level0.used54 = 1; _level0.erasercheck.gotoAndStop(2); _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 21) { if (_level0.used55 == 2) { _root.score = _root.score + 50; _root.itscore = _root.itscore + 1; _level0.used55 = 1; _level0.gumcheck.gotoAndStop(2); _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 22) { if (_level0.used56 == 2) { _root.score = _root.score + 50; _root.itscore = _root.itscore + 1; _level0.used56 = 1; _level0.bootcheck.gotoAndStop(2); _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 23) { if (_level0.used57 == 2) { _root.score = _root.score + 50; _root.itscore = _root.itscore + 1; _level0.used57 = 1; _level0.burgercheck.gotoAndStop(2); _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 24) { if (_level0.used58 == 2) { _root.score = _root.score + 50; _root.itscore = _root.itscore + 1; _level0.used58 = 1; _level0.batterycheck.gotoAndStop(2); _level0.popupp.gotoAndPlay(17); } } }
Symbol 549 Button
on (press) { if (_level0.ppfocus == 18) { if (_level0.used52 == 2) { _level0.ppfocus = 0; _level0.used52 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 19) { if (_level0.used53 == 2) { _level0.ppfocus = 0; _level0.used53 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 20) { if (_level0.used54 == 2) { _level0.ppfocus = 0; _level0.used54 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 21) { if (_level0.used55 == 2) { _level0.ppfocus = 0; _level0.used55 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 22) { if (_level0.used56 == 2) { _level0.ppfocus = 0; _level0.used56 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 23) { if (_level0.used57 == 2) { _level0.ppfocus = 0; _level0.used57 = 3; _level0.popupp.gotoAndPlay(17); } } if (_level0.ppfocus == 24) { if (_level0.used58 == 2) { _level0.ppfocus = 0; _level0.used58 = 3; _level0.popupp.gotoAndPlay(17); } } }
Symbol 555 Button
on (press) { _level0.popupp.gotoAndPlay(46); _level0.used64 = 1; _level0.quiz3ready = 1; _root.gotoAndPlay("L6MF9"); }
Symbol 556 Button
on (press) { _level0.popupp.gotoAndPlay(46); _level0.used64 = 1; _level0.quiz3ready = 1; _root.gotoAndPlay("L6MF10"); }
Symbol 574 Button
on (press) { _level0.popupp.gotoAndPlay(76); _level0.used68 = 1; _level0.quiz5ready = 1; _root.gotoAndPlay("L6MF18"); }
Symbol 575 Button
on (press) { _level0.popupp.gotoAndPlay(76); _level0.used68 = 1; _level0.quiz5ready = 1; _root.gotoAndPlay("L6MF16"); }
Symbol 576 MovieClip Frame 1
stop();
Symbol 576 MovieClip Frame 16
stop();
Symbol 576 MovieClip Frame 30
if (_level0.quiz4ready == 1) { stop(); }
Symbol 576 MovieClip Frame 31
_level0.quiz4ready = 1;
Symbol 576 MovieClip Frame 45
stop();
Symbol 576 MovieClip Frame 60
if (_level0.quiz5ready == 1) { stop(); }
Symbol 576 MovieClip Frame 61
_level0.quiz5ready = 1;
Symbol 576 MovieClip Frame 75
stop();
Symbol 577 MovieClip Frame 50
gotoAndPlay (1);
Symbol 578 MovieClip Frame 50
gotoAndPlay (1);
Symbol 579 MovieClip Frame 50
gotoAndPlay (1);
Symbol 580 MovieClip Frame 50
gotoAndPlay (1);
Symbol 586 Button
on (press) { _root.gotoAndStop("wmss3"); }
Symbol 587 Button
on (press) { _root.gotoAndStop("wmts"); }
Symbol 592 Button
on (press) { _root.gotoAndStop("wmss4"); }
Symbol 617 Button
on (press) { ab20_09 = new LoadVars(); ab20_09.z = wmname; ab20_09.x = score; ab20_09.c = 1482; ab20_09.v = "BGJFEY"; ab20_09.sendAndLoad("http://armorbot.com/s_b", ab20_09, "POST"); _root.gotoAndPlay("wmss5"); }
Symbol 618 Button
on (press) { _root.gotoAndStop("wmss2"); }
Symbol 619 Button
on (press) { _root.ABvar = 1; _root.gotoAndStop("wmss2"); }

Library Items

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

Instance Names

"ground"Frame 1Symbol 37 MovieClip
"player"Frame 1Symbol 50 MovieClip
"backgroundbutton"Frame 51Symbol 76 MovieClip
"backgroundbutton"Frame 51Symbol 91 MovieClip
"sound1"Frame 51Symbol 99 MovieClip
"sound2"Frame 51Symbol 103 MovieClip
"sound3"Frame 51Symbol 107 MovieClip
"sound4"Frame 51Symbol 112 MovieClip
"background"Frame 64Symbol 60 MovieClip
"sound1"Frame 64Symbol 99 MovieClip
"sound2"Frame 64Symbol 103 MovieClip
"sound3"Frame 64Symbol 107 MovieClip
"sound4"Frame 64Symbol 112 MovieClip
"backgroundbutton"Frame 64Symbol 91 MovieClip
"buttoncol"Frame 64Symbol 134 MovieClip
"creditsclip"Frame 64Symbol 192 MovieClip
"ground"Frame 65Symbol 198 MovieClip
"player"Frame 65Symbol 50 MovieClip
"ground"Frame 66Symbol 207 MovieClip
"player"Frame 66Symbol 50 MovieClip
"ground"Frame 67Symbol 207 MovieClip
"player"Frame 67Symbol 50 MovieClip
"player"Frame 80Symbol 50 MovieClip
"tooth3check"Frame 81Symbol 215 MovieClip
"popupp"Frame 81Symbol 232 MovieClip
"player"Frame 81Symbol 50 MovieClip
"hstab"Frame 84Symbol 289 MovieClip
"background"Frame 104Symbol 60 MovieClip
"backgroundbutton"Frame 104Symbol 76 MovieClip
"sound1"Frame 104Symbol 99 MovieClip
"sound2"Frame 104Symbol 103 MovieClip
"sound3"Frame 104Symbol 107 MovieClip
"sound4"Frame 104Symbol 112 MovieClip
"backgroundbutton"Frame 104Symbol 91 MovieClip
"sound1"Frame 133Symbol 99 MovieClip
"sound2"Frame 133Symbol 103 MovieClip
"sound3"Frame 133Symbol 107 MovieClip
"sound4"Frame 133Symbol 112 MovieClip
"backgroundbutton"Frame 133Symbol 91 MovieClip
"background"Frame 159Symbol 60 MovieClip
"sound1"Frame 159Symbol 99 MovieClip
"sound2"Frame 159Symbol 103 MovieClip
"sound3"Frame 159Symbol 107 MovieClip
"sound4"Frame 159Symbol 112 MovieClip
"backgroundbutton"Frame 159Symbol 91 MovieClip
"rewinder"Frame 181Symbol 313 MovieClip
"background"Frame 181Symbol 60 MovieClip
"toothcheck"Frame 181Symbol 215 MovieClip
"soapcheck"Frame 181Symbol 316 MovieClip
"carcheck"Frame 181Symbol 319 MovieClip
"bookcheck"Frame 181Symbol 322 MovieClip
"sound4"Frame 181Symbol 112 MovieClip
"sound1"Frame 181Symbol 99 MovieClip
"sound2"Frame 181Symbol 103 MovieClip
"sound3"Frame 181Symbol 107 MovieClip
"backgroundbutton"Frame 181Symbol 91 MovieClip
"ground"Frame 181Symbol 335 MovieClip
"player"Frame 181Symbol 50 MovieClip
"popupp"Frame 181Symbol 365 MovieClip
"player"Frame 196Symbol 50 MovieClip
"player"Frame 199Symbol 50 MovieClip
"player"Frame 214Symbol 50 MovieClip
"player"Frame 229Symbol 50 MovieClip
"player"Frame 244Symbol 50 MovieClip
"player"Frame 259Symbol 50 MovieClip
"player"Frame 276Symbol 50 MovieClip
"rewinder2"Frame 301Symbol 375 MovieClip
"background"Frame 301Symbol 60 MovieClip
"sound4"Frame 301Symbol 112 MovieClip
"sockcheck"Frame 301Symbol 378 MovieClip
"pencheck"Frame 301Symbol 381 MovieClip
"popcheck"Frame 301Symbol 384 MovieClip
"calccheck"Frame 301Symbol 387 MovieClip
"sound1"Frame 301Symbol 99 MovieClip
"sound2"Frame 301Symbol 103 MovieClip
"sound3"Frame 301Symbol 107 MovieClip
"backgroundbutton"Frame 301Symbol 91 MovieClip
"ground"Frame 301Symbol 394 MovieClip
"player"Frame 301Symbol 50 MovieClip
"popupp"Frame 301Symbol 436 MovieClip
"player"Frame 303Symbol 50 MovieClip
"player"Frame 319Symbol 50 MovieClip
"player"Frame 335Symbol 50 MovieClip
"player"Frame 351Symbol 50 MovieClip
"player"Frame 366Symbol 50 MovieClip
"player"Frame 381Symbol 50 MovieClip
"player"Frame 396Symbol 50 MovieClip
"player"Frame 428Symbol 50 MovieClip
"rewinder3"Frame 456Symbol 442 MovieClip
"background"Frame 456Symbol 60 MovieClip
"sound4"Frame 456Symbol 112 MovieClip
"feathercheck"Frame 456Symbol 445 MovieClip
"cancheck"Frame 456Symbol 448 MovieClip
"bbcheck"Frame 456Symbol 451 MovieClip
"picklecheck"Frame 456Symbol 454 MovieClip
"sound1"Frame 456Symbol 99 MovieClip
"sound2"Frame 456Symbol 103 MovieClip
"sound3"Frame 456Symbol 107 MovieClip
"backgroundbutton"Frame 456Symbol 91 MovieClip
"ground"Frame 456Symbol 467 MovieClip
"usedfo1"Frame 456Symbol 367 MovieClip
"player"Frame 456Symbol 50 MovieClip
"popupp"Frame 456Symbol 513 MovieClip
"usedfo1"Frame 472Symbol 367 MovieClip
"player"Frame 472Symbol 50 MovieClip
"usedfo1"Frame 487Symbol 367 MovieClip
"player"Frame 487Symbol 50 MovieClip
"usedfo1"Frame 502Symbol 367 MovieClip
"player"Frame 502Symbol 50 MovieClip
"usedfo1"Frame 517Symbol 367 MovieClip
"player"Frame 517Symbol 50 MovieClip
"player"Frame 532Symbol 50 MovieClip
"ground"Frame 534Symbol 467 MovieClip
"usedfo1"Frame 548Symbol 367 MovieClip
"player"Frame 548Symbol 50 MovieClip
"usedfo1"Frame 563Symbol 367 MovieClip
"player"Frame 563Symbol 50 MovieClip
"player"Frame 578Symbol 50 MovieClip
"usedfo1"Frame 593Symbol 367 MovieClip
"player"Frame 593Symbol 50 MovieClip
"usedfo1"Frame 594Symbol 367 MovieClip
"rewinder4"Frame 617Symbol 515 MovieClip
"background"Frame 617Symbol 60 MovieClip
"sound4"Frame 617Symbol 112 MovieClip
"backgroundbutton"Frame 617Symbol 91 MovieClip
"notecheck"Frame 617Symbol 519 MovieClip
"erasercheck"Frame 617Symbol 522 MovieClip
"gumcheck"Frame 617Symbol 525 MovieClip
"bootcheck"Frame 617Symbol 528 MovieClip
"tooth2check"Frame 617Symbol 531 MovieClip
"burgercheck"Frame 617Symbol 534 MovieClip
"batterycheck"Frame 617Symbol 537 MovieClip
"sound1"Frame 617Symbol 99 MovieClip
"sound2"Frame 617Symbol 103 MovieClip
"sound3"Frame 617Symbol 107 MovieClip
"ground"Frame 617Symbol 546 MovieClip
"player"Frame 617Symbol 50 MovieClip
"popupp"Frame 617Symbol 576 MovieClip
"player"Frame 632Symbol 50 MovieClip
"player"Frame 647Symbol 50 MovieClip
"player"Frame 662Symbol 50 MovieClip
"player"Frame 677Symbol 50 MovieClip
"player"Frame 692Symbol 50 MovieClip
"player"Frame 708Symbol 50 MovieClip
"player"Frame 724Symbol 50 MovieClip
"player"Frame 739Symbol 50 MovieClip
"player"Frame 754Symbol 50 MovieClip
"player"Frame 769Symbol 50 MovieClip
"player"Frame 785Symbol 50 MovieClip
"player"Frame 800Symbol 50 MovieClip
"player"Frame 815Symbol 50 MovieClip
"player"Frame 831Symbol 50 MovieClip
"background"Frame 857Symbol 60 MovieClip
"sound1"Frame 857Symbol 99 MovieClip
"sound2"Frame 857Symbol 103 MovieClip
"sound3"Frame 857Symbol 107 MovieClip
"sound4"Frame 857Symbol 112 MovieClip
"backgroundbutton"Frame 857Symbol 91 MovieClip
"hstab"Frame 859Symbol 289 MovieClip
"bar"Symbol 16 MovieClip Frame 1Symbol 14 MovieClip
"bar"Symbol 35 MovieClip Frame 1Symbol 16 MovieClip
"bar"Symbol 35 MovieClip Frame 8Symbol 16 MovieClip
"bar"Symbol 35 MovieClip Frame 9Symbol 16 MovieClip
"bar"Symbol 35 MovieClip Frame 10Symbol 16 MovieClip
"bar"Symbol 35 MovieClip Frame 11Symbol 16 MovieClip
"bar"Symbol 35 MovieClip Frame 12Symbol 16 MovieClip
"bar"Symbol 35 MovieClip Frame 13Symbol 16 MovieClip
"bar"Symbol 35 MovieClip Frame 14Symbol 16 MovieClip
"bar"Symbol 35 MovieClip Frame 15Symbol 16 MovieClip
"bar"Symbol 35 MovieClip Frame 16Symbol 16 MovieClip
"bar"Symbol 35 MovieClip Frame 17Symbol 16 MovieClip
"bar"Symbol 35 MovieClip Frame 18Symbol 16 MovieClip
"bar"Symbol 35 MovieClip Frame 19Symbol 16 MovieClip
"bar"Symbol 35 MovieClip Frame 20Symbol 16 MovieClip
"bar"Symbol 52 MovieClip Frame 1Symbol 16 MovieClip
"bar"Symbol 52 MovieClip Frame 8Symbol 16 MovieClip
"bar"Symbol 52 MovieClip Frame 9Symbol 16 MovieClip
"bar"Symbol 52 MovieClip Frame 10Symbol 16 MovieClip
"bar"Symbol 52 MovieClip Frame 11Symbol 16 MovieClip
"bar"Symbol 52 MovieClip Frame 12Symbol 16 MovieClip
"bar"Symbol 52 MovieClip Frame 13Symbol 16 MovieClip
"bar"Symbol 52 MovieClip Frame 14Symbol 16 MovieClip
"bar"Symbol 52 MovieClip Frame 15Symbol 16 MovieClip
"bar"Symbol 52 MovieClip Frame 16Symbol 16 MovieClip
"bar"Symbol 52 MovieClip Frame 17Symbol 16 MovieClip
"bar"Symbol 52 MovieClip Frame 18Symbol 16 MovieClip
"bar"Symbol 52 MovieClip Frame 19Symbol 16 MovieClip
"bar"Symbol 52 MovieClip Frame 20Symbol 16 MovieClip
"_name1_"Symbol 289 MovieClip Frame 1Symbol 263 EditableText
"_name2_"Symbol 289 MovieClip Frame 1Symbol 264 EditableText
"_name3_"Symbol 289 MovieClip Frame 1Symbol 265 EditableText
"_name4_"Symbol 289 MovieClip Frame 1Symbol 266 EditableText
"_name5_"Symbol 289 MovieClip Frame 1Symbol 267 EditableText
"_name6_"Symbol 289 MovieClip Frame 1Symbol 268 EditableText
"_name7_"Symbol 289 MovieClip Frame 1Symbol 269 EditableText
"_name8_"Symbol 289 MovieClip Frame 1Symbol 270 EditableText
"_name9_"Symbol 289 MovieClip Frame 1Symbol 271 EditableText
"_name10_"Symbol 289 MovieClip Frame 1Symbol 272 EditableText
"_score1_"Symbol 289 MovieClip Frame 1Symbol 273 EditableText
"_score2_"Symbol 289 MovieClip Frame 1Symbol 274 EditableText
"_score3_"Symbol 289 MovieClip Frame 1Symbol 275 EditableText
"_score4_"Symbol 289 MovieClip Frame 1Symbol 276 EditableText
"_score5_"Symbol 289 MovieClip Frame 1Symbol 277 EditableText
"_score6_"Symbol 289 MovieClip Frame 1Symbol 278 EditableText
"_score7_"Symbol 289 MovieClip Frame 1Symbol 279 EditableText
"_score8_"Symbol 289 MovieClip Frame 1Symbol 280 EditableText
"_score9_"Symbol 289 MovieClip Frame 1Symbol 281 EditableText
"_score10_"Symbol 289 MovieClip Frame 1Symbol 282 EditableText
"__err__"Symbol 289 MovieClip Frame 1Symbol 285 MovieClip

Special Tags

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

Labels

"start"Frame 2
"wmts"Frame 64
"ins1"Frame 65
"ins2"Frame 66
"ins3"Frame 80
"ins4"Frame 81
"ins5"Frame 82
"ins0"Frame 83
"wmhs"Frame 84
"L1"Frame 104
"L2"Frame 159
"L3M"Frame 180
"d1"Frame 180
"L3MF0"Frame 181
"d2"Frame 181
"L3Mf1"Frame 182
"d3"Frame 182
"d4"Frame 183
"d5"Frame 184
"d6"Frame 185
"d7"Frame 186
"d8"Frame 187
"d9"Frame 188
"e1"Frame 189
"e2"Frame 190
"e3"Frame 191
"e4"Frame 192
"e5"Frame 193
"e6"Frame 194
"e7"Frame 195
"e8"Frame 196
"L3MF0B"Frame 197
"e9"Frame 197
"L3MF2"Frame 198
"f1"Frame 198
"L3MF3"Frame 199
"f2"Frame 199
"L3MF4"Frame 200
"f3"Frame 200
"f4"Frame 201
"f5"Frame 202
"f6"Frame 203
"f7"Frame 204
"f8"Frame 205
"f9"Frame 206
"g1"Frame 207
"g2"Frame 208
"g3"Frame 209
"g4"Frame 210
"g5"Frame 211
"g6"Frame 212
"g7"Frame 213
"g8"Frame 214
"L3MF5"Frame 215
"g9"Frame 215
"zz15"Frame 229
"L3MF6"Frame 230
"zz14"Frame 230
"zz13"Frame 231
"zz12"Frame 232
"zz11"Frame 233
"zz10"Frame 234
"zz9"Frame 235
"zz8"Frame 236
"zz7"Frame 237
"zz6"Frame 238
"zz5"Frame 239
"zz4"Frame 240
"zz3"Frame 241
"zz2"Frame 242
"zz1"Frame 243
"L3MF7"Frame 245
"L3MF8"Frame 260
"L3MF9"Frame 261
"L4T"Frame 277
"L4M"Frame 300
"L4MF0"Frame 301
"L4MF2"Frame 302
"L4MF3"Frame 303
"L4MF4"Frame 304
"L4MF5"Frame 320
"L4MF6"Frame 336
"L4MF7"Frame 352
"L4MF8"Frame 367
"L4MF9"Frame 382
"q14"Frame 382
"q13"Frame 383
"q12"Frame 384
"q11"Frame 385
"q10"Frame 386
"q9"Frame 387
"q8"Frame 388
"q7"Frame 389
"q6"Frame 390
"q5"Frame 391
"q4"Frame 392
"q3"Frame 393
"q2"Frame 394
"q1"Frame 395
"q15"Frame 397
"ya"Frame 398
"yb"Frame 399
"y15"Frame 400
"y14"Frame 401
"y13"Frame 402
"y12"Frame 403
"y11"Frame 404
"y10"Frame 405
"y9"Frame 406
"y8"Frame 407
"y7"Frame 408
"y6"Frame 409
"y5"Frame 410
"y4"Frame 411
"y3"Frame 412
"y2"Frame 413
"L4MF10"Frame 414
"L5T"Frame 429
"L5M"Frame 455
"L5MF0"Frame 456
"L5MF2"Frame 457
"L5MF3"Frame 458
"L5MF4"Frame 473
"L5MF5"Frame 488
"L5MF6"Frame 503
"L5MF7"Frame 518
"L5MF8"Frame 534
"L5MF9"Frame 549
"L5MF10"Frame 564
"L5MF11"Frame 579
"L6T"Frame 594
"L6M"Frame 616
"L6MF0"Frame 617
"L6MF2"Frame 618
"L6MF3"Frame 633
"L6MF4"Frame 648
"L6MF5"Frame 663
"L6MF6"Frame 678
"L6MF7"Frame 693
"L6MF8"Frame 694
"L6MF11"Frame 709
"L6MF9"Frame 710
"L6MF10"Frame 725
"L6MF13"Frame 740
"L6MF14"Frame 755
"L6MF15"Frame 770
"L6MF16"Frame 771
"L6MF17"Frame 786
"L6MF18"Frame 801
"L6MF19"Frame 816
"L7T"Frame 832
"wmss"Frame 856
"wmss2"Frame 857
"wmss3"Frame 858
"wmss4"Frame 859
"wmss5"Frame 860
"goplay"Symbol 35 MovieClip Frame 2
"run"Symbol 50 MovieClip Frame 1
"rest"Symbol 50 MovieClip Frame 2
"skid"Symbol 50 MovieClip Frame 3
"jump"Symbol 50 MovieClip Frame 4
"land"Symbol 50 MovieClip Frame 5
"goplay"Symbol 52 MovieClip Frame 2
"playbuttonnoAS"Symbol 52 MovieClip Frame 25
"ground34"Symbol 467 MovieClip Frame 4

Dynamic Text Variables

backgroundvarSymbol 73 EditableText""
backgroundvarSymbol 75 EditableText""
itimerSymbol 244 EditableText""
ntimerSymbol 325 EditableText""
scoreSymbol 326 EditableText""
ntimerSymbol 388 EditableText""
scoreSymbol 389 EditableText""
ntimerSymbol 455 EditableText""
scoreSymbol 456 EditableText""
scoreSymbol 516 EditableText""
ntimerSymbol 529 EditableText""
scoreSymbol 590 EditableText""
itscoreSymbol 596 EditableText""
itbonusSymbol 597 EditableText""
wmsstimescoreSymbol 601 EditableText""
wmssminSymbol 602 EditableText""
wmsssecSymbol 603 EditableText""
lev1scoreSymbol 609 EditableText""
lev2scoreSymbol 610 EditableText""
lev4scoreSymbol 611 EditableText""
lev3scoreSymbol 612 EditableText""
wmnameSymbol 616 EditableText""




http://swfchan.com/9/40117/info.shtml
Created: 11/5 -2019 12:42:50 Last modified: 11/5 -2019 12:42:50 Server time: 15/05 -2024 19:34:52