Frame 1
stop();
Instance of Symbol 14 MovieClip "loadingbar" in Frame 1
onClipEvent (enterFrame) {
percent = _root.getBytesLoaded() / _root.getBytesTotal();
actual_percent = Math.round(percent * 100);
_root.loadingbar.greenbar._xscale = percent * 100;
if (percent == 1) {
_root.gotoandPlay(2);
}
}
onClipEvent (enterFrame) {
if ((_root.getBytesLoaded() / _root.getBytesTotal()) == 1) {
_root.gotoAndPlay(2);
}
}
Frame 3
function populatelives() {
i = _root.lives;
ex = 480 - (_root.lives * 20);
while (i > 0) {
_root.attachMovie("icon_lives", "live" + i, 10000 + i);
_root["live" + i]._x = ex;
_root["live" + i]._y = 420;
i--;
ex = ex + 30;
}
}
function meterzero() {
trace("meter zero function run");
_root.meter.bar._xscale = 0;
}
function onepump() {
_root.meter.bar._xscale = _root.meter.bar._xscale + 2;
_root.meter.bar._xscale = _root.meter.bar._xscale + (_root.diff / 3);
}
function failedhit() {
_root.yspeed = 15;
_root.pguy.gotoAndPlay("dazed");
_root.pguy._y = 200;
removeMovieClip(_root["live" + _root.lives]);
_root.lives--;
}
function withdraw() {
_root.pguy.gotoAndPlay("eject");
_root.yspeed = 15;
_root.inside = 0;
if (_root.meter.bar._xscale > 10) {
_root.meter.bar._xscale = _root.meter.bar._xscale - 5;
}
}
function eject() {
_root.pguy._x = 490;
_root.pguy.gotoAndPlay("eject");
_root.yspeed = 15;
_root.inside = 0;
if (_root.meter.bar._xscale > 20) {
_root.meter.bar._xscale = _root.meter.bar._xscale - 10;
}
}
function satisfied() {
_root.cs1._x = _root.pguy._x;
_root.cs1._y = _root.pguy._y;
_root.cs1.gotoAndPlay(2);
_root.cs2.gotoAndPlay(2);
_root.pguy.gotoAndPlay("satisfied");
_root.yspeed = 15;
_root.inside = 0;
_root.meterzero();
_root.score = _root.score + _root.cumbonus;
_root.bonus.gotoAndPlay(2);
resetall();
}
function resetall() {
trace("resetall executed");
_root.fl1.item.gotoAndPlay("out");
_root.fl2.item.gotoAndStop("out");
_root.fl3.item.gotoAndStop("out");
_root.fl4.item.gotoAndStop("out");
_root.fl5.item.gotoAndStop("out");
_root.fl6.item.gotoAndStop("out");
_root.fl7.item.gotoAndStop("out");
}
function forceendgame() {
_root.gotoAndPlay("gameover");
}
_root.score = 0;
_root.diff = 2;
_root.lives = 6;
_root.walkspeed = 8;
_root.cummeter = 0;
_root.cumbonus = 1000;
_root.hardofthinking = 0;
_root.minusoffset = -35;
_root.hitoffset = 5;
_root.yhitoffset = 50;
_root.yspeed = 0;
_root.jumping = 0;
_root.inside = 0;
_root.cframe = 0;
_root.diffincrease = 0.5;
_root.pnkldy = 200;
_root.pnkmth = 175;
_root.pnkbut = 225;
_root.gldldy = 250;
_root.gldmth = 225;
_root.gldbut = 275;
_root.iceldy = 225;
_root.mocldy = 200;
_root.choldy = 200;
_root.fl1score = 10;
_root.fl2score = 30;
_root.fl3score = 40;
_root.fl4score = 50;
_root.fl5score = 100;
_root.fl6score = 200;
_root.fl7score = 250;
_root.fl1is = 1;
_root.fl2is = 1;
_root.fl3is = 1;
_root.fl4is = 1;
_root.fl5is = 1;
_root.fl6is = 1;
_root.fl7is = 9;
stop();
Frame 10
meterzero();
stop();
Instance of Symbol 91 MovieClip in Frame 10
onClipEvent (enterFrame) {
this._x = this._x + _root.diff;
if (this._x > 570) {
this._x = _root.minusoffset;
}
}
Instance of Symbol 94 MovieClip in Frame 10
onClipEvent (enterFrame) {
this._x = this._x + _root.diff;
if (this._x > 570) {
this._x = _root.minusoffset;
}
}
Instance of Symbol 97 MovieClip in Frame 10
onClipEvent (enterFrame) {
this._x = this._x + _root.diff;
if (this._x > 570) {
this._x = _root.minusoffset;
}
}
Instance of Symbol 100 MovieClip in Frame 10
onClipEvent (enterFrame) {
this._x = this._x + _root.diff;
if (this._x > 570) {
this._x = _root.minusoffset;
}
}
Instance of Symbol 102 MovieClip in Frame 10
onClipEvent (enterFrame) {
this._x = this._x + _root.diff;
if (this._x > 570) {
this._x = _root.minusoffset;
}
}
Instance of Symbol 104 MovieClip in Frame 10
onClipEvent (enterFrame) {
this._x = this._x + _root.diff;
if (this._x > 570) {
this._x = _root.minusoffset;
}
}
Instance of Symbol 106 MovieClip in Frame 10
onClipEvent (enterFrame) {
this._x = this._x + _root.diff;
if (this._x > 570) {
this._x = _root.minusoffset;
}
}
Instance of Symbol 140 MovieClip "fl6" in Frame 10
onClipEvent (load) {
function chooser() {
choosefl6 = Math.round(Math.random() * 8) + 1;
if (choosefl6 == 0) {
choosefl6 = 7;
trace("***********alert");
}
if (choosefl6 == 10) {
choosefl6 = 7;
trace("***********alert");
}
if (choosefl6 == 1) {
_root.fl6score = _root.pnkldy;
_root.fl6is = 1;
} else if (choosefl6 == 2) {
_root.fl6score = _root.pnkmth;
_root.fl6is = 2;
} else if (choosefl6 == 3) {
_root.fl6score = _root.pnkbut;
_root.fl6is = 3;
} else if (choosefl6 == 4) {
_root.fl6score = _root.gldldy;
_root.fl6is = 4;
} else if (choosefl6 == 5) {
_root.fl6score = _root.gldmth;
_root.fl6is = 5;
} else if (choosefl6 == 6) {
_root.fl6score = _root.gldbut;
_root.fl6is = 6;
} else if (choosefl6 == 7) {
_root.fl6score = _root.iceldy;
_root.fl6is = 7;
} else if (choosefl6 == 8) {
_root.fl6score = _root.mocldy;
_root.fl6is = 8;
} else if (choosefl6 == 9) {
_root.fl6score = _root.choldy;
_root.fl6is = 9;
}
trace("============================");
trace((("fl6 has chosen " + choosefl6) + " and fl6is = ") + _root.fl6is);
this.gotoAndStop(_root.fl6is);
}
function height() {
hgt = Math.round(Math.random() * 6);
if (hgt == 1) {
_root.fl6._y = 200;
} else if (hgt == 2) {
_root.fl6._y = 170;
} else if (hgt == 3) {
_root.fl6._y = 140;
} else if (hgt == 4) {
_root.fl6._y = 125;
} else if (hgt == 5) {
_root.fl6._y = 110;
} else if (hgt == 6) {
_root.fl6._y = 110;
}
}
chooser();
height();
}
onClipEvent (enterFrame) {
this._x = this._x + _root.diff;
if (this._x > 570) {
this._x = _root.minusoffset;
chooser();
height();
}
}
Instance of Symbol 140 MovieClip "fl5" in Frame 10
onClipEvent (load) {
function chooser() {
choosefl5 = Math.round(Math.random() * 8) + 1;
if (choosefl5 == 0) {
choosefl5 = 5;
trace("***********alert");
}
if (choosefl5 == 10) {
choosefl5 = 5;
trace("***********alert");
}
if (choosefl5 == 1) {
_root.fl5score = _root.pnkldy;
_root.fl5is = 1;
} else if (choosefl5 == 2) {
_root.fl5score = _root.pnkmth;
_root.fl5is = 2;
} else if (choosefl5 == 3) {
_root.fl5score = _root.pnkbut;
_root.fl5is = 3;
} else if (choosefl5 == 4) {
_root.fl5score = _root.gldldy;
_root.fl5is = 4;
} else if (choosefl5 == 5) {
_root.fl5score = _root.gldmth;
_root.fl5is = 5;
} else if (choosefl5 == 6) {
_root.fl5score = _root.gldbut;
_root.fl5is = 6;
} else if (choosefl5 == 7) {
_root.fl5score = _root.iceldy;
_root.fl5is = 7;
} else if (choosefl5 == 8) {
_root.fl5score = _root.mocldy;
_root.fl5is = 8;
} else if (choosefl5 == 9) {
_root.fl5score = _root.choldy;
_root.fl5is = 9;
}
trace("============================");
trace((("fl5 has chosen " + choosefl5) + "and fl5is = ") + _root.fl5is);
this.gotoAndStop(_root.fl5is);
}
function height() {
hgt = Math.round(Math.random() * 6);
if (hgt == 1) {
_root.fl5._y = 200;
} else if (hgt == 2) {
_root.fl5._y = 170;
} else if (hgt == 3) {
_root.fl5._y = 140;
} else if (hgt == 4) {
_root.fl5._y = 125;
} else if (hgt == 5) {
_root.fl5._y = 110;
} else if (hgt == 6) {
_root.fl5._y = 110;
}
}
chooser();
height();
}
onClipEvent (enterFrame) {
this._x = this._x + _root.diff;
if (this._x > 570) {
this._x = _root.minusoffset;
chooser();
height();
}
}
Instance of Symbol 140 MovieClip "fl4" in Frame 10
onClipEvent (load) {
function chooser() {
choosefl4 = Math.round(Math.random() * 8) + 1;
if (choosefl4 == 0) {
choosefl4 = 5;
trace("***********alert");
}
if (choosefl4 == 10) {
choosefl4 = 5;
trace("***********alert");
}
if (choosefl4 == 1) {
_root.fl4score = _root.pnkldy;
_root.fl4is = 1;
} else if (choosefl4 == 2) {
_root.fl4score = _root.pnkmth;
_root.fl4is = 2;
} else if (choosefl4 == 3) {
_root.fl4score = _root.pnkbut;
_root.fl4is = 3;
} else if (choosefl4 == 4) {
_root.fl4score = _root.gldldy;
_root.fl4is = 4;
} else if (choosefl4 == 5) {
_root.fl4score = _root.gldmth;
_root.fl4is = 5;
} else if (choosefl4 == 6) {
_root.fl4score = _root.gldbut;
_root.fl4is = 6;
} else if (choosefl4 == 7) {
_root.fl4score = _root.iceldy;
_root.fl4is = 7;
} else if (choosefl4 == 8) {
_root.fl4score = _root.mocldy;
_root.fl4is = 8;
} else if (choosefl4 == 9) {
_root.fl4score = _root.choldy;
_root.fl4is = 9;
}
trace("============================");
trace((("fl4 has chosen " + choosefl4) + " and fl4is = ") + _root.fl4is);
this.gotoAndStop(_root.fl4is);
}
function height() {
hgt = Math.round(Math.random() * 6);
if (hgt == 1) {
_root.fl4._y = 200;
} else if (hgt == 2) {
_root.fl4._y = 170;
} else if (hgt == 3) {
_root.fl4._y = 140;
} else if (hgt == 4) {
_root.fl4._y = 125;
} else if (hgt == 5) {
_root.fl4._y = 110;
} else if (hgt == 6) {
_root.fl4._y = 110;
}
}
chooser();
height();
}
onClipEvent (enterFrame) {
this._x = this._x + _root.diff;
if (this._x > 570) {
this._x = _root.minusoffset;
chooser();
height();
}
}
Instance of Symbol 140 MovieClip "fl3" in Frame 10
onClipEvent (load) {
function chooser() {
choosefl3 = Math.round(Math.random() * 8) + 1;
if (choosefl3 == 0) {
choosefl3 = 4;
trace("***********alert");
}
if (choosefl3 == 10) {
choosefl3 = 4;
trace("***********alert");
}
if (choosefl3 == 1) {
_root.fl3score = _root.pnkldy;
_root.fl3is = 1;
} else if (choosefl3 == 2) {
_root.fl3score = _root.pnkmth;
_root.fl3is = 2;
} else if (choosefl3 == 3) {
_root.fl3score = _root.pnkbut;
_root.fl3is = 3;
} else if (choosefl3 == 4) {
_root.fl3score = _root.gldldy;
_root.fl3is = 4;
} else if (choosefl3 == 5) {
_root.fl3score = _root.gldmth;
_root.fl3is = 5;
} else if (choosefl3 == 6) {
_root.fl3score = _root.gldbut;
_root.fl3is = 6;
} else if (choosefl3 == 7) {
_root.fl3score = _root.iceldy;
_root.fl3is = 7;
} else if (choosefl3 == 8) {
_root.fl3score = _root.mocldy;
_root.fl3is = 8;
} else if (choosefl3 == 9) {
_root.fl3score = _root.choldy;
_root.fl3is = 9;
}
trace("============================");
trace((("fl3 has chosen " + choosefl3) + " and fl3is = ") + _root.fl3is);
this.gotoAndStop(_root.fl3is);
choosefl3 = 0;
}
function height() {
hgt = Math.round(Math.random() * 6);
if (hgt == 1) {
_root.fl3._y = 200;
} else if (hgt == 2) {
_root.fl3._y = 170;
} else if (hgt == 3) {
_root.fl3._y = 140;
} else if (hgt == 4) {
_root.fl3._y = 125;
} else if (hgt == 5) {
_root.fl3._y = 110;
} else if (hgt == 6) {
_root.fl3._y = 110;
}
}
chooser();
height();
}
onClipEvent (enterFrame) {
this._x = this._x + _root.diff;
if (this._x > 570) {
this._x = _root.minusoffset;
chooser();
height();
}
}
Instance of Symbol 140 MovieClip "fl2" in Frame 10
onClipEvent (load) {
function chooser() {
choosefl2 = Math.round(Math.random() * 8) + 1;
if (choosefl2 == 0) {
choosefl2 = 2;
trace("***********alert");
}
if (choosefl2 == 10) {
choosefl2 = 2;
trace("***********alert");
}
if (choosefl2 == 1) {
_root.fl2score = _root.pnkldy;
_root.fl2is = 1;
} else if (choosefl2 == 2) {
_root.fl2score = _root.pnkmth;
_root.fl2is = 2;
} else if (choosefl2 == 3) {
_root.fl2score = _root.pnkbut;
_root.fl2is = 3;
} else if (choosefl2 == 4) {
_root.fl2score = _root.gldldy;
_root.fl2is = 4;
} else if (choosefl2 == 5) {
_root.fl2score = _root.gldmth;
_root.fl2is = 5;
} else if (choosefl2 == 6) {
_root.fl2score = _root.gldbut;
_root.fl2is = 6;
} else if (choosefl2 == 7) {
_root.fl2score = _root.iceldy;
_root.fl2is = 7;
} else if (choosefl2 == 8) {
_root.fl2score = _root.mocldy;
_root.fl2is = 8;
} else if (choosefl2 == 9) {
_root.fl2score = _root.choldy;
_root.fl2is = 9;
}
trace("============================");
trace((("fl2 has chosen " + choosefl2) + " and fl2is = ") + _root.fl2is);
this.gotoAndStop(_root.fl2is);
choosefl2 = 0;
}
function height() {
hgt = Math.round(Math.random() * 6);
if (hgt == 1) {
_root.fl2._y = 200;
} else if (hgt == 2) {
_root.fl2._y = 170;
} else if (hgt == 3) {
_root.fl2._y = 140;
} else if (hgt == 4) {
_root.fl2._y = 125;
} else if (hgt == 5) {
_root.fl2._y = 110;
} else if (hgt == 6) {
_root.fl2._y = 110;
}
}
chooser();
height();
}
onClipEvent (enterFrame) {
this._x = this._x + _root.diff;
if (this._x > 570) {
this._x = _root.minusoffset;
chooser();
height();
}
}
Instance of Symbol 140 MovieClip "fl1" in Frame 10
onClipEvent (load) {
function chooser() {
choosefl1 = Math.round(Math.random() * 8) + 1;
if (choosefl1 == 0) {
choosefl1 = 1;
trace("***********alert");
}
if (choosefl1 == 10) {
choosefl1 = 1;
trace("***********alert");
}
if (choosefl1 == 1) {
_root.fl1score = _root.pnkldy;
_root.fl1is = 1;
} else if (choosefl1 == 2) {
_root.fl1score = _root.pnkmth;
_root.fl1is = 2;
} else if (choosefl1 == 3) {
_root.fl1score = _root.pnkbut;
_root.fl1is = 3;
} else if (choosefl1 == 4) {
_root.fl1score = _root.gldldy;
_root.fl1is = 4;
} else if (choosefl1 == 5) {
_root.fl1score = _root.gldmth;
_root.fl1is = 5;
} else if (choosefl1 == 6) {
_root.fl1score = _root.gldbut;
_root.fl1is = 6;
} else if (choosefl1 == 7) {
_root.fl1score = _root.iceldy;
_root.fl1is = 7;
} else if (choosefl1 == 8) {
_root.fl1score = _root.mocldy;
_root.fl1is = 8;
} else if (choosefl1 == 9) {
_root.fl1score = _root.choldy;
_root.fl1is = 9;
}
trace("============================");
trace((("fl1 has chosen " + choosefl1) + " and fl1is = ") + _root.fl1is);
this.gotoAndPlay(_root.fl1is);
choosefl1 = 0;
}
function height() {
hgt = Math.round(Math.random() * 6);
if (hgt == 1) {
_root.fl1._y = 200;
} else if (hgt == 2) {
_root.fl1._y = 170;
} else if (hgt == 3) {
_root.fl1._y = 140;
} else if (hgt == 4) {
_root.fl1._y = 125;
} else if (hgt == 5) {
_root.fl1._y = 110;
} else if (hgt == 6) {
_root.fl1._y = 110;
}
}
height();
}
onClipEvent (enterFrame) {
this._x = this._x + _root.diff;
if (this._x > 570) {
this._x = _root.minusoffset;
this.gotoAndPlay(10);
chooser();
height();
}
}
Instance of Symbol 140 MovieClip "fl7" in Frame 10
onClipEvent (load) {
function chooser() {
choosefl7 = Math.round(Math.random() * 8) + 1;
if (choosefl7 == 0) {
choosefl6 = 7;
trace("***********alert");
}
if (choosefl7 == 10) {
choosefl6 = 7;
trace("***********alert");
}
if (choosefl7 == 1) {
_root.fl6score = _root.pnkldy;
_root.fl7is = 1;
} else if (choosefl7 == 2) {
_root.fl6score = _root.pnkmth;
_root.fl7is = 2;
} else if (choosefl7 == 3) {
_root.fl6score = _root.pnkbut;
_root.fl7is = 3;
} else if (choosefl7 == 4) {
_root.fl6score = _root.gldldy;
_root.fl7is = 4;
} else if (choosefl7 == 5) {
_root.fl6score = _root.gldmth;
_root.fl7is = 5;
} else if (choosefl7 == 6) {
_root.fl6score = _root.gldbut;
_root.fl7is = 6;
} else if (choosefl7 == 7) {
_root.fl6score = _root.iceldy;
_root.fl7is = 7;
} else if (choosefl7 == 8) {
_root.fl6score = _root.mocldy;
_root.fl7is = 8;
} else if (choosefl7 == 9) {
_root.fl6score = _root.choldy;
_root.fl7is = 9;
}
trace("============================");
trace((("fl7 has chosen " + choosefl7) + " and fl7is = ") + _root.fl7is);
this.gotoAndStop(_root.fl7is);
}
function height() {
hgt = Math.round(Math.random() * 6);
if (hgt == 1) {
_root.fl7._y = 200;
} else if (hgt == 2) {
_root.fl7._y = 170;
} else if (hgt == 3) {
_root.fl7._y = 140;
} else if (hgt == 4) {
_root.fl7._y = 125;
} else if (hgt == 5) {
_root.fl7._y = 110;
} else if (hgt == 6) {
_root.fl7._y = 110;
}
}
chooser();
height();
}
onClipEvent (enterFrame) {
this._x = this._x + _root.diff;
if (this._x > 570) {
this._x = _root.minusoffset;
chooser();
height();
_root.diff = _root.diff + _root.diffincrease;
if (_root.diff > 55) {
_root.forceendgame();
}
}
}
Instance of Symbol 27 MovieClip "pguyshadow" in Frame 10
onClipEvent (enterFrame) {
this._x = _root.pguy._x - 50;
}
Instance of Symbol 188 MovieClip "pguy" in Frame 10
onClipEvent (load) {
function hit() {
this.gotoAndPlay("inside");
_root.yspeed = 0;
_root.pguy._y = 170;
_root.inside = 1;
_root.pumpframe = 1;
_root.nameanim.container.gotoAndStop(_root.cframe + 1);
_root.nameanim.gotoAndPlay(2);
if (_root.hardofthinking == 0) {
_root.youarein.gotoAndPlay(2);
}
_root.hardofthinking = 1;
}
}
onClipEvent (enterFrame) {
_root.pguy._y = _root.pguy._y + _root.yspeed;
if (_root.inside == 1) {
_root.pguy._x = _root.pguy._x + _root.diff;
}
if ((Key.isDown(39) && (_root.pguy._x < 510)) && (_root.jumping == 0)) {
this.gotoAndPlay("walkright");
_root.pguy._x = _root.pguy._x + (_root.walkspeed + (_root.diff - 2));
} else if ((Key.isDown(37) && (_root.pguy._x > 40)) && (_root.jumping == 0)) {
this.gotoAndPlay("walkleft");
_root.pguy._x = _root.pguy._x - (_root.walkspeed - ((_root.diff * -1) - 2));
} else if (Key.isDown(32) && (_root.jumping == 0)) {
_root.jumping = 1;
_root.landed = 1;
this.gotoAndPlay("jump");
_root.yspeed = -25;
} else if (Key.isDown(40) && (_root.jumping == 1)) {
_root.withdraw();
_root.resetall();
} else if (Key.isDown(32) && (_root.inside == 1)) {
this.pumping.gotoAndPlay(2);
if (_root.meter.bar._xscale > 99) {
_root.satisfied();
}
}
if ((this._y > 425) && (_root.jumping == 1)) {
this._y = 425;
_root.yspeed = 0;
_root.jumping = 0;
this.gotoAndPlay("still");
trace("Landing");
if (_root.lives == 0) {
_root.gotoAndPlay("gameover");
}
if (_root.lives < 0) {
_root.gotoAndPlay("gameover");
}
}
if (this._y < 150) {
_root.failedhit();
}
if ((this._x > 490) && (_root.jumping == 1)) {
_root.eject();
_root.resetall();
}
if (this.hitspotpguy.hitTest(_root.fl1.hitspot) && (_root.jumping == 1)) {
trace("Hit Fleshlight 1");
_root.cframe = _root.fl1is;
hit();
_root.pguy._x = _root.fl1._x + _root.hitoffset;
_root.pguy._y = _root.fl1._y + _root.yhitoffset;
_root.score = _root.score + _root.fl1score;
_root.fl1.item.gotoAndPlay("in");
}
if (this.hitspotpguy.hitTest(_root.fl1.misspot) && (_root.jumping == 1)) {
trace("Missed Fleshlight 1");
_root.failedhit();
}
if (this.hitspotpguy.hitTest(_root.fl2.hitspot) && (_root.jumping == 1)) {
trace("Hit Fleshlight 2");
_root.cframe = _root.fl2is;
hit();
_root.pguy._x = _root.fl2._x + _root.hitoffset;
_root.pguy._y = _root.fl2._y + _root.yhitoffset;
_root.score = _root.score + _root.fl2score;
_root.fl2.item.gotoAndPlay("in");
}
if (this.hitspotpguy.hitTest(_root.fl2.misspot) && (_root.jumping == 1)) {
trace("Missed Fleshlight 2");
_root.failedhit();
}
if (this.hitspotpguy.hitTest(_root.fl3.hitspot) && (_root.jumping == 1)) {
trace("Hit Fleshlight 3");
_root.cframe = _root.fl3is;
hit();
_root.pguy._x = _root.fl3._x + _root.hitoffset;
_root.pguy._y = _root.fl3._y + _root.yhitoffset;
_root.score = _root.score + _root.fl3score;
_root.fl3.item.gotoAndPlay("in");
}
if (this.hitspotpguy.hitTest(_root.fl3.misspot) && (_root.jumping == 1)) {
trace("Missed Fleshlight 3");
_root.failedhit();
}
if (this.hitspotpguy.hitTest(_root.fl4.hitspot) && (_root.jumping == 1)) {
trace("Hit Fleshlight 4");
_root.cframe = _root.fl4is;
hit();
_root.pguy._x = _root.fl4._x + _root.hitoffset;
_root.pguy._y = _root.fl4._y + _root.yhitoffset;
_root.score = _root.score + _root.fl4score;
_root.fl4.item.gotoAndPlay("in");
}
if (this.hitspotpguy.hitTest(_root.fl4.misspot) && (_root.jumping == 1)) {
trace("Missed Fleshlight 4");
_root.failedhit();
}
if (this.hitspotpguy.hitTest(_root.fl5.hitspot) && (_root.jumping == 1)) {
trace("Hit Fleshlight 5");
_root.cframe = _root.fl5is;
hit();
_root.pguy._x = _root.fl5._x + _root.hitoffset;
_root.pguy._y = _root.fl5._y + _root.yhitoffset;
_root.score = _root.score + _root.fl5score;
_root.fl5.item.gotoAndPlay("in");
}
if (this.hitspotpguy.hitTest(_root.fl5.misspot) && (_root.jumping == 1)) {
trace("Missed Fleshlight 5");
_root.failedhit();
}
if (this.hitspotpguy.hitTest(_root.fl6.hitspot) && (_root.jumping == 1)) {
trace("Hit Fleshlight 6");
_root.cframe = _root.fl6is;
hit();
_root.pguy._x = _root.fl6._x + _root.hitoffset;
_root.pguy._y = _root.fl6._y + _root.yhitoffset;
_root.score = _root.score + _root.fl6score;
_root.fl6.item.gotoAndPlay("in");
}
if (this.hitspotpguy.hitTest(_root.fl6.misspot) && (_root.jumping == 1)) {
trace("Missed Fleshlight 6");
_root.failedhit();
}
if (this.hitspotpguy.hitTest(_root.fl7.hitspot) && (_root.jumping == 1)) {
trace("Hit Fleshlight 7");
_root.cframe = _root.fl7is;
hit();
_root.pguy._x = _root.fl7._x + _root.hitoffset;
_root.pguy._y = _root.fl7._y + _root.yhitoffset;
_root.score = _root.score + _root.fl7score;
_root.fl7.item.gotoAndPlay("in");
}
if (this.hitspotpguy.hitTest(_root.fl7.misspot && (_root.jumping == 1))) {
trace("Missed Fleshlight 7");
_root.failedhit();
}
if (this.hitspotpguy.hitTest(_root.hitbar && (_root.jumping == 1))) {
trace("Missed and hit hitbar");
_root.failedhit();
}
}
Frame 20
stop();
Frame 31
stop();
Instance of Symbol 7 MovieClip "greenbar" in Symbol 14 MovieClip Frame 1
onClipEvent (load) {
this._xscale = 0;
}
Symbol 33 MovieClip Frame 10
stop();
Symbol 33 MovieClip Frame 20
stop();
Symbol 57 Button
on (release) {
_root.populatelives();
_root.meterzero();
gotoAndPlay ("game");
}
Symbol 62 Button
on (release) {
ref = _root.ref;
getURL ("http://www.fleshlightuk.com/catalog/default.php?ref=" + ref, _blank);
}
Symbol 73 Button
on (release) {
getURL ("http://flashghetto.com", "_blank");
}
Symbol 110 Button
on (release) {
ref = _root.ref;
getURL ("http://www.fleshlightuk.com/catalog/default.php?ref=" + ref, _blank);
}
Symbol 116 MovieClip Frame 10
stop();
Symbol 116 MovieClip Frame 20
stop();
Symbol 119 MovieClip Frame 10
stop();
Symbol 119 MovieClip Frame 20
stop();
Symbol 122 MovieClip Frame 10
stop();
Symbol 122 MovieClip Frame 20
stop();
Symbol 125 MovieClip Frame 10
stop();
Symbol 125 MovieClip Frame 20
stop();
Symbol 128 MovieClip Frame 10
stop();
Symbol 128 MovieClip Frame 20
stop();
Symbol 131 MovieClip Frame 10
stop();
Symbol 131 MovieClip Frame 20
stop();
Symbol 134 MovieClip Frame 10
stop();
Symbol 134 MovieClip Frame 20
stop();
Symbol 137 MovieClip Frame 10
stop();
Symbol 137 MovieClip Frame 20
stop();
Symbol 140 MovieClip Frame 1
trace("No1 Pink Lady called");
stop();
Symbol 140 MovieClip Frame 2
trace("No2 Pink Mouth called");
stop();
Symbol 140 MovieClip Frame 3
trace("No3 Pink Butt called");
stop();
Symbol 140 MovieClip Frame 4
trace("No4 Gold Lady called");
stop();
Symbol 140 MovieClip Frame 5
trace("No5 Gold Mouth called");
stop();
Symbol 140 MovieClip Frame 6
trace("No6 Gold Butt called");
stop();
Symbol 140 MovieClip Frame 7
trace("No7 Ice Lady called");
stop();
Symbol 140 MovieClip Frame 8
trace("No8 Mocha Lady called");
stop();
Symbol 140 MovieClip Frame 9
trace("No9 Chocolate Lady called");
stop();
Symbol 170 MovieClip Frame 1
trace("onepump executed");
_root.onepump();
stop();
Symbol 188 MovieClip Frame 10
stop();
Symbol 188 MovieClip Frame 14
gotoAndPlay ("still");
Symbol 188 MovieClip Frame 15
stop();
Symbol 188 MovieClip Frame 19
gotoAndPlay ("still");
Symbol 188 MovieClip Frame 20
stop();
Symbol 188 MovieClip Frame 30
stop();
Symbol 188 MovieClip Frame 40
stop();
Symbol 188 MovieClip Frame 50
stop();
Symbol 188 MovieClip Frame 60
stop();
Symbol 188 MovieClip Frame 70
stop();
Symbol 210 MovieClip Frame 25
stop();
Symbol 216 MovieClip Frame 1
stop();
Symbol 220 MovieClip Frame 1
stop();
Symbol 239 MovieClip Frame 1
stop();
Symbol 239 MovieClip Frame 2
stop();
Symbol 239 MovieClip Frame 3
stop();
Symbol 239 MovieClip Frame 4
stop();
Symbol 239 MovieClip Frame 5
stop();
Symbol 239 MovieClip Frame 6
stop();
Symbol 239 MovieClip Frame 7
stop();
Symbol 239 MovieClip Frame 8
stop();
Symbol 239 MovieClip Frame 9
stop();
Symbol 239 MovieClip Frame 10
stop();
Symbol 240 MovieClip Frame 1
stop();
Symbol 245 MovieClip Frame 1
stop();
Symbol 250 Button
on (release) {
_root.gotoAndPlay("titles");
}
Symbol 255 MovieClip Frame 35
stop();
Symbol 264 Button
on (release) {
subname = from_name;
subemail = to_email;
getURL ((((("http://www.galaxygraphics.co.uk/projects/send2.php?name=" + subname) + "&email=") + subemail) + "¬hing=") + 999, "_blank", "GET");
_root.gotoAndPlay(2);
}