Frame 1
stop();
_root.kongregateServices.connect();
Instance of Symbol 13 MovieClip in Frame 1
onClipEvent (enterFrame) {
if (_root._framesloaded == _root._totalframes) {
this.gotoAndStop(9);
}
}
Instance of Symbol 20 MovieClip in Frame 1
on (release) {
getURL ("http://www.hallpass.com", "_blank");
}
Frame 2
stop();
Instance of Symbol 24 MovieClip "poop2" in Frame 2
on (release) {
getURL ("http://www.hallpass.com", "_blank");
}
Frame 3
dead = 0;
landed = 0;
stop();
die = false;
wind = 0;
style = 0;
newx = 0;
newy = 0;
playmode = 1;
Instance of Symbol 45 MovieClip in Frame 3
onClipEvent (enterFrame) {
this._y = this._y - 0.1;
}
Instance of Symbol 49 MovieClip in Frame 3
onClipEvent (enterFrame) {
if (_root.timer.time < 30) {
if (random(100) == 1) {
this.play();
}
}
}
Instance of Symbol 52 MovieClip in Frame 3
onClipEvent (enterFrame) {
this._x = this._x + (_root.wind / 4);
}
Instance of Symbol 54 MovieClip in Frame 3
onClipEvent (enterFrame) {
this._x = this._x + (_root.wind / 2);
}
Instance of Symbol 56 MovieClip in Frame 3
onClipEvent (enterFrame) {
this._x = this._x + _root.wind;
}
Instance of Symbol 58 MovieClip "shit" in Frame 3
onClipEvent (load) {
count = 0;
}
onClipEvent (enterFrame) {
count++;
if (count == 250) {
_root.windchange.play();
_root.wind = (random(20) / 10) - 1;
count = 0;
}
}
Instance of Symbol 65 MovieClip "plane" in Frame 3
onClipEvent (load) {
this._x = -50;
count = 1;
diveallow = true;
speed = 5;
}
onClipEvent (enterFrame) {
this._x = this._x + speed;
if (this._x >= 430) {
this._x = -50;
count = 1;
speed = 5;
this.gotoAndPlay(1);
}
if (Key.isDown(32) && (count == 1)) {
if (diveallow == true) {
if (20 < this._x) {
duplicateMovieClip (_root.man, "man1", random(5000));
speed = speed * 4;
count = 2;
}
}
}
}
Instance of Symbol 115 MovieClip "man" in Frame 3
onClipEvent (load) {
if (_name != "man") {
this._x = _root.plane._x;
this._y = _root.plane._y;
accel = 0.7;
grav = 1;
xspeed = 0;
yspeed = 0;
fric = 0.9;
counter = 15;
allow = 1;
chute = false;
rspeed = 0;
decel = 0;
aceld = 0.019;
rotval = 0;
}
}
onClipEvent (enterFrame) {
if (_name != "man") {
if (chute == true) {
yspeed = yspeed - decel;
decel = decel + aceld;
if (yspeed <= 0.3) {
yspeed = 0.3;
}
if ((!Key.isDown(39)) && (!Key.isDown(37))) {
if (rotval > 0) {
this._rotation--;
rotval--;
}
if (rotval < 0) {
this._rotation++;
rotval++;
}
}
}
if (_root.die == true) {
this.removeMovieClip();
}
counter--;
if (counter <= 1) {
if (Key.isDown(32) && (allow == 1)) {
allow = 2;
this.gotoAndPlay(2);
chute = true;
}
}
if (chute == true) {
xspeed = xspeed + _root.wind;
}
xspeed = xspeed * 0.8;
yspeed = yspeed + grav;
yspeed = yspeed * fric;
if (Key.isDown(39)) {
xspeed = xspeed + accel;
if (chute == true) {
this._rotation = this._rotation + 0.5;
rotval = rotval + 0.5;
}
}
if (Key.isDown(37)) {
xspeed = xspeed - accel;
if (chute == true) {
this._rotation = this._rotation - 0.5;
rotval = rotval - 0.5;
}
}
if (Key.isDown(40)) {
yspeed = yspeed + accel;
}
this._x = this._x + xspeed;
this._y = this._y + yspeed;
if (this._y >= 450) {
if (chute == true) {
if (yspeed < 6) {
_root.plane.diveallow = true;
_root.landed++;
if (Math.abs(this._x - _root.xtarget._x) < 10) {
_root.bullseye.play();
} else {
_root.thing2.play();
}
_root.style = _root.style + (200 - Math.abs(this._x - _root.xtarget._x));
_root.newx = this._x;
_root.newy = this._y;
duplicateMovieClip (_root.walk, "walk" + (random(500000) / 0.54334), random(453234625365) / 0.94764);
this.removeMovieClip();
} else {
_root.dead++;
_root.sfx.gotoAndPlay(2);
_root.thing.play();
_root.plane.diveallow = true;
this.removeMovieClip();
}
} else {
_root.dead++;
_root.sfx.gotoAndPlay(2);
_root.thing.play();
_root.plane.diveallow = true;
this.removeMovieClip();
}
} else {
_root.plane.diveallow = false;
}
if (this.hitarea.hitTest(_root.bird1)) {
_root.dead++;
_root.plane.diveallow = true;
_root.bird1.gotoAndPlay(25);
this.removeMovieClip();
}
if (this.hitarea.hitTest(_root.bird2)) {
_root.dead++;
_root.plane.diveallow = true;
_root.bird2.gotoAndPlay(25);
this.removeMovieClip();
}
if (this.hitarea.hitTest(_root.bird3)) {
_root.dead++;
_root.plane.diveallow = true;
_root.bird3.gotoAndPlay(25);
this.removeMovieClip();
}
if (this.hitarea.hitTest(_root.bird4)) {
_root.dead++;
_root.plane.diveallow = true;
_root.bird4.gotoAndPlay(25);
this.removeMovieClip();
}
if (this.hitarea.hitTest(_root.bird5)) {
_root.dead++;
_root.plane.diveallow = true;
_root.bird5.gotoAndPlay(25);
this.removeMovieClip();
}
if (this.hitarea.hitTest(_root.bird6)) {
_root.dead++;
_root.plane.diveallow = true;
_root.bird6.gotoAndPlay(25);
this.removeMovieClip();
}
if (this.hitarea.hitTest(_root.bird7)) {
_root.dead++;
_root.plane.diveallow = true;
_root.bird7.gotoAndPlay(25);
this.removeMovieClip();
}
if (this.hitarea.hitTest(_root.bird8)) {
_root.dead++;
_root.plane.diveallow = true;
_root.bird8.gotoAndPlay(25);
this.removeMovieClip();
}
}
}
Instance of Symbol 134 MovieClip "bird1" in Frame 3
onClipEvent (load) {
if (random(2) == 1) {
this._x = -50;
right = true;
speed = random(5) + 3;
this.gotoAndPlay(13);
} else {
this._x = 450;
left = true;
speed = (random(5) + 3) * -1;
this.gotoAndPlay(1);
}
this._y = random(350) + 50;
}
onClipEvent (enterFrame) {
this._x = this._x + speed;
if (left == true) {
if (this._x <= -50) {
if (random(2) == 1) {
this._x = -50;
right = true;
speed = random(5) + 3;
this.gotoAndPlay(13);
} else {
this._x = 450;
left = true;
speed = (random(5) + 3) * -1;
this.gotoAndPlay(1);
}
this._y = random(350) + 50;
}
}
if (right == true) {
if (this._x >= 450) {
if (random(2) == 1) {
this._x = -50;
right = true;
speed = random(5) + 3;
this.gotoAndPlay(13);
} else {
this._x = 450;
left = true;
speed = (random(5) + 3) * -1;
this.gotoAndPlay(1);
}
this._y = random(350) + 50;
}
}
}
Instance of Symbol 136 MovieClip "timer" in Frame 3
onClipEvent (load) {
time = 60;
frames = 0;
}
onClipEvent (enterFrame) {
frames++;
if (frames == 25) {
frames = 0;
time--;
}
if (time == 0) {
_root.nextFrame();
}
}
Instance of Symbol 134 MovieClip "bird2" in Frame 3
onClipEvent (load) {
if (random(2) == 1) {
this._x = -50;
right = true;
speed = random(5) + 3;
this.gotoAndPlay(13);
} else {
this._x = 450;
left = true;
speed = (random(5) + 3) * -1;
this.gotoAndPlay(1);
}
this._y = random(350) + 50;
}
onClipEvent (enterFrame) {
this._x = this._x + speed;
if (left == true) {
if (this._x <= -50) {
if (random(2) == 1) {
this._x = -50;
right = true;
speed = random(5) + 3;
this.gotoAndPlay(13);
} else {
this._x = 450;
left = true;
speed = (random(5) + 3) * -1;
this.gotoAndPlay(1);
}
this._y = random(350) + 50;
}
}
if (right == true) {
if (this._x >= 450) {
if (random(2) == 1) {
this._x = -50;
right = true;
speed = random(5) + 3;
this.gotoAndPlay(13);
} else {
this._x = 450;
left = true;
speed = (random(5) + 3) * -1;
this.gotoAndPlay(1);
}
this._y = random(350) + 50;
}
}
}
Instance of Symbol 134 MovieClip "bird3" in Frame 3
onClipEvent (load) {
if (random(2) == 1) {
this._x = -50;
right = true;
speed = random(5) + 3;
this.gotoAndPlay(13);
} else {
this._x = 450;
left = true;
speed = (random(5) + 3) * -1;
this.gotoAndPlay(1);
}
this._y = random(350) + 50;
}
onClipEvent (enterFrame) {
this._x = this._x + speed;
if (left == true) {
if (this._x <= -50) {
if (random(2) == 1) {
this._x = -50;
right = true;
speed = random(5) + 3;
this.gotoAndPlay(13);
} else {
this._x = 450;
left = true;
speed = (random(5) + 3) * -1;
this.gotoAndPlay(1);
}
this._y = random(350) + 50;
}
}
if (right == true) {
if (this._x >= 450) {
if (random(2) == 1) {
this._x = -50;
right = true;
speed = random(5) + 3;
this.gotoAndPlay(13);
} else {
this._x = 450;
left = true;
speed = (random(5) + 3) * -1;
this.gotoAndPlay(1);
}
this._y = random(350) + 50;
}
}
}
Instance of Symbol 134 MovieClip "bird5" in Frame 3
onClipEvent (load) {
if (random(2) == 1) {
this._x = -50;
right = true;
speed = random(5) + 3;
this.gotoAndPlay(13);
} else {
this._x = 450;
left = true;
speed = (random(5) + 3) * -1;
this.gotoAndPlay(1);
}
this._y = random(350) + 50;
}
onClipEvent (enterFrame) {
this._x = this._x + speed;
if (left == true) {
if (this._x <= -50) {
if (random(2) == 1) {
this._x = -50;
right = true;
speed = random(5) + 3;
this.gotoAndPlay(13);
} else {
this._x = 450;
left = true;
speed = (random(5) + 3) * -1;
this.gotoAndPlay(1);
}
this._y = random(350) + 50;
}
}
if (right == true) {
if (this._x >= 450) {
if (random(2) == 1) {
this._x = -50;
right = true;
speed = random(5) + 3;
this.gotoAndPlay(13);
} else {
this._x = 450;
left = true;
speed = (random(5) + 3) * -1;
this.gotoAndPlay(1);
}
this._y = random(350) + 50;
}
}
}
Instance of Symbol 134 MovieClip "bird4" in Frame 3
onClipEvent (load) {
if (random(2) == 1) {
this._x = -50;
right = true;
speed = random(5) + 3;
this.gotoAndPlay(13);
} else {
this._x = 450;
left = true;
speed = (random(5) + 3) * -1;
this.gotoAndPlay(1);
}
this._y = random(350) + 50;
}
onClipEvent (enterFrame) {
this._x = this._x + speed;
if (left == true) {
if (this._x <= -50) {
if (random(2) == 1) {
this._x = -50;
right = true;
speed = random(5) + 3;
this.gotoAndPlay(13);
} else {
this._x = 450;
left = true;
speed = (random(5) + 3) * -1;
this.gotoAndPlay(1);
}
this._y = random(350) + 50;
}
}
if (right == true) {
if (this._x >= 450) {
if (random(2) == 1) {
this._x = -50;
right = true;
speed = random(5) + 3;
this.gotoAndPlay(13);
} else {
this._x = 450;
left = true;
speed = (random(5) + 3) * -1;
this.gotoAndPlay(1);
}
this._y = random(350) + 50;
}
}
}
Instance of Symbol 194 MovieClip "walk" in Frame 3
onClipEvent (load) {
if (_name != "walk") {
this._x = _root.newx;
this._y = _root.newy - 10;
}
}
onClipEvent (enterFrame) {
if (_name != "walk") {
this._x = this._x + 2;
if (this._x > 410) {
this.removeMovieClip();
}
}
}
Instance of Symbol 204 MovieClip "xtarget" in Frame 3
onClipEvent (load) {
this._visible = false;
}
Frame 4
stop();
die = true;
style = int(style / 10);
score = (landed - dead) * 100;
truescore = score + style;
postHPScore(_root.truescore, "Timed_mode");
_root.kongregateStats.submit("Timed_mode", _root.truescore);
Instance of Symbol 227 MovieClip "poop2" in Frame 4
on (release) {
getURL ("http://www.hallpass.com", "_blank");
}
Frame 5
dead = 0;
landed = 0;
stop();
die = false;
wind = 0;
style = 0;
newx = 0;
newy = 0;
playmode = 2;
Instance of Symbol 45 MovieClip in Frame 5
onClipEvent (enterFrame) {
this._y = this._y - 0.1;
}
Instance of Symbol 49 MovieClip in Frame 5
onClipEvent (enterFrame) {
if (random(100) == 1) {
this.play();
}
}
Instance of Symbol 65 MovieClip "plane" in Frame 5
onClipEvent (load) {
this._x = -50;
count = 1;
diveallow = true;
speed = 5;
}
onClipEvent (enterFrame) {
this._x = this._x + speed;
if (this._x >= 430) {
this._x = -50;
count = 1;
speed = 5;
}
if (Key.isDown(32) && (count == 1)) {
if (diveallow == true) {
if (20 < this._x) {
duplicateMovieClip (_root.man, "man1", random(5000));
speed = speed * 4;
count = 2;
}
}
}
}
Instance of Symbol 134 MovieClip "bird1" in Frame 5
onClipEvent (load) {
if (random(2) == 1) {
this._x = -50;
right = true;
speed = random(5) + 3;
this.gotoAndPlay(13);
} else {
this._x = 450;
left = true;
speed = (random(5) + 3) * -1;
this.gotoAndPlay(1);
}
this._y = random(350) + 50;
}
onClipEvent (enterFrame) {
this._x = this._x + speed;
if (left == true) {
if (this._x <= -50) {
if (random(2) == 1) {
this._x = -50;
right = true;
speed = random(5) + 3;
this.gotoAndPlay(13);
} else {
this._x = 450;
left = true;
speed = (random(5) + 3) * -1;
this.gotoAndPlay(1);
}
this._y = random(350) + 50;
}
}
if (right == true) {
if (this._x >= 450) {
if (random(2) == 1) {
this._x = -50;
right = true;
speed = random(5) + 3;
this.gotoAndPlay(13);
} else {
this._x = 450;
left = true;
speed = (random(5) + 3) * -1;
this.gotoAndPlay(1);
}
this._y = random(350) + 50;
}
}
}
Instance of Symbol 134 MovieClip "bird2" in Frame 5
onClipEvent (load) {
if (random(2) == 1) {
this._x = -50;
right = true;
speed = random(5) + 3;
this.gotoAndPlay(13);
} else {
this._x = 450;
left = true;
speed = (random(5) + 3) * -1;
this.gotoAndPlay(1);
}
this._y = random(350) + 50;
}
onClipEvent (enterFrame) {
this._x = this._x + speed;
if (left == true) {
if (this._x <= -50) {
if (random(2) == 1) {
this._x = -50;
right = true;
speed = random(5) + 3;
this.gotoAndPlay(13);
} else {
this._x = 450;
left = true;
speed = (random(5) + 3) * -1;
this.gotoAndPlay(1);
}
this._y = random(350) + 50;
}
}
if (right == true) {
if (this._x >= 450) {
if (random(2) == 1) {
this._x = -50;
right = true;
speed = random(5) + 3;
this.gotoAndPlay(13);
} else {
this._x = 450;
left = true;
speed = (random(5) + 3) * -1;
this.gotoAndPlay(1);
}
this._y = random(350) + 50;
}
}
}
Instance of Symbol 134 MovieClip "bird3" in Frame 5
onClipEvent (load) {
if (random(2) == 1) {
this._x = -50;
right = true;
speed = random(5) + 3;
this.gotoAndPlay(13);
} else {
this._x = 450;
left = true;
speed = (random(5) + 3) * -1;
this.gotoAndPlay(1);
}
this._y = random(350) + 50;
}
onClipEvent (enterFrame) {
this._x = this._x + speed;
if (left == true) {
if (this._x <= -50) {
if (random(2) == 1) {
this._x = -50;
right = true;
speed = random(5) + 3;
this.gotoAndPlay(13);
} else {
this._x = 450;
left = true;
speed = (random(5) + 3) * -1;
this.gotoAndPlay(1);
}
this._y = random(350) + 50;
}
}
if (right == true) {
if (this._x >= 450) {
if (random(2) == 1) {
this._x = -50;
right = true;
speed = random(5) + 3;
this.gotoAndPlay(13);
} else {
this._x = 450;
left = true;
speed = (random(5) + 3) * -1;
this.gotoAndPlay(1);
}
this._y = random(350) + 50;
}
}
}
Instance of Symbol 134 MovieClip "bird5" in Frame 5
onClipEvent (load) {
if (random(2) == 1) {
this._x = -50;
right = true;
speed = random(5) + 3;
this.gotoAndPlay(13);
} else {
this._x = 450;
left = true;
speed = (random(5) + 3) * -1;
this.gotoAndPlay(1);
}
this._y = random(350) + 50;
}
onClipEvent (enterFrame) {
this._x = this._x + speed;
if (left == true) {
if (this._x <= -50) {
if (random(2) == 1) {
this._x = -50;
right = true;
speed = random(5) + 3;
this.gotoAndPlay(13);
} else {
this._x = 450;
left = true;
speed = (random(5) + 3) * -1;
this.gotoAndPlay(1);
}
this._y = random(350) + 50;
}
}
if (right == true) {
if (this._x >= 450) {
if (random(2) == 1) {
this._x = -50;
right = true;
speed = random(5) + 3;
this.gotoAndPlay(13);
} else {
this._x = 450;
left = true;
speed = (random(5) + 3) * -1;
this.gotoAndPlay(1);
}
this._y = random(350) + 50;
}
}
}
Instance of Symbol 134 MovieClip "bird4" in Frame 5
onClipEvent (load) {
if (random(2) == 1) {
this._x = -50;
right = true;
speed = random(5) + 3;
this.gotoAndPlay(13);
} else {
this._x = 450;
left = true;
speed = (random(5) + 3) * -1;
this.gotoAndPlay(1);
}
this._y = random(350) + 50;
}
onClipEvent (enterFrame) {
this._x = this._x + speed;
if (left == true) {
if (this._x <= -50) {
if (random(2) == 1) {
this._x = -50;
right = true;
speed = random(5) + 3;
this.gotoAndPlay(13);
} else {
this._x = 450;
left = true;
speed = (random(5) + 3) * -1;
this.gotoAndPlay(1);
}
this._y = random(350) + 50;
}
}
if (right == true) {
if (this._x >= 450) {
if (random(2) == 1) {
this._x = -50;
right = true;
speed = random(5) + 3;
this.gotoAndPlay(13);
} else {
this._x = 450;
left = true;
speed = (random(5) + 3) * -1;
this.gotoAndPlay(1);
}
this._y = random(350) + 50;
}
}
}
Instance of Symbol 194 MovieClip "walk" in Frame 5
onClipEvent (load) {
if (_name != "walk") {
this._x = _root.newx;
this._y = _root.newy - 10;
}
}
onClipEvent (enterFrame) {
if (_name != "walk") {
this._x = this._x + 2;
if (this._x > 410) {
this.removeMovieClip();
}
}
}
Instance of Symbol 115 MovieClip "man" in Frame 5
onClipEvent (load) {
if (_name != "man") {
this._x = _root.plane._x;
this._y = _root.plane._y;
accel = 0.7;
grav = 1;
xspeed = 0;
yspeed = 0;
fric = 0.9;
counter = 15;
allow = 1;
chute = false;
rspeed = 0;
decel = 0;
aceld = 0.019;
rotval = 0;
}
}
onClipEvent (enterFrame) {
if (_name != "man") {
if (chute == true) {
yspeed = yspeed - decel;
decel = decel + aceld;
if (yspeed <= 0.3) {
yspeed = 0.3;
}
if ((!Key.isDown(39)) && (!Key.isDown(37))) {
if (rotval > 0) {
this._rotation--;
rotval--;
}
if (rotval < 0) {
this._rotation++;
rotval++;
}
}
}
if (_root.die == true) {
this.removeMovieClip();
}
counter--;
if (counter <= 1) {
if (Key.isDown(32) && (allow == 1)) {
allow = 2;
this.gotoAndPlay(2);
chute = true;
}
}
if (chute == true) {
xspeed = xspeed + _root.wind;
}
xspeed = xspeed * 0.8;
yspeed = yspeed + grav;
yspeed = yspeed * fric;
if (Key.isDown(39)) {
xspeed = xspeed + accel;
if (chute == true) {
this._rotation = this._rotation + 0.5;
rotval = rotval + 0.5;
}
}
if (Key.isDown(37)) {
xspeed = xspeed - accel;
if (chute == true) {
this._rotation = this._rotation - 0.5;
rotval = rotval - 0.5;
}
}
if (Key.isDown(40)) {
yspeed = yspeed + accel;
}
this._x = this._x + xspeed;
this._y = this._y + yspeed;
if (this._y >= 450) {
if (chute == true) {
if (yspeed < 6) {
_root.plane.diveallow = true;
_root.landed++;
if (Math.abs(this._x - _root.xtarget._x) < 10) {
_root.bullseye.play();
} else {
_root.thing2.play();
}
_root.style = _root.style + (200 - Math.abs(this._x - _root.xtarget._x));
_root.newx = this._x;
_root.newy = this._y;
duplicateMovieClip (_root.walk, "walk" + (random(500000) / 0.54334), random(453234625365) / 0.94764);
this.removeMovieClip();
} else {
_root.dead++;
_root.lives.nextFrame();
_root.sfx.gotoAndPlay(2);
_root.thing.play();
_root.plane.diveallow = true;
this.removeMovieClip();
}
} else {
_root.dead++;
_root.lives.nextFrame();
_root.sfx.gotoAndPlay(2);
_root.thing.play();
_root.plane.diveallow = true;
this.removeMovieClip();
}
} else {
_root.plane.diveallow = false;
}
if (this.hitarea.hitTest(_root.bird1)) {
_root.dead++;
_root.lives.nextFrame();
_root.plane.diveallow = true;
_root.bird1.gotoAndPlay(25);
this.removeMovieClip();
}
if (this.hitarea.hitTest(_root.bird2)) {
_root.dead++;
_root.lives.nextFrame();
_root.plane.diveallow = true;
_root.bird2.gotoAndPlay(25);
this.removeMovieClip();
}
if (this.hitarea.hitTest(_root.bird3)) {
_root.dead++;
_root.lives.nextFrame();
_root.plane.diveallow = true;
_root.bird3.gotoAndPlay(25);
this.removeMovieClip();
}
if (this.hitarea.hitTest(_root.bird4)) {
_root.dead++;
_root.lives.nextFrame();
_root.plane.diveallow = true;
_root.bird4.gotoAndPlay(25);
this.removeMovieClip();
}
if (this.hitarea.hitTest(_root.bird5)) {
_root.dead++;
_root.lives.nextFrame();
_root.plane.diveallow = true;
_root.bird5.gotoAndPlay(25);
this.removeMovieClip();
}
if (this.hitarea.hitTest(_root.bird6)) {
_root.dead++;
_root.lives.nextFrame();
_root.plane.diveallow = true;
_root.bird6.gotoAndPlay(25);
this.removeMovieClip();
}
if (this.hitarea.hitTest(_root.bird7)) {
_root.dead++;
_root.lives.nextFrame();
_root.plane.diveallow = true;
_root.bird7.gotoAndPlay(25);
this.removeMovieClip();
}
if (this.hitarea.hitTest(_root.bird8)) {
_root.dead++;
_root.lives.nextFrame();
_root.plane.diveallow = true;
_root.bird8.gotoAndPlay(25);
this.removeMovieClip();
}
}
}
Instance of Symbol 204 MovieClip "xtarget" in Frame 5
onClipEvent (load) {
this._visible = false;
}
Frame 6
stop();
die = true;
style = int(style / 10);
score = (landed - dead) * 100;
truescore = score + style;
postHPScore(_root.landed, "Lives_mode");
_root.kongregateStats.submit("Lives_mode", _root.landed);
Instance of Symbol 227 MovieClip "poop2" in Frame 6
on (release) {
getURL ("http://www.hallpass.com", "_blank");
}
Symbol 12 Button
on (release) {
_root.nextFrame();
}
Symbol 13 MovieClip Frame 8
gotoAndPlay (1);
Symbol 32 Button
on (release) {
_root.gotoAndPlay(3);
}
Symbol 34 Button
on (release) {
_root.gotoAndPlay(5);
}
Symbol 36 MovieClip Frame 30
stop();
Symbol 40 MovieClip Frame 1
stop();
Instance of Symbol 42 MovieClip in Symbol 45 MovieClip Frame 1
onClipEvent (load) {
count = 0;
}
onClipEvent (enterFrame) {
count++;
if (count == 5) {
this._alpha = this._alpha + 0.5;
count = 0;
}
this._rotation++;
}
Symbol 49 MovieClip Frame 1
stop();
Symbol 65 MovieClip Frame 2
stop();
Symbol 114 MovieClip Frame 12
stop();
Symbol 115 MovieClip Frame 1
stop();
Symbol 115 MovieClip Frame 2
_root.moosic.gotoAndStop(2);
_root.moosic2.gotoAndStop(2);
Symbol 115 MovieClip Frame 21
stop();
Symbol 134 MovieClip Frame 12
gotoAndPlay (1);
Symbol 134 MovieClip Frame 24
gotoAndPlay (13);
Instance of Symbol 133 MovieClip in Symbol 134 MovieClip Frame 45
onClipEvent (load) {
if (random(2) == 1) {
_parent._x = -50;
_parent.right = true;
_parent.speed = random(5) + 3;
_parent.gotoAndPlay(13);
} else {
_parent._x = 450;
_parent.left = true;
_parent.speed = (random(5) + 3) * -1;
_parent.gotoAndPlay(1);
}
_parent._y = random(350) + 50;
}
Symbol 197 MovieClip Frame 1
stop();
Symbol 197 MovieClip Frame 2
gotoAndStop (1);
Symbol 199 MovieClip Frame 1
stop();
Symbol 202 MovieClip Frame 1
stop();
Symbol 206 MovieClip Frame 1
stop();
Symbol 210 MovieClip Frame 1
stop();
Symbol 210 MovieClip Frame 2
stop();
Symbol 225 Button
on (release) {
_root.gotoAndPlay("menu");
}
Symbol 234 MovieClip Frame 1
stop();
Symbol 234 MovieClip Frame 2
stop();
Symbol 234 MovieClip Frame 3
stop();
Symbol 234 MovieClip Frame 4
stopAllSounds();
_root.nextFrame();
Symbol 235 MovieClip Frame 1
stop();
Symbol 236 MovieClip Frame 1
stop();
Symbol 236 MovieClip Frame 2
stop();