Frame 1
Instance of Symbol 5 MovieClip in Frame 1
on (release) {
getURL ("http://www.applecartgames.com/", "_blank");
}
Frame 10
totalBytes = Math.round(getBytesTotal() / 1024);
loadedBytes = Math.round(getBytesLoaded() / 1024);
percentDone = Math.round((loadedBytes / totalBytes) * 100);
if (_root._framesloaded >= _root._totalframes) {
gotoAndPlay ("start");
}
Instance of Symbol 13 MovieClip in Frame 10
onClipEvent (enterFrame) {
_xscale = _root.percentDone;
}
Frame 11
gotoAndPlay (10);
Frame 12
stop();
Instance of Symbol 115 MovieClip in Frame 12
on (release) {
var my_lv = new LoadVars();
my_lv.TheGamesNameValue = "RocketPenguinGame";
my_lv.send("http://www.applecartgames.com/HiScores/HiScorePage.aspx", "_blank", "POST");
gotoAndStop (12);
}
Frame 21
stopAllSounds();
gotoAndStop (12);
Frame 22
stopAllSounds();
Frame 24
stopAllSounds();
Instance of Symbol 120 MovieClip in Frame 24
on (release) {
getURL ("http://www.applecartgames.com/", "_blank");
}
Frame 25
stop();
score = 0;
_root.save_score = _root.score;
_root.save_nname = _root.nname;
Instance of Symbol 127 MovieClip in Frame 25
onClipEvent (enterFrame) {
if (_root.score < 0) {
_root.score = 0;
}
if (_root.ball.hitTest(_root.wall)) {
_root.bscore = _root.bscore - 25;
}
if (_root.ball.hitTest(_root.wall2)) {
_root.bscore = _root.bscore - 25;
}
if (_root.ball.hitTest(_root.wall)) {
_root.bscore = _root.bscore - 25;
}
if (_root.ball.hitTest(_root.wall4)) {
_root.bscore = _root.bscore - 25;
}
if (_root.penguin.hitTest(_root.door)) {
_root.score = _root.score + 1000;
}
}
Instance of Symbol 134 MovieClip "ball" in Frame 25
onClipEvent (load) {
_y = 80;
_x = 100;
yspeed = 0;
xspeed = 0;
var power = 1;
var xspeed = 0;
var yspeed = 0;
var friction = 0.95;
var gravity = 0;
var thrust = 0.7;
var wind = 0;
var rr = 20;
var lr = 330;
var bscore = 0;
var cscore = 100;
}
onClipEvent (enterFrame) {
if ((!Key.isDown(37)) & (!Key.isDown(39))) {
_rotation = 0;
}
if (Key.isDown(37)) {
xspeed = xspeed - power;
_rotation = lr;
}
if (Key.isDown(39)) {
xspeed = xspeed + power;
_rotation = rr;
}
if (Key.isDown(38)) {
yspeed = yspeed - power;
}
if (Key.isDown(40)) {
yspeed = yspeed + power;
}
xspeed = xspeed + wind;
xspeed = xspeed * friction;
yspeed = yspeed + gravity;
_x = (_x + xspeed);
_y = (_y + yspeed);
if (this.hitTest(_root.wall)) {
xspeed = 0;
yspeed = 0;
_x = 100;
_y = 80;
bscore = bscore + 50;
}
if (this.hitTest(_root.wall2)) {
xspeed = 0;
yspeed = 0;
_x = 100;
_y = 80;
bscore = bscore + 50;
}
if (this.hitTest(_root.wall3)) {
xspeed = 0;
yspeed = 0;
_x = 100;
_y = 80;
bscore = bscore + 50;
}
if (this.hitTest(_root.wall4)) {
xspeed = 0;
yspeed = 0;
_x = 100;
_y = 80;
bscore = bscore + 50;
}
if (_root.coin.hitTest(this)) {
_root.coin._x = -120;
_root.score = _root.score + cscore;
cscore = cscore + 300;
}
if (_root.coin2.hitTest(this)) {
_root.coin2._x = -120;
_root.score = _root.score + cscore;
cscore = cscore + 300;
}
if (_root.coin3.hitTest(this)) {
_root.coin3._x = -120;
_root.score = _root.score + cscore;
cscore = cscore + 300;
}
if (this.hitTest(_root.door)) {
_root.score = _root.score + 1000;
_root.gotoAndPlay(26);
}
if (this.hitTest(_root.grav)) {
var power = 1;
var xspeed = 0;
var yspeed = 0;
var friction = 0.95;
var gravity = 0;
var thrust = 0.75;
var wind = 0;
}
}
Instance of Symbol 136 MovieClip "coin" in Frame 25
onClipEvent (load) {
_x = 440;
_y = 180;
}
Instance of Symbol 145 MovieClip "coin2" in Frame 25
onClipEvent (load) {
_x = 299;
_y = 143;
}
Instance of Symbol 147 MovieClip "coin3" in Frame 25
onClipEvent (load) {
_x = 155;
_y = 239;
}
Frame 26
stop();
Instance of Symbol 134 MovieClip "ball" in Frame 26
onClipEvent (load) {
_y = 80;
_x = 100;
yspeed = 0;
xspeed = 0;
var power = 1;
var xspeed = 0;
var yspeed = 0;
var friction = 0.95;
var gravity = 0.1;
var thrust = 0.75;
var wind = 0;
var rr = 20;
var lr = 330;
var bscore = 0;
var cscore = 100;
}
onClipEvent (enterFrame) {
if ((!Key.isDown(37)) & (!Key.isDown(39))) {
_rotation = 0;
}
if (Key.isDown(37)) {
xspeed = xspeed - power;
_rotation = lr;
}
if (Key.isDown(39)) {
xspeed = xspeed + power;
_rotation = rr;
}
if (Key.isDown(38)) {
yspeed = yspeed - (power * thrust);
}
if (Key.isDown(40)) {
yspeed = yspeed + (power * thrust);
}
xspeed = xspeed + wind;
xspeed = xspeed * friction;
yspeed = yspeed + gravity;
_x = (_x + xspeed);
_y = (_y + yspeed);
if (this.hitTest(_root.wall)) {
xspeed = 0;
yspeed = 0;
_x = 100;
_y = 80;
bscore = bscore + 50;
_root.score = _root.score - bscore;
}
if (this.hitTest(_root.wall2)) {
xspeed = 0;
yspeed = 0;
_x = 100;
_y = 80;
bscore = bscore + 50;
_root.score = _root.score - bscore;
}
if (this.hitTest(_root.wall3)) {
xspeed = 0;
yspeed = 0;
_x = 100;
_y = 80;
bscore = bscore + 50;
_root.score = _root.score - bscore;
}
if (this.hitTest(_root.wall4)) {
xspeed = 0;
yspeed = 0;
_x = 100;
_y = 80;
bscore = bscore + 50;
_root.score = _root.score - bscore;
}
if (_root.coin.hitTest(this)) {
_root.coin._x = -120;
_root.score = _root.score + cscore;
cscore = cscore + 300;
}
if (_root.coin2.hitTest(this)) {
_root.coin2._x = -120;
_root.score = _root.score + cscore;
cscore = cscore + 300;
}
if (_root.coin3.hitTest(this)) {
_root.coin3._x = -120;
_root.score = _root.score + cscore;
cscore = cscore + 300;
}
if (this.hitTest(_root.door)) {
_root.score = _root.score + 1000;
_root.gotoAndStop(27);
}
if (this.hitTest(_root.grav)) {
var power = 1;
var xspeed = 0;
var yspeed = 0;
var friction = 0.95;
var gravity = 0.1;
var thrust = 0.75;
var wind = 0.05;
}
}
Instance of Symbol 147 MovieClip "coin3" in Frame 26
onClipEvent (load) {
_x = 113;
_y = 217;
}
Frame 27
stop();
Instance of Symbol 134 MovieClip "ball" in Frame 27
onClipEvent (load) {
_y = 80;
_x = 100;
yspeed = 0;
xspeed = 0;
var power = 1;
var xspeed = 0;
var yspeed = 0;
var friction = 0.95;
var gravity = 0.1;
var thrust = 0.75;
var wind = 0;
var rr = 20;
var lr = 330;
var bscore = 0;
var cscore = 100;
}
onClipEvent (enterFrame) {
if ((!Key.isDown(37)) & (!Key.isDown(39))) {
_rotation = 0;
}
if (Key.isDown(37)) {
xspeed = xspeed - power;
_rotation = lr;
}
if (Key.isDown(39)) {
xspeed = xspeed + power;
_rotation = rr;
}
if (Key.isDown(38)) {
yspeed = yspeed - (power * thrust);
}
if (Key.isDown(40)) {
yspeed = yspeed + (power * thrust);
}
xspeed = xspeed + wind;
xspeed = xspeed * friction;
yspeed = yspeed + gravity;
_x = (_x + xspeed);
_y = (_y + yspeed);
if (this.hitTest(_root.wall)) {
xspeed = 0;
yspeed = 0;
_x = 100;
_y = 80;
bscore = bscore + 50;
_root.score = _root.score - bscore;
}
if (this.hitTest(_root.wall2)) {
xspeed = 0;
yspeed = 0;
_x = 100;
_y = 80;
bscore = bscore + 50;
_root.score = _root.score - bscore;
}
if (this.hitTest(_root.wall3)) {
xspeed = 0;
yspeed = 0;
_x = 100;
_y = 80;
bscore = bscore + 50;
_root.score = _root.score - bscore;
}
if (this.hitTest(_root.wall4)) {
xspeed = 0;
yspeed = 0;
_x = 100;
_y = 80;
bscore = bscore + 50;
_root.score = _root.score - bscore;
}
if (_root.coin.hitTest(this)) {
_root.coin._x = -120;
_root.score = _root.score + cscore;
cscore = cscore + 300;
}
if (_root.coin2.hitTest(this)) {
_root.coin2._x = -120;
_root.score = _root.score + cscore;
cscore = cscore + 300;
}
if (_root.coin3.hitTest(this)) {
_root.coin3._x = -120;
_root.score = _root.score + cscore;
cscore = cscore + 300;
}
if (this.hitTest(_root.door)) {
_root.score = _root.score + 1000;
_root.gotoAndStop(28);
}
if (this.hitTest(_root.grav)) {
var power = 1;
var xspeed = 0;
var yspeed = 0;
var friction = 0.95;
var gravity = 0.1;
var thrust = 0.75;
var wind = 0.05;
}
}
Instance of Symbol 136 MovieClip "coin" in Frame 27
onClipEvent (load) {
_x = 300;
_y = 300;
}
Instance of Symbol 147 MovieClip "coin3" in Frame 27
onClipEvent (load) {
_x = 113;
_y = 267;
}
Frame 28
stop();
Instance of Symbol 134 MovieClip "ball" in Frame 28
onClipEvent (load) {
_y = 80;
_x = 100;
yspeed = 0;
xspeed = 0;
var power = 1;
var xspeed = 0;
var yspeed = 0;
var friction = 0.95;
var gravity = 0.1;
var thrust = 0.75;
var wind = 0;
var rr = 20;
var lr = 330;
var bscore = 0;
var cscore = 100;
}
onClipEvent (enterFrame) {
if ((!Key.isDown(37)) & (!Key.isDown(39))) {
_rotation = 0;
}
if (Key.isDown(37)) {
xspeed = xspeed - power;
_rotation = lr;
}
if (Key.isDown(39)) {
xspeed = xspeed + power;
_rotation = rr;
}
if (Key.isDown(38)) {
yspeed = yspeed - (power * thrust);
}
if (Key.isDown(40)) {
yspeed = yspeed + (power * thrust);
}
xspeed = xspeed + wind;
xspeed = xspeed * friction;
yspeed = yspeed + gravity;
_x = (_x + xspeed);
_y = (_y + yspeed);
if (this.hitTest(_root.wall)) {
xspeed = 0;
yspeed = 0;
_x = 100;
_y = 80;
bscore = bscore + 50;
_root.score = _root.score - bscore;
}
if (this.hitTest(_root.wall2)) {
xspeed = 0;
yspeed = 0;
_x = 100;
_y = 80;
bscore = bscore + 50;
_root.score = _root.score - bscore;
}
if (this.hitTest(_root.wall3)) {
xspeed = 0;
yspeed = 0;
_x = 100;
_y = 80;
bscore = bscore + 50;
_root.score = _root.score - bscore;
}
if (this.hitTest(_root.wall4)) {
xspeed = 0;
yspeed = 0;
_x = 100;
_y = 80;
bscore = bscore + 50;
_root.score = _root.score - bscore;
}
if (_root.coin.hitTest(this)) {
_root.coin._x = -120;
_root.score = _root.score + cscore;
cscore = cscore + 300;
}
if (_root.coin2.hitTest(this)) {
_root.coin2._x = -120;
_root.score = _root.score + cscore;
cscore = cscore + 300;
}
if (_root.coin3.hitTest(this)) {
_root.coin3._x = -120;
_root.score = _root.score + cscore;
cscore = cscore + 300;
}
if (this.hitTest(_root.door)) {
_root.score = _root.score + 1000;
_root.gotoAndStop(29);
}
if (this.hitTest(_root.grav)) {
var power = 1;
var xspeed = 0;
var yspeed = 0;
var friction = 0.95;
var gravity = 0.1;
var thrust = 0.75;
var wind = 0.05;
}
}
Instance of Symbol 136 MovieClip "coin" in Frame 28
onClipEvent (load) {
_x = 475;
_y = 250;
}
Instance of Symbol 159 MovieClip "environment2" in Frame 28
onClipEvent (load) {
dir = 4;
moving = 1;
}
onClipEvent (enterFrame) {
if (moving) {
_y = (_y + dir);
if (_y > 300) {
dir = -4;
}
if (_y < 150) {
dir = 4;
}
}
}
Instance of Symbol 168 MovieClip "trig" in Frame 28
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
_root.trig.gotoAndStop(2);
_root.environment2.moving = 0;
_root.environment3.moving = 0;
_root.environment4.moving = 0;
_root.environment5.moving = 0;
_root.environment.moving = 0;
}
}
Instance of Symbol 147 MovieClip "coin3" in Frame 28
onClipEvent (load) {
_x = 65;
_y = 300;
}
Instance of Symbol 159 MovieClip "environment3" in Frame 28
onClipEvent (load) {
dir = 4;
moving = 1;
}
onClipEvent (enterFrame) {
if (moving) {
_y = (_y + dir);
if (_y > 300) {
dir = -4;
}
if (_y < 0) {
dir = 4;
}
}
}
Instance of Symbol 159 MovieClip "environment4" in Frame 28
onClipEvent (load) {
dir = 4;
moving = 1;
}
onClipEvent (enterFrame) {
if (moving) {
_y = (_y + dir);
if (_y > 300) {
dir = -4;
}
if (_y < 50) {
dir = 4;
}
}
}
Instance of Symbol 159 MovieClip "environment5" in Frame 28
onClipEvent (load) {
dir = 4;
moving = 1;
}
onClipEvent (enterFrame) {
if (moving) {
_y = (_y + dir);
if (_y > 50) {
dir = -4;
}
if (_y < 0) {
dir = 4;
}
}
}
Frame 29
stop();
Instance of Symbol 134 MovieClip "ball" in Frame 29
onClipEvent (load) {
_y = 80;
_x = 100;
yspeed = 0;
xspeed = 0;
var power = 1;
var xspeed = 0;
var yspeed = 0;
var friction = 0.95;
var gravity = 0.1;
var thrust = 0.75;
var wind = 0.05;
var rr = 20;
var lr = 330;
var bscore = 0;
var cscore = 100;
}
onClipEvent (enterFrame) {
if ((!Key.isDown(37)) & (!Key.isDown(39))) {
_rotation = 0;
}
if (Key.isDown(37)) {
xspeed = xspeed - power;
_rotation = lr;
}
if (Key.isDown(39)) {
xspeed = xspeed + power;
_rotation = rr;
}
if (Key.isDown(38)) {
yspeed = yspeed - (power * thrust);
}
if (Key.isDown(40)) {
yspeed = yspeed + (power * thrust);
}
xspeed = xspeed + wind;
xspeed = xspeed * friction;
yspeed = yspeed + gravity;
_x = (_x + xspeed);
_y = (_y + yspeed);
if (this.hitTest(_root.wall)) {
xspeed = 0;
yspeed = 0;
_x = 100;
_y = 80;
bscore = bscore + 50;
_root.score = _root.score - bscore;
}
if (this.hitTest(_root.wall2)) {
xspeed = 0;
yspeed = 0;
_x = 100;
_y = 80;
bscore = bscore + 50;
_root.score = _root.score - bscore;
}
if (this.hitTest(_root.wall3)) {
xspeed = 0;
yspeed = 0;
_x = 100;
_y = 80;
bscore = bscore + 50;
_root.score = _root.score - bscore;
}
if (this.hitTest(_root.wall4)) {
xspeed = 0;
yspeed = 0;
_x = 100;
_y = 80;
bscore = bscore + 50;
_root.score = _root.score - bscore;
}
if (_root.coin.hitTest(this)) {
_root.coin._x = -120;
_root.score = _root.score + cscore;
cscore = cscore + 300;
}
if (_root.coin2.hitTest(this)) {
_root.coin2._x = -120;
_root.score = _root.score + cscore;
cscore = cscore + 300;
}
if (_root.coin3.hitTest(this)) {
_root.coin3._x = -120;
_root.score = _root.score + cscore;
cscore = cscore + 300;
}
if (this.hitTest(_root.door)) {
_root.score = _root.score + 1000;
_root.gotoAndPlay(30);
}
if (this.hitTest(_root.green)) {
gravity = -1.01;
}
if (this.hitTest(_root.red)) {
gravity = 1.01;
}
if (this.hitTest(_root.grav)) {
var power = 1;
var xspeed = 0;
var yspeed = 0;
var friction = 0.95;
var gravity = 0.1;
var thrust = 0.75;
var wind = 0.05;
}
}
Frame 30
stop();
Instance of Symbol 134 MovieClip "ball" in Frame 30
onClipEvent (load) {
_y = 80;
_x = 100;
yspeed = 0;
xspeed = 0;
var power = 1;
var xspeed = 0;
var yspeed = 0;
var friction = 0.95;
var gravity = 0.3;
var thrust = 0.7;
var wind = 0;
var rr = 20;
var lr = 330;
var bscore = 0;
var cscore = 100;
}
onClipEvent (enterFrame) {
if ((!Key.isDown(37)) & (!Key.isDown(39))) {
_rotation = 0;
}
if (Key.isDown(37)) {
xspeed = xspeed - power;
_rotation = lr;
}
if (Key.isDown(39)) {
xspeed = xspeed + power;
_rotation = rr;
}
if (Key.isDown(38)) {
yspeed = yspeed - power;
}
if (Key.isDown(40)) {
yspeed = yspeed + power;
}
xspeed = xspeed + wind;
xspeed = xspeed * friction;
yspeed = yspeed + gravity;
_x = (_x + xspeed);
_y = (_y + yspeed);
if (this.hitTest(_root.wall)) {
xspeed = 0;
yspeed = 0;
_x = 100;
_y = 80;
bscore = bscore + 50;
}
if (this.hitTest(_root.wall2)) {
xspeed = 0;
yspeed = 0;
_x = 100;
_y = 80;
bscore = bscore + 50;
}
if (this.hitTest(_root.wall3)) {
xspeed = 0;
yspeed = 0;
_x = 100;
_y = 80;
bscore = bscore + 50;
}
if (this.hitTest(_root.wall4)) {
xspeed = 0;
yspeed = 0;
_x = 100;
_y = 80;
bscore = bscore + 50;
}
if (_root.coin.hitTest(this)) {
_root.coin._x = -120;
_root.score = _root.score + cscore;
cscore = cscore + 300;
}
if (_root.coin2.hitTest(this)) {
_root.coin2._x = -120;
_root.score = _root.score + cscore;
cscore = cscore + 300;
}
if (_root.coin3.hitTest(this)) {
_root.coin3._x = -120;
_root.score = _root.score + cscore;
cscore = cscore + 300;
}
if (this.hitTest(_root.door)) {
_root.score = _root.score + 1000;
_root.gotoAndPlay(31);
}
if (this.hitTest(_root.grav)) {
var power = 1;
var xspeed = 0;
var yspeed = 0;
var friction = 0.95;
var gravity = 0.5;
var thrust = 0.75;
var wind = 0;
}
}
Instance of Symbol 136 MovieClip "coin" in Frame 30
onClipEvent (load) {
_x = 243;
_y = 350;
}
Instance of Symbol 147 MovieClip "coin3" in Frame 30
onClipEvent (load) {
_x = 170;
_y = 336.6;
}
Frame 31
stop();
stopAllSounds();
Instance of Symbol 134 MovieClip "ball" in Frame 31
onClipEvent (load) {
_y = 80;
_x = 100;
yspeed = 0;
xspeed = 0;
var power = 1;
var xspeed = 0;
var yspeed = 0;
var friction = 0.95;
var gravity = 0.1;
var thrust = 0.75;
var wind = 0;
var rr = 20;
var lr = 330;
var bscore = 0;
var cscore = 100;
}
onClipEvent (enterFrame) {
if ((!Key.isDown(37)) & (!Key.isDown(39))) {
_rotation = 0;
}
if (Key.isDown(37)) {
xspeed = xspeed - power;
_rotation = lr;
}
if (Key.isDown(39)) {
xspeed = xspeed + power;
_rotation = rr;
}
if (Key.isDown(38)) {
yspeed = yspeed - (power * thrust);
}
if (Key.isDown(40)) {
yspeed = yspeed + (power * thrust);
}
xspeed = xspeed + wind;
xspeed = xspeed * friction;
yspeed = yspeed + gravity;
_x = (_x + xspeed);
_y = (_y + yspeed);
if (this.hitTest(_root.wall)) {
xspeed = 0;
yspeed = 0;
_x = 100;
_y = 80;
bscore = bscore + 50;
_root.score = _root.score - bscore;
}
if (this.hitTest(_root.wall2)) {
xspeed = 0;
yspeed = 0;
_x = 100;
_y = 80;
bscore = bscore + 50;
_root.score = _root.score - bscore;
}
if (this.hitTest(_root.wall3)) {
xspeed = 0;
yspeed = 0;
_x = 100;
_y = 80;
bscore = bscore + 50;
_root.score = _root.score - bscore;
}
if (this.hitTest(_root.wall4)) {
xspeed = 0;
yspeed = 0;
_x = 100;
_y = 80;
bscore = bscore + 50;
_root.score = _root.score - bscore;
}
if (_root.coin.hitTest(this)) {
_root.coin._x = -120;
_root.score = _root.score + cscore;
cscore = cscore + 300;
}
if (_root.coin2.hitTest(this)) {
_root.coin2._x = -120;
_root.score = _root.score + cscore;
cscore = cscore + 300;
}
if (_root.coin3.hitTest(this)) {
_root.coin3._x = -120;
_root.score = _root.score + cscore;
cscore = cscore + 300;
}
if (this.hitTest(_root.door)) {
_root.score = _root.score + 1000;
_root.gotoAndStop(32);
}
if (this.hitTest(_root.grav)) {
var power = 1;
var xspeed = 0;
var yspeed = 0;
var friction = 0.95;
var gravity = 0.1;
var thrust = 0.75;
var wind = 0.5;
}
}
Frame 32
stop();
Instance of Symbol 134 MovieClip "ball" in Frame 32
onClipEvent (load) {
_y = 80;
_x = 100;
yspeed = 0;
xspeed = 0;
var power = 1;
var xspeed = 0;
var yspeed = 0;
var friction = 0.95;
var gravity = 0.1;
var thrust = 0.75;
var wind = 0;
var rr = 20;
var lr = 330;
var bscore = 0;
var cscore = 100;
}
onClipEvent (enterFrame) {
if ((!Key.isDown(37)) & (!Key.isDown(39))) {
_rotation = 0;
}
if (Key.isDown(37)) {
xspeed = xspeed - power;
_rotation = lr;
}
if (Key.isDown(39)) {
xspeed = xspeed + power;
_rotation = rr;
}
if (Key.isDown(38)) {
yspeed = yspeed - (power * thrust);
}
if (Key.isDown(40)) {
yspeed = yspeed + (power * thrust);
}
xspeed = xspeed + wind;
xspeed = xspeed * friction;
yspeed = yspeed + gravity;
_x = (_x + xspeed);
_y = (_y + yspeed);
if (this.hitTest(_root.wall)) {
xspeed = 0;
yspeed = 0;
_x = 100;
_y = 80;
bscore = bscore + 50;
_root.score = _root.score - bscore;
}
if (this.hitTest(_root.wall2)) {
xspeed = 0;
yspeed = 0;
_x = 100;
_y = 80;
bscore = bscore + 50;
_root.score = _root.score - bscore;
}
if (this.hitTest(_root.wall3)) {
xspeed = 0;
yspeed = 0;
_x = 100;
_y = 80;
bscore = bscore + 50;
_root.score = _root.score - bscore;
}
if (this.hitTest(_root.wall4)) {
xspeed = 0;
yspeed = 0;
_x = 100;
_y = 80;
bscore = bscore + 50;
_root.score = _root.score - bscore;
}
if (_root.coin.hitTest(this)) {
_root.coin._x = -120;
_root.score = _root.score + cscore;
cscore = cscore + 300;
}
if (_root.coin2.hitTest(this)) {
_root.coin2._x = -120;
_root.score = _root.score + cscore;
cscore = cscore + 300;
}
if (_root.coin3.hitTest(this)) {
_root.coin3._x = -120;
_root.score = _root.score + cscore;
cscore = cscore + 300;
}
if (this.hitTest(_root.door)) {
_root.score = _root.score + 1000;
_root.gotoAndStop(33);
}
if (this.hitTest(_root.grav)) {
var power = 1;
var xspeed = 0;
var yspeed = 0;
var friction = 0.95;
var gravity = 0.1;
var thrust = 0.75;
var wind = 0.35;
}
}
Instance of Symbol 136 MovieClip "coin" in Frame 32
onClipEvent (load) {
_x = 300;
_y = 300;
}
Instance of Symbol 147 MovieClip "coin3" in Frame 32
onClipEvent (load) {
_x = 113;
_y = 267;
}
Frame 33
stop();
Instance of Symbol 134 MovieClip "ball" in Frame 33
onClipEvent (load) {
_y = 80;
_x = 100;
yspeed = 0;
xspeed = 0;
var power = 1;
var xspeed = 0;
var yspeed = 0;
var friction = 0.95;
var gravity = 0.1;
var thrust = 0.75;
var wind = 0;
var rr = 20;
var lr = 330;
var bscore = 0;
var cscore = 100;
}
onClipEvent (enterFrame) {
if ((!Key.isDown(37)) & (!Key.isDown(39))) {
_rotation = 0;
}
if (Key.isDown(37)) {
xspeed = xspeed - power;
_rotation = lr;
}
if (Key.isDown(39)) {
xspeed = xspeed + power;
_rotation = rr;
}
if (Key.isDown(38)) {
yspeed = yspeed - (power * thrust);
}
if (Key.isDown(40)) {
yspeed = yspeed + (power * thrust);
}
xspeed = xspeed + wind;
xspeed = xspeed * friction;
yspeed = yspeed + gravity;
_x = (_x + xspeed);
_y = (_y + yspeed);
if (this.hitTest(_root.wall)) {
xspeed = 0;
yspeed = 0;
_x = 100;
_y = 80;
bscore = bscore + 50;
_root.score = _root.score - bscore;
}
if (this.hitTest(_root.wall2)) {
xspeed = 0;
yspeed = 0;
_x = 100;
_y = 80;
bscore = bscore + 50;
_root.score = _root.score - bscore;
}
if (this.hitTest(_root.wall3)) {
xspeed = 0;
yspeed = 0;
_x = 100;
_y = 80;
bscore = bscore + 50;
_root.score = _root.score - bscore;
}
if (this.hitTest(_root.wall4)) {
xspeed = 0;
yspeed = 0;
_x = 100;
_y = 80;
bscore = bscore + 50;
_root.score = _root.score - bscore;
}
if (_root.coin.hitTest(this)) {
_root.coin._x = -120;
_root.score = _root.score + cscore;
cscore = cscore + 300;
}
if (_root.coin2.hitTest(this)) {
_root.coin2._x = -120;
_root.score = _root.score + cscore;
cscore = cscore + 300;
}
if (_root.coin3.hitTest(this)) {
_root.coin3._x = -120;
_root.score = _root.score + cscore;
cscore = cscore + 300;
}
if (this.hitTest(_root.door)) {
_root.score = _root.score + 1000;
_root.gotoAndStop(34);
}
if (this.hitTest(_root.grav)) {
var power = 1;
var xspeed = 0;
var yspeed = 0;
var friction = 0.95;
var gravity = 0.1;
var thrust = 0.75;
var wind = 0.05;
}
}
Instance of Symbol 136 MovieClip "coin" in Frame 33
onClipEvent (load) {
_x = 475;
_y = 250;
}
Instance of Symbol 159 MovieClip "environment2" in Frame 33
onClipEvent (load) {
dir = 4;
moving = 1;
}
onClipEvent (enterFrame) {
if (moving) {
_y = (_y + dir);
if (_y > 300) {
dir = -4;
}
if (_y < 150) {
dir = 4;
}
}
}
Instance of Symbol 147 MovieClip "coin3" in Frame 33
onClipEvent (load) {
_x = 65;
_y = 300;
}
Instance of Symbol 159 MovieClip "environment3" in Frame 33
onClipEvent (load) {
dir = 4;
moving = 1;
}
onClipEvent (enterFrame) {
if (moving) {
_y = (_y + dir);
if (_y > 300) {
dir = -4;
}
if (_y < 0) {
dir = 4;
}
}
}
Instance of Symbol 159 MovieClip "environment4" in Frame 33
onClipEvent (load) {
dir = 4;
moving = 1;
}
onClipEvent (enterFrame) {
if (moving) {
_y = (_y + dir);
if (_y > 300) {
dir = -4;
}
if (_y < 50) {
dir = 4;
}
}
}
Instance of Symbol 159 MovieClip "environment5" in Frame 33
onClipEvent (load) {
dir = 4;
moving = 1;
}
onClipEvent (enterFrame) {
if (moving) {
_y = (_y + dir);
if (_y > 50) {
dir = -4;
}
if (_y < 0) {
dir = 4;
}
}
}
Instance of Symbol 159 MovieClip "environment" in Frame 33
onClipEvent (load) {
dir = 4;
moving = 1;
}
onClipEvent (enterFrame) {
if (moving) {
_y = (_y + dir);
if (_y > 500) {
dir = -4;
}
if (_y < 200) {
dir = 4;
}
}
}
Frame 34
stop();
Instance of Symbol 134 MovieClip "ball" in Frame 34
onClipEvent (load) {
_y = 80;
_x = 100;
yspeed = 0;
xspeed = 0;
var power = 1;
var xspeed = 0;
var yspeed = 0;
var friction = 0.95;
var gravity = 0.1;
var thrust = 0.75;
var wind = 0.05;
var rr = 20;
var lr = 330;
var bscore = 0;
var cscore = 100;
}
onClipEvent (enterFrame) {
if ((!Key.isDown(37)) & (!Key.isDown(39))) {
_rotation = 0;
}
if (Key.isDown(37)) {
xspeed = xspeed - power;
_rotation = lr;
}
if (Key.isDown(39)) {
xspeed = xspeed + power;
_rotation = rr;
}
if (Key.isDown(38)) {
yspeed = yspeed - (power * thrust);
}
if (Key.isDown(40)) {
yspeed = yspeed + (power * thrust);
}
xspeed = xspeed + wind;
xspeed = xspeed * friction;
yspeed = yspeed + gravity;
_x = (_x + xspeed);
_y = (_y + yspeed);
if (this.hitTest(_root.wall)) {
xspeed = 0;
yspeed = 0;
_x = 100;
_y = 80;
bscore = bscore + 50;
_root.score = _root.score - bscore;
}
if (this.hitTest(_root.wall2)) {
xspeed = 0;
yspeed = 0;
_x = 100;
_y = 80;
bscore = bscore + 50;
_root.score = _root.score - bscore;
}
if (this.hitTest(_root.wall3)) {
xspeed = 0;
yspeed = 0;
_x = 100;
_y = 80;
bscore = bscore + 50;
_root.score = _root.score - bscore;
}
if (this.hitTest(_root.wall4)) {
xspeed = 0;
yspeed = 0;
_x = 100;
_y = 80;
bscore = bscore + 50;
_root.score = _root.score - bscore;
}
if (_root.coin.hitTest(this)) {
_root.coin._x = -120;
_root.score = _root.score + cscore;
cscore = cscore + 300;
}
if (_root.coin2.hitTest(this)) {
_root.coin2._x = -120;
_root.score = _root.score + cscore;
cscore = cscore + 300;
}
if (_root.coin3.hitTest(this)) {
_root.coin3._x = -120;
_root.score = _root.score + cscore;
cscore = cscore + 300;
}
if (this.hitTest(_root.door)) {
_root.score = _root.score + 1000;
_root.gotoAndPlay(35);
}
if (this.hitTest(_root.green)) {
gravity = -1.01;
}
if (this.hitTest(_root.red)) {
gravity = 1.01;
}
if (this.hitTest(_root.grav)) {
var power = 1;
var xspeed = 0;
var yspeed = 0;
var friction = 0.95;
var gravity = 0.1;
var thrust = 0.75;
var wind = 0.05;
}
}
Frame 35
stop();
Instance of Symbol 134 MovieClip "ball" in Frame 35
onClipEvent (load) {
_y = 80;
_x = 100;
yspeed = 0;
xspeed = 0;
var power = 1;
var xspeed = 0;
var yspeed = 0;
var friction = 0.95;
var gravity = 0.1;
var thrust = 0.75;
var wind = 0;
var rr = 20;
var lr = 330;
var bscore = 0;
var cscore = 100;
}
onClipEvent (enterFrame) {
if ((!Key.isDown(37)) & (!Key.isDown(39))) {
_rotation = 0;
}
if (Key.isDown(37)) {
xspeed = xspeed - power;
_rotation = lr;
}
if (Key.isDown(39)) {
xspeed = xspeed + power;
_rotation = rr;
}
if (Key.isDown(38)) {
yspeed = yspeed - (power * thrust);
}
if (Key.isDown(40)) {
yspeed = yspeed + (power * thrust);
}
xspeed = xspeed + wind;
xspeed = xspeed * friction;
yspeed = yspeed + gravity;
_x = (_x + xspeed);
_y = (_y + yspeed);
if (this.hitTest(_root.wall)) {
xspeed = 0;
yspeed = 0;
_x = 100;
_y = 80;
bscore = bscore + 50;
_root.score = _root.score - bscore;
}
if (this.hitTest(_root.wall2)) {
xspeed = 0;
yspeed = 0;
_x = 100;
_y = 80;
bscore = bscore + 50;
_root.score = _root.score - bscore;
}
if (this.hitTest(_root.wall3)) {
xspeed = 0;
yspeed = 0;
_x = 100;
_y = 80;
bscore = bscore + 50;
_root.score = _root.score - bscore;
}
if (this.hitTest(_root.wall4)) {
xspeed = 0;
yspeed = 0;
_x = 100;
_y = 80;
bscore = bscore + 50;
_root.score = _root.score - bscore;
}
if (_root.coin.hitTest(this)) {
_root.coin._x = -120;
_root.score = _root.score + cscore;
cscore = cscore + 300;
}
if (_root.coin2.hitTest(this)) {
_root.coin2._x = -120;
_root.score = _root.score + cscore;
cscore = cscore + 300;
}
if (_root.coin3.hitTest(this)) {
_root.coin3._x = -120;
_root.score = _root.score + cscore;
cscore = cscore + 300;
}
if (this.hitTest(_root.door)) {
_root.score = _root.score + 1000;
_root.gotoAndStop(36);
}
if (this.hitTest(_root.grav)) {
var power = 1;
var xspeed = 0;
var yspeed = 0;
var friction = 0.95;
var gravity = 0.1;
var thrust = 0.75;
var wind = 0.05;
}
}
Instance of Symbol 136 MovieClip "coin" in Frame 35
onClipEvent (load) {
_x = 400;
_y = 357;
}
Instance of Symbol 159 MovieClip "environment2" in Frame 35
onClipEvent (load) {
var dir = 4;
moving = 1;
}
onClipEvent (enterFrame) {
if (moving) {
_y = (_y + dir);
if (_y > 300) {
dir = -4;
}
if (_y < 150) {
dir = 4;
}
}
}
Instance of Symbol 168 MovieClip "trig" in Frame 35
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
_root.trig.gotoAndStop(2);
_root.environment2.dir = 10;
_root.environment3.dir = 10;
_root.environment4.moveing = 1;
_root.environment5.moveing = 1;
_root.environment.dir = 10;
}
}
Instance of Symbol 147 MovieClip "coin3" in Frame 35
onClipEvent (load) {
_x = 251;
_y = 165;
}
Instance of Symbol 159 MovieClip "environment3" in Frame 35
onClipEvent (load) {
dir = 4;
moving = 1;
}
onClipEvent (enterFrame) {
if (moving) {
_y = (_y + dir);
if (_y > 300) {
dir = -4;
}
if (_y < 0) {
dir = 4;
}
}
}
Instance of Symbol 159 MovieClip "environment4" in Frame 35
onClipEvent (load) {
dir = 8;
moving = 1;
}
onClipEvent (enterFrame) {
if (moving) {
_y = (_y + dir);
if (_y > 300) {
dir = -8;
}
if (_y < 50) {
dir = 8;
}
}
}
Instance of Symbol 159 MovieClip "environment5" in Frame 35
onClipEvent (load) {
dir = 4;
moving = 1;
}
onClipEvent (enterFrame) {
if (moving) {
_y = (_y + dir);
if (_y > 100) {
dir = -4;
}
if (_y < 0) {
dir = 4;
}
}
}
Instance of Symbol 159 MovieClip "enviroment5" in Frame 35
onClipEvent (load) {
dir = 4;
moving = 0;
}
onClipEvent (enterFrame) {
if (moving) {
_y = (_y + dir);
if (_y > 50) {
dir = -4;
}
if (_y < 0) {
dir = 4;
}
}
}
Frame 36
stop();
Instance of Symbol 134 MovieClip "ball" in Frame 36
onClipEvent (load) {
_y = 80;
_x = 100;
yspeed = 0;
xspeed = 0;
var power = 1;
var xspeed = 0;
var yspeed = 0;
var friction = 0.95;
var gravity = 0.1;
var thrust = 0.75;
var wind = 0;
var rr = 20;
var lr = 330;
var bscore = 0;
var cscore = 100;
}
onClipEvent (enterFrame) {
if ((!Key.isDown(37)) & (!Key.isDown(39))) {
_rotation = 0;
}
if (Key.isDown(37)) {
xspeed = xspeed - power;
_rotation = lr;
}
if (Key.isDown(39)) {
xspeed = xspeed + power;
_rotation = rr;
}
if (Key.isDown(38)) {
yspeed = yspeed - (power * thrust);
}
if (Key.isDown(40)) {
yspeed = yspeed + (power * thrust);
}
xspeed = xspeed + wind;
xspeed = xspeed * friction;
yspeed = yspeed + gravity;
_x = (_x + xspeed);
_y = (_y + yspeed);
if (this.hitTest(_root.wall)) {
xspeed = 0;
yspeed = 0;
_x = 100;
_y = 80;
}
if (this.hitTest(_root.wall2)) {
xspeed = 0;
yspeed = 0;
_x = 100;
_y = 80;
}
if (this.hitTest(_root.wall3)) {
xspeed = 0;
yspeed = 0;
_x = 100;
_y = 80;
}
if (this.hitTest(_root.wall4)) {
xspeed = 0;
yspeed = 0;
_x = 100;
_y = 80;
}
if (_root.coin.hitTest(this)) {
_root.coin._x = -120;
_root.score = _root.score + cscore;
cscore = cscore + 50;
}
if (_root.coin2.hitTest(this)) {
_root.coin2._x = (Math.random() * 400) + 50;
_root.coin2._y = (Math.random() * 100) + 50;
}
if (_root.coin.hitTest(this)) {
_root.coin._x = -120;
_root.score = _root.score + cscore;
cscore = cscore + 300;
}
if (_root.coin2.hitTest(this)) {
_root.coin2._x = -120;
_root.score = _root.score + cscore;
cscore = cscore + 300;
}
if (_root.coin3.hitTest(this)) {
_root.coin3._x = -120;
_root.score = _root.score + cscore;
cscore = cscore + 300;
}
if (this.hitTest(_root.door)) {
_root.score = _root.score + 1000;
_root.gotoAndStop(37);
}
if (this.hitTest(_root.grav)) {
var power = 1;
var xspeed = 0;
var yspeed = 0;
var friction = 0.95;
var gravity = 0.1;
var thrust = 0.75;
var wind = 0.05;
}
}
Instance of Symbol 145 MovieClip "coin2" in Frame 36
onClipEvent (load) {
_x = 318;
_y = 133;
}
Frame 37
stop();
Instance of Symbol 134 MovieClip "ball" in Frame 37
onClipEvent (load) {
_y = 80;
_x = 100;
yspeed = 0;
xspeed = 0;
var power = 1;
var xspeed = 0;
var yspeed = 0;
var friction = 0.95;
var gravity = 0.1;
var thrust = 0.75;
var wind = 0;
var rr = 20;
var lr = 330;
var bscore = 0;
var cscore = 100;
}
onClipEvent (enterFrame) {
if ((!Key.isDown(37)) & (!Key.isDown(39))) {
_rotation = 0;
}
if (Key.isDown(37)) {
xspeed = xspeed - power;
_rotation = lr;
}
if (Key.isDown(39)) {
xspeed = xspeed + power;
_rotation = rr;
}
if (Key.isDown(38)) {
yspeed = yspeed - (power * thrust);
}
if (Key.isDown(40)) {
yspeed = yspeed + (power * thrust);
}
xspeed = xspeed + wind;
xspeed = xspeed * friction;
yspeed = yspeed + gravity;
_x = (_x + xspeed);
_y = (_y + yspeed);
if (this.hitTest(_root.wall)) {
xspeed = 0;
yspeed = 0;
_x = 100;
_y = 80;
bscore = bscore + 50;
_root.score = _root.score - bscore;
}
if (this.hitTest(_root.wall2)) {
xspeed = 0;
yspeed = 0;
_x = 100;
_y = 80;
bscore = bscore + 50;
_root.score = _root.score - bscore;
}
if (this.hitTest(_root.wall3)) {
xspeed = 0;
yspeed = 0;
_x = 100;
_y = 80;
bscore = bscore + 50;
_root.score = _root.score - bscore;
}
if (this.hitTest(_root.wall4)) {
xspeed = 0;
yspeed = 0;
_x = 100;
_y = 80;
bscore = bscore + 50;
_root.score = _root.score - bscore;
}
if (_root.coin.hitTest(this)) {
_root.coin._x = -120;
_root.score = _root.score + cscore;
cscore = cscore + 300;
}
if (_root.coin2.hitTest(this)) {
_root.coin2._x = -120;
_root.score = _root.score + cscore;
cscore = cscore + 300;
}
if (_root.coin3.hitTest(this)) {
_root.coin3._x = -120;
_root.score = _root.score + cscore;
cscore = cscore + 300;
}
if (this.hitTest(_root.door)) {
_root.score = _root.score + 1000;
_root.gotoAndStop(38);
}
if (this.hitTest(_root.grav)) {
var power = 1;
var xspeed = 0;
var yspeed = 0;
var friction = 0.95;
var gravity = 0.1;
var thrust = 0.75;
var wind = 0.05;
}
if (this.hitTest(_root.white)) {
var gravity = 0.1;
}
if (this.hitTest(_root.white2)) {
var gravity = 0.1;
}
if (this.hitTest(_root.white3)) {
var gravity = 0.1;
}
if (this.hitTest(_root.white4)) {
var gravity = 0.1;
}
if (this.hitTest(_root.green)) {
gravity = -0.02;
}
if (this.hitTest(_root.red)) {
gravity = 0.02;
}
if (this.hitTest(_root.green) && (_root.white)) {
gravity = -0.02;
}
if (this.hitTest(_root.red) && (_root.white)) {
gravity = 0.02;
}
}
Instance of Symbol 145 MovieClip "coin2" in Frame 37
onClipEvent (load) {
_x = 309;
_y = 94;
}
Frame 38
stop();
Instance of Symbol 134 MovieClip "ball" in Frame 38
onClipEvent (load) {
_y = 80;
_x = 100;
yspeed = 0;
xspeed = 0;
var power = 1;
var xspeed = 0;
var yspeed = 0;
var friction = 0.95;
var gravity = 0.1;
var thrust = 0.75;
var wind = 0;
var rr = 20;
var lr = 330;
var bscore = 0;
var cscore = 100;
}
onClipEvent (enterFrame) {
if ((!Key.isDown(37)) & (!Key.isDown(39))) {
_rotation = 0;
}
if (Key.isDown(37)) {
xspeed = xspeed - power;
_rotation = lr;
}
if (Key.isDown(39)) {
xspeed = xspeed + power;
_rotation = rr;
}
if (Key.isDown(38)) {
yspeed = yspeed - (power * thrust);
}
if (Key.isDown(40)) {
yspeed = yspeed + (power * thrust);
}
xspeed = xspeed + wind;
xspeed = xspeed * friction;
yspeed = yspeed + gravity;
_x = (_x + xspeed);
_y = (_y + yspeed);
if (this.hitTest(_root.wall)) {
xspeed = 0;
yspeed = 0;
_x = 100;
_y = 80;
bscore = bscore + 50;
_root.score = _root.score - bscore;
}
if (this.hitTest(_root.wall2)) {
xspeed = 0;
yspeed = 0;
_x = 100;
_y = 80;
bscore = bscore + 50;
_root.score = _root.score - bscore;
}
if (this.hitTest(_root.wall3)) {
xspeed = 0;
yspeed = 0;
_x = 100;
_y = 80;
bscore = bscore + 50;
_root.score = _root.score - bscore;
}
if (this.hitTest(_root.wall4)) {
xspeed = 0;
yspeed = 0;
_x = 100;
_y = 80;
bscore = bscore + 50;
_root.score = _root.score - bscore;
}
if (_root.coin.hitTest(this)) {
_root.coin._x = -120;
_root.score = _root.score + cscore;
cscore = cscore + 300;
}
if (_root.coin2.hitTest(this)) {
_root.coin2._x = -120;
_root.score = _root.score + cscore;
cscore = cscore + 300;
}
if (_root.coin3.hitTest(this)) {
_root.coin3._x = -120;
_root.score = _root.score + cscore;
cscore = cscore + 300;
}
if (this.hitTest(_root.door)) {
_root.score = _root.score + 1000;
_root.gotoAndStop(39);
}
if (this.hitTest(_root.grav)) {
var power = 1;
var xspeed = 0;
var yspeed = 0;
var friction = 0.95;
var gravity = 0.1;
var thrust = 0.75;
var wind = 0.05;
}
}
Instance of Symbol 136 MovieClip "coin" in Frame 38
onClipEvent (load) {
_x = 261;
_y = 251;
}
Instance of Symbol 159 MovieClip "environment2" in Frame 38
onClipEvent (load) {
dir = 10;
moving = 1;
}
onClipEvent (enterFrame) {
if (moving) {
_y = (_y + dir);
if (_y > 300) {
dir = -10;
}
if (_y < -150) {
dir = 10;
}
}
}
Instance of Symbol 147 MovieClip "coin3" in Frame 38
onClipEvent (load) {
_x = 474;
_y = 288;
}
Instance of Symbol 159 MovieClip "environment3" in Frame 38
onClipEvent (load) {
dir = 8;
moving = 1;
}
onClipEvent (enterFrame) {
if (moving) {
_y = (_y + dir);
if (_y > 300) {
dir = -8;
}
if (_y < 0) {
dir = 8;
}
}
}
Instance of Symbol 159 MovieClip "environment4" in Frame 38
onClipEvent (load) {
dir = 4;
moving = 1;
}
onClipEvent (enterFrame) {
if (moving) {
_y = (_y + dir);
if (_y > 300) {
dir = -8;
}
if (_y < 50) {
dir = 8;
}
}
}
Instance of Symbol 159 MovieClip "environment5" in Frame 38
onClipEvent (load) {
dir = 2;
moving = 1;
}
onClipEvent (enterFrame) {
if (moving) {
_y = (_y + dir);
if (_y > 50) {
dir = -2;
}
if (_y < 0) {
dir = 2;
}
}
}
Instance of Symbol 159 MovieClip "environment" in Frame 38
onClipEvent (load) {
dir = 8;
moving = 1;
}
onClipEvent (enterFrame) {
if (moving) {
_y = (_y + dir);
if (_y > 300) {
dir = -8;
}
if (_y < 50) {
dir = 8;
}
}
}
Frame 39
stop();
Instance of Symbol 134 MovieClip "ball" in Frame 39
onClipEvent (load) {
_y = 80;
_x = 100;
yspeed = 0;
xspeed = 0;
var power = 1;
var xspeed = 0;
var yspeed = 0;
var friction = 0.95;
var gravity = 0.1;
var thrust = 0.75;
var wind = 0.05;
var rr = 20;
var lr = 330;
var bscore = 0;
var cscore = 100;
}
onClipEvent (enterFrame) {
if ((!Key.isDown(37)) & (!Key.isDown(39))) {
_rotation = 0;
}
if (Key.isDown(37)) {
xspeed = xspeed - power;
_rotation = lr;
}
if (Key.isDown(39)) {
xspeed = xspeed + power;
_rotation = rr;
}
if (Key.isDown(38)) {
yspeed = yspeed - (power * thrust);
}
if (Key.isDown(40)) {
yspeed = yspeed + (power * thrust);
}
xspeed = xspeed + wind;
xspeed = xspeed * friction;
yspeed = yspeed + gravity;
_x = (_x + xspeed);
_y = (_y + yspeed);
if (this.hitTest(_root.wall)) {
xspeed = 0;
yspeed = 0;
_x = 100;
_y = 80;
bscore = bscore + 50;
_root.score = _root.score - bscore;
}
if (this.hitTest(_root.wall2)) {
xspeed = 0;
yspeed = 0;
_x = 100;
_y = 80;
bscore = bscore + 50;
_root.score = _root.score - bscore;
}
if (this.hitTest(_root.wall3)) {
xspeed = 0;
yspeed = 0;
_x = 100;
_y = 80;
bscore = bscore + 50;
_root.score = _root.score - bscore;
}
if (this.hitTest(_root.wall4)) {
xspeed = 0;
yspeed = 0;
_x = 100;
_y = 80;
bscore = bscore + 50;
_root.score = _root.score - bscore;
}
if (_root.coin.hitTest(this)) {
_root.coin._x = -120;
_root.score = _root.score + cscore;
cscore = cscore + 300;
}
if (_root.coin2.hitTest(this)) {
_root.coin2._x = -120;
_root.score = _root.score + cscore;
cscore = cscore + 300;
}
if (_root.coin3.hitTest(this)) {
_root.coin3._x = -120;
_root.score = _root.score + cscore;
cscore = cscore + 300;
}
if (this.hitTest(_root.door)) {
_root.score = _root.score + 1000;
_root.gotoAndPlay(40);
}
if (this.hitTest(_root.green)) {
gravity = -0.61;
}
if (this.hitTest(_root.red)) {
gravity = 0.61;
}
if (this.hitTest(_root.grav)) {
var power = 1;
var xspeed = 0;
var yspeed = 0;
var friction = 0.95;
var gravity = 0;
var thrust = 0.75;
var wind = 0.05;
}
}
Instance of Symbol 159 MovieClip "environment3" in Frame 39
onClipEvent (load) {
dir = 4;
moving = 1;
}
onClipEvent (enterFrame) {
if (moving) {
_y = (_y + dir);
if (_y > 300) {
dir = -9;
}
if (_y < 50) {
dir = 9;
}
}
}
Instance of Symbol 159 MovieClip "environment2" in Frame 39
onClipEvent (load) {
dir = 4;
moving = 1;
}
onClipEvent (enterFrame) {
if (moving) {
_y = (_y + dir);
if (_y > 300) {
dir = -7;
}
if (_y < 50) {
dir = 7;
}
}
}
Instance of Symbol 159 MovieClip "environment4" in Frame 39
onClipEvent (load) {
dir = 4;
moving = 1;
}
onClipEvent (enterFrame) {
if (moving) {
_y = (_y + dir);
if (_y > 300) {
dir = -8;
}
if (_y < 50) {
dir = 8;
}
}
}
Frame 40
stop();
Instance of Symbol 134 MovieClip "ball" in Frame 40
onClipEvent (load) {
_y = 80;
_x = 100;
yspeed = 0;
xspeed = 0;
var power = 1;
var xspeed = 0;
var yspeed = 0;
var friction = 0.95;
var gravity = 0;
var thrust = 0.7;
var wind = 0;
var rr = 20;
var lr = 330;
var bscore = 0;
var cscore = 100;
}
onClipEvent (enterFrame) {
if ((!Key.isDown(37)) & (!Key.isDown(39))) {
_rotation = 0;
}
if (Key.isDown(37)) {
xspeed = xspeed - power;
_rotation = lr;
}
if (Key.isDown(39)) {
xspeed = xspeed + power;
_rotation = rr;
}
if (Key.isDown(38)) {
yspeed = yspeed - power;
}
if (Key.isDown(40)) {
yspeed = yspeed + power;
}
xspeed = xspeed + wind;
xspeed = xspeed * friction;
yspeed = yspeed + gravity;
_x = (_x + xspeed);
_y = (_y + yspeed);
if (this.hitTest(_root.wall)) {
xspeed = 0;
yspeed = 0;
_x = 100;
_y = 80;
bscore = bscore + 50;
}
if (this.hitTest(_root.wall2)) {
xspeed = 0;
yspeed = 0;
_x = 100;
_y = 80;
bscore = bscore + 50;
}
if (this.hitTest(_root.wall3)) {
xspeed = 0;
yspeed = 0;
_x = 100;
_y = 80;
bscore = bscore + 50;
}
if (this.hitTest(_root.wall4)) {
xspeed = 0;
yspeed = 0;
_x = 100;
_y = 80;
bscore = bscore + 50;
}
if (_root.coin.hitTest(this)) {
_root.coin._x = -120;
_root.score = _root.score + cscore;
cscore = cscore + 300;
}
if (_root.coin2.hitTest(this)) {
_root.coin2._x = -120;
_root.score = _root.score + cscore;
cscore = cscore + 300;
}
if (_root.coin3.hitTest(this)) {
_root.coin3._x = -120;
_root.score = _root.score + cscore;
cscore = cscore + 300;
}
if (this.hitTest(_root.door)) {
_root.score = _root.score + 1000;
_root.gotoAndPlay(41);
}
if (this.hitTest(_root.grav)) {
var power = 1;
var xspeed = 0;
var yspeed = 0;
var friction = 0.95;
var gravity = 0;
var thrust = 0.75;
var wind = -0.5;
}
}
Instance of Symbol 136 MovieClip "coin" in Frame 40
onClipEvent (load) {
_x = 430;
_y = 191;
}
Instance of Symbol 147 MovieClip "coin3" in Frame 40
onClipEvent (load) {
_x = 139;
_y = 330;
}
Frame 41
stop();
Instance of Symbol 134 MovieClip "ball" in Frame 41
onClipEvent (load) {
_y = 80;
_x = 100;
yspeed = 0;
xspeed = 0;
var power = 1;
var xspeed = 0;
var yspeed = 0;
var friction = 0.95;
var gravity = 0.1;
var thrust = 0.75;
var wind = 0;
var rr = 20;
var lr = 330;
var bscore = 0;
var cscore = 100;
}
onClipEvent (enterFrame) {
if ((!Key.isDown(37)) & (!Key.isDown(39))) {
_rotation = 0;
}
if (Key.isDown(37)) {
xspeed = xspeed - power;
_rotation = lr;
}
if (Key.isDown(39)) {
xspeed = xspeed + power;
_rotation = rr;
}
if (Key.isDown(38)) {
yspeed = yspeed - (power * thrust);
}
if (Key.isDown(40)) {
yspeed = yspeed + (power * thrust);
}
xspeed = xspeed + wind;
xspeed = xspeed * friction;
yspeed = yspeed + gravity;
_x = (_x + xspeed);
_y = (_y + yspeed);
if (this.hitTest(_root.wall)) {
xspeed = 0;
yspeed = 0;
_x = 100;
_y = 80;
bscore = bscore + 50;
_root.score = _root.score - bscore;
}
if (this.hitTest(_root.wall2)) {
xspeed = 0;
yspeed = 0;
_x = 100;
_y = 80;
bscore = bscore + 50;
_root.score = _root.score - bscore;
}
if (this.hitTest(_root.wall3)) {
xspeed = 0;
yspeed = 0;
_x = 100;
_y = 80;
bscore = bscore + 50;
_root.score = _root.score - bscore;
}
if (this.hitTest(_root.wall4)) {
xspeed = 0;
yspeed = 0;
_x = 100;
_y = 80;
bscore = bscore + 50;
_root.score = _root.score - bscore;
}
if (_root.coin.hitTest(this)) {
_root.coin._x = -120;
_root.score = _root.score + cscore;
cscore = cscore + 300;
}
if (_root.coin2.hitTest(this)) {
_root.coin2._x = -120;
_root.score = _root.score + cscore;
cscore = cscore + 300;
}
if (_root.coin3.hitTest(this)) {
_root.coin3._x = -120;
_root.score = _root.score + cscore;
cscore = cscore + 300;
}
if (this.hitTest(_root.door)) {
_root.score = _root.score + 1000;
_root.gotoAndStop(42);
}
if (this.hitTest(_root.grav)) {
var power = 1;
var xspeed = 0;
var yspeed = 0;
var friction = 0.95;
var gravity = 0.1;
var thrust = 0.75;
var wind = 0.05;
}
}
Instance of Symbol 136 MovieClip "coin" in Frame 41
onClipEvent (load) {
_x = 440;
_y = 180;
}
Instance of Symbol 147 MovieClip "coin3" in Frame 41
onClipEvent (load) {
_x = 113;
_y = 217;
}
Instance of Symbol 159 MovieClip "environment4" in Frame 41
onClipEvent (load) {
dir = 4;
moving = 1;
}
onClipEvent (enterFrame) {
if (moving) {
_y = (_y + dir);
if (_y > 300) {
dir = -7;
}
if (_y < 50) {
dir = 7;
}
}
}
Instance of Symbol 159 MovieClip "environment3" in Frame 41
onClipEvent (load) {
dir = 4;
moving = 1;
}
onClipEvent (enterFrame) {
if (moving) {
_y = (_y + dir);
if (_y > 300) {
dir = -7;
}
if (_y < 50) {
dir = 7;
}
}
}
Instance of Symbol 159 MovieClip "environment5" in Frame 41
onClipEvent (load) {
dir = 4;
moving = 1;
}
onClipEvent (enterFrame) {
if (moving) {
_y = (_y + dir);
if (_y > 300) {
dir = -4;
}
if (_y < 50) {
dir = 5;
}
}
}
Instance of Symbol 159 MovieClip "environment2" in Frame 41
onClipEvent (load) {
dir = 4;
moving = 1;
}
onClipEvent (enterFrame) {
if (moving) {
_x = (_x + dir);
if (_x > 300) {
dir = -7;
}
if (_x < 50) {
dir = 7;
}
}
}
Instance of Symbol 159 MovieClip "environment" in Frame 41
onClipEvent (load) {
dir = 4;
moving = 1;
}
onClipEvent (enterFrame) {
if (moving) {
_x = (_x + dir);
if (_x > 300) {
dir = -3;
}
if (_x < 50) {
dir = 3;
}
}
}
Frame 42
stop();
Instance of Symbol 134 MovieClip "ball" in Frame 42
onClipEvent (load) {
_y = 80;
_x = 100;
yspeed = 0;
xspeed = 0;
var power = 1;
var xspeed = 0;
var yspeed = 0;
var friction = 0.95;
var gravity = 0.1;
var thrust = 0.75;
var wind = 0;
var rr = 20;
var lr = 330;
var bscore = 0;
var cscore = 100;
}
onClipEvent (enterFrame) {
if ((!Key.isDown(37)) & (!Key.isDown(39))) {
_rotation = 0;
}
if (Key.isDown(37)) {
xspeed = xspeed - power;
_rotation = lr;
}
if (Key.isDown(39)) {
xspeed = xspeed + power;
_rotation = rr;
}
if (Key.isDown(38)) {
yspeed = yspeed - (power * thrust);
}
if (Key.isDown(40)) {
yspeed = yspeed + (power * thrust);
}
xspeed = xspeed + wind;
xspeed = xspeed * friction;
yspeed = yspeed + gravity;
_x = (_x + xspeed);
_y = (_y + yspeed);
if (this.hitTest(_root.wall)) {
xspeed = 0;
yspeed = 0;
_x = 100;
_y = 80;
bscore = bscore + 50;
_root.score = _root.score - bscore;
}
if (this.hitTest(_root.wall2)) {
xspeed = 0;
yspeed = 0;
_x = 100;
_y = 80;
bscore = bscore + 50;
_root.score = _root.score - bscore;
}
if (this.hitTest(_root.wall3)) {
xspeed = 0;
yspeed = 0;
_x = 100;
_y = 80;
bscore = bscore + 50;
_root.score = _root.score - bscore;
}
if (this.hitTest(_root.wall4)) {
xspeed = 0;
yspeed = 0;
_x = 100;
_y = 80;
bscore = bscore + 50;
_root.score = _root.score - bscore;
}
if (_root.coin.hitTest(this)) {
_root.coin._x = -120;
_root.score = _root.score + cscore;
cscore = cscore + 300;
}
if (_root.coin2.hitTest(this)) {
_root.coin2._x = -120;
_root.score = _root.score + cscore;
cscore = cscore + 300;
}
if (_root.coin3.hitTest(this)) {
_root.coin3._x = -120;
_root.score = _root.score + cscore;
cscore = cscore + 300;
}
if (this.hitTest(_root.door)) {
_root.score = _root.score + 1000;
_root.gotoAndStop(43);
}
if (this.hitTest(_root.grav)) {
var power = 1;
var xspeed = 0;
var yspeed = 0;
var friction = 0.95;
var gravity = 0.1;
var thrust = 0.75;
var wind = 0.05;
}
}
Instance of Symbol 136 MovieClip "coin" in Frame 42
onClipEvent (load) {
_x = 300;
_y = 300;
}
Instance of Symbol 147 MovieClip "coin3" in Frame 42
onClipEvent (load) {
_x = 113;
_y = 267;
}
Frame 43
stop();
stopAllSounds();
Instance of Symbol 147 MovieClip "coin3" in Frame 43
onClipEvent (load) {
_x = 287;
_y = 353;
}
Instance of Symbol 134 MovieClip "ball" in Frame 43
onClipEvent (load) {
_y = 80;
_x = 100;
yspeed = 0;
xspeed = 0;
var power = 1;
var xspeed = 0;
var yspeed = 0;
var friction = 0.95;
var gravity = 0.1;
var thrust = 0.75;
var wind = 0;
var rr = 20;
var lr = 330;
var bscore = 0;
var cscore = 100;
}
onClipEvent (enterFrame) {
if ((!Key.isDown(37)) & (!Key.isDown(39))) {
_rotation = 0;
}
if (Key.isDown(37)) {
xspeed = xspeed - power;
_rotation = lr;
}
if (Key.isDown(39)) {
xspeed = xspeed + power;
_rotation = rr;
}
if (Key.isDown(38)) {
yspeed = yspeed - (power * thrust);
}
if (Key.isDown(40)) {
yspeed = yspeed + (power * thrust);
}
xspeed = xspeed + wind;
xspeed = xspeed * friction;
yspeed = yspeed + gravity;
_x = (_x + xspeed);
_y = (_y + yspeed);
if (this.hitTest(_root.wall)) {
xspeed = 0;
yspeed = 0;
_x = 100;
_y = 80;
bscore = bscore + 50;
_root.score = _root.score - bscore;
}
if (this.hitTest(_root.wall2)) {
xspeed = 0;
yspeed = 0;
_x = 100;
_y = 80;
bscore = bscore + 50;
_root.score = _root.score - bscore;
}
if (this.hitTest(_root.wall3)) {
xspeed = 0;
yspeed = 0;
_x = 100;
_y = 80;
bscore = bscore + 50;
_root.score = _root.score - bscore;
}
if (this.hitTest(_root.wall4)) {
xspeed = 0;
yspeed = 0;
_x = 100;
_y = 80;
bscore = bscore + 50;
_root.score = _root.score - bscore;
}
if (_root.coin.hitTest(this)) {
_root.coin._x = -120;
_root.score = _root.score + cscore;
cscore = cscore + 300;
}
if (_root.coin2.hitTest(this)) {
_root.coin2._x = -120;
_root.score = _root.score + cscore;
cscore = cscore + 300;
}
if (_root.coin3.hitTest(this)) {
_root.coin3._x = -120;
_root.score = _root.score + cscore;
cscore = cscore + 300;
}
if (this.hitTest(_root.door)) {
_root.score = _root.score + 1000;
_root.gotoAndStop(44);
}
if (this.hitTest(_root.grav)) {
var power = 1;
var xspeed = 0;
var yspeed = 0;
var friction = 0.95;
var gravity = 0.1;
var thrust = 0.75;
var wind = 0.05;
}
}
Instance of Symbol 136 MovieClip "coin" in Frame 43
onClipEvent (load) {
_x = 475;
_y = 250;
}
Instance of Symbol 159 MovieClip in Frame 43
onClipEvent (load) {
dir = 4;
moving = 1;
}
onClipEvent (enterFrame) {
if (moving) {
_y = (_y + dir);
if (_y > 300) {
dir = -4;
}
if (_y < 150) {
dir = 4;
}
}
}
Instance of Symbol 159 MovieClip "environment3" in Frame 43
onClipEvent (load) {
dir = 4;
moving = 1;
}
onClipEvent (enterFrame) {
if (moving) {
_y = (_y + dir);
if (_y > 300) {
dir = -4;
}
if (_y < 0) {
dir = 4;
}
}
}
Instance of Symbol 159 MovieClip "environment4" in Frame 43
onClipEvent (load) {
dir = 4;
moving = 1;
}
onClipEvent (enterFrame) {
if (moving) {
_y = (_y + dir);
if (_y > 300) {
dir = -4;
}
if (_y < 50) {
dir = 4;
}
}
}
Instance of Symbol 159 MovieClip "environment5" in Frame 43
onClipEvent (load) {
dir = 4;
moving = 1;
}
onClipEvent (enterFrame) {
if (moving) {
_y = (_y + dir);
if (_y > 50) {
dir = -4;
}
if (_y < 0) {
dir = 4;
}
}
}
Instance of Symbol 159 MovieClip "environment2" in Frame 43
onClipEvent (load) {
dir = 4;
moving = 1;
}
onClipEvent (enterFrame) {
if (moving) {
_y = (_y + dir);
if (_y > 300) {
dir = -4;
}
if (_y < 50) {
dir = 4;
}
}
}
Instance of Symbol 159 MovieClip in Frame 43
onClipEvent (load) {
dir = 4;
moving = 1;
}
onClipEvent (enterFrame) {
if (moving) {
_y = (_y + dir);
if (_y > 300) {
dir = -4;
}
if (_y < 50) {
dir = 4;
}
}
}
Frame 44
stop();
Instance of Symbol 134 MovieClip "ball" in Frame 44
onClipEvent (load) {
_y = 80;
_x = 100;
yspeed = 0;
xspeed = 0;
var power = 1;
var xspeed = 0;
var yspeed = 0;
var friction = 0.95;
var gravity = 0.1;
var thrust = 0.75;
var wind = 0.05;
var rr = 20;
var lr = 330;
var bscore = 0;
var cscore = 100;
}
onClipEvent (enterFrame) {
if ((!Key.isDown(37)) & (!Key.isDown(39))) {
_rotation = 0;
}
if (Key.isDown(37)) {
xspeed = xspeed - power;
_rotation = lr;
}
if (Key.isDown(39)) {
xspeed = xspeed + power;
_rotation = rr;
}
if (Key.isDown(38)) {
yspeed = yspeed - (power * thrust);
}
if (Key.isDown(40)) {
yspeed = yspeed + (power * thrust);
}
xspeed = xspeed + wind;
xspeed = xspeed * friction;
yspeed = yspeed + gravity;
_x = (_x + xspeed);
_y = (_y + yspeed);
if (this.hitTest(_root.wall)) {
xspeed = 0;
yspeed = 0;
_x = 100;
_y = 80;
bscore = bscore + 50;
_root.score = _root.score - bscore;
}
if (this.hitTest(_root.wall2)) {
xspeed = 0;
yspeed = 0;
_x = 100;
_y = 80;
bscore = bscore + 50;
_root.score = _root.score - bscore;
}
if (this.hitTest(_root.wall3)) {
xspeed = 0;
yspeed = 0;
_x = 100;
_y = 80;
bscore = bscore + 50;
_root.score = _root.score - bscore;
}
if (this.hitTest(_root.wall4)) {
xspeed = 0;
yspeed = 0;
_x = 100;
_y = 80;
bscore = bscore + 50;
_root.score = _root.score - bscore;
}
if (_root.cake.hitTest(this)) {
_root.score = _root.score * 10;
_root.cake._x = -120;
}
if (_root.coin2.hitTest(this)) {
_root.coin2._x = -120;
_root.score = _root.score + cscore;
cscore = cscore + 300;
}
if (_root.coin3.hitTest(this)) {
_root.coin3._x = -120;
_root.score = _root.score + cscore;
cscore = cscore + 300;
}
if (this.hitTest(_root.door)) {
_root.score = _root.score + 1000;
_root.gotoAndPlay(45);
}
if (this.hitTest(_root.green)) {
gravity = -1.01;
}
if (this.hitTest(_root.red)) {
gravity = 1.01;
}
if (this.hitTest(_root.grav)) {
var power = 1;
var xspeed = 0;
var yspeed = 0;
var friction = 0.95;
var gravity = 0.1;
var thrust = 0.75;
var wind = 0.05;
}
}
Frame 46
stop();
Instance of Symbol 234 MovieClip in Frame 46
onClipEvent (load) {
gotoAndStop (1);
}
on (release) {
gotoAndStop (2);
}
Frame 47
gotoAndStop (10);
Frame 48
stopAllSounds();
Instance of Symbol 5 MovieClip in Frame 48
on (release) {
getURL ("http://www.applecartgames.com/", "_blank");
}
Frame 49
stopAllSounds();
Instance of Symbol 115 MovieClip in Frame 49
on (release) {
var my_lv = new LoadVars();
my_lv.TheGamesNameValue = "RocketPenguinGame";
my_lv.send("http://www.applecartgames.com/HiScores/HiScorePage.aspx", "_blank", "POST");
gotoAndStop (12);
}
Frame 50
var score = 0;
Symbol 17 Button
on (release) {
getURL ("http://www.happyfunfun.com", "_blank");
}
Instance of Symbol 92 MovieClip in Symbol 93 MovieClip Frame 1
onClipEvent (load) {
var env = 0;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.environment)) {
xspeed = 0;
yspeed = 0;
_root.ball._x = 35;
_root.ball._y = 80;
_root.score = _root.score - env;
env = env + 50;
}
if (this.hitTest(_root.environment2)) {
xspeed = 0;
yspeed = 0;
_root.ball._x = 35;
_root.ball._y = 80;
_root.score = _root.score - env;
env = env + 50;
}
if (this.hitTest(_root.environment3)) {
xspeed = 0;
yspeed = 0;
_root.ball._x = 35;
_root.ball._y = 80;
_root.score = _root.score - env;
env = env + 50;
}
if (this.hitTest(_root.environment4)) {
xspeed = 0;
yspeed = 0;
_root.ball._x = 35;
_root.ball._y = 80;
_root.score = _root.score - env;
env = env + 50;
}
if (this.hitTest(_root.environment5)) {
xspeed = 0;
yspeed = 0;
_root.ball._x = 35;
_root.ball._y = 80;
_root.score = _root.score - env;
env = env + 50;
}
}
Symbol 103 MovieClip Frame 1
play();
Instance of Symbol 93 MovieClip in Symbol 103 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.grav)) {
var power = 1;
var xspeed = 0;
var yspeed = 0;
var friction = 0.95;
var gravity = 0.1;
var thrust = 0.75;
var wind = 0.05;
}
}
Instance of Symbol 97 MovieClip "rocket" in Symbol 103 MovieClip Frame 1
onClipEvent (load) {
gotoAndStop (1);
}
onClipEvent (enterFrame) {
if (((!Key.isDown(38)) & (!Key.isDown(37))) & (!Key.isDown(39))) {
gotoAndStop (1);
} else {
play();
}
}
Symbol 109 Button
on (release) {
gotoAndStop (25);
}
Symbol 111 Button
on (release) {
gotoAndStop (48);
}
Symbol 133 MovieClip Frame 1
if (Key.isDown(40)) {
gotoAndStop (2);
}
Symbol 134 MovieClip Frame 1
play();
Instance of Symbol 93 MovieClip in Symbol 134 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.grav)) {
var power = 1;
var xspeed = 0;
var yspeed = 0;
var friction = 0.95;
var gravity = 0.1;
var thrust = 0.75;
var wind = 0.05;
}
}
Instance of Symbol 97 MovieClip "rocket" in Symbol 134 MovieClip Frame 1
onClipEvent (load) {
gotoAndStop (1);
}
onClipEvent (enterFrame) {
if (((!Key.isDown(38)) & (!Key.isDown(37))) & (!Key.isDown(39))) {
gotoAndStop (1);
} else {
play();
}
}
Instance of Symbol 133 MovieClip in Symbol 134 MovieClip Frame 1
onClipEvent (enterFrame) {
if (Key.isDown(38)) {
play();
}
if (Key.isDown(37)) {
play();
}
if (Key.isDown(39)) {
play();
}
}
Symbol 154 Button
on (release) {
gotoAndStop (49);
}
Symbol 243 Button
on (release) {
if (user.length > 0) {
var my_lv = new LoadVars();
my_lv.TheGamesNameValue = "RocketPenguinGame";
my_lv.ThePlayersNameValue = user;
my_lv.TheHighScoreValue = _root.score;
my_lv.send("http://www.applecartgames.com/HiScores/HiScorePage.aspx", "_blank", "POST");
_root.gotoAndStop(12);
}
}
Symbol 245 Button
on (release) {
getURL ("http//:www.happyfunfun.com", "_blank");
}
Symbol 258 Button
on (release) {
gotoAndStop (10);
}
Symbol 271 Button
on (release) {
gotoAndStop (51);
}
Symbol 274 Button
on (release) {
gotoAndStop (50);
}
Symbol 284 Button
on (release) {
gotoAndStop (49);
}
Symbol 286 Button
on (release) {
gotoAndStop (25);
}
Symbol 288 Button
on (release) {
gotoAndStop (26);
}
Symbol 290 Button
on (release) {
gotoAndStop (257);
}
Symbol 292 Button
on (release) {
gotoAndStop (28);
}
Symbol 294 Button
on (release) {
gotoAndStop (29);
}
Symbol 296 Button
on (release) {
gotoAndStop (30);
}
Symbol 298 Button
on (release) {
gotoAndStop (31);
}
Symbol 300 Button
on (release) {
gotoAndStop (32);
}
Symbol 302 Button
on (release) {
gotoAndStop (33);
}
Symbol 304 Button
on (release) {
gotoAndStop (34);
}
Symbol 306 Button
on (release) {
gotoAndStop (35);
}
Symbol 308 Button
on (release) {
gotoAndStop (36);
}
Symbol 310 Button
on (release) {
gotoAndStop (37);
}
Symbol 312 Button
on (release) {
gotoAndStop (38);
}
Symbol 314 Button
on (release) {
gotoAndStop (39);
}
Symbol 316 Button
on (release) {
gotoAndStop (40);
}
Symbol 318 Button
on (release) {
gotoAndStop (41);
}
Symbol 320 Button
on (release) {
gotoAndStop (42);
}
Symbol 322 Button
on (release) {
gotoAndStop (43);
}
Symbol 333 Button
on (release) {
gotoAndStop (49);
}