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");
}