Combined Code
movieClip 5 {
}
movieClip 8 {
frame 1 {
function timerHandler() {
if (!loadingComplete) {
var v4 = _root.getBytesLoaded() / _root.getBytesTotal();
bar._xscale = 100 * v4;
if (v4 == 1) {
loadingComplete = true;
if (AUTO_PLAY) {
startMovie();
} else {
gotoAndStop('loaded');
}
return undefined;
}
}
dt = getTimer() - time;
time += dt;
frameAccum += dt;
var v3 = 0;
for (;;) {
if (!(frameAccum >= FRAME_TIME && v3 < MAX_FRAME_SKIP)) break;
advanceFrame(tankLogo, true, true);
advanceFrame(loadingText, false, true);
advanceFrame(barGfx, false, true);
if (loadingComplete) {
advanceFrame(this, false, false);
}
frameAccum -= FRAME_TIME;
v3++;
}
updateAfterEvent();
}
function advanceFrame(clip, recurse, loop) {
if (!clip) {
return undefined;
}
clip.stop();
if (clip._currentframe == clip._totalframes) {
if (loop) {
clip.gotoAndStop(1);
}
} else {
clip.nextFrame();
}
if (recurse) {
for (childName in clip) {
if (typeof clip[childName] == 'movieclip') {
advanceFrame(clip[childName], recurse, loop);
}
}
}
}
function startMovie() {
clearInterval(intervalId);
_root.play();
}
_root.stop();
stop();
var FRAME_TIME = 33.33333333333334;
var AUTO_PLAY = false;
var MAX_FRAME_SKIP = 5;
var loadingComplete;
var intervalId;
var time;
var frameAccum;
loadingComplete = false;
intervalId = setInterval(this, 'timerHandler', FRAME_TIME / 2);
frameAccum = 0;
time = getTimer();
timerHandler();
}
frame 37 {
startMovie();
}
}
// unknown tag 88 length 68
button 13 {
on (release) {
getURL('http://mysexgames.com', '_blank');
}
}
// unknown tag 88 length 61
frame 2 {
function checkSaveSlot() {
trace('checking save slot');
_root.savefound = savefile.data.saveslot;
}
function saveGame() {
savefound = true;
trace('game saved');
savefile.data.saveslot = _root.savefound;
savefile.data.h0 = _root.horndroid.kitty;
savefile.data.h1 = _root.horndroid.sandra;
savefile.data.h2 = _root.horndroid.score;
savefile.data.h3 = _root.horndroid.hp;
savefile.data.h4 = _root.horndroid.sp;
savefile.data.h5 = _root.horndroid.sporeunlocked;
savefile.data.h6 = _root.horndroid.vacation;
savefile.data.h7 = _root.horndroid.mission1a;
savefile.data.h8 = _root.horndroid.mission1finish;
savefile.data.h9 = _root.horndroid.mission2a;
savefile.data.h10 = _root.horndroid.mission2finish;
savefile.data.h11 = _root.horndroid.mission3a;
savefile.data.h12 = _root.horndroid.mission3finish;
savefile.data.h13 = _root.horndroid.console1;
savefile.data.h14 = _root.horndroid.console2;
savefile.data.h15 = _root.horndroid.console3;
savefile.data.h16 = _root.horndroid.nymphdoor;
savefile.data.h17 = _root.horndroid.nymphkey;
savefile.data.h18 = _root.horndroid.labdoor;
savefile.data.h19 = _root.horndroid.labkey;
savefile.data.h20 = _root.horndroid.orgypass;
savefile.data.h21 = _root.horndroid.largejenny;
savefile.data.h22 = _root.horndroid.largerosa;
savefile.data.h23 = _root.horndroid.largeshanikwa;
savefile.data.h24 = _root.horndroid.landlady;
savefile.data.h25 = _root.horndroid.mrscitroen;
savefile.data.h26 = _root.horndroid.mrshamilton;
savefile.data.h27 = _root.horndroid.mrsbranch;
savefile.data.h28 = _root.horndroid.mrsneilsen;
savefile.data.h29 = _root.horndroid.msyamaguchi;
savefile.data.h30 = _root.horndroid.mrsibuki;
savefile.data.h31 = _root.horndroid.fanny;
savefile.data.h32 = _root.horndroid.stacycitroen;
savefile.data.h33 = _root.horndroid.quincitroen;
savefile.data.h34 = _root.horndroid.carriehamilton;
savefile.data.h35 = _root.horndroid.daisybranch;
savefile.data.h36 = _root.horndroid.nancyneilsen;
savefile.data.h37 = _root.horndroid.bernadethhans;
savefile.data.h38 = _root.horndroid.lisa;
savefile.data.h39 = _root.horndroid.sayoko;
savefile.data.h40 = _root.horndroid.janine;
savefile.data.h41 = _root.horndroid.cl1;
savefile.data.h42 = _root.horndroid.cl2;
savefile.data.h43 = _root.horndroid.cl3;
savefile.data.h44 = _root.horndroid.cl4;
savefile.data.h45 = _root.horndroid.lorraine;
savefile.data.h46 = _root.horndroid.officerjean;
savefile.data.h47 = _root.horndroid.officersavannah;
savefile.data.h48 = _root.horndroid.officerprokofyevna;
savefile.data.h49 = _root.horndroid.officermolly;
savefile.data.h50 = _root.horndroid.officerjane;
savefile.data.h51 = _root.horndroid.officervanessa;
savefile.data.h52 = _root.horndroid.jossie;
savefile.data.h53 = _root.horndroid.courtney;
savefile.flush();
}
function loadGame() {
trace('Loaded Game');
_root.horndroid.kitty = savefile.data.h0;
_root.horndroid.sandra = savefile.data.h1;
_root.horndroid.score = savefile.data.h2;
_root.horndroid.hp = savefile.data.h3;
_root.horndroid.sp = savefile.data.h4;
_root.horndroid.sporeunlocked = savefile.data.h5;
_root.horndroid.vacation = savefile.data.h6;
_root.horndroid.mission1a = savefile.data.h7;
_root.horndroid.mission1finish = savefile.data.h8;
_root.horndroid.mission2a = savefile.data.h9;
_root.horndroid.mission2finish = savefile.data.h10;
_root.horndroid.mission3a = savefile.data.h11;
_root.horndroid.mission3finish = savefile.data.h12;
_root.horndroid.console1 = savefile.data.h13;
_root.horndroid.console2 = savefile.data.h14;
_root.horndroid.console3 = savefile.data.h15;
_root.horndroid.nymphdoor = savefile.data.h16;
_root.horndroid.nymphkey = savefile.data.h17;
_root.horndroid.labdoor = savefile.data.h18;
_root.horndroid.labkey = savefile.data.h19;
_root.horndroid.orgypass = savefile.data.h20;
_root.horndroid.largejenny = savefile.data.h21;
_root.horndroid.largerosa = savefile.data.h22;
_root.horndroid.largeshanikwa = savefile.data.h23;
_root.horndroid.landlady = savefile.data.h24;
_root.horndroid.mrscitroen = savefile.data.h25;
_root.horndroid.mrshamilton = savefile.data.h26;
_root.horndroid.mrsbranch = savefile.data.h27;
_root.horndroid.mrsneilsen = savefile.data.h28;
_root.horndroid.msyamaguchi = savefile.data.h29;
_root.horndroid.mrsibuki = savefile.data.h30;
_root.horndroid.fanny = savefile.data.h31;
_root.horndroid.stacycitroen = savefile.data.h32;
_root.horndroid.quincitroen = savefile.data.h33;
_root.horndroid.carriehamilton = savefile.data.h34;
_root.horndroid.daisybranch = savefile.data.h35;
_root.horndroid.nancyneilsen = savefile.data.h36;
_root.horndroid.bernadethhans = savefile.data.h37;
_root.horndroid.lisa = savefile.data.h38;
_root.horndroid.sayoko = savefile.data.h39;
_root.horndroid.janine = savefile.data.h40;
_root.horndroid.cl1 = savefile.data.h41;
_root.horndroid.cl2 = savefile.data.h42;
_root.horndroid.cl3 = savefile.data.h43;
_root.horndroid.cl4 = savefile.data.h44;
_root.horndroid.lorraine = savefile.data.h45;
_root.horndroid.officerjean = savefile.data.h46;
_root.horndroid.officersavannah = savefile.data.h47;
_root.horndroid.officerprokofyevna = savefile.data.h48;
_root.horndroid.officermolly = savefile.data.h49;
_root.horndroid.officerjane = savefile.data.h50;
_root.horndroid.officervanessa = savefile.data.h51;
_root.horndroid.jossie = savefile.data.h52;
_root.horndroid.courtney = savefile.data.h53;
}
function mySiteLink() {
getURL('http://mysexgames.com/', '_blank');
}
stop();
starting = false;
savefound = false;
var savefile = SharedObject.getLocal('finalizer');
var rightClick = new ContextMenu();
rightClick.hideBuiltInItems();
_root.menu = rightClick;
var mySiteLink = new ContextMenuItem('FreelanceFlashGames', mySiteLink);
rightClick.customItems.push(mySiteLink);
}
movieClip 17 {
}
movieClip 19 {
}
movieClip 21 {
}
movieClip 23 {
}
movieClip 25 {
}
movieClip 27 {
}
movieClip 29 {
}
movieClip 31 {
}
movieClip 32 {
}
movieClip 33 {
}
movieClip 35 {
}
movieClip 36 {
}
movieClip 38 {
}
movieClip 39 {
}
movieClip 54 {
}
movieClip 56 {
}
movieClip 58 {
}
movieClip 59 {
}
movieClip 60 {
}
movieClip 61 {
}
movieClip 96 {
}
movieClip 97 {
}
movieClip 100 {
}
movieClip 101 {
}
movieClip 103 {
}
movieClip 104 {
}
movieClip 105 {
frame 1 {
stop();
fucking = false;
fell = false;
jerking = false;
gain = false;
gainslow = false;
gainmid = false;
initiatingfuck = false;
jerkcumming = false;
computing = false;
beamed = false;
beaming = false;
}
instance checkfuck of movieClip 39 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.large.fuckingmilf)) {
tellTarget ('_parent') {
gotoAndStop('fuckingsomeone');
}
}
if (this.hitTest(_root.large.mouthfuckingmilf)) {
tellTarget ('_parent') {
gotoAndStop('fuckingsomeone');
}
}
if (this.hitTest(_root.large.tittyfuckingmilf)) {
tellTarget ('_parent') {
gotoAndStop('fuckingsomeone');
}
}
if (this.hitTest(_root.large.assfuckingmilf)) {
tellTarget ('_parent') {
gotoAndStop('fuckingsomeone');
}
}
if (this.hitTest(_root.milf.fuckingmilf)) {
tellTarget ('_parent') {
gotoAndStop('fuckingsomeone');
}
}
if (this.hitTest(_root.milf.mouthfuckingmilf)) {
tellTarget ('_parent') {
gotoAndStop('fuckingsomeone');
}
}
if (this.hitTest(_root.milf.tittyfuckingmilf)) {
tellTarget ('_parent') {
gotoAndStop('fuckingsomeone');
}
}
if (this.hitTest(_root.milf.assfuckingmilf)) {
tellTarget ('_parent') {
gotoAndStop('fuckingsomeone');
}
}
if (this.hitTest(_root.policewoman.fuckingmilf)) {
tellTarget ('_parent') {
gotoAndStop('fuckingsomeone');
}
}
if (this.hitTest(_root.nymph.fuckingmilf)) {
tellTarget ('_parent') {
gotoAndStop('fuckingsomeone');
}
}
if (this.hitTest(_root.nymph.mouthfuckingmilf)) {
tellTarget ('_parent') {
gotoAndStop('fuckingsomeone');
}
}
if (this.hitTest(_root.nymph.tittyfuckingmilf)) {
tellTarget ('_parent') {
gotoAndStop('fuckingsomeone');
}
}
if (this.hitTest(_root.nymph.assfuckingmilf)) {
tellTarget ('_parent') {
gotoAndStop('fuckingsomeone');
}
}
if (this.hitTest(_root.teen.fuckingmilf)) {
tellTarget ('_parent') {
gotoAndStop('fuckingsomeone');
}
}
if (this.hitTest(_root.teen.mouthfuckingmilf)) {
tellTarget ('_parent') {
gotoAndStop('fuckingsomeone');
}
}
if (this.hitTest(_root.teen.tittyfuckingmilf)) {
tellTarget ('_parent') {
gotoAndStop('fuckingsomeone');
}
}
if (this.hitTest(_root.teen.assfuckingmilf)) {
tellTarget ('_parent') {
gotoAndStop('fuckingsomeone');
}
}
if (this.hitTest(_root.policewoman.club)) {
tellTarget ('_parent') {
gotoAndPlay('bashed');
}
}
if (this.hitTest(_root.computer.usingcomputer)) {
tellTarget ('_parent') {
gotoAndStop('onconsole');
}
}
if (this.hitTest(_root.book.usingcomputer)) {
tellTarget ('_parent') {
gotoAndStop('onconsole');
}
}
if (this.hitTest(_root.upgradebay.upgrade1on)) {
tellTarget ('_parent') {
gotoAndStop('onconsole');
}
}
if (this.hitTest(_root.upgradebay.upgrade2on)) {
tellTarget ('_parent') {
gotoAndStop('onconsole');
}
}
if (this.hitTest(_root.upgradebay.upgrade3on)) {
tellTarget ('_parent') {
gotoAndStop('onconsole');
}
}
if (this.hitTest(_root.talker.nymphkeyused)) {
_root.horndroid.nymphkey = true;
}
if (this.hitTest(_root.talker.labkeyused)) {
_root.horndroid.labkey = true;
}
}
}
frame 2 {
jerking = false;
gain = false;
initiatingfuck = false;
}
frame 3 {
jerking = true;
gainslow = true;
gainmid = false;
gain = false;
initiatingfuck = false;
}
frame 103 {
gainslow = false;
gainmid = true;
gain = false;
}
frame 153 {
gainslow = false;
gainmid = false;
gain = true;
}
frame 203 {
gainslow = false;
gainmid = false;
gain = false;
jerkcumming = true;
}
frame 303 {
jerkcumming = false;
gotoAndPlay(1);
}
frame 304 {
gain = false;
initiatingfuck = true;
}
frame 315 {
initiatingfuck = false;
}
frame 328 {
gotoAndPlay(1);
}
frame 329 {
stop();
fucking = true;
gain = false;
}
instance whilefucking of movieClip 39 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.large.justcame)) {
tellTarget ('_parent') {
gotoAndPlay('standing');
}
}
if (this.hitTest(_root.large.justcamemouth)) {
tellTarget ('_parent') {
gotoAndPlay('standing');
}
}
if (this.hitTest(_root.large.justcametits)) {
tellTarget ('_parent') {
gotoAndPlay('standing');
}
}
if (this.hitTest(_root.large.justcameass)) {
tellTarget ('_parent') {
gotoAndPlay('standing');
}
}
if (this.hitTest(_root.milf.justcame)) {
tellTarget ('_parent') {
gotoAndPlay('standing');
}
}
if (this.hitTest(_root.milf.justcamemouth)) {
tellTarget ('_parent') {
gotoAndPlay('standing');
}
}
if (this.hitTest(_root.milf.justcametits)) {
tellTarget ('_parent') {
gotoAndPlay('standing');
}
}
if (this.hitTest(_root.milf.justcameass)) {
tellTarget ('_parent') {
gotoAndPlay('standing');
}
}
if (this.hitTest(_root.policewoman.justcame)) {
tellTarget ('_parent') {
gotoAndPlay('standing');
}
}
if (this.hitTest(_root.nymph.justcame)) {
tellTarget ('_parent') {
gotoAndPlay('standing');
}
}
if (this.hitTest(_root.nymph.justcamemouth)) {
tellTarget ('_parent') {
gotoAndPlay('standing');
}
}
if (this.hitTest(_root.nymph.justcametits)) {
tellTarget ('_parent') {
gotoAndPlay('standing');
}
}
if (this.hitTest(_root.nymph.justcameass)) {
tellTarget ('_parent') {
gotoAndPlay('standing');
}
}
if (this.hitTest(_root.teen.justcame)) {
tellTarget ('_parent') {
gotoAndPlay('standing');
}
}
if (this.hitTest(_root.teen.justcamemouth)) {
tellTarget ('_parent') {
gotoAndPlay('standing');
}
}
if (this.hitTest(_root.teen.justcametits)) {
tellTarget ('_parent') {
gotoAndPlay('standing');
}
}
if (this.hitTest(_root.teen.justcameass)) {
tellTarget ('_parent') {
gotoAndPlay('standing');
}
}
if (this.hitTest(_root.large.fatmaid1seeded) && _root.horndroid.largejenny == false) {
_root.horndroid.score += 1;
_root.horndroid.largejenny = true;
}
if (this.hitTest(_root.large.fatmaid2seeded) && _root.horndroid.largerosa == false) {
_root.horndroid.score += 1;
_root.horndroid.largerosa = true;
}
if (this.hitTest(_root.large.fatmaid3seeded) && _root.horndroid.largeshanikwa == false && _root.horndroid.labdoor == false) {
_root.horndroid.score += 1;
_root.horndroid.largeshanikwa = true;
_root.horndroid.labdoor = true;
}
if (this.hitTest(_root.milf.landladyseeded) && _root.horndroid.landlady == false) {
_root.horndroid.score += 1;
_root.horndroid.landlady = true;
}
if (this.hitTest(_root.milf.mrscitroenseeded) && _root.horndroid.mrscitroen == false) {
_root.horndroid.score += 1;
_root.horndroid.mrscitroen = true;
}
if (this.hitTest(_root.milf.mrshamiltonseeded) && _root.horndroid.mrshamilton == false) {
_root.horndroid.score += 1;
_root.horndroid.mrshamilton = true;
}
if (this.hitTest(_root.milf.mrsbranchseeded) && _root.horndroid.mrsbranch == false) {
_root.horndroid.score += 1;
_root.horndroid.mrsbranch = true;
}
if (this.hitTest(_root.milf.nymphdoorkeyacquired) && _root.horndroid.nymphdoor == false) {
_root.horndroid.nymphdoor = true;
}
if (this.hitTest(_root.milf.mrsneilsenseeded) && _root.horndroid.mrsneilsen == false) {
_root.horndroid.score += 1;
_root.horndroid.mrsneilsen = true;
}
if (this.hitTest(_root.milf.yamaguchiseeded) && _root.horndroid.msyamaguchi == false) {
_root.horndroid.score += 1;
_root.horndroid.msyamaguchi = true;
}
if (this.hitTest(_root.milf.ibukiseeded) && _root.horndroid.mrsibuki == false) {
_root.horndroid.score += 1;
_root.horndroid.mrsibuki = true;
}
if (this.hitTest(_root.nymph.fannyseeded) && _root.horndroid.fanny == false && _root.horndroid.mission3a == false) {
_root.horndroid.score += 1;
_root.horndroid.fanny = true;
_root.horndroid.mission3a = true;
}
if (this.hitTest(_root.teen.stacyseeded) && _root.horndroid.stacycitroen == false) {
_root.horndroid.score += 1;
_root.horndroid.stacycitroen = true;
}
if (this.hitTest(_root.teen.quinseeded) && _root.horndroid.quincitroen == false) {
_root.horndroid.score += 1;
_root.horndroid.quincitroen = true;
}
if (this.hitTest(_root.teen.l1seeded) && _root.horndroid.nancyneilsen == false) {
_root.horndroid.score += 1;
_root.horndroid.nancyneilsen = true;
}
if (this.hitTest(_root.teen.l2seeded) && _root.horndroid.carriehamilton == false) {
_root.horndroid.score += 1;
_root.horndroid.carriehamilton = true;
}
if (this.hitTest(_root.teen.l3seeded) && _root.horndroid.bernadethhans == false) {
_root.horndroid.score += 1;
_root.horndroid.bernadethhans = true;
}
if (this.hitTest(_root.teen.l4seeded) && _root.horndroid.daisybranch == false) {
_root.horndroid.score += 1;
_root.horndroid.daisybranch = true;
}
if (this.hitTest(_root.teen.lisaseeded) && _root.horndroid.lisa == false) {
_root.horndroid.score += 1;
_root.horndroid.lisa = true;
}
if (this.hitTest(_root.teen.courtneyseeded) && _root.horndroid.courtney == false) {
_root.horndroid.score += 1;
_root.horndroid.courtney = true;
}
if (this.hitTest(_root.teen.sayokoseeded) && _root.horndroid.sayoko == false) {
_root.horndroid.score += 1;
_root.horndroid.sayoko = true;
}
if (this.hitTest(_root.teen.janineseeded) && _root.horndroid.janine == false) {
_root.horndroid.score += 1;
_root.horndroid.janine = true;
}
if (this.hitTest(_root.teen.lorraineseeded) && _root.horndroid.lorraine == false) {
_root.horndroid.score += 1;
_root.horndroid.lorraine = true;
}
if (this.hitTest(_root.teen.cl1seeded) && _root.horndroid.cl1 == false) {
_root.horndroid.score += 1;
_root.horndroid.cl1 = true;
}
if (this.hitTest(_root.teen.cl2seeded) && _root.horndroid.cl2 == false) {
_root.horndroid.score += 1;
_root.horndroid.cl2 = true;
}
if (this.hitTest(_root.teen.cl3seeded) && _root.horndroid.cl3 == false) {
_root.horndroid.score += 1;
_root.horndroid.cl3 = true;
}
if (this.hitTest(_root.teen.cl4seeded) && _root.horndroid.cl4 == false) {
_root.horndroid.score += 1;
_root.horndroid.cl4 = true;
}
if (this.hitTest(_root.policewoman.jeanseeded) && _root.horndroid.officerjean == false) {
_root.horndroid.score += 1;
_root.horndroid.officerjean = true;
}
if (this.hitTest(_root.policewoman.leahseeded) && _root.horndroid.officerleah == false) {
_root.horndroid.score += 1;
_root.horndroid.officerleah = true;
}
if (this.hitTest(_root.policewoman.savannahseeded) && _root.horndroid.officersavannah == false) {
_root.horndroid.score += 1;
_root.horndroid.officersavannah = true;
}
if (this.hitTest(_root.policewoman.prokofyevnaseeded) && _root.horndroid.officerprokofyevna == false) {
_root.horndroid.score += 1;
_root.horndroid.officerprokofyevna = true;
}
if (this.hitTest(_root.policewoman.mollyseeded) && _root.horndroid.officermolly == false) {
_root.horndroid.score += 1;
_root.horndroid.officermolly = true;
}
if (this.hitTest(_root.policewoman.janeseeded) && _root.horndroid.officerjane == false) {
_root.horndroid.score += 1;
_root.horndroid.officerjane = true;
}
if (this.hitTest(_root.policewoman.vanessaseeded) && _root.horndroid.officervanessa == false) {
_root.horndroid.score += 1;
_root.horndroid.officervanessa = true;
}
if (this.hitTest(_root.policewoman.jossieseeded) && _root.horndroid.jossie == false) {
_root.horndroid.score += 1;
_root.horndroid.jossie = true;
}
if (this.hitTest(_root.policewoman.kittyseeded) && _root.horndroid.kitty == false) {
_root.horndroid.score += 1;
_root.horndroid.kitty = true;
}
if (this.hitTest(_root.policewoman.sandraseeded) && _root.horndroid.sandra == false) {
_root.horndroid.score += 1;
_root.horndroid.sandra = true;
}
}
}
frame 330 {
fell = true;
fucking = false;
initiatingfuck = false;
}
frame 354 {
gotoAndPlay(1);
}
frame 355 {
fell = false;
fucking = false;
initiatingfuck = false;
}
frame 379 {
gotoAndPlay(1);
}
frame 380 {
computing = true;
}
instance checkfuck of movieClip 39 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.computer.shutdowncomputer)) {
tellTarget ('_parent') {
gotoAndStop('stance');
}
}
if (this.hitTest(_root.book.shutdowncomputer)) {
tellTarget ('_parent') {
gotoAndStop('stance');
}
}
if (this.hitTest(_root.upgradebay.upgrade1complete)) {
tellTarget ('_parent') {
gotoAndPlay('standing');
mission1finish = true;
console1 = true;
sporeunlocked = true;
}
}
if (this.hitTest(_root.upgradebay.upgrade2complete)) {
tellTarget ('_parent') {
gotoAndPlay('standing');
mission2finish = true;
console2 = true;
}
}
if (this.hitTest(_root.upgradebay.upgrade3complete)) {
tellTarget ('_parent') {
gotoAndPlay('standing');
mission3finish = true;
console3 = true;
}
}
}
}
frame 381 {
beaming = true;
}
frame 419 {
beamed = true;
vacation = true;
}
frame 420 {
beamed = false;
stop();
}
}
instance horndroid of movieClip 105 {
onClipEvent (load) {
speed = 8;
scale = _xscale;
initiatingfuck = false;
fucking = false;
jerkcumming = false;
var score = 0;
hp = 100.0;
hpmodifier = 1.0;
hpmodifierslow = 1.0;
hpmodifiermini = 1.0;
depletehp = 100;
sp = 100;
spmodifier = 0;
spmodifierfast = 0;
spmodifierturbo = 0;
sporeunlocked = true;
vacation = false;
beaming = false;
mission1a = true;
mission1finish = true;
mission2a = true;
mission2finish = true;
mission3a = true;
mission3finish = true;
console1 = true;
console2 = true;
console3 = true;
nymphdoor = true;
nymphkey = true;
labdoor = true;
labkey = true;
orgypass = true;
largejenny = true;
largerosa = false;
largeshanikwa = false;
landlady = false;
mrscitroen = false;
mrshamilton = false;
mrsbranch = false;
mrsneilsen = false;
msyamaguchi = false;
mrsibuki = false;
fanny = false;
stacycitroen = false;
quincitroen = false;
carriehamilton = false;
daisybranch = false;
nancyneilsen = false;
bernadethhans = false;
lisa = false;
courtney = false;
sayoko = false;
janine = false;
cl1 = false;
cl2 = false;
cl3 = false;
cl4 = false;
lorraine = false;
officerjean = false;
officerleah = false;
officersavannah = false;
officerprokofyevna = false;
officermolly = false;
officerjane = false;
officervanessa = false;
jossie = false;
kitty = false;
sandra = false;
}
onClipEvent (enterFrame) {
if (Key.isDown(87) && this._currentframe < 3) {
this._y -= speed;
this.gotoAndStop('forward');
}
if (Key.isDown(83) && this._currentframe < 3) {
this._y += speed;
this.gotoAndStop('forward');
}
if (Key.isDown(65) && this._currentframe < 3) {
this._x -= speed;
this.gotoAndStop('forward');
_xscale = -scale;
}
if (Key.isDown(68) && this._currentframe < 3) {
_;
this._x += speed;
this.gotoAndStop('forward');
_xscale = scale;
}
if (Key.isDown(69) && this._currentframe < 3 && fucking == false && initiatingfuck == false && computing == false && beaming == false) {
this.gotoAndPlay('fuck');
}
if (Key.isDown(32) && jerking == false && fucking == false && fell == false && computing == false && beaming == false) {
this.gotoAndPlay('pervert');
}
if (gain == true && sporeunlocked == true) {
hp += hpmodifier;
sp -= spmodifier;
}
if (gainmid == true && sporeunlocked == true) {
hp += hpmodifierslow;
sp -= spmodifier;
}
if (gainslow == true && sporeunlocked == true) {
hp += hpmodifiermini;
sp -= spmodifier;
}
if (fell == true) {
sp -= spmodifierturbo;
}
if (_root.regenerating == true) {
sp += spmodifier;
}
if (this.hitTest(_root.rightdoor) && _root.fader.fading == false && this._currentframe < 3) {
_root.nextFrame();
this._x -= 640;
}
if (this.hitTest(_root.leftdoor) && _root.fader.fading == false && this._currentframe < 3) {
_root.prevFrame();
this._x += 640;
}
if (this.hitTest(_root.streetdoor1) && mission1finish == true && _root.fader.fading == false && this._currentframe < 3) {
_root.gotoAndStop('syrupstreet1');
this._y += 40;
}
if (this.hitTest(_root.streetdoor1return) && _root.fader.fading == false && this._currentframe < 3) {
_root.gotoAndStop('homeexit');
this._y -= 60;
}
if (this.hitTest(_root.labdoor) && _root.fader.fading == false && this._currentframe < 3) {
_root.gotoAndStop('labs');
this._y += 40;
}
if (this.hitTest(_root.returnfromlab) && mission1finish == true && _root.fader.fading == false && this._currentframe < 3) {
_root.gotoAndStop('syrupstreet2');
this._y -= 150;
}
if (this.hitTest(_root.schooldoor) && _root.fader.fading == false && this._currentframe < 3) {
_root.gotoAndStop('school');
this._y += 40;
}
if (this.hitTest(_root.returnfromschool) && mission1finish == true && _root.fader.fading == false && this._currentframe < 3) {
_root.gotoAndStop('syrupstreet5');
this._y -= 150;
}
if (this.hitTest(_root.citroenhouse) && _root.fader.fading == false && this._currentframe < 3) {
_root.gotoAndStop('citroen');
this._y -= 60;
}
if (this.hitTest(_root.citroenexit) && _root.fader.fading == false && this._currentframe < 3) {
_root.gotoAndStop('syrupstreet2');
this._y += 40;
}
if (this.hitTest(_root.hamiltonhouse) && _root.fader.fading == false && this._currentframe < 3) {
_root.gotoAndStop('hamilton');
this._y -= 60;
}
if (this.hitTest(_root.hamiltonexit) && _root.fader.fading == false && this._currentframe < 3) {
_root.gotoAndStop('syrupstreet3');
this._y += 40;
}
if (this.hitTest(_root.blanchehouse) && _root.fader.fading == false && this._currentframe < 3) {
_root.gotoAndStop('blanche');
this._y -= 60;
}
if (this.hitTest(_root.blancheexit) && _root.fader.fading == false && this._currentframe < 3) {
_root.gotoAndStop('syrupstreet4');
this._y += 40;
}
if (this.hitTest(_root.neilsenhouse) && _root.fader.fading == false && this._currentframe < 3) {
_root.gotoAndStop('neilsen');
this._y -= 60;
}
if (this.hitTest(_root.neilsenexit) && _root.fader.fading == false && this._currentframe < 3) {
_root.gotoAndStop('syrupstreet5');
this._y += 40;
}
if (this.hitTest(_root.lowerwall)) {
this._y -= speed;
}
if (this.hitTest(_root.upperwall)) {
this._y += speed;
}
if (this.hitTest(_root.upperwallb)) {
this._y += speed;
}
if (this.hitTest(_root.upperwallc)) {
this._y += speed;
}
if (this.hitTest(_root.leftwall)) {
this._x += speed;
}
if (this.hitTest(_root.rightwall)) {
this._x -= speed;
}
if (this.hitTest(_root.nymphwall) && this.nymphkey == false && this._currentframe < 3) {
this._x -= speed;
}
if (this.hitTest(_root.hamiltonwall) && _root.policewoman.fleeing == false && this._currentframe < 3) {
this._y -= speed;
}
if (this.hitTest(_root.labwall) && this.labkey == false && this._currentframe < 3) {
this._x -= speed;
}
if (this.hitTest(_root.schoolwall) && _root.policewoman.fleeing == false && this._currentframe < 3) {
this._x -= speed;
}
if (this.hitTest(_root.orgywall) && this.orgypass == false && this._currentframe < 3) {
this._x -= speed;
}
if (_root.horndroid.score >= 20 && this._currentframe < 3 && _root.horndroid.beaming == false && _root.horndroid.vacation == false) {
_root.horndroid.gotoAndPlay('beamed');
}
if (_root.horndroid.beamed == true) {
_root.gotoAndStop('finishedquest');
}
if (vacation == true) {
sp += spmodifierfast;
spmodifierturbo = 0;
hp += hpmodifier;
}
}
onClipEvent (keyUp) {
if (initiatingfuck == false && jerkcumming == false && computing == false) {
this.gotoAndStop('stance');
}
}
}
movieClip 107 {
}
movieClip 109 {
}
movieClip 113 {
}
instance of movieClip 113 {
onClipEvent (enterFrame) {
if (Key.isDown(32) && _root.starting == false) {
_root.gotoAndPlay('go');
}
}
}
movieClip 115 {
}
frame 3 {
starting = true;
}
frame 11 {
checkSaveSlot();
if (_root.savefound == false) {
gotoAndPlay('intro');
} else {
if (_root.horndroid.vacation == true && _root.savefound == true) {
_root.loadGame();
gotoAndPlay('finishedquest');
} else {
if (_root.horndroid.vacation == false && _root.savefound == true) {
_root.loadGame();
gotoAndPlay('home');
}
}
}
}
frame 12 {
stop();
}
// unknown tag 88 length 14
movieClip 122 {
}
instance of movieClip 122 {
onClipEvent (enterFrame) {
if (Key.isDown(32)) {
_root.play();
}
}
}
movieClip 123 {
}
frame 22 {
stop();
}
movieClip 128 {
}
instance of movieClip 122 {
onClipEvent (enterFrame) {
if (Key.isDown(32)) {
_root.play();
}
}
}
frame 31 {
stop();
}
instance of movieClip 122 {
onClipEvent (enterFrame) {
if (Key.isDown(32)) {
_root.play();
}
}
}
frame 41 {
stop();
}
instance of movieClip 122 {
onClipEvent (enterFrame) {
if (Key.isDown(32)) {
_root.play();
}
}
}
frame 51 {
stop();
}
instance of movieClip 122 {
onClipEvent (enterFrame) {
if (Key.isDown(32)) {
_root.play();
}
}
}
frame 61 {
stop();
}
movieClip 134 {
}
instance of movieClip 122 {
onClipEvent (enterFrame) {
if (Key.isDown(32)) {
_root.play();
}
}
}
frame 71 {
stop();
}
movieClip 139 {
}
instance of movieClip 122 {
onClipEvent (enterFrame) {
if (Key.isDown(32)) {
_root.play();
}
}
}
frame 81 {
stop();
}
movieClip 142 {
}
instance of movieClip 122 {
onClipEvent (enterFrame) {
if (Key.isDown(32)) {
_root.play();
}
}
}
frame 91 {
stop();
}
instance of movieClip 122 {
onClipEvent (enterFrame) {
if (Key.isDown(32)) {
_root.play();
}
}
}
frame 101 {
stop();
}
instance of movieClip 122 {
onClipEvent (enterFrame) {
if (Key.isDown(32)) {
_root.play();
}
}
}
frame 111 {
stop();
}
instance of movieClip 122 {
onClipEvent (enterFrame) {
if (Key.isDown(32)) {
_root.play();
}
}
}
frame 121 {
gotoAndPlay('home');
}
frame 122 {
stop();
regenerating = true;
sporepower = false;
stopAllSounds();
}
movieClip 147 {
}
movieClip 148 {
}
movieClip 158 {
}
movieClip 161 {
}
movieClip 163 {
}
movieClip 165 {
}
movieClip 167 {
}
movieClip 171 {
}
movieClip 174 {
}
movieClip 176 {
}
movieClip 180 {
}
movieClip 181 {
frame 1 {
stop();
computing = false;
}
instance of movieClip 161 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.horndroid.grab) && _root.horndroid.mission1a == true && _root.horndroid.mission1finish == false) {
tellTarget ('_parent') {
gotoAndPlay('upgrade1');
}
}
if (this.hitTest(_root.horndroid.grab) && _root.horndroid.mission2a == true && _root.horndroid.mission2finish == false) {
tellTarget ('_parent') {
gotoAndPlay('upgrade2');
}
}
if (this.hitTest(_root.horndroid.grab) && _root.horndroid.mission3a == true && _root.horndroid.mission3finish == false) {
tellTarget ('_parent') {
gotoAndPlay('upgrade3');
}
}
}
}
frame 2 {
computing = true;
}
frame 85 {
computing = false;
}
frame 100 {
gotoAndPlay(1);
}
frame 101 {
computing = true;
}
frame 184 {
computing = false;
}
frame 199 {
gotoAndPlay(1);
}
frame 200 {
computing = true;
}
frame 283 {
computing = false;
}
frame 298 {
gotoAndPlay(1);
}
}
movieClip 183 {
}
button 184 {
on (release) {
getURL('http://mysexgames.com', '_blank');
}
}
movieClip 186 {
}
button 187 {
on (release) {
getURL('http://dz.mysexgames.com', '_blank');
}
}
movieClip 191 {
}
movieClip 195 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
stop();
}
frame 6 {
stop();
}
}
instance of movieClip 195 {
onClipEvent (enterFrame) {
if (_root.horndroid.mission1a == true && _root.horndroid.mission1finish == false) {
this.gotoAndStop('dildo');
} else {
if (_root.horndroid.mission1finish == true) {
this.gotoAndStop('none');
}
}
if (_root.horndroid.labdoor == true && _root.horndroid.labkey == false) {
this.gotoAndStop('lkey');
} else {
if (_root.horndroid.labkey == true) {
this.gotoAndStop('none');
}
}
if (_root.horndroid.mission2a == true && _root.horndroid.mission2finish == false) {
this.gotoAndStop('phial');
} else {
if (_root.horndroid.mission2finish == true) {
this.gotoAndStop('none');
}
}
if (_root.horndroid.nymphdoor == true && _root.horndroid.nymphkey == false) {
this.gotoAndStop('nkey');
} else {
if (_root.horndroid.nymphkey == true) {
this.gotoAndStop('none');
}
}
if (_root.horndroid.mission3a == true && _root.horndroid.mission3finish == false) {
this.gotoAndStop('secretion');
} else {
if (_root.horndroid.mission3finish == true) {
this.gotoAndStop('none');
}
}
}
}
// unknown tag 88 length 13
movieClip 212 {
}
movieClip 213 {
frame 1 {
stop();
sporeactive = false;
}
frame 2 {
stop();
sporeactive = true;
}
}
instance hpbar of movieClip 213 {
onClipEvent (load) {
sporeactive = false;
}
onClipEvent (enterFrame) {
this._xscale = _root.horndroid.hp * 1;
if (_root.horndroid.hp <= 0) {
_root.horndroid.hp = 0;
}
if (_root.horndroid.hp >= 100) {
_root.horndroid.hp = 100;
this.gotoAndStop('charged');
} else {
if (_root.horndroid.hp <= 99) {
this.gotoAndStop('nocharge');
}
}
}
}
movieClip 215 {
}
instance of movieClip 215 {
onClipEvent (enterFrame) {
this._xscale = _root.horndroid.sp * 1;
if (_root.horndroid.sp <= 0) {
_root.horndroid.sp = 0;
_root.gotoAndStop('home');
_root.horndroid.gotoAndPlay('standing');
}
if (_root.horndroid.sp >= 100) {
_root.horndroid.sp = 100;
}
}
}
movieClip 219 {
}
movieClip 225 {
frame 1 {
stop();
idle = true;
consoleon = false;
}
instance of movieClip 219 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.horndroid.grab) && _root.computer.consoleon == false && _root.horndroid.console1 == false && _root.horndroid.console2 == false && _root.horndroid.console3 == false) {
tellTarget ('_parent') {
gotoAndPlay('start');
_root.saveGame();
}
} else {
if (this.hitTest(_root.horndroid.grab) && _root.computer.consoleon == false && _root.horndroid.console1 == true && _root.horndroid.console2 == false && _root.horndroid.console3 == false) {
tellTarget ('_parent') {
gotoAndPlay('mission1clear');
_root.saveGame();
}
} else {
if (this.hitTest(_root.horndroid.grab) && _root.computer.consoleon == false && _root.horndroid.console1 == true && _root.horndroid.console2 == true && _root.horndroid.console3 == false) {
tellTarget ('_parent') {
gotoAndPlay('mission2clear');
_root.saveGame();
}
} else {
if (this.hitTest(_root.horndroid.grab) && _root.computer.consoleon == false && _root.horndroid.console1 == true && _root.horndroid.console2 == true && _root.horndroid.console3 == true) {
tellTarget ('_parent') {
gotoAndPlay('mission3clear');
_root.saveGame();
}
} else {
if (this.hitTest(_root.horndroid.grab) && _root.computer.consoleon == false && _root.horndroid.console1 == true && _root.horndroid.console2 == true && _root.horndroid.console3 == true && _root.horndroid.vacation == true) {
tellTarget ('_parent') {
gotoAndPlay('hornbrookclear');
_root.saveGame();
}
}
}
}
}
}
}
}
frame 2 {
idle = false;
consoleon = true;
}
instance shutdowncomputer of movieClip 219 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.horndroid.grab) && _root.computer.consoleon == false) {
tellTarget ('_parent') {
gotoAndPlay('start');
}
}
}
}
frame 29 {
gotoAndPlay(1);
}
frame 30 {
idle = false;
consoleon = true;
}
instance usingcomputer of movieClip 219 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.horndroid.grab) && _root.computer.consoleon == false) {
tellTarget ('_parent') {
gotoAndPlay('start');
}
}
}
}
frame 39 {
stop();
idle = true;
}
frame 40 {
idle = false;
consoleon = true;
}
frame 49 {
stop();
idle = true;
}
frame 50 {
idle = false;
consoleon = true;
}
frame 59 {
stop();
idle = true;
}
frame 60 {
idle = false;
consoleon = true;
}
frame 69 {
stop();
idle = true;
}
frame 70 {
idle = false;
consoleon = true;
}
frame 79 {
stop();
idle = true;
}
}
instance computer of movieClip 225 {
onClipEvent (enterFrame) {
if (Key.isDown(69) && idle == true && consoleon == true) {
this.gotoAndPlay('shutdown');
}
}
}
movieClip 227 {
}
movieClip 232 {
}
movieClip 233 {
frame 1 {
fading = true;
}
frame 51 {
fading = false;
stop();
}
}
frame 123 {
stop();
speed = 6;
strafe = 1;
regenerating = false;
}
movieClip 236 {
}
movieClip 239 {
}
movieClip 240 {
}
movieClip 242 {
}
movieClip 243 {
frame 1 {
stop();
talking = false;
}
instance of movieClip 240 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.horndroid.checkfuck) && _root.talker.talking == false) {
tellTarget ('_parent') {
gotoAndPlay('message');
}
}
}
}
frame 5 {
talking = true;
}
frame 40 {
gotoAndPlay(1);
}
}
movieClip 244 {
frame 1 {
fading = true;
}
frame 11 {
fading = false;
stop();
}
}
movieClip 246 {
}
instance womencontroller of movieClip 246 {
onClipEvent (enterFrame) {
if (_root.large.milfht.hitTest(_root.horndroid.grab) && _root.hpbar.sporeactive == true && _root.horndroid.mission1finish == true) {
tellTarget ('_root.large') {
gotoAndPlay('usedspore');
}
}
if (_root.large.milfsight.hitTest(_root.horndroid.jerkingseen)) {
tellTarget ('_root.large') {
gotoAndPlay('callthepolice');
}
} else {
if (_root.large.milfht.hitTest(_root.horndroid.grab) && _root.hpbar.sporeactive == false) {
tellTarget ('_root.large') {
gotoAndPlay('callthepolice');
}
} else {
if (_root.large.milfht.hitTest(_root.horndroid.grab) && _root.hpbar.sporeactive == true && _root.horndroid.mission1finish == false) {
tellTarget ('_root.large') {
gotoAndPlay('callthepolice');
}
}
}
}
if (_root.large.sedated.hitTest(_root.horndroid.grab)) {
tellTarget ('_root.large') {
gotoAndPlay('f1');
}
}
if (_root.large.pussyfuck.hitTest(_root.horndroid.grab)) {
tellTarget ('_root.large') {
gotoAndPlay('fucked');
}
}
if (_root.large.mouthfuck.hitTest(_root.horndroid.grab)) {
tellTarget ('_root.large') {
gotoAndPlay('blowjob');
}
}
if (_root.large.ff1.hitTest(_root.horndroid.grab)) {
tellTarget ('_root.large') {
gotoAndPlay('blowjob');
}
}
if (_root.large.ff2.hitTest(_root.horndroid.grab)) {
tellTarget ('_root.large') {
gotoAndPlay('fucktitties');
}
}
if (_root.large.ff3.hitTest(_root.horndroid.grab)) {
tellTarget ('_root.large') {
gotoAndPlay('fucked');
}
}
if (_root.large.ff4.hitTest(_root.horndroid.grab)) {
tellTarget ('_root.large') {
gotoAndPlay('anal');
}
}
if (_root.large.postpolicefuck.hitTest(_root.horndroid.grab) && _root.hpbar.sporeactive == true && _root.horndroid.mission1finish == true) {
tellTarget ('_root.large') {
gotoAndPlay('usedspore');
}
} else {
if (_root.large.postpolicefuck.hitTest(_root.horndroid.grab) && _root.hpbar.sporeactive == false && _root.horndroid.mission1finish == true) {
tellTarget ('_root.large') {
gotoAndPlay('callthepolice');
}
}
}
if (Key.isDown(65) && _root.large.a1 == false && _root.large.a4 == true) {
_root.large.gotoAndStop('f1');
}
if (Key.isDown(68) && _root.large.a1 == true && _root.large.a2 == false) {
_root.large.gotoAndStop('f2');
}
if (Key.isDown(87) && _root.large.a3 == false && _root.large.a2 == true) {
_root.large.gotoAndStop('f3');
}
if (Key.isDown(83) && _root.large.a3 == true && _root.large.a4 == false) {
_root.large.gotoAndStop('f4');
}
if (Key.isDown(69) && _root.large.a4 == true) {
_root.large.gotoAndPlay('fucked');
}
if (Key.isDown(65) && _root.large.gettingfucked == false && _root.large.teasing == true) {
_root.large.gotoAndStop('fucked');
}
if (Key.isDown(68) && _root.large.gettingfucked == true && _root.large.gettingfuckedfast == false) {
_root.large.gotoAndStop('fuckedfast');
}
if (Key.isDown(87) && _root.large.gettingfuckedturbo == false && _root.large.gettingfuckedfast == true) {
_root.large.gotoAndStop('fuckedturbo');
}
if (Key.isDown(83) && _root.large.gettingfuckedturbo == true && _root.large.teasing == false && _root.large.cumming == false) {
_root.large.gotoAndStop('tease');
}
if (Key.isDown(69) && _root.large.gettingfuckedturbo == true && _root.large.cumming == false) {
_root.large.gotoAndPlay('cum');
}
if (Key.isDown(65) && _root.large.suckingcock == false && _root.large.mouthtease == true) {
_root.large.gotoAndStop('blowjob');
}
if (Key.isDown(68) && _root.large.suckingcock == true && _root.large.cumming == false) {
_root.large.gotoAndPlay('blowjobfast');
}
if (Key.isDown(87) && _root.large.suckingcockturbo == false && _root.large.suckingcockfast == true) {
_root.large.gotoAndStop('blowjobturbo');
}
if (Key.isDown(83) && _root.large.suckingcockturbo == true && _root.large.mouthtease == false && _root.large.cumming == false) {
_root.large.gotoAndStop('bjtease');
}
if (Key.isDown(69) && _root.large.suckingcockturbo == true && _root.large.cumming == false) {
_root.large.gotoAndPlay('bjcum');
}
if (Key.isDown(65) && _root.large.fuckingtits == false && _root.large.teasetits == true) {
_root.large.gotoAndStop('fucktitties');
}
if (Key.isDown(68) && _root.large.fuckingtits == true && _root.large.cumontits == false) {
_root.large.gotoAndPlay('fucktittiesfast');
}
if (Key.isDown(87) && _root.large.fuckingtitsturbo == false && _root.large.fuckingtitsfast == true) {
_root.large.gotoAndStop('fucktittiesturbo');
}
if (Key.isDown(83) && _root.large.fuckingtitsturbo == true && _root.large.teasetits == false && _root.large.cumontits == false) {
_root.large.gotoAndStop('teasetitties');
}
if (Key.isDown(69) && _root.large.fuckingtitsturbo == true && _root.large.cumontits == false) {
_root.large.gotoAndPlay('tittyfuckcum');
}
if (Key.isDown(65) && _root.large.fuckingass == false && _root.large.teaseass == true) {
_root.large.gotoAndStop('anal');
}
if (Key.isDown(68) && _root.large.fuckingass == true && _root.large.cumonass == false) {
_root.large.gotoAndPlay('analfast');
}
if (Key.isDown(87) && _root.large.fuckingassturbo == false && _root.large.fuckingassfast == true) {
_root.large.gotoAndStop('analturbo');
}
if (Key.isDown(83) && _root.large.fuckingassturbo == true && _root.large.teaseass == false && _root.large.cumonass == false) {
_root.large.gotoAndStop('analtease');
}
if (Key.isDown(69) && _root.large.fuckingassturbo == true && _root.large.cumonass == false) {
_root.large.gotoAndPlay('analcum');
}
if (_root.large.a1 == true) {
_root.horndroid.sp += _root.horndroid.spmodifier;
}
if (_root.large.a2 == true) {
_root.horndroid.hp += _root.horndroid.hpmodifiermini;
}
if (_root.large.a3 == true) {
_root.horndroid.sp -= _root.horndroid.spmodifierfast;
}
if (_root.large.a4 == true) {
_root.horndroid.sp -= _root.horndroid.spmodifier;
}
if (_root.large.gettingfucked == true) {
_root.horndroid.sp += _root.horndroid.spmodifier;
}
if (_root.large.gettingfuckedfast == true) {
_root.horndroid.sp -= _root.horndroid.spmodifierfast;
}
if (_root.large.gettingfuckedturbo == true) {
_root.horndroid.sp -= _root.horndroid.spmodifierturbo;
}
if (_root.large.teasing == true) {
_root.horndroid.sp += _root.horndroid.spmodifierfast;
}
if (_root.large.suckingcock == true) {
_root.horndroid.sp += _root.horndroid.spmodifier;
}
if (_root.large.suckingcockfast == true) {
_root.horndroid.sp -= _root.horndroid.spmodifierfast;
}
if (_root.large.suckingcockturbo == true) {
_root.horndroid.sp -= _root.horndroid.spmodifierturbo;
}
if (_root.large.mouthtease == true) {
_root.horndroid.sp += _root.horndroid.spmodifierfast;
}
if (_root.large.fuckingtits == true) {
_root.horndroid.sp += _root.horndroid.spmodifier;
}
if (_root.large.fuckingtitsfast == true) {
_root.horndroid.sp -= _root.horndroid.spmodifierfast;
}
if (_root.large.fuckingtitsturbo == true) {
_root.horndroid.sp -= _root.horndroid.spmodifierturbo;
}
if (_root.large.teasetits == true) {
_root.horndroid.sp += _root.horndroid.spmodifierfast;
}
if (_root.large.fuckingass == true) {
_root.horndroid.sp += _root.horndroid.spmodifier;
}
if (_root.large.fuckingassfast == true) {
_root.horndroid.sp -= _root.horndroid.spmodifierfast;
}
if (_root.large.fuckingassturbo == true) {
_root.horndroid.sp -= _root.horndroid.spmodifierturbo;
}
if (_root.large.teaseass == true) {
_root.horndroid.sp += _root.horndroid.spmodifierfast;
}
if (_root.large.cumming == true) {
_root.horndroid.hp += _root.horndroid.hpmodifiermini;
_root.horndroid.sp -= _root.horndroid.spmodifier;
}
if (_root.large.mouthcumming == true) {
_root.horndroid.hp += _root.horndroid.hpmodifiermini;
_root.horndroid.sp -= _root.horndroid.spmodifier;
}
if (_root.large.cumontits == true) {
_root.horndroid.hp += _root.horndroid.hpmodifiermini;
_root.horndroid.sp -= _root.horndroid.spmodifier;
}
if (_root.large.cumonass == true) {
_root.horndroid.hp += _root.horndroid.hpmodifiermini;
_root.horndroid.sp -= _root.horndroid.spmodifier;
}
if (_root.large.sporespent == true) {
_root.horndroid.hp -= _root.horndroid.depletehp;
}
if (_root.milf.milfht.hitTest(_root.horndroid.grab) && _root.hpbar.sporeactive == true && _root.horndroid.mission2finish == true) {
tellTarget ('_root.milf') {
gotoAndPlay('usedspore');
}
}
if (_root.milf.milfsight.hitTest(_root.horndroid.jerkingseen)) {
tellTarget ('_root.milf') {
gotoAndPlay('callthepolice');
}
} else {
if (_root.milf.milfht.hitTest(_root.horndroid.grab) && _root.hpbar.sporeactive == false) {
tellTarget ('_root.milf') {
gotoAndPlay('callthepolice');
}
} else {
if (_root.milf.milfht.hitTest(_root.horndroid.grab) && _root.hpbar.sporeactive == true && _root.horndroid.mission2finish == false) {
tellTarget ('_root.milf') {
gotoAndPlay('callthepolice');
}
}
}
}
if (_root.milf.sedated.hitTest(_root.horndroid.grab)) {
tellTarget ('_root.milf') {
gotoAndPlay('f1');
}
}
if (_root.milf.pussyfuck.hitTest(_root.horndroid.grab)) {
tellTarget ('_root.milf') {
gotoAndPlay('fucked');
}
}
if (_root.milf.mouthfuck.hitTest(_root.horndroid.grab)) {
tellTarget ('_root.milf') {
gotoAndPlay('blowjob');
}
}
if (_root.milf.ff1.hitTest(_root.horndroid.grab)) {
tellTarget ('_root.milf') {
gotoAndPlay('blowjob');
}
}
if (_root.milf.ff2.hitTest(_root.horndroid.grab)) {
tellTarget ('_root.milf') {
gotoAndPlay('fucktitties');
}
}
if (_root.milf.ff3.hitTest(_root.horndroid.grab)) {
tellTarget ('_root.milf') {
gotoAndPlay('fucked');
}
}
if (_root.milf.ff4.hitTest(_root.horndroid.grab)) {
tellTarget ('_root.milf') {
gotoAndPlay('anal');
}
}
if (_root.milf.postpolicefuck.hitTest(_root.horndroid.grab) && _root.hpbar.sporeactive == true && _root.policewoman.fleeing == true && _root.horndroid.mission1finish == true) {
tellTarget ('_root.milf') {
gotoAndPlay('usedspore');
}
} else {
if (_root.milf.postpolicefuck.hitTest(_root.horndroid.grab) && _root.hpbar.sporeactive == false && _root.policewoman.fleeing == true && _root.horndroid.mission1finish == true) {
tellTarget ('_root.milf') {
gotoAndPlay('sitting');
}
}
}
if (Key.isDown(65) && _root.milf.a1 == false && _root.milf.a4 == true) {
_root.milf.gotoAndStop('f1');
}
if (Key.isDown(68) && _root.milf.a1 == true && _root.milf.a2 == false) {
_root.milf.gotoAndStop('f2');
}
if (Key.isDown(87) && _root.milf.a3 == false && _root.milf.a2 == true) {
_root.milf.gotoAndStop('f3');
}
if (Key.isDown(83) && _root.milf.a3 == true && _root.milf.a4 == false) {
_root.milf.gotoAndStop('f4');
}
if (Key.isDown(69) && _root.milf.a4 == true) {
_root.milf.gotoAndPlay('fucked');
}
if (Key.isDown(65) && _root.milf.gettingfucked == false && _root.milf.teasing == true) {
_root.milf.gotoAndStop('fucked');
}
if (Key.isDown(68) && _root.milf.gettingfucked == true && _root.milf.gettingfuckedfast == false) {
_root.milf.gotoAndStop('fuckedfast');
}
if (Key.isDown(87) && _root.milf.gettingfuckedturbo == false && _root.milf.gettingfuckedfast == true) {
_root.milf.gotoAndStop('fuckedturbo');
}
if (Key.isDown(83) && _root.milf.gettingfuckedturbo == true && _root.milf.teasing == false && _root.milf.cumming == false) {
_root.milf.gotoAndStop('tease');
}
if (Key.isDown(69) && _root.milf.gettingfuckedturbo == true && _root.milf.cumming == false) {
_root.milf.gotoAndPlay('cum');
}
if (Key.isDown(65) && _root.milf.suckingcock == false && _root.milf.mouthtease == true) {
_root.milf.gotoAndStop('blowjob');
}
if (Key.isDown(68) && _root.milf.suckingcock == true && _root.milf.cumming == false) {
_root.milf.gotoAndPlay('blowjobfast');
}
if (Key.isDown(87) && _root.milf.suckingcockturbo == false && _root.milf.suckingcockfast == true) {
_root.milf.gotoAndStop('blowjobturbo');
}
if (Key.isDown(83) && _root.milf.suckingcockturbo == true && _root.milf.mouthtease == false && _root.milf.cumming == false) {
_root.milf.gotoAndStop('bjtease');
}
if (Key.isDown(69) && _root.milf.suckingcockturbo == true && _root.milf.cumming == false) {
_root.milf.gotoAndPlay('bjcum');
}
if (Key.isDown(65) && _root.milf.fuckingtits == false && _root.milf.teasetits == true) {
_root.milf.gotoAndStop('fucktitties');
}
if (Key.isDown(68) && _root.milf.fuckingtits == true && _root.milf.cumontits == false) {
_root.milf.gotoAndPlay('fucktittiesfast');
}
if (Key.isDown(87) && _root.milf.fuckingtitsturbo == false && _root.milf.fuckingtitsfast == true) {
_root.milf.gotoAndStop('fucktittiesturbo');
}
if (Key.isDown(83) && _root.milf.fuckingtitsturbo == true && _root.milf.teasetits == false && _root.milf.cumontits == false) {
_root.milf.gotoAndStop('teasetitties');
}
if (Key.isDown(69) && _root.milf.fuckingtitsturbo == true && _root.milf.cumontits == false) {
_root.milf.gotoAndPlay('tittyfuckcum');
}
if (Key.isDown(65) && _root.milf.fuckingass == false && _root.milf.teaseass == true) {
_root.milf.gotoAndStop('anal');
}
if (Key.isDown(68) && _root.milf.fuckingass == true && _root.milf.cumonass == false) {
_root.milf.gotoAndPlay('analfast');
}
if (Key.isDown(87) && _root.milf.fuckingassturbo == false && _root.milf.fuckingassfast == true) {
_root.milf.gotoAndStop('analturbo');
}
if (Key.isDown(83) && _root.milf.fuckingassturbo == true && _root.milf.teaseass == false && _root.milf.cumonass == false) {
_root.milf.gotoAndStop('analtease');
}
if (Key.isDown(69) && _root.milf.fuckingassturbo == true && _root.milf.cumonass == false) {
_root.milf.gotoAndPlay('analcum');
}
if (_root.milf.a1 == true) {
_root.horndroid.sp += _root.horndroid.spmodifier;
}
if (_root.milf.a2 == true) {
_root.horndroid.hp += _root.horndroid.hpmodifiermini;
}
if (_root.milf.a3 == true) {
_root.horndroid.sp -= _root.horndroid.spmodifierfast;
}
if (_root.milf.a4 == true) {
_root.horndroid.sp -= _root.horndroid.spmodifier;
}
if (_root.milf.gettingfucked == true) {
_root.horndroid.sp += _root.horndroid.spmodifier;
}
if (_root.milf.gettingfuckedfast == true) {
_root.horndroid.sp -= _root.horndroid.spmodifierfast;
}
if (_root.milf.gettingfuckedturbo == true) {
_root.horndroid.sp -= _root.horndroid.spmodifierturbo;
}
if (_root.milf.teasing == true) {
_root.horndroid.sp += _root.horndroid.spmodifierfast;
}
if (_root.milf.suckingcock == true) {
_root.horndroid.sp += _root.horndroid.spmodifier;
}
if (_root.milf.suckingcockfast == true) {
_root.horndroid.sp -= _root.horndroid.spmodifierfast;
}
if (_root.milf.suckingcockturbo == true) {
_root.horndroid.sp -= _root.horndroid.spmodifierturbo;
}
if (_root.milf.mouthtease == true) {
_root.horndroid.sp += _root.horndroid.spmodifierfast;
}
if (_root.milf.fuckingtits == true) {
_root.horndroid.sp += _root.horndroid.spmodifier;
}
if (_root.milf.fuckingtitsfast == true) {
_root.horndroid.sp -= _root.horndroid.spmodifierfast;
}
if (_root.milf.fuckingtitsturbo == true) {
_root.horndroid.sp -= _root.horndroid.spmodifierturbo;
}
if (_root.milf.teasetits == true) {
_root.horndroid.sp += _root.horndroid.spmodifierfast;
}
if (_root.milf.fuckingass == true) {
_root.horndroid.sp += _root.horndroid.spmodifier;
}
if (_root.milf.fuckingassfast == true) {
_root.horndroid.sp -= _root.horndroid.spmodifierfast;
}
if (_root.milf.fuckingassturbo == true) {
_root.horndroid.sp -= _root.horndroid.spmodifierturbo;
}
if (_root.milf.teaseass == true) {
_root.horndroid.sp += _root.horndroid.spmodifierfast;
}
if (_root.milf.cumming == true) {
_root.horndroid.hp += _root.horndroid.hpmodifiermini;
_root.horndroid.sp -= _root.horndroid.spmodifier;
}
if (_root.milf.mouthcumming == true) {
_root.horndroid.hp += _root.horndroid.hpmodifiermini;
_root.horndroid.sp -= _root.horndroid.spmodifier;
}
if (_root.milf.cumontits == true) {
_root.horndroid.hp += _root.horndroid.hpmodifiermini;
_root.horndroid.sp -= _root.horndroid.spmodifier;
}
if (_root.milf.cumonass == true) {
_root.horndroid.hp += _root.horndroid.hpmodifiermini;
_root.horndroid.sp -= _root.horndroid.spmodifier;
}
if (_root.milf.sporespent == true) {
_root.horndroid.hp -= _root.horndroid.depletehp;
}
if (_root.policewoman.policehittest.hitTest(_root.horndroid.grab) && _root.hpbar.sporeactive == true && _root.horndroid.mission3finish == true) {
tellTarget ('_root.policewoman') {
gotoAndPlay('usedspore');
}
}
if (_root.policewoman.policehittest.hitTest(_root.horndroid.grab) && _root.hpbar.sporeactive == false && _root.horndroid.mission3finish == true) {
tellTarget ('_root.policewoman') {
gotoAndPlay('hit');
}
}
if (_root.policewoman.policehittest.hitTest(_root.horndroid.grab) && _root.hpbar.sporeactive == true && _root.horndroid.mission3finish == false) {
tellTarget ('_root.policewoman') {
gotoAndPlay('hit');
}
}
if (_root.policewoman.policehittest.hitTest(_root.horndroid.grab) && _root.hpbar.sporeactive == false && _root.horndroid.mission3finish == false) {
tellTarget ('_root.policewoman') {
gotoAndPlay('hit');
}
}
if (_root.policewoman.policesight.hitTest(_root.milf.policesignal)) {
tellTarget ('_root.policewoman') {
gotoAndPlay('chase');
}
}
if (_root.policewoman.policesight.hitTest(_root.horndroid.jerkingseen)) {
tellTarget ('_root.policewoman') {
gotoAndPlay('chase');
}
}
if (_root.policewoman.policesight.hitTest(_root.teen.policesignal)) {
tellTarget ('_root.policewoman') {
gotoAndPlay('chase');
}
}
if (_root.policewoman.policevision.hitTest(_root.horndroid.checkfuck) && _root.policewoman.chasing == true) {
tellTarget ('_root.policewoman') {
gotoAndPlay('hit');
}
}
if (_root.policewoman.sedated.hitTest(_root.horndroid.grab)) {
tellTarget ('_root.policewoman') {
gotoAndPlay('fuck');
}
}
if (_root.policewoman._x <= _root.horndroid._x && _root.policewoman.chasing == true && _root.policewoman.hitting == false && _root.policewoman.fleeing == false) {
_root.policewoman._x += _root.speed;
_root.policewoman._xscale = 85;
} else {
if (_root.policewoman._x >= _root.horndroid._x && _root.policewoman.chasing == true && _root.policewoman.hitting == false && _root.policewoman.fleeing == false) {
_root.policewoman._x -= _root.speed;
_root.policewoman._xscale = -85;
}
}
if (_root.policewoman._y <= _root.horndroid._y && _root.policewoman.chasing == true && _root.policewoman.hitting == false && _root.policewoman.fleeing == false) {
_root.policewoman._y += _root.strafe;
} else {
if (_root.policewoman._y >= _root.horndroid._y && _root.policewoman.chasing == true && _root.policewoman.hitting == false && _root.policewoman.fleeing == false) {
_root.policewoman._y -= _root.strafe;
}
}
if (Key.isDown(65) && _root.policewoman.gettingfucked == false && _root.policewoman.teasing == true) {
_root.policewoman.gotoAndStop('fucked');
}
if (Key.isDown(68) && _root.policewoman.gettingfucked == true && _root.policewoman.gettingfuckedfast == false) {
_root.policewoman.gotoAndStop('fuckedfast');
}
if (Key.isDown(87) && _root.policewoman.gettingfuckedturbo == false && _root.policewoman.gettingfuckedfast == true) {
_root.policewoman.gotoAndStop('fuckedturbo');
}
if (Key.isDown(83) && _root.policewoman.gettingfuckedturbo == true && _root.policewoman.teasing == false && _root.policewoman.cumming == false) {
_root.policewoman.gotoAndStop('tease');
}
if (Key.isDown(69) && _root.policewoman.gettingfuckedturbo == true && _root.policewoman.cumming == false) {
_root.policewoman.gotoAndPlay('cum');
}
if (_root.policewoman.gettingfucked == true) {
_root.horndroid.sp += _root.horndroid.spmodifier;
}
if (_root.policewoman.gettingfuckedfast == true) {
_root.horndroid.sp -= _root.horndroid.spmodifierfast;
}
if (_root.policewoman.gettingfuckedturbo == true) {
_root.horndroid.sp -= _root.horndroid.spmodifierturbo;
}
if (_root.policewoman.teasing == true) {
_root.horndroid.sp += _root.horndroid.spmodifierfast;
}
if (_root.policewoman.cumming == true) {
_root.horndroid.hp += _root.horndroid.hpmodifier;
}
if (_root.policewoman.sporespent == true) {
_root.horndroid.hp -= _root.horndroid.depletehp;
}
if (_root.nymph.milfht.hitTest(_root.horndroid.splurge) && _root.horndroid.mission2finish == true) {
tellTarget ('_root.nymph') {
gotoAndPlay('usedspore');
}
}
if (_root.nymph.sedated.hitTest(_root.horndroid.grab)) {
tellTarget ('_root.nymph') {
gotoAndPlay('f1');
}
}
if (_root.nymph.pussyfuck.hitTest(_root.horndroid.grab)) {
tellTarget ('_root.nymph') {
gotoAndPlay('fucked');
}
}
if (_root.nymph.mouthfuck.hitTest(_root.horndroid.grab)) {
tellTarget ('_root.nymph') {
gotoAndPlay('blowjob');
}
}
if (_root.nymph.ff1.hitTest(_root.horndroid.grab)) {
tellTarget ('_root.nymph') {
gotoAndPlay('blowjob');
}
}
if (_root.nymph.ff2.hitTest(_root.horndroid.grab)) {
tellTarget ('_root.nymph') {
gotoAndPlay('fucktitties');
}
}
if (_root.nymph.ff3.hitTest(_root.horndroid.grab)) {
tellTarget ('_root.nymph') {
gotoAndPlay('fucked');
}
}
if (_root.nymph.ff4.hitTest(_root.horndroid.grab)) {
tellTarget ('_root.nymph') {
gotoAndPlay('anal');
}
}
if (_root.nymph.postpolicefuck.hitTest(_root.horndroid.grab) && _root.hpbar.sporeactive == true && _root.policewoman.fleeing == true && _root.horndroid.mission1finish == true) {
tellTarget ('_root.nymph') {
gotoAndPlay('usedspore');
}
} else {
if (_root.nymph.postpolicefuck.hitTest(_root.horndroid.grab) && _root.hpbar.sporeactive == false && _root.policewoman.fleeing == true && _root.horndroid.mission1finish == true) {
tellTarget ('_root.nymph') {
gotoAndPlay('sitting');
}
}
}
if (Key.isDown(65) && _root.nymph.a1 == false && _root.nymph.a4 == true) {
_root.nymph.gotoAndStop('f1');
}
if (Key.isDown(68) && _root.nymph.a1 == true && _root.nymph.a2 == false) {
_root.nymph.gotoAndStop('f2');
}
if (Key.isDown(87) && _root.nymph.a3 == false && _root.nymph.a2 == true) {
_root.nymph.gotoAndStop('f3');
}
if (Key.isDown(83) && _root.nymph.a3 == true && _root.nymph.a4 == false) {
_root.nymph.gotoAndStop('f4');
}
if (Key.isDown(69) && _root.nymph.a4 == true) {
_root.nymph.gotoAndPlay('fucked');
}
if (Key.isDown(65) && _root.nymph.gettingfucked == false && _root.nymph.teasing == true) {
_root.nymph.gotoAndStop('fucked');
}
if (Key.isDown(68) && _root.nymph.gettingfucked == true && _root.nymph.gettingfuckedfast == false) {
_root.nymph.gotoAndStop('fuckedfast');
}
if (Key.isDown(87) && _root.nymph.gettingfuckedturbo == false && _root.nymph.gettingfuckedfast == true) {
_root.nymph.gotoAndStop('fuckedturbo');
}
if (Key.isDown(83) && _root.nymph.gettingfuckedturbo == true && _root.nymph.teasing == false && _root.nymph.cumming == false) {
_root.nymph.gotoAndStop('tease');
}
if (Key.isDown(69) && _root.nymph.gettingfuckedturbo == true && _root.nymph.cumming == false) {
_root.nymph.gotoAndPlay('cum');
}
if (Key.isDown(65) && _root.nymph.suckingcock == false && _root.nymph.mouthtease == true) {
_root.nymph.gotoAndStop('blowjob');
}
if (Key.isDown(68) && _root.nymph.suckingcock == true && _root.nymph.cumming == false) {
_root.nymph.gotoAndPlay('blowjobfast');
}
if (Key.isDown(87) && _root.nymph.suckingcockturbo == false && _root.nymph.suckingcockfast == true) {
_root.nymph.gotoAndStop('blowjobturbo');
}
if (Key.isDown(83) && _root.nymph.suckingcockturbo == true && _root.nymph.mouthtease == false && _root.nymph.cumming == false) {
_root.nymph.gotoAndStop('bjtease');
}
if (Key.isDown(69) && _root.nymph.suckingcockturbo == true && _root.nymph.cumming == false) {
_root.nymph.gotoAndPlay('bjcum');
}
if (Key.isDown(65) && _root.nymph.fuckingtits == false && _root.nymph.teasetits == true) {
_root.nymph.gotoAndStop('fucktitties');
}
if (Key.isDown(68) && _root.nymph.fuckingtits == true && _root.nymph.cumontits == false) {
_root.nymph.gotoAndPlay('fucktittiesfast');
}
if (Key.isDown(87) && _root.nymph.fuckingtitsturbo == false && _root.nymph.fuckingtitsfast == true) {
_root.nymph.gotoAndStop('fucktittiesturbo');
}
if (Key.isDown(83) && _root.nymph.fuckingtitsturbo == true && _root.nymph.teasetits == false && _root.nymph.cumontits == false) {
_root.nymph.gotoAndStop('teasetitties');
}
if (Key.isDown(69) && _root.nymph.fuckingtitsturbo == true && _root.nymph.cumontits == false) {
_root.nymph.gotoAndPlay('tittyfuckcum');
}
if (Key.isDown(65) && _root.nymph.fuckingass == false && _root.nymph.teaseass == true) {
_root.nymph.gotoAndStop('anal');
}
if (Key.isDown(68) && _root.nymph.fuckingass == true && _root.nymph.cumonass == false) {
_root.nymph.gotoAndPlay('analfast');
}
if (Key.isDown(87) && _root.nymph.fuckingassturbo == false && _root.nymph.fuckingassfast == true) {
_root.nymph.gotoAndStop('analturbo');
}
if (Key.isDown(83) && _root.nymph.fuckingassturbo == true && _root.nymph.teaseass == false && _root.nymph.cumonass == false) {
_root.nymph.gotoAndStop('analtease');
}
if (Key.isDown(69) && _root.nymph.fuckingassturbo == true && _root.nymph.cumonass == false) {
_root.nymph.gotoAndPlay('analcum');
}
if (_root.nymph.a1 == true) {
_root.horndroid.sp += _root.horndroid.spmodifier;
}
if (_root.nymph.a2 == true) {
_root.horndroid.hp += _root.horndroid.hpmodifiermini;
}
if (_root.nymph.a3 == true) {
_root.horndroid.sp -= _root.horndroid.spmodifierfast;
}
if (_root.nymph.a4 == true) {
_root.horndroid.sp -= _root.horndroid.spmodifier;
}
if (_root.nymph.gettingfucked == true) {
_root.horndroid.sp += _root.horndroid.spmodifier;
}
if (_root.nymph.gettingfuckedfast == true) {
_root.horndroid.sp -= _root.horndroid.spmodifierfast;
}
if (_root.nymph.gettingfuckedturbo == true) {
_root.horndroid.sp -= _root.horndroid.spmodifierturbo;
}
if (_root.nymph.teasing == true) {
_root.horndroid.sp += _root.horndroid.spmodifierfast;
}
if (_root.nymph.suckingcock == true) {
_root.horndroid.sp += _root.horndroid.spmodifier;
}
if (_root.nymph.suckingcockfast == true) {
_root.horndroid.sp -= _root.horndroid.spmodifierfast;
}
if (_root.nymph.suckingcockturbo == true) {
_root.horndroid.sp -= _root.horndroid.spmodifierturbo;
}
if (_root.nymph.mouthtease == true) {
_root.horndroid.sp += _root.horndroid.spmodifierfast;
}
if (_root.nymph.fuckingtits == true) {
_root.horndroid.sp += _root.horndroid.spmodifier;
}
if (_root.nymph.fuckingtitsfast == true) {
_root.horndroid.sp -= _root.horndroid.spmodifierfast;
}
if (_root.nymph.fuckingtitsturbo == true) {
_root.horndroid.sp -= _root.horndroid.spmodifierturbo;
}
if (_root.nymph.teasetits == true) {
_root.horndroid.sp += _root.horndroid.spmodifierfast;
}
if (_root.nymph.fuckingass == true) {
_root.horndroid.sp += _root.horndroid.spmodifier;
}
if (_root.nymph.fuckingassfast == true) {
_root.horndroid.sp -= _root.horndroid.spmodifierfast;
}
if (_root.nymph.fuckingassturbo == true) {
_root.horndroid.sp -= _root.horndroid.spmodifierturbo;
}
if (_root.nymph.teaseass == true) {
_root.horndroid.sp += _root.horndroid.spmodifierfast;
}
if (_root.nymph.cumming == true) {
_root.horndroid.hp += _root.horndroid.hpmodifiermini;
_root.horndroid.sp -= _root.horndroid.spmodifier;
}
if (_root.nymph.mouthcumming == true) {
_root.horndroid.hp += _root.horndroid.hpmodifiermini;
_root.horndroid.sp -= _root.horndroid.spmodifier;
}
if (_root.nymph.cumontits == true) {
_root.horndroid.hp += _root.horndroid.hpmodifiermini;
_root.horndroid.sp -= _root.horndroid.spmodifier;
}
if (_root.nymph.cumonass == true) {
_root.horndroid.hp += _root.horndroid.hpmodifiermini;
_root.horndroid.sp -= _root.horndroid.spmodifier;
}
if (_root.teen.milfht.hitTest(_root.horndroid.grab) && _root.hpbar.sporeactive == true && _root.horndroid.mission3finish == true) {
tellTarget ('_root.teen') {
gotoAndPlay('usedspore');
}
}
if (_root.teen.milfsight.hitTest(_root.horndroid.jerkingseen)) {
tellTarget ('_root.teen') {
gotoAndPlay('callthepolice');
}
} else {
if (_root.teen.milfht.hitTest(_root.horndroid.grab) && _root.hpbar.sporeactive == false) {
tellTarget ('_root.teen') {
gotoAndPlay('callthepolice');
}
} else {
if (_root.teen.milfht.hitTest(_root.horndroid.grab) && _root.hpbar.sporeactive == true && _root.horndroid.mission3finish == false) {
tellTarget ('_root.teen') {
gotoAndPlay('callthepolice');
}
}
}
}
if (_root.teen.sedated.hitTest(_root.horndroid.grab)) {
tellTarget ('_root.teen') {
gotoAndPlay('f1');
}
}
if (_root.teen.pussyfuck.hitTest(_root.horndroid.grab)) {
tellTarget ('_root.teen') {
gotoAndPlay('fucked');
}
}
if (_root.teen.mouthfuck.hitTest(_root.horndroid.grab)) {
tellTarget ('_root.teen') {
gotoAndPlay('blowjob');
}
}
if (_root.teen.ff1.hitTest(_root.horndroid.grab)) {
tellTarget ('_root.teen') {
gotoAndPlay('blowjob');
}
}
if (_root.teen.ff2.hitTest(_root.horndroid.grab)) {
tellTarget ('_root.teen') {
gotoAndPlay('fucktitties');
}
}
if (_root.teen.ff3.hitTest(_root.horndroid.grab)) {
tellTarget ('_root.teen') {
gotoAndPlay('fucked');
}
}
if (_root.teen.ff4.hitTest(_root.horndroid.grab)) {
tellTarget ('_root.teen') {
gotoAndPlay('anal');
}
}
if (_root.teen.postpolicefuck.hitTest(_root.horndroid.grab) && _root.hpbar.sporeactive == true && _root.horndroid.mission3finish == true) {
tellTarget ('_root.teen') {
gotoAndPlay('usedspore');
}
} else {
if (_root.teen.postpolicefuck.hitTest(_root.horndroid.grab) && _root.hpbar.sporeactive == false && _root.horndroid.mission3finish == true) {
tellTarget ('_root.teen') {
gotoAndPlay('callthepolice');
}
}
}
if (Key.isDown(65) && _root.teen.a1 == false && _root.teen.a4 == true) {
_root.teen.gotoAndStop('f1');
}
if (Key.isDown(68) && _root.teen.a1 == true && _root.teen.a2 == false) {
_root.teen.gotoAndStop('f2');
}
if (Key.isDown(87) && _root.teen.a3 == false && _root.teen.a2 == true) {
_root.teen.gotoAndStop('f3');
}
if (Key.isDown(83) && _root.teen.a3 == true && _root.teen.a4 == false) {
_root.teen.gotoAndStop('f4');
}
if (Key.isDown(69) && _root.teen.a4 == true) {
_root.teen.gotoAndPlay('fucked');
}
if (Key.isDown(65) && _root.teen.gettingfucked == false && _root.teen.teasing == true) {
_root.teen.gotoAndStop('fucked');
}
if (Key.isDown(68) && _root.teen.gettingfucked == true && _root.teen.gettingfuckedfast == false) {
_root.teen.gotoAndStop('fuckedfast');
}
if (Key.isDown(87) && _root.teen.gettingfuckedturbo == false && _root.teen.gettingfuckedfast == true) {
_root.teen.gotoAndStop('fuckedturbo');
}
if (Key.isDown(83) && _root.teen.gettingfuckedturbo == true && _root.teen.teasing == false && _root.teen.cumming == false) {
_root.teen.gotoAndStop('tease');
}
if (Key.isDown(69) && _root.teen.gettingfuckedturbo == true && _root.teen.cumming == false) {
_root.teen.gotoAndPlay('cum');
}
if (Key.isDown(65) && _root.teen.suckingcock == false && _root.teen.mouthtease == true) {
_root.teen.gotoAndStop('blowjob');
}
if (Key.isDown(68) && _root.teen.suckingcock == true && _root.teen.cumming == false) {
_root.teen.gotoAndPlay('blowjobfast');
}
if (Key.isDown(87) && _root.teen.suckingcockturbo == false && _root.teen.suckingcockfast == true) {
_root.teen.gotoAndStop('blowjobturbo');
}
if (Key.isDown(83) && _root.teen.suckingcockturbo == true && _root.teen.mouthtease == false && _root.teen.cumming == false) {
_root.teen.gotoAndStop('bjtease');
}
if (Key.isDown(69) && _root.teen.suckingcockturbo == true && _root.teen.cumming == false) {
_root.teen.gotoAndPlay('bjcum');
}
if (Key.isDown(65) && _root.teen.fuckingtits == false && _root.teen.teasetits == true) {
_root.teen.gotoAndStop('fucktitties');
}
if (Key.isDown(68) && _root.teen.fuckingtits == true && _root.teen.cumontits == false) {
_root.teen.gotoAndPlay('fucktittiesfast');
}
if (Key.isDown(87) && _root.teen.fuckingtitsturbo == false && _root.teen.fuckingtitsfast == true) {
_root.teen.gotoAndStop('fucktittiesturbo');
}
if (Key.isDown(83) && _root.teen.fuckingtitsturbo == true && _root.teen.teasetits == false && _root.teen.cumontits == false) {
_root.teen.gotoAndStop('teasetitties');
}
if (Key.isDown(69) && _root.teen.fuckingtitsturbo == true && _root.teen.cumontits == false) {
_root.teen.gotoAndPlay('tittyfuckcum');
}
if (Key.isDown(65) && _root.teen.fuckingass == false && _root.teen.teaseass == true) {
_root.teen.gotoAndStop('anal');
}
if (Key.isDown(68) && _root.teen.fuckingass == true && _root.teen.cumonass == false) {
_root.teen.gotoAndPlay('analfast');
}
if (Key.isDown(87) && _root.teen.fuckingassturbo == false && _root.teen.fuckingassfast == true) {
_root.teen.gotoAndStop('analturbo');
}
if (Key.isDown(83) && _root.teen.fuckingassturbo == true && _root.teen.teaseass == false && _root.teen.cumonass == false) {
_root.teen.gotoAndStop('analtease');
}
if (Key.isDown(69) && _root.teen.fuckingassturbo == true && _root.teen.cumonass == false) {
_root.teen.gotoAndPlay('analcum');
}
if (_root.teen.a1 == true) {
_root.horndroid.sp += _root.horndroid.spmodifier;
}
if (_root.teen.a2 == true) {
_root.horndroid.hp += _root.horndroid.hpmodifiermini;
}
if (_root.teen.a3 == true) {
_root.horndroid.sp -= _root.horndroid.spmodifierfast;
}
if (_root.teen.a4 == true) {
_root.horndroid.sp -= _root.horndroid.spmodifier;
}
if (_root.teen.gettingfucked == true) {
_root.horndroid.sp += _root.horndroid.spmodifier;
}
if (_root.teen.gettingfuckedfast == true) {
_root.horndroid.sp -= _root.horndroid.spmodifierfast;
}
if (_root.teen.gettingfuckedturbo == true) {
_root.horndroid.sp -= _root.horndroid.spmodifierturbo;
}
if (_root.teen.teasing == true) {
_root.horndroid.sp += _root.horndroid.spmodifierfast;
}
if (_root.teen.suckingcock == true) {
_root.horndroid.sp += _root.horndroid.spmodifier;
}
if (_root.teen.suckingcockfast == true) {
_root.horndroid.sp -= _root.horndroid.spmodifierfast;
}
if (_root.teen.suckingcockturbo == true) {
_root.horndroid.sp -= _root.horndroid.spmodifierturbo;
}
if (_root.teen.mouthtease == true) {
_root.horndroid.sp += _root.horndroid.spmodifierfast;
}
if (_root.teen.fuckingtits == true) {
_root.horndroid.sp += _root.horndroid.spmodifier;
}
if (_root.teen.fuckingtitsfast == true) {
_root.horndroid.sp -= _root.horndroid.spmodifierfast;
}
if (_root.teen.fuckingtitsturbo == true) {
_root.horndroid.sp -= _root.horndroid.spmodifierturbo;
}
if (_root.teen.teasetits == true) {
_root.horndroid.sp += _root.horndroid.spmodifierfast;
}
if (_root.teen.fuckingass == true) {
_root.horndroid.sp += _root.horndroid.spmodifier;
}
if (_root.teen.fuckingassfast == true) {
_root.horndroid.sp -= _root.horndroid.spmodifierfast;
}
if (_root.teen.fuckingassturbo == true) {
_root.horndroid.sp -= _root.horndroid.spmodifierturbo;
}
if (_root.teen.teaseass == true) {
_root.horndroid.sp += _root.horndroid.spmodifierfast;
}
if (_root.teen.cumming == true) {
_root.horndroid.hp += _root.horndroid.hpmodifiermini;
_root.horndroid.sp -= _root.horndroid.spmodifier;
}
if (_root.teen.mouthcumming == true) {
_root.horndroid.hp += _root.horndroid.hpmodifiermini;
_root.horndroid.sp -= _root.horndroid.spmodifier;
}
if (_root.teen.cumontits == true) {
_root.horndroid.hp += _root.horndroid.hpmodifiermini;
_root.horndroid.sp -= _root.horndroid.spmodifier;
}
if (_root.teen.cumonass == true) {
_root.horndroid.hp += _root.horndroid.hpmodifiermini;
_root.horndroid.sp -= _root.horndroid.spmodifier;
}
if (_root.teen.sporespent == true) {
_root.horndroid.hp -= _root.horndroid.depletehp;
}
}
}
button 249 {
on (release) {
getURL('http://mysexgames.com', '_blank');
}
}
movieClip 251 {
}
movieClip 253 {
}
movieClip 255 {
}
movieClip 257 {
}
movieClip 259 {
}
movieClip 261 {
}
movieClip 263 {
}
movieClip 265 {
}
movieClip 267 {
}
movieClip 269 {
}
movieClip 271 {
}
movieClip 273 {
}
movieClip 274 {
}
movieClip 276 {
}
movieClip 278 {
}
movieClip 280 {
}
movieClip 282 {
}
movieClip 284 {
}
movieClip 285 {
}
movieClip 286 {
}
movieClip 292 {
}
movieClip 293 {
frame 80 {
gotoAndPlay(1);
}
}
movieClip 296 {
}
movieClip 298 {
}
movieClip 300 {
}
movieClip 301 {
}
movieClip 302 {
}
movieClip 304 {
}
movieClip 306 {
}
movieClip 308 {
}
movieClip 310 {
}
movieClip 312 {
}
movieClip 314 {
}
movieClip 315 {
}
movieClip 317 {
}
movieClip 319 {
}
movieClip 321 {
}
movieClip 322 {
}
movieClip 323 {
frame 20 {
gotoAndPlay(1);
}
}
movieClip 326 {
frame 15 {
gotoAndPlay(1);
}
}
movieClip 327 {
frame 11 {
gotoAndPlay(1);
}
}
movieClip 328 {
frame 40 {
gotoAndPlay(1);
}
}
movieClip 331 {
}
movieClip 332 {
}
movieClip 333 {
}
movieClip 334 {
}
movieClip 335 {
frame 30 {
gotoAndPlay(1);
}
}
movieClip 338 {
}
movieClip 339 {
}
movieClip 340 {
frame 20 {
gotoAndPlay(1);
}
}
movieClip 342 {
frame 10 {
gotoAndPlay(1);
}
}
movieClip 345 {
}
movieClip 346 {
frame 20 {
gotoAndPlay(1);
}
}
movieClip 347 {
frame 14 {
gotoAndPlay(1);
}
}
movieClip 348 {
frame 8 {
gotoAndPlay(1);
}
}
movieClip 349 {
frame 30 {
gotoAndPlay(1);
}
}
movieClip 350 {
frame 30 {
gotoAndPlay(1);
}
}
movieClip 351 {
frame 18 {
gotoAndPlay(1);
}
}
movieClip 352 {
frame 10 {
gotoAndPlay(1);
}
}
movieClip 353 {
frame 40 {
gotoAndPlay(1);
}
}
movieClip 366 {
}
movieClip 367 {
}
movieClip 369 {
}
movieClip 370 {
}
movieClip 371 {
frame 40 {
gotoAndPlay(1);
}
}
movieClip 372 {
frame 40 {
gotoAndPlay(1);
}
}
movieClip 373 {
frame 1 {
stop();
gettingfucked = false;
gettingfuckedfast = false;
gettingfuckedturbo = false;
teasing = false;
cumming = false;
suckingcock = false;
suckingcockfast = false;
suckingcockturbo = false;
mouthtease = false;
mouthcumming = false;
blewjob = false;
sporespent = false;
}
frame 2 {
sporespent = true;
}
frame 5 {
stop();
sporespent = false;
}
frame 6 {
stop();
cumming = false;
mouthcumming = false;
}
instance pussyfuck of movieClip 304 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.horndroid.grab)) {
tellTarget ('_parent') {
gotoAndPlay('fucked');
}
}
}
}
frame 7 {
stop();
cumming = false;
mouthcumming = false;
blewjob = true;
}
instance ff2 of movieClip 304 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.horndroid.grab)) {
tellTarget ('_parent') {
gotoAndPlay('fucktitties');
}
}
}
}
frame 8 {
stop();
a1 = true;
a2 = false;
a3 = false;
a4 = false;
ac = false;
}
frame 9 {
stop();
a1 = false;
a2 = true;
a3 = false;
a4 = false;
ac = false;
}
frame 10 {
stop();
a1 = false;
a2 = false;
a3 = true;
a4 = false;
ac = false;
}
frame 11 {
stop();
a1 = false;
a2 = false;
a3 = false;
a4 = true;
ac = false;
}
frame 12 {
stop();
gettingfucked = true;
gettingfuckedfast = false;
gettingfuckedturbo = false;
teasing = false;
cumming = false;
a4 = false;
}
frame 13 {
stop();
gettingfucked = false;
gettingfuckedfast = true;
gettingfuckedturbo = false;
teasing = false;
cumming = false;
}
frame 14 {
stop();
gettingfucked = false;
gettingfuckedfast = false;
gettingfuckedturbo = true;
teasing = false;
cumming = false;
}
frame 15 {
stop();
gettingfucked = false;
gettingfuckedfast = false;
gettingfuckedturbo = false;
teasing = true;
cumming = false;
}
frame 16 {
stop();
suckingcock = true;
suckingcockfast = false;
suckingcockturbo = false;
mouthtease = false;
mouthcumming = false;
}
frame 17 {
stop();
suckingcock = false;
suckingcockfast = true;
suckingcockturbo = false;
mouthtease = false;
mouthcumming = false;
}
frame 18 {
stop();
suckingcock = false;
suckingcockfast = false;
suckingcockturbo = true;
mouthtease = false;
mouthcumming = false;
}
frame 19 {
stop();
suckingcock = false;
suckingcockfast = false;
suckingcockturbo = false;
mouthtease = true;
mouthcumming = false;
}
frame 20 {
stop();
fuckingtits = true;
fuckingtitsfast = false;
fuckingtitsturbo = false;
teasetits = false;
cumontits = false;
}
frame 21 {
stop();
fuckingtits = false;
fuckingtitsfast = true;
fuckingtitsturbo = false;
teasetits = false;
cumontits = false;
}
frame 22 {
stop();
fuckingtits = false;
fuckingtitsfast = false;
fuckingtitsturbo = true;
teasetits = false;
cumontits = false;
}
frame 23 {
stop();
fuckingtits = false;
fuckingtitsfast = false;
fuckingtitsturbo = false;
teasetits = true;
cumontits = false;
}
frame 24 {
stop();
fuckingass = true;
fuckingassfast = false;
fuckingassturbo = false;
teaseass = false;
cumonass = false;
}
frame 25 {
stop();
fuckingass = false;
fuckingassfast = true;
fuckingassturbo = false;
teaseass = false;
cumonass = false;
}
frame 26 {
stop();
fuckingass = false;
fuckingassfast = false;
fuckingassturbo = true;
teaseass = false;
cumonass = false;
}
frame 27 {
stop();
fuckingass = false;
fuckingassfast = false;
fuckingassturbo = false;
teaseass = true;
cumonass = false;
}
frame 28 {
gettingfucked = false;
gettingfuckedfast = false;
gettingfuckedturbo = false;
teasing = false;
cumming = true;
}
frame 116 {
if (blewjob == false) {
gotoAndStop('fuckedmilf');
}
if (blewjob == true) {
gotoAndStop('mouthfuckedmilf');
}
}
frame 170 {
gotoAndPlay(1);
}
frame 171 {
suckingcock = false;
suckingcockfast = false;
suckingcockturbo = false;
mouthtease = false;
mouthcumming = true;
}
frame 220 {
mouthcumming = false;
gotoAndPlay('mouthfuckedmilf');
}
frame 221 {
fuckingtits = false;
fuckingtitsfast = false;
fuckingtitsturbo = false;
teasetits = false;
cumontits = true;
}
frame 273 {
cumontits = false;
gotoAndPlay('mouthfuckedmilf');
}
frame 274 {
fuckingass = false;
fuckingassfast = false;
fuckingassturbo = false;
teaseass = false;
cumonass = true;
}
frame 364 {
cumonass = false;
gotoAndPlay('mouthfuckedmilf');
}
}
movieClip 375 {
}
movieClip 377 {
}
movieClip 379 {
}
movieClip 380 {
frame 1 {
stop();
talking = false;
}
instance of movieClip 240 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.horndroid.checkfuck) && _root.talker.talking == false && _root.large._currentframe < 2 && _root.horndroid.stacycitroen == false) {
tellTarget ('_parent') {
gotoAndPlay('message');
}
}
if (this.hitTest(_root.horndroid.checkfuck) && _root.talker.talking == false && _root.large._currentframe < 2 && _root.horndroid.stacycitroen == true) {
tellTarget ('_parent') {
gotoAndPlay('messageps');
}
}
}
}
frame 5 {
talking = true;
}
frame 204 {
gotoAndPlay(1);
}
frame 400 {
gotoAndPlay(1);
}
}
movieClip 381 {
frame 11 {
stop();
fading = false;
}
}
movieClip 383 {
}
movieClip 385 {
}
movieClip 387 {
}
movieClip 389 {
}
movieClip 391 {
}
movieClip 393 {
}
movieClip 395 {
}
movieClip 397 {
}
movieClip 400 {
}
movieClip 402 {
}
movieClip 405 {
}
movieClip 406 {
}
movieClip 408 {
}
movieClip 410 {
}
movieClip 412 {
}
movieClip 415 {
}
movieClip 417 {
}
movieClip 419 {
}
movieClip 421 {
}
movieClip 423 {
}
movieClip 425 {
}
movieClip 427 {
}
movieClip 429 {
}
movieClip 432 {
}
movieClip 434 {
}
movieClip 436 {
}
movieClip 438 {
}
movieClip 439 {
frame 80 {
gotoAndPlay(1);
}
}
movieClip 441 {
}
movieClip 443 {
}
movieClip 444 {
}
movieClip 445 {
}
movieClip 446 {
}
movieClip 448 {
}
movieClip 450 {
}
movieClip 452 {
}
movieClip 454 {
}
movieClip 457 {
}
movieClip 459 {
}
movieClip 461 {
}
movieClip 463 {
}
movieClip 465 {
}
movieClip 467 {
}
movieClip 468 {
frame 40 {
gotoAndPlay(1);
}
}
movieClip 470 {
}
movieClip 471 {
frame 40 {
gotoAndPlay(1);
}
}
movieClip 472 {
}
movieClip 473 {
}
movieClip 474 {
}
movieClip 475 {
}
movieClip 477 {
}
movieClip 478 {
}
movieClip 480 {
}
movieClip 482 {
}
movieClip 484 {
}
movieClip 486 {
}
movieClip 488 {
}
movieClip 490 {
}
movieClip 491 {
frame 40 {
gotoAndPlay(1);
}
}
movieClip 493 {
}
movieClip 495 {
}
movieClip 497 {
}
movieClip 498 {
frame 20 {
gotoAndPlay(1);
}
}
movieClip 500 {
}
movieClip 502 {
}
movieClip 504 {
}
movieClip 506 {
}
movieClip 507 {
frame 20 {
gotoAndPlay(1);
}
}
movieClip 510 {
}
movieClip 513 {
}
movieClip 514 {
}
movieClip 516 {
}
movieClip 517 {
frame 1 {
gotoAndPlay(1);
}
}
movieClip 519 {
}
movieClip 521 {
}
movieClip 522 {
}
movieClip 524 {
}
movieClip 526 {
}
movieClip 528 {
}
movieClip 530 {
}
movieClip 532 {
}
movieClip 534 {
}
movieClip 535 {
frame 19 {
gotoAndPlay(1);
}
}
movieClip 536 {
frame 13 {
gotoAndPlay(1);
}
}
movieClip 537 {
frame 8 {
gotoAndPlay(1);
}
}
movieClip 538 {
frame 40 {
gotoAndPlay(1);
}
}
movieClip 539 {
}
movieClip 542 {
}
movieClip 543 {
}
movieClip 545 {
}
movieClip 547 {
}
movieClip 549 {
}
movieClip 550 {
frame 20 {
gotoAndPlay(1);
}
}
movieClip 551 {
frame 12 {
gotoAndPlay(1);
}
}
movieClip 552 {
frame 7 {
gotoAndPlay(1);
}
}
movieClip 555 {
}
movieClip 557 {
}
movieClip 558 {
frame 65 {
gotoAndPlay(1);
}
}
movieClip 560 {
}
movieClip 563 {
}
movieClip 564 {
}
movieClip 566 {
}
movieClip 568 {
}
movieClip 570 {
}
movieClip 572 {
}
movieClip 573 {
frame 30 {
gotoAndPlay(1);
}
}
movieClip 574 {
frame 20 {
gotoAndPlay(1);
}
}
movieClip 575 {
frame 10 {
gotoAndPlay(1);
}
}
movieClip 578 {
}
movieClip 579 {
frame 40 {
gotoAndPlay(1);
}
}
movieClip 581 {
}
movieClip 583 {
}
movieClip 585 {
}
movieClip 587 {
}
movieClip 588 {
}
movieClip 590 {
}
movieClip 593 {
}
movieClip 594 {
}
movieClip 596 {
}
movieClip 597 {
frame 30 {
gotoAndPlay(1);
}
}
movieClip 599 {
}
movieClip 600 {
frame 20 {
gotoAndPlay(1);
}
}
movieClip 602 {
}
movieClip 603 {
frame 10 {
gotoAndPlay(1);
}
}
movieClip 605 {
}
movieClip 606 {
frame 40 {
gotoAndPlay(1);
}
}
movieClip 607 {
}
movieClip 609 {
}
movieClip 611 {
}
movieClip 614 {
}
movieClip 623 {
}
movieClip 624 {
}
movieClip 625 {
frame 40 {
gotoAndPlay(1);
}
}
movieClip 627 {
frame 80 {
gotoAndPlay(1);
}
}
movieClip 629 {
}
movieClip 630 {
frame 1 {
stop();
gettingfucked = false;
gettingfuckedfast = false;
gettingfuckedturbo = false;
teasing = false;
cumming = false;
suckingcock = false;
suckingcockfast = false;
suckingcockturbo = false;
mouthtease = false;
mouthcumming = false;
blewjob = false;
sporespent = false;
}
frame 2 {
sporespent = true;
}
frame 5 {
stop();
sporespent = false;
}
frame 6 {
stop();
cumming = false;
mouthcumming = false;
}
instance pussyfuck of movieClip 304 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.horndroid.grab)) {
tellTarget ('_parent') {
gotoAndPlay('fucked');
}
}
}
}
frame 7 {
stop();
cumming = false;
mouthcumming = false;
blewjob = true;
}
instance ff2 of movieClip 304 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.horndroid.grab)) {
tellTarget ('_parent') {
gotoAndPlay('fucktitties');
}
}
}
}
frame 8 {
stop();
a1 = true;
a2 = false;
a3 = false;
a4 = false;
ac = false;
}
frame 9 {
stop();
a1 = false;
a2 = true;
a3 = false;
a4 = false;
ac = false;
}
frame 10 {
stop();
a1 = false;
a2 = false;
a3 = true;
a4 = false;
ac = false;
}
frame 11 {
stop();
a1 = false;
a2 = false;
a3 = false;
a4 = true;
ac = false;
}
frame 12 {
stop();
gettingfucked = true;
gettingfuckedfast = false;
gettingfuckedturbo = false;
teasing = false;
cumming = false;
a4 = false;
}
frame 13 {
stop();
gettingfucked = false;
gettingfuckedfast = true;
gettingfuckedturbo = false;
teasing = false;
cumming = false;
}
frame 14 {
stop();
gettingfucked = false;
gettingfuckedfast = false;
gettingfuckedturbo = true;
teasing = false;
cumming = false;
}
frame 15 {
stop();
gettingfucked = false;
gettingfuckedfast = false;
gettingfuckedturbo = false;
teasing = true;
cumming = false;
}
frame 16 {
stop();
suckingcock = true;
suckingcockfast = false;
suckingcockturbo = false;
mouthtease = false;
mouthcumming = false;
}
frame 17 {
stop();
suckingcock = false;
suckingcockfast = true;
suckingcockturbo = false;
mouthtease = false;
mouthcumming = false;
}
frame 18 {
stop();
suckingcock = false;
suckingcockfast = false;
suckingcockturbo = true;
mouthtease = false;
mouthcumming = false;
}
frame 19 {
stop();
suckingcock = false;
suckingcockfast = false;
suckingcockturbo = false;
mouthtease = true;
mouthcumming = false;
}
frame 20 {
stop();
fuckingtits = true;
fuckingtitsfast = false;
fuckingtitsturbo = false;
teasetits = false;
cumontits = false;
}
frame 21 {
stop();
fuckingtits = false;
fuckingtitsfast = true;
fuckingtitsturbo = false;
teasetits = false;
cumontits = false;
}
frame 22 {
stop();
fuckingtits = false;
fuckingtitsfast = false;
fuckingtitsturbo = true;
teasetits = false;
cumontits = false;
}
frame 23 {
stop();
fuckingtits = false;
fuckingtitsfast = false;
fuckingtitsturbo = false;
teasetits = true;
cumontits = false;
}
frame 24 {
stop();
fuckingass = true;
fuckingassfast = false;
fuckingassturbo = false;
teaseass = false;
cumonass = false;
}
frame 25 {
stop();
fuckingass = false;
fuckingassfast = true;
fuckingassturbo = false;
teaseass = false;
cumonass = false;
}
frame 26 {
stop();
fuckingass = false;
fuckingassfast = false;
fuckingassturbo = true;
teaseass = false;
cumonass = false;
}
frame 27 {
stop();
fuckingass = false;
fuckingassfast = false;
fuckingassturbo = false;
teaseass = true;
cumonass = false;
}
frame 28 {
gettingfucked = false;
gettingfuckedfast = false;
gettingfuckedturbo = false;
teasing = false;
cumming = true;
}
frame 116 {
if (blewjob == false) {
gotoAndStop('fuckedmilf');
}
if (blewjob == true) {
gotoAndStop('mouthfuckedmilf');
}
}
frame 170 {
stop();
}
instance of movieClip 280 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.horndroid.grab) && _root.hpbar.sporeactive == true && _root.policewoman.fleeing == true && _root.horndroid.mission1finish == true) {
tellTarget ('_parent') {
gotoAndPlay('usedspore');
}
sporespent = true;
} else {
if (this.hitTest(_root.horndroid.grab) && _root.hpbar.sporeactive == false && _root.policewoman.fleeing == true && _root.horndroid.mission1finish == true) {
tellTarget ('_parent') {
gotoAndPlay('fucked');
}
}
}
}
}
frame 171 {
suckingcock = false;
suckingcockfast = false;
suckingcockturbo = false;
mouthtease = false;
mouthcumming = true;
}
frame 220 {
mouthcumming = false;
gotoAndPlay('mouthfuckedmilf');
}
frame 221 {
fuckingtits = false;
fuckingtitsfast = false;
fuckingtitsturbo = false;
teasetits = false;
cumontits = true;
}
frame 273 {
cumontits = false;
gotoAndPlay('mouthfuckedmilf');
}
frame 274 {
fuckingass = false;
fuckingassfast = false;
fuckingassturbo = false;
teaseass = false;
cumonass = true;
}
frame 364 {
cumonass = false;
gotoAndPlay('mouthfuckedmilf');
}
}
instance milf of movieClip 630 {
onClipEvent (load) {
gettingfucked = false;
}
}
movieClip 632 {
}
movieClip 634 {
}
movieClip 636 {
}
movieClip 638 {
}
movieClip 640 {
}
movieClip 642 {
}
movieClip 644 {
}
movieClip 646 {
}
movieClip 648 {
}
movieClip 650 {
}
movieClip 652 {
}
movieClip 654 {
}
movieClip 657 {
}
movieClip 658 {
}
movieClip 660 {
}
movieClip 662 {
}
movieClip 663 {
}
movieClip 665 {
}
movieClip 668 {
}
movieClip 670 {
}
movieClip 671 {
}
movieClip 672 {
}
movieClip 674 {
}
movieClip 676 {
}
movieClip 678 {
}
movieClip 679 {
}
movieClip 681 {
}
movieClip 683 {
}
movieClip 685 {
}
movieClip 687 {
}
movieClip 689 {
}
movieClip 691 {
}
movieClip 693 {
}
movieClip 695 {
}
movieClip 697 {
}
movieClip 700 {
}
movieClip 701 {
}
movieClip 702 {
frame 30 {
gotoAndPlay(1);
}
}
movieClip 704 {
}
movieClip 706 {
}
movieClip 708 {
}
movieClip 710 {
}
movieClip 711 {
frame 20 {
gotoAndPlay(1);
}
}
movieClip 713 {
}
movieClip 714 {
}
movieClip 715 {
frame 10 {
gotoAndPlay(1);
}
}
movieClip 716 {
frame 40 {
gotoAndPlay(1);
}
}
movieClip 725 {
}
movieClip 726 {
frame 48 {
gotoAndPlay(1);
}
}
movieClip 728 {
}
movieClip 729 {
}
movieClip 730 {
frame 1 {
stop();
chasing = false;
hitting = false;
fleeing = false;
sporespent = false;
}
frame 5 {
stop();
chasing = true;
hitting = false;
}
frame 10 {
hitting = true;
chasing = false;
}
frame 25 {
hitting = false;
chasing = false;
}
frame 52 {
gotoAndPlay('Chase');
}
frame 53 {
sporespent = true;
chasing = false;
hitting = false;
}
frame 59 {
stop();
sporespent = false;
}
frame 60 {
stop();
gettingfucked = true;
gettingfuckedfast = false;
gettingfuckedturbo = false;
teasing = false;
cumming = false;
}
frame 61 {
stop();
gettingfucked = false;
gettingfuckedfast = true;
gettingfuckedturbo = false;
teasing = false;
cumming = false;
}
frame 62 {
stop();
gettingfucked = false;
gettingfuckedfast = false;
gettingfuckedturbo = true;
teasing = false;
cumming = false;
}
frame 63 {
stop();
gettingfucked = false;
gettingfuckedfast = false;
gettingfuckedturbo = false;
teasing = true;
cumming = false;
}
frame 64 {
gettingfucked = false;
gettingfuckedfast = false;
gettingfuckedturbo = false;
teasing = false;
cumming = true;
}
frame 107 {
gettingfucked = false;
gettingfuckedfast = false;
gettingfuckedturbo = false;
teasing = false;
cumming = false;
}
frame 108 {
fleeing = true;
}
frame 165 {
stop();
}
}
instance policewoman of movieClip 730 {
onClipEvent (load) {
chasing = false;
gettingfucked = false;
}
}
movieClip 733 {
}
movieClip 734 {
}
movieClip 736 {
}
movieClip 737 {
frame 109 {
stop();
}
}
movieClip 738 {
frame 1 {
stop();
}
instance of movieClip 733 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.horndroid.grab) && _root.horndroid.mission1a == false && _root.horndroid.mission1finish == false) {
_root.horndroid.mission1a = true;
tellTarget ('_parent') {
gotoAndStop('up');
}
}
}
}
frame 2 {
stop();
}
}
movieClip 740 {
}
movieClip 742 {
}
movieClip 743 {
frame 1 {
stop();
talking = false;
}
instance of movieClip 240 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.horndroid.checkfuck) && _root.talker.talking == false && _root.milf._currentframe < 2 && _root.horndroid.landlady == false) {
tellTarget ('_parent') {
gotoAndPlay('message');
}
}
if (this.hitTest(_root.horndroid.checkfuck) && _root.talker.talking == false && _root.milf._currentframe < 2 && _root.horndroid.landlady == true) {
tellTarget ('_parent') {
gotoAndPlay('messageps');
}
}
}
}
frame 5 {
talking = true;
}
frame 204 {
gotoAndPlay(1);
}
frame 400 {
gotoAndPlay(1);
}
}
movieClip 745 {
}
movieClip 747 {
}
movieClip 749 {
}
movieClip 750 {
frame 40 {
gotoAndPlay(1);
}
}
movieClip 752 {
}
movieClip 753 {
frame 1 {
stop();
chasing = false;
hitting = false;
fleeing = false;
sporespent = false;
}
instance policehittest of movieClip 752 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.horndroid.jerkingseen)) {
tellTarget ('_parent') {
gotoAndPlay('chase');
}
}
}
}
frame 5 {
stop();
chasing = true;
hitting = false;
}
instance policevision of movieClip 665 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.horndroid.checkfuck)) {
tellTarget ('_parent') {
gotoAndPlay('hit');
}
}
}
}
frame 10 {
hitting = true;
}
instance club of movieClip 665 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.horndroid.checkfuck)) {
tellTarget ('_parent') {
gotoAndPlay('hit');
}
}
}
}
frame 25 {
hitting = false;
chasing = false;
}
frame 52 {
gotoAndPlay('Chase');
}
frame 53 {
sporespent = true;
}
frame 59 {
stop();
sporespent = false;
}
frame 60 {
stop();
gettingfucked = true;
gettingfuckedfast = false;
gettingfuckedturbo = false;
teasing = false;
cumming = false;
}
frame 61 {
stop();
gettingfucked = false;
gettingfuckedfast = true;
gettingfuckedturbo = false;
teasing = false;
cumming = false;
}
frame 62 {
stop();
gettingfucked = false;
gettingfuckedfast = false;
gettingfuckedturbo = true;
teasing = false;
cumming = false;
}
frame 63 {
stop();
gettingfucked = false;
gettingfuckedfast = false;
gettingfuckedturbo = false;
teasing = true;
cumming = false;
}
frame 64 {
gettingfucked = false;
gettingfuckedfast = false;
gettingfuckedturbo = false;
teasing = false;
cumming = true;
}
frame 107 {
gettingfucked = false;
gettingfuckedfast = false;
gettingfuckedturbo = false;
teasing = false;
cumming = false;
}
frame 165 {
stop();
}
}
instance policewoman of movieClip 753 {
onClipEvent (load) {
speed = 6;
strafe = 1;
chasing = false;
gettingfucked = false;
}
onClipEvent (enterFrame) {
if (this._x <= _root.horndroid._x && chasing == true && hitting == false && fleeing == false) {
this._x += speed;
this._xscale = 85;
} else {
if (this._x >= _root.horndroid._x && chasing == true && hitting == false && fleeing == false) {
this._x -= speed;
this._xscale = -85;
}
}
if (this._y <= _root.horndroid._y && chasing == true && hitting == false && fleeing == false) {
this._y += strafe;
} else {
if (this._y >= _root.horndroid._y && chasing == true && hitting == false && fleeing == false) {
this._y -= strafe;
}
}
if (Key.isDown(65) && gettingfucked == false && teasing == true) {
this.gotoAndStop('fucked');
}
if (Key.isDown(68) && gettingfucked == true && gettingfuckedfast == false) {
this.gotoAndStop('fuckedfast');
}
if (Key.isDown(87) && gettingfuckedturbo == false && gettingfuckedfast == true) {
this.gotoAndStop('fuckedturbo');
}
if (Key.isDown(83) && gettingfuckedturbo == true && teasing == false && cumming == false) {
this.gotoAndStop('tease');
}
if (Key.isDown(9) && gettingfuckedturbo == true && cumming == false) {
this.gotoAndPlay('cum');
}
if (gettingfucked == true) {
_root.horndroid.sp += _root.horndroid.spmodifier;
}
if (gettingfuckedfast == true) {
_root.horndroid.sp -= _root.horndroid.spmodifierfast;
}
if (gettingfuckedturbo == true) {
_root.horndroid.sp -= _root.horndroid.spmodifierturbo;
}
if (teasing == true) {
_root.horndroid.sp += _root.horndroid.spmodifierfast;
}
if (cumming == true) {
_root.horndroid.hp += _root.horndroid.hpmodifier;
}
if (sporespent == true) {
_root.horndroid.hp -= 100;
}
}
}
movieClip 757 {
}
movieClip 759 {
}
// unknown tag 88 length 65
movieClip 763 {
}
movieClip 765 {
}
movieClip 767 {
}
movieClip 768 {
}
movieClip 770 {
}
movieClip 772 {
}
movieClip 774 {
}
movieClip 776 {
}
movieClip 778 {
}
movieClip 780 {
}
movieClip 782 {
}
movieClip 784 {
}
movieClip 786 {
}
movieClip 787 {
}
movieClip 789 {
}
movieClip 791 {
}
movieClip 793 {
}
movieClip 794 {
frame 60 {
gotoAndPlay(1);
}
}
movieClip 795 {
}
movieClip 797 {
}
movieClip 800 {
}
movieClip 801 {
}
movieClip 803 {
}
movieClip 804 {
}
movieClip 805 {
}
movieClip 807 {
}
movieClip 809 {
}
movieClip 810 {
}
movieClip 811 {
}
movieClip 813 {
}
movieClip 814 {
}
movieClip 816 {
}
movieClip 817 {
}
movieClip 819 {
}
movieClip 821 {
}
movieClip 823 {
}
movieClip 825 {
}
movieClip 827 {
}
movieClip 829 {
}
movieClip 831 {
}
movieClip 833 {
}
movieClip 835 {
}
movieClip 836 {
frame 30 {
gotoAndPlay(1);
}
}
movieClip 838 {
}
movieClip 840 {
}
movieClip 842 {
}
movieClip 844 {
}
movieClip 845 {
frame 20 {
gotoAndPlay(1);
}
}
movieClip 847 {
}
movieClip 848 {
frame 10 {
gotoAndPlay(1);
}
}
movieClip 850 {
}
movieClip 851 {
frame 40 {
gotoAndPlay(1);
}
}
movieClip 860 {
}
movieClip 861 {
frame 48 {
gotoAndPlay(1);
}
}
movieClip 862 {
}
movieClip 863 {
frame 1 {
stop();
chasing = false;
hitting = false;
fleeing = false;
sporespent = false;
}
frame 5 {
stop();
chasing = true;
hitting = false;
}
frame 10 {
hitting = true;
chasing = false;
}
frame 25 {
hitting = false;
chasing = false;
}
frame 52 {
gotoAndPlay('Chase');
}
frame 53 {
sporespent = true;
chasing = false;
hitting = false;
}
frame 59 {
stop();
sporespent = false;
}
frame 60 {
stop();
gettingfucked = true;
gettingfuckedfast = false;
gettingfuckedturbo = false;
teasing = false;
cumming = false;
}
frame 61 {
stop();
gettingfucked = false;
gettingfuckedfast = true;
gettingfuckedturbo = false;
teasing = false;
cumming = false;
}
frame 62 {
stop();
gettingfucked = false;
gettingfuckedfast = false;
gettingfuckedturbo = true;
teasing = false;
cumming = false;
}
frame 63 {
stop();
gettingfucked = false;
gettingfuckedfast = false;
gettingfuckedturbo = false;
teasing = true;
cumming = false;
}
frame 64 {
gettingfucked = false;
gettingfuckedfast = false;
gettingfuckedturbo = false;
teasing = false;
cumming = true;
}
frame 107 {
gettingfucked = false;
gettingfuckedfast = false;
gettingfuckedturbo = false;
teasing = false;
cumming = false;
}
frame 108 {
fleeing = true;
}
frame 165 {
stop();
}
}
instance policewoman of movieClip 863 {
onClipEvent (load) {
speed = 6;
strafe = 1;
chasing = false;
gettingfucked = false;
}
onClipEvent (enterFrame) {
if (this._x <= _root.horndroid._x && chasing == true && hitting == false && fleeing == false) {
this._x += speed;
this._xscale = 85;
} else {
if (this._x >= _root.horndroid._x && chasing == true && hitting == false && fleeing == false) {
this._x -= speed;
this._xscale = -85;
}
}
if (this._y <= _root.horndroid._y && chasing == true && hitting == false && fleeing == false) {
this._y += strafe;
} else {
if (this._y >= _root.horndroid._y && chasing == true && hitting == false && fleeing == false) {
this._y -= strafe;
}
}
if (Key.isDown(65) && gettingfucked == false && teasing == true) {
this.gotoAndStop('fucked');
}
if (Key.isDown(68) && gettingfucked == true && gettingfuckedfast == false) {
this.gotoAndStop('fuckedfast');
}
if (Key.isDown(87) && gettingfuckedturbo == false && gettingfuckedfast == true) {
this.gotoAndStop('fuckedturbo');
}
if (Key.isDown(83) && gettingfuckedturbo == true && teasing == false && cumming == false) {
this.gotoAndStop('tease');
}
if (Key.isDown(9) && gettingfuckedturbo == true && cumming == false) {
this.gotoAndPlay('cum');
}
if (gettingfucked == true) {
_root.horndroid.sp += _root.horndroid.spmodifier;
}
if (gettingfuckedfast == true) {
_root.horndroid.sp -= _root.horndroid.spmodifierfast;
}
if (gettingfuckedturbo == true) {
_root.horndroid.sp -= _root.horndroid.spmodifierturbo;
}
if (teasing == true) {
_root.horndroid.sp += _root.horndroid.spmodifierfast;
}
if (cumming == true) {
_root.horndroid.hp += _root.horndroid.hpmodifier;
}
if (sporespent == true) {
_root.horndroid.hp -= 100;
}
}
}
movieClip 866 {
}
movieClip 868 {
}
movieClip 869 {
frame 1 {
stop();
talking = false;
}
instance of movieClip 240 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.horndroid.checkfuck) && _root.talker.talking == false && _root.policewoman._currentframe < 2 && _root.horndroid.sandra == false) {
tellTarget ('_parent') {
gotoAndPlay('message');
}
}
if (this.hitTest(_root.horndroid.checkfuck) && _root.talker.talking == false && _root.policewoman._currentframe < 2 && _root.horndroid.sandra == true) {
tellTarget ('_parent') {
gotoAndPlay('messageps');
}
}
}
}
frame 5 {
talking = true;
}
frame 204 {
gotoAndPlay(1);
}
frame 400 {
gotoAndPlay(1);
}
}
movieClip 871 {
}
movieClip 873 {
}
movieClip 876 {
}
movieClip 878 {
}
movieClip 880 {
}
movieClip 882 {
}
movieClip 885 {
}
movieClip 887 {
}
movieClip 889 {
}
movieClip 891 {
}
movieClip 893 {
}
movieClip 895 {
}
movieClip 897 {
}
movieClip 900 {
}
movieClip 902 {
}
movieClip 904 {
}
movieClip 905 {
}
movieClip 907 {
}
movieClip 909 {
}
movieClip 911 {
}
movieClip 913 {
}
movieClip 915 {
}
movieClip 917 {
}
movieClip 918 {
}
movieClip 919 {
}
movieClip 920 {
}
movieClip 922 {
}
movieClip 924 {
}
movieClip 926 {
}
movieClip 930 {
}
movieClip 933 {
}
movieClip 935 {
}
movieClip 936 {
}
movieClip 938 {
}
movieClip 939 {
}
movieClip 940 {
}
movieClip 941 {
}
movieClip 942 {
}
movieClip 944 {
}
movieClip 946 {
}
movieClip 948 {
}
movieClip 950 {
}
movieClip 951 {
}
movieClip 953 {
}
movieClip 955 {
}
movieClip 957 {
}
movieClip 958 {
}
movieClip 960 {
}
movieClip 963 {
}
movieClip 964 {
}
movieClip 966 {
}
movieClip 967 {
frame 10 {
gotoAndPlay(1);
}
}
movieClip 968 {
frame 10 {
gotoAndPlay(1);
}
}
movieClip 969 {
}
movieClip 971 {
}
movieClip 973 {
}
movieClip 975 {
}
movieClip 977 {
}
movieClip 979 {
}
movieClip 982 {
}
movieClip 984 {
}
movieClip 985 {
frame 40 {
gotoAndPlay(1);
}
}
movieClip 986 {
frame 15 {
gotoAndPlay(1);
}
}
movieClip 987 {
}
movieClip 989 {
}
movieClip 991 {
}
movieClip 992 {
}
movieClip 994 {
}
movieClip 995 {
}
movieClip 997 {
}
movieClip 998 {
frame 15 {
gotoAndPlay(1);
}
}
movieClip 1000 {
frame 10 {
gotoAndPlay(1);
}
}
movieClip 1002 {
frame 7 {
gotoAndPlay(1);
}
}
movieClip 1004 {
frame 31 {
gotoAndPlay(1);
}
}
movieClip 1006 {
}
movieClip 1008 {
}
movieClip 1009 {
frame 20 {
gotoAndPlay(1);
}
}
movieClip 1010 {
frame 14 {
gotoAndPlay(1);
}
}
movieClip 1011 {
frame 10 {
gotoAndPlay(1);
}
}
movieClip 1012 {
frame 30 {
gotoAndPlay(1);
}
}
movieClip 1013 {
frame 10 {
gotoAndPlay(1);
}
}
movieClip 1014 {
frame 6 {
gotoAndPlay(1);
}
}
movieClip 1016 {
}
movieClip 1017 {
frame 24 {
gotoAndPlay(1);
}
}
movieClip 1018 {
frame 15 {
gotoAndPlay(1);
}
}
movieClip 1020 {
frame 8 {
gotoAndPlay(1);
}
}
movieClip 1022 {
frame 40 {
gotoAndPlay(1);
}
}
movieClip 1032 {
}
movieClip 1033 {
frame 40 {
gotoAndPlay(1);
}
}
movieClip 1042 {
}
movieClip 1043 {
frame 40 {
gotoAndPlay(1);
}
}
movieClip 1045 {
}
movieClip 1058 {
}
movieClip 1059 {
frame 40 {
gotoAndPlay(1);
}
}
movieClip 1060 {
frame 40 {
gotoAndPlay(1);
}
}
movieClip 1061 {
frame 41 {
gotoAndPlay(1);
}
}
movieClip 1062 {
frame 41 {
gotoAndPlay(1);
}
}
movieClip 1073 {
}
movieClip 1074 {
}
movieClip 1075 {
}
movieClip 1076 {
frame 1 {
stop();
gettingfucked = false;
gettingfuckedfast = false;
gettingfuckedturbo = false;
teasing = false;
cumming = false;
suckingcock = false;
suckingcockfast = false;
suckingcockturbo = false;
mouthtease = false;
mouthcumming = false;
blewjob = false;
sporespent = false;
}
frame 2 {
sporespent = true;
}
frame 5 {
stop();
sporespent = false;
}
frame 6 {
stop();
cumming = false;
mouthcumming = false;
}
instance pussyfuck of movieClip 942 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.horndroid.grab)) {
tellTarget ('_parent') {
gotoAndPlay('fucked');
}
}
}
}
frame 7 {
stop();
cumming = false;
mouthcumming = false;
blewjob = true;
}
instance ff2 of movieClip 942 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.horndroid.grab)) {
tellTarget ('_parent') {
gotoAndPlay('fucktitties');
}
}
}
}
frame 8 {
stop();
a1 = true;
a2 = false;
a3 = false;
a4 = false;
ac = false;
}
frame 9 {
stop();
a1 = false;
a2 = true;
a3 = false;
a4 = false;
ac = false;
}
frame 10 {
stop();
a1 = false;
a2 = false;
a3 = true;
a4 = false;
ac = false;
}
frame 11 {
stop();
a1 = false;
a2 = false;
a3 = false;
a4 = true;
ac = false;
}
frame 12 {
stop();
gettingfucked = true;
gettingfuckedfast = false;
gettingfuckedturbo = false;
teasing = false;
cumming = false;
a4 = false;
}
frame 13 {
stop();
gettingfucked = false;
gettingfuckedfast = true;
gettingfuckedturbo = false;
teasing = false;
cumming = false;
}
frame 14 {
stop();
gettingfucked = false;
gettingfuckedfast = false;
gettingfuckedturbo = true;
teasing = false;
cumming = false;
}
frame 15 {
stop();
gettingfucked = false;
gettingfuckedfast = false;
gettingfuckedturbo = false;
teasing = true;
cumming = false;
}
frame 16 {
stop();
suckingcock = true;
suckingcockfast = false;
suckingcockturbo = false;
mouthtease = false;
mouthcumming = false;
}
frame 17 {
stop();
suckingcock = false;
suckingcockfast = true;
suckingcockturbo = false;
mouthtease = false;
mouthcumming = false;
}
frame 18 {
stop();
suckingcock = false;
suckingcockfast = false;
suckingcockturbo = true;
mouthtease = false;
mouthcumming = false;
}
frame 19 {
stop();
suckingcock = false;
suckingcockfast = false;
suckingcockturbo = false;
mouthtease = true;
mouthcumming = false;
}
frame 20 {
stop();
fuckingtits = true;
fuckingtitsfast = false;
fuckingtitsturbo = false;
teasetits = false;
cumontits = false;
}
frame 21 {
stop();
fuckingtits = false;
fuckingtitsfast = true;
fuckingtitsturbo = false;
teasetits = false;
cumontits = false;
}
frame 22 {
stop();
fuckingtits = false;
fuckingtitsfast = false;
fuckingtitsturbo = true;
teasetits = false;
cumontits = false;
}
frame 23 {
stop();
fuckingtits = false;
fuckingtitsfast = false;
fuckingtitsturbo = false;
teasetits = true;
cumontits = false;
}
frame 24 {
stop();
fuckingass = true;
fuckingassfast = false;
fuckingassturbo = false;
teaseass = false;
cumonass = false;
}
frame 25 {
stop();
fuckingass = false;
fuckingassfast = true;
fuckingassturbo = false;
teaseass = false;
cumonass = false;
}
frame 26 {
stop();
fuckingass = false;
fuckingassfast = false;
fuckingassturbo = true;
teaseass = false;
cumonass = false;
}
frame 27 {
stop();
fuckingass = false;
fuckingassfast = false;
fuckingassturbo = false;
teaseass = true;
cumonass = false;
}
frame 28 {
gettingfucked = false;
gettingfuckedfast = false;
gettingfuckedturbo = false;
teasing = false;
cumming = true;
}
frame 75 {
if (blewjob == false) {
gotoAndStop('fuckedmilf');
}
if (blewjob == true) {
gotoAndStop('mouthfuckedmilf');
}
}
frame 129 {
stop();
}
frame 130 {
suckingcock = false;
suckingcockfast = false;
suckingcockturbo = false;
mouthtease = false;
mouthcumming = true;
}
frame 179 {
mouthcumming = false;
gotoAndPlay('mouthfuckedmilf');
}
frame 180 {
fuckingtits = false;
fuckingtitsfast = false;
fuckingtitsturbo = false;
teasetits = false;
cumontits = true;
}
frame 232 {
cumontits = false;
gotoAndPlay('mouthfuckedmilf');
}
frame 233 {
fuckingass = false;
fuckingassfast = false;
fuckingassturbo = false;
teaseass = false;
cumonass = true;
}
frame 323 {
cumonass = false;
gotoAndPlay('mouthfuckedmilf');
}
}
movieClip 1077 {
}
movieClip 1079 {
}
movieClip 1081 {
}
movieClip 1083 {
}
movieClip 1085 {
}
movieClip 1087 {
}
movieClip 1089 {
}
movieClip 1091 {
}
movieClip 1093 {
}
movieClip 1095 {
}
movieClip 1097 {
}
movieClip 1099 {
}
movieClip 1101 {
}
movieClip 1104 {
}
movieClip 1105 {
}
movieClip 1107 {
}
movieClip 1109 {
}
movieClip 1110 {
}
movieClip 1111 {
}
movieClip 1113 {
}
movieClip 1115 {
}
movieClip 1116 {
}
movieClip 1117 {
}
movieClip 1119 {
}
movieClip 1120 {
}
movieClip 1122 {
}
movieClip 1123 {
}
movieClip 1125 {
}
movieClip 1127 {
}
movieClip 1129 {
}
movieClip 1131 {
}
movieClip 1133 {
}
movieClip 1135 {
}
movieClip 1137 {
}
movieClip 1139 {
}
movieClip 1141 {
}
movieClip 1144 {
}
movieClip 1145 {
}
movieClip 1146 {
frame 30 {
gotoAndPlay(1);
}
}
movieClip 1148 {
}
movieClip 1150 {
}
movieClip 1152 {
}
movieClip 1153 {
frame 20 {
gotoAndPlay(1);
}
}
movieClip 1155 {
}
movieClip 1158 {
}
movieClip 1159 {
}
movieClip 1160 {
frame 10 {
gotoAndPlay(1);
}
}
movieClip 1162 {
}
movieClip 1163 {
frame 40 {
gotoAndPlay(1);
}
}
movieClip 1172 {
}
movieClip 1173 {
frame 48 {
gotoAndPlay(1);
}
}
movieClip 1175 {
}
movieClip 1176 {
}
movieClip 1177 {
frame 1 {
stop();
chasing = false;
hitting = false;
fleeing = false;
sporespent = false;
}
frame 5 {
stop();
chasing = true;
hitting = false;
}
frame 10 {
hitting = true;
chasing = false;
}
frame 25 {
hitting = false;
chasing = false;
}
frame 52 {
gotoAndPlay('Chase');
}
frame 53 {
sporespent = true;
chasing = false;
hitting = false;
}
frame 59 {
stop();
sporespent = false;
}
frame 60 {
stop();
gettingfucked = true;
gettingfuckedfast = false;
gettingfuckedturbo = false;
teasing = false;
cumming = false;
}
frame 61 {
stop();
gettingfucked = false;
gettingfuckedfast = true;
gettingfuckedturbo = false;
teasing = false;
cumming = false;
}
frame 62 {
stop();
gettingfucked = false;
gettingfuckedfast = false;
gettingfuckedturbo = true;
teasing = false;
cumming = false;
}
frame 63 {
stop();
gettingfucked = false;
gettingfuckedfast = false;
gettingfuckedturbo = false;
teasing = true;
cumming = false;
}
frame 64 {
gettingfucked = false;
gettingfuckedfast = false;
gettingfuckedturbo = false;
teasing = false;
cumming = true;
}
frame 107 {
gettingfucked = false;
gettingfuckedfast = false;
gettingfuckedturbo = false;
teasing = false;
cumming = false;
}
frame 108 {
fleeing = true;
}
frame 165 {
stop();
}
}
instance policewoman of movieClip 1177 {
onClipEvent (load) {
chasing = false;
gettingfucked = false;
}
}
movieClip 1178 {
}
movieClip 1180 {
}
movieClip 1182 {
}
movieClip 1184 {
}
movieClip 1186 {
}
movieClip 1188 {
}
movieClip 1190 {
}
movieClip 1192 {
}
movieClip 1194 {
}
movieClip 1196 {
}
movieClip 1198 {
}
movieClip 1200 {
}
movieClip 1202 {
}
movieClip 1205 {
}
movieClip 1206 {
}
movieClip 1208 {
}
movieClip 1209 {
}
movieClip 1210 {
}
movieClip 1211 {
}
movieClip 1213 {
}
movieClip 1215 {
}
movieClip 1216 {
}
movieClip 1217 {
}
movieClip 1219 {
}
movieClip 1220 {
}
movieClip 1222 {
}
movieClip 1223 {
}
movieClip 1225 {
}
movieClip 1227 {
}
movieClip 1229 {
}
movieClip 1231 {
}
movieClip 1233 {
}
movieClip 1234 {
}
movieClip 1236 {
}
movieClip 1238 {
}
movieClip 1240 {
}
movieClip 1243 {
}
movieClip 1244 {
}
movieClip 1245 {
frame 30 {
gotoAndPlay(1);
}
}
movieClip 1247 {
}
movieClip 1249 {
}
movieClip 1251 {
}
movieClip 1252 {
frame 20 {
gotoAndPlay(1);
}
}
movieClip 1254 {
}
movieClip 1257 {
}
movieClip 1258 {
}
movieClip 1259 {
frame 10 {
gotoAndPlay(1);
}
}
movieClip 1261 {
}
movieClip 1262 {
frame 40 {
gotoAndPlay(1);
}
}
movieClip 1271 {
}
movieClip 1272 {
frame 48 {
gotoAndPlay(1);
}
}
movieClip 1274 {
}
movieClip 1275 {
}
movieClip 1276 {
frame 1 {
stop();
chasing = false;
hitting = false;
fleeing = false;
sporespent = false;
}
frame 5 {
stop();
chasing = true;
hitting = false;
}
frame 10 {
hitting = true;
chasing = false;
}
frame 25 {
hitting = false;
chasing = false;
}
frame 52 {
gotoAndPlay('Chase');
}
frame 53 {
sporespent = true;
chasing = false;
hitting = false;
}
frame 59 {
stop();
sporespent = false;
}
frame 60 {
stop();
gettingfucked = true;
gettingfuckedfast = false;
gettingfuckedturbo = false;
teasing = false;
cumming = false;
}
frame 61 {
stop();
gettingfucked = false;
gettingfuckedfast = true;
gettingfuckedturbo = false;
teasing = false;
cumming = false;
}
frame 62 {
stop();
gettingfucked = false;
gettingfuckedfast = false;
gettingfuckedturbo = true;
teasing = false;
cumming = false;
}
frame 63 {
stop();
gettingfucked = false;
gettingfuckedfast = false;
gettingfuckedturbo = false;
teasing = true;
cumming = false;
}
frame 64 {
gettingfucked = false;
gettingfuckedfast = false;
gettingfuckedturbo = false;
teasing = false;
cumming = true;
}
frame 107 {
gettingfucked = false;
gettingfuckedfast = false;
gettingfuckedturbo = false;
teasing = false;
cumming = false;
}
frame 108 {
fleeing = true;
}
frame 165 {
stop();
}
}
instance policewoman of movieClip 1276 {
onClipEvent (load) {
chasing = false;
gettingfucked = false;
}
}
movieClip 1278 {
}
movieClip 1280 {
}
movieClip 1281 {
frame 1 {
stop();
talking = false;
}
instance of movieClip 240 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.horndroid.checkfuck) && _root.talker.talking == false && _root.teen._currentframe < 2 && _root.horndroid.lisa == false) {
tellTarget ('_parent') {
gotoAndPlay('message');
}
}
if (this.hitTest(_root.horndroid.checkfuck) && _root.talker.talking == false && _root.teen._currentframe < 2 && _root.horndroid.lisa == true) {
tellTarget ('_parent') {
gotoAndPlay('messageps');
}
}
}
}
frame 5 {
talking = true;
}
frame 204 {
gotoAndPlay(1);
}
frame 400 {
gotoAndPlay(1);
}
}
movieClip 1285 {
}
movieClip 1286 {
frame 109 {
stop();
}
}
movieClip 1287 {
frame 1 {
stop();
}
instance of movieClip 733 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.horndroid.grab) && _root.horndroid.orgypass == false) {
_root.horndroid.orgypass = true;
tellTarget ('_parent') {
gotoAndStop('up');
}
}
}
}
frame 2 {
stop();
}
}
movieClip 1289 {
}
movieClip 1291 {
}
movieClip 1293 {
}
movieClip 1297 {
}
movieClip 1299 {
}
movieClip 1301 {
}
movieClip 1303 {
}
movieClip 1305 {
}
movieClip 1307 {
}
movieClip 1309 {
}
movieClip 1311 {
}
movieClip 1313 {
}
movieClip 1315 {
}
movieClip 1317 {
}
movieClip 1319 {
}
movieClip 1321 {
}
movieClip 1323 {
}
movieClip 1325 {
}
movieClip 1327 {
}
movieClip 1328 {
}
movieClip 1330 {
}
movieClip 1332 {
}
movieClip 1333 {
}
movieClip 1334 {
}
movieClip 1336 {
}
movieClip 1338 {
}
movieClip 1340 {
}
movieClip 1341 {
}
movieClip 1343 {
}
movieClip 1344 {
}
movieClip 1345 {
frame 80 {
gotoAndPlay(1);
}
}
movieClip 1347 {
}
movieClip 1349 {
}
movieClip 1351 {
}
movieClip 1353 {
}
movieClip 1355 {
}
movieClip 1357 {
}
movieClip 1359 {
}
movieClip 1360 {
}
movieClip 1362 {
}
movieClip 1363 {
}
movieClip 1364 {
}
movieClip 1365 {
}
movieClip 1367 {
}
movieClip 1369 {
}
movieClip 1371 {
}
movieClip 1372 {
}
movieClip 1374 {
}
movieClip 1375 {
}
movieClip 1376 {
}
movieClip 1377 {
}
movieClip 1379 {
}
movieClip 1381 {
}
movieClip 1382 {
}
movieClip 1384 {
}
movieClip 1385 {
frame 20 {
gotoAndPlay(1);
}
}
movieClip 1386 {
frame 15 {
gotoAndPlay(1);
}
}
movieClip 1387 {
frame 11 {
gotoAndPlay(1);
}
}
movieClip 1388 {
}
movieClip 1389 {
frame 40 {
gotoAndPlay(1);
}
}
movieClip 1390 {
frame 30 {
gotoAndPlay(1);
}
}
movieClip 1391 {
}
movieClip 1392 {
frame 20 {
gotoAndPlay(1);
}
}
movieClip 1393 {
frame 10 {
gotoAndPlay(1);
}
}
movieClip 1395 {
}
movieClip 1397 {
}
movieClip 1398 {
}
movieClip 1399 {
frame 20 {
gotoAndPlay(1);
}
}
movieClip 1400 {
frame 14 {
gotoAndPlay(1);
}
}
movieClip 1401 {
frame 8 {
gotoAndPlay(1);
}
}
movieClip 1402 {
frame 40 {
gotoAndPlay(1);
}
}
movieClip 1403 {
frame 30 {
gotoAndPlay(1);
}
}
movieClip 1404 {
frame 20 {
gotoAndPlay(1);
}
}
movieClip 1405 {
frame 10 {
gotoAndPlay(1);
}
}
movieClip 1406 {
frame 40 {
gotoAndPlay(1);
}
}
movieClip 1407 {
frame 30 {
gotoAndPlay(1);
}
}
movieClip 1408 {
frame 15 {
gotoAndPlay(1);
}
}
movieClip 1409 {
frame 8 {
gotoAndPlay(1);
}
}
movieClip 1410 {
frame 40 {
gotoAndPlay(1);
}
}
movieClip 1421 {
}
movieClip 1422 {
frame 80 {
gotoAndPlay(1);
}
}
movieClip 1423 {
}
movieClip 1424 {
}
movieClip 1425 {
}
movieClip 1426 {
frame 40 {
gotoAndPlay(1);
}
}
movieClip 1427 {
frame 40 {
gotoAndPlay(1);
}
}
movieClip 1428 {
frame 75 {
gotoAndPlay(1);
}
}
movieClip 1429 {
frame 1 {
stop();
gettingfucked = false;
gettingfuckedfast = false;
gettingfuckedturbo = false;
teasing = false;
cumming = false;
suckingcock = false;
suckingcockfast = false;
suckingcockturbo = false;
mouthtease = false;
mouthcumming = false;
blewjob = false;
sporespent = false;
}
frame 2 {
sporespent = true;
}
frame 5 {
stop();
sporespent = false;
}
frame 6 {
stop();
cumming = false;
mouthcumming = false;
}
instance pussyfuck of movieClip 1364 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.horndroid.grab)) {
tellTarget ('_parent') {
gotoAndPlay('fucked');
}
}
}
}
frame 7 {
stop();
cumming = false;
mouthcumming = false;
blewjob = true;
}
instance ff2 of movieClip 1364 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.horndroid.grab)) {
tellTarget ('_parent') {
gotoAndPlay('fucktitties');
}
}
}
}
frame 8 {
stop();
a1 = true;
a2 = false;
a3 = false;
a4 = false;
ac = false;
}
frame 9 {
stop();
a1 = false;
a2 = true;
a3 = false;
a4 = false;
ac = false;
}
frame 10 {
stop();
a1 = false;
a2 = false;
a3 = true;
a4 = false;
ac = false;
}
frame 11 {
stop();
a1 = false;
a2 = false;
a3 = false;
a4 = true;
ac = false;
}
frame 12 {
stop();
gettingfucked = true;
gettingfuckedfast = false;
gettingfuckedturbo = false;
teasing = false;
cumming = false;
a4 = false;
}
frame 13 {
stop();
gettingfucked = false;
gettingfuckedfast = true;
gettingfuckedturbo = false;
teasing = false;
cumming = false;
}
frame 14 {
stop();
gettingfucked = false;
gettingfuckedfast = false;
gettingfuckedturbo = true;
teasing = false;
cumming = false;
}
frame 15 {
stop();
gettingfucked = false;
gettingfuckedfast = false;
gettingfuckedturbo = false;
teasing = true;
cumming = false;
}
frame 16 {
stop();
suckingcock = true;
suckingcockfast = false;
suckingcockturbo = false;
mouthtease = false;
mouthcumming = false;
}
frame 17 {
stop();
suckingcock = false;
suckingcockfast = true;
suckingcockturbo = false;
mouthtease = false;
mouthcumming = false;
}
frame 18 {
stop();
suckingcock = false;
suckingcockfast = false;
suckingcockturbo = true;
mouthtease = false;
mouthcumming = false;
}
frame 19 {
stop();
suckingcock = false;
suckingcockfast = false;
suckingcockturbo = false;
mouthtease = true;
mouthcumming = false;
}
frame 20 {
stop();
fuckingtits = true;
fuckingtitsfast = false;
fuckingtitsturbo = false;
teasetits = false;
cumontits = false;
}
frame 21 {
stop();
fuckingtits = false;
fuckingtitsfast = true;
fuckingtitsturbo = false;
teasetits = false;
cumontits = false;
}
frame 22 {
stop();
fuckingtits = false;
fuckingtitsfast = false;
fuckingtitsturbo = true;
teasetits = false;
cumontits = false;
}
frame 23 {
stop();
fuckingtits = false;
fuckingtitsfast = false;
fuckingtitsturbo = false;
teasetits = true;
cumontits = false;
}
frame 24 {
stop();
fuckingass = true;
fuckingassfast = false;
fuckingassturbo = false;
teaseass = false;
cumonass = false;
}
frame 25 {
stop();
fuckingass = false;
fuckingassfast = true;
fuckingassturbo = false;
teaseass = false;
cumonass = false;
}
frame 26 {
stop();
fuckingass = false;
fuckingassfast = false;
fuckingassturbo = true;
teaseass = false;
cumonass = false;
}
frame 27 {
stop();
fuckingass = false;
fuckingassfast = false;
fuckingassturbo = false;
teaseass = true;
cumonass = false;
}
frame 28 {
gettingfucked = false;
gettingfuckedfast = false;
gettingfuckedturbo = false;
teasing = false;
cumming = true;
}
frame 116 {
if (blewjob == false) {
gotoAndStop('fuckedmilf');
}
if (blewjob == true) {
gotoAndStop('mouthfuckedmilf');
}
}
frame 170 {
gotoAndPlay(1);
}
frame 171 {
suckingcock = false;
suckingcockfast = false;
suckingcockturbo = false;
mouthtease = false;
mouthcumming = true;
}
frame 220 {
mouthcumming = false;
gotoAndPlay('mouthfuckedmilf');
}
frame 221 {
fuckingtits = false;
fuckingtitsfast = false;
fuckingtitsturbo = false;
teasetits = false;
cumontits = true;
}
frame 273 {
cumontits = false;
gotoAndPlay('mouthfuckedmilf');
}
frame 274 {
fuckingass = false;
fuckingassfast = false;
fuckingassturbo = false;
teaseass = false;
cumonass = true;
}
frame 364 {
cumonass = false;
gotoAndPlay('mouthfuckedmilf');
}
}
movieClip 1432 {
}
movieClip 1433 {
}
movieClip 1435 {
}
movieClip 1437 {
}
movieClip 1438 {
frame 1 {
stop();
talking = false;
}
instance of movieClip 240 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.horndroid.checkfuck) && _root.talker.talking == false && _root.large._currentframe < 2 && _root.horndroid.largeshanikwa == false) {
tellTarget ('_parent') {
gotoAndPlay('message');
}
}
if (this.hitTest(_root.horndroid.checkfuck) && _root.talker.talking == false && _root.large._currentframe < 2 && _root.horndroid.largeshanikwa == true) {
tellTarget ('_parent') {
gotoAndPlay('messageps');
}
}
}
}
frame 5 {
talking = true;
}
frame 204 {
gotoAndPlay(1);
}
frame 400 {
gotoAndPlay(1);
}
}
movieClip 1440 {
}
movieClip 1442 {
}
movieClip 1444 {
}
movieClip 1446 {
}
movieClip 1448 {
}
movieClip 1450 {
}
movieClip 1452 {
}
movieClip 1454 {
}
movieClip 1456 {
}
movieClip 1459 {
}
movieClip 1461 {
}
movieClip 1463 {
}
movieClip 1464 {
}
movieClip 1466 {
}
movieClip 1468 {
}
movieClip 1470 {
}
movieClip 1472 {
}
movieClip 1473 {
}
movieClip 1475 {
}
movieClip 1477 {
}
movieClip 1478 {
}
movieClip 1480 {
}
movieClip 1482 {
}
movieClip 1483 {
}
movieClip 1485 {
}
movieClip 1487 {
}
movieClip 1490 {
}
movieClip 1492 {
}
movieClip 1493 {
}
movieClip 1495 {
}
movieClip 1496 {
}
movieClip 1500 {
}
movieClip 1501 {
}
movieClip 1502 {
}
movieClip 1503 {
}
movieClip 1505 {
}
movieClip 1506 {
}
movieClip 1507 {
}
movieClip 1509 {
}
movieClip 1511 {
}
movieClip 1513 {
}
movieClip 1515 {
}
movieClip 1517 {
}
movieClip 1518 {
frame 20 {
gotoAndPlay(1);
}
}
movieClip 1519 {
frame 20 {
gotoAndPlay(1);
}
}
movieClip 1521 {
}
movieClip 1522 {
frame 20 {
gotoAndPlay(1);
}
}
movieClip 1523 {
frame 20 {
gotoAndPlay(1);
}
}
movieClip 1524 {
}
movieClip 1526 {
}
movieClip 1528 {
}
movieClip 1530 {
}
movieClip 1532 {
}
movieClip 1534 {
}
movieClip 1536 {
}
movieClip 1537 {
}
movieClip 1539 {
}
movieClip 1541 {
}
movieClip 1542 {
}
movieClip 1544 {
}
movieClip 1545 {
}
movieClip 1546 {
frame 15 {
gotoAndPlay(1);
}
}
movieClip 1547 {
frame 10 {
gotoAndPlay(1);
}
}
movieClip 1548 {
frame 7 {
gotoAndPlay(1);
}
}
movieClip 1549 {
frame 31 {
gotoAndPlay(1);
}
}
movieClip 1551 {
}
movieClip 1552 {
frame 20 {
gotoAndPlay(1);
}
}
movieClip 1553 {
frame 14 {
gotoAndPlay(1);
}
}
movieClip 1554 {
frame 10 {
gotoAndPlay(1);
}
}
movieClip 1556 {
}
movieClip 1557 {
frame 30 {
gotoAndPlay(1);
}
}
movieClip 1559 {
}
movieClip 1561 {
}
movieClip 1563 {
}
movieClip 1565 {
}
movieClip 1567 {
}
movieClip 1569 {
}
movieClip 1572 {
}
movieClip 1574 {
}
movieClip 1576 {
}
movieClip 1578 {
}
movieClip 1580 {
}
movieClip 1581 {
frame 15 {
gotoAndPlay(1);
}
}
movieClip 1583 {
}
movieClip 1584 {
frame 10 {
gotoAndPlay(1);
}
}
movieClip 1585 {
frame 10 {
gotoAndPlay(1);
}
}
movieClip 1586 {
frame 16 {
gotoAndPlay(1);
}
}
movieClip 1588 {
}
movieClip 1590 {
}
movieClip 1591 {
frame 24 {
gotoAndPlay(1);
}
}
movieClip 1592 {
frame 15 {
gotoAndPlay(1);
}
}
movieClip 1593 {
frame 8 {
gotoAndPlay(1);
}
}
movieClip 1595 {
}
movieClip 1596 {
frame 30 {
gotoAndPlay(1);
}
}
movieClip 1605 {
}
movieClip 1606 {
frame 40 {
gotoAndPlay(1);
}
}
movieClip 1615 {
}
movieClip 1616 {
frame 40 {
gotoAndPlay(1);
}
}
movieClip 1619 {
}
movieClip 1630 {
}
movieClip 1631 {
frame 40 {
gotoAndPlay(1);
}
}
movieClip 1632 {
frame 40 {
gotoAndPlay(1);
}
}
movieClip 1633 {
frame 41 {
gotoAndPlay(1);
}
}
movieClip 1634 {
frame 41 {
gotoAndPlay(1);
}
}
movieClip 1643 {
}
movieClip 1644 {
}
movieClip 1645 {
}
movieClip 1646 {
frame 1 {
stop();
gettingfucked = false;
gettingfuckedfast = false;
gettingfuckedturbo = false;
teasing = false;
cumming = false;
suckingcock = false;
suckingcockfast = false;
suckingcockturbo = false;
mouthtease = false;
mouthcumming = false;
blewjob = false;
sporespent = false;
}
frame 2 {
sporespent = true;
}
frame 5 {
stop();
sporespent = false;
}
frame 6 {
stop();
cumming = false;
mouthcumming = false;
}
instance pussyfuck of movieClip 304 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.horndroid.grab)) {
tellTarget ('_parent') {
gotoAndPlay('fucked');
}
}
}
}
frame 7 {
stop();
cumming = false;
mouthcumming = false;
blewjob = true;
}
instance ff2 of movieClip 304 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.horndroid.grab)) {
tellTarget ('_parent') {
gotoAndPlay('fucktitties');
}
}
}
}
frame 8 {
stop();
a1 = true;
a2 = false;
a3 = false;
a4 = false;
ac = false;
}
frame 9 {
stop();
a1 = false;
a2 = true;
a3 = false;
a4 = false;
ac = false;
}
frame 10 {
stop();
a1 = false;
a2 = false;
a3 = true;
a4 = false;
ac = false;
}
frame 11 {
stop();
a1 = false;
a2 = false;
a3 = false;
a4 = true;
ac = false;
}
frame 12 {
stop();
gettingfucked = true;
gettingfuckedfast = false;
gettingfuckedturbo = false;
teasing = false;
cumming = false;
a4 = false;
}
frame 13 {
stop();
gettingfucked = false;
gettingfuckedfast = true;
gettingfuckedturbo = false;
teasing = false;
cumming = false;
}
frame 14 {
stop();
gettingfucked = false;
gettingfuckedfast = false;
gettingfuckedturbo = true;
teasing = false;
cumming = false;
}
frame 15 {
stop();
gettingfucked = false;
gettingfuckedfast = false;
gettingfuckedturbo = false;
teasing = true;
cumming = false;
}
frame 16 {
stop();
suckingcock = true;
suckingcockfast = false;
suckingcockturbo = false;
mouthtease = false;
mouthcumming = false;
}
frame 17 {
stop();
suckingcock = false;
suckingcockfast = true;
suckingcockturbo = false;
mouthtease = false;
mouthcumming = false;
}
frame 18 {
stop();
suckingcock = false;
suckingcockfast = false;
suckingcockturbo = true;
mouthtease = false;
mouthcumming = false;
}
frame 19 {
stop();
suckingcock = false;
suckingcockfast = false;
suckingcockturbo = false;
mouthtease = true;
mouthcumming = false;
}
frame 20 {
stop();
fuckingtits = true;
fuckingtitsfast = false;
fuckingtitsturbo = false;
teasetits = false;
cumontits = false;
}
frame 21 {
stop();
fuckingtits = false;
fuckingtitsfast = true;
fuckingtitsturbo = false;
teasetits = false;
cumontits = false;
}
frame 22 {
stop();
fuckingtits = false;
fuckingtitsfast = false;
fuckingtitsturbo = true;
teasetits = false;
cumontits = false;
}
frame 23 {
stop();
fuckingtits = false;
fuckingtitsfast = false;
fuckingtitsturbo = false;
teasetits = true;
cumontits = false;
}
frame 24 {
stop();
fuckingass = true;
fuckingassfast = false;
fuckingassturbo = false;
teaseass = false;
cumonass = false;
}
frame 25 {
stop();
fuckingass = false;
fuckingassfast = true;
fuckingassturbo = false;
teaseass = false;
cumonass = false;
}
frame 26 {
stop();
fuckingass = false;
fuckingassfast = false;
fuckingassturbo = true;
teaseass = false;
cumonass = false;
}
frame 27 {
stop();
fuckingass = false;
fuckingassfast = false;
fuckingassturbo = false;
teaseass = true;
cumonass = false;
}
frame 28 {
gettingfucked = false;
gettingfuckedfast = false;
gettingfuckedturbo = false;
teasing = false;
cumming = true;
}
frame 75 {
if (blewjob == false) {
gotoAndStop('fuckedmilf');
}
if (blewjob == true) {
gotoAndStop('mouthfuckedmilf');
}
}
frame 129 {
stop();
}
frame 130 {
suckingcock = false;
suckingcockfast = false;
suckingcockturbo = false;
mouthtease = false;
mouthcumming = true;
}
frame 179 {
mouthcumming = false;
gotoAndPlay('mouthfuckedmilf');
}
frame 180 {
fuckingtits = false;
fuckingtitsfast = false;
fuckingtitsturbo = false;
teasetits = false;
cumontits = true;
}
frame 232 {
cumontits = false;
gotoAndPlay('mouthfuckedmilf');
}
frame 233 {
fuckingass = false;
fuckingassfast = false;
fuckingassturbo = false;
teaseass = false;
cumonass = true;
}
frame 323 {
cumonass = false;
gotoAndPlay('mouthfuckedmilf');
}
}
movieClip 1648 {
}
movieClip 1650 {
}
movieClip 1652 {
}
movieClip 1654 {
}
movieClip 1656 {
}
movieClip 1658 {
}
movieClip 1660 {
}
movieClip 1662 {
}
movieClip 1664 {
}
movieClip 1666 {
}
movieClip 1668 {
}
movieClip 1670 {
}
movieClip 1673 {
}
movieClip 1674 {
}
movieClip 1676 {
}
movieClip 1678 {
}
movieClip 1679 {
}
movieClip 1681 {
}
movieClip 1683 {
}
movieClip 1684 {
}
movieClip 1685 {
}
movieClip 1687 {
}
movieClip 1688 {
}
movieClip 1690 {
}
movieClip 1691 {
}
movieClip 1693 {
}
movieClip 1695 {
}
movieClip 1697 {
}
movieClip 1699 {
}
movieClip 1701 {
}
movieClip 1703 {
}
movieClip 1705 {
}
movieClip 1707 {
}
movieClip 1709 {
}
movieClip 1710 {
frame 30 {
gotoAndPlay(1);
}
}
movieClip 1712 {
}
movieClip 1714 {
}
movieClip 1716 {
}
movieClip 1718 {
}
movieClip 1719 {
frame 20 {
gotoAndPlay(1);
}
}
movieClip 1721 {
}
movieClip 1722 {
frame 10 {
gotoAndPlay(1);
}
}
movieClip 1724 {
}
movieClip 1725 {
frame 40 {
gotoAndPlay(1);
}
}
movieClip 1726 {
frame 48 {
gotoAndPlay(1);
}
}
movieClip 1728 {
}
movieClip 1729 {
}
movieClip 1730 {
frame 1 {
stop();
chasing = false;
hitting = false;
fleeing = false;
sporespent = false;
}
frame 5 {
stop();
chasing = true;
hitting = false;
}
frame 10 {
hitting = true;
chasing = false;
}
frame 25 {
hitting = false;
chasing = false;
}
frame 52 {
gotoAndPlay('Chase');
}
frame 53 {
sporespent = true;
chasing = false;
hitting = false;
}
frame 59 {
stop();
sporespent = false;
}
frame 60 {
stop();
gettingfucked = true;
gettingfuckedfast = false;
gettingfuckedturbo = false;
teasing = false;
cumming = false;
}
frame 61 {
stop();
gettingfucked = false;
gettingfuckedfast = true;
gettingfuckedturbo = false;
teasing = false;
cumming = false;
}
frame 62 {
stop();
gettingfucked = false;
gettingfuckedfast = false;
gettingfuckedturbo = true;
teasing = false;
cumming = false;
}
frame 63 {
stop();
gettingfucked = false;
gettingfuckedfast = false;
gettingfuckedturbo = false;
teasing = true;
cumming = false;
}
frame 64 {
gettingfucked = false;
gettingfuckedfast = false;
gettingfuckedturbo = false;
teasing = false;
cumming = true;
}
frame 107 {
gettingfucked = false;
gettingfuckedfast = false;
gettingfuckedturbo = false;
teasing = false;
cumming = false;
}
frame 108 {
fleeing = true;
}
frame 165 {
stop();
}
}
instance policewoman of movieClip 1730 {
onClipEvent (load) {
chasing = false;
gettingfucked = false;
}
}
movieClip 1734 {
}
movieClip 1738 {
}
movieClip 1739 {
frame 1 {
stop();
talking = false;
}
instance of movieClip 240 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.horndroid.checkfuck) && _root.talker.talking == false && _root.teen._currentframe < 2 && _root.horndroid.stacycitroen == false) {
tellTarget ('_parent') {
gotoAndPlay('message');
}
}
if (this.hitTest(_root.horndroid.checkfuck) && _root.talker.talking == false && _root.teen._currentframe < 2 && _root.horndroid.stacycitroen == true) {
tellTarget ('_parent') {
gotoAndPlay('messageps');
}
}
}
}
frame 5 {
talking = true;
}
frame 204 {
gotoAndPlay(1);
}
frame 400 {
gotoAndPlay(1);
}
}
movieClip 1741 {
}
// unknown tag 88 length 83
movieClip 1745 {
}
movieClip 1747 {
}
// unknown tag 88 length 63
movieClip 1751 {
}
movieClip 1755 {
}
movieClip 1756 {
frame 1 {
stop();
idle = true;
consoleon = false;
}
instance of movieClip 219 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.horndroid.grab) && _root.book.consoleon == false) {
tellTarget ('_parent') {
gotoAndPlay('start');
}
}
}
}
frame 2 {
idle = false;
consoleon = true;
}
instance shutdowncomputer of movieClip 219 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.horndroid.grab) && _root.computer.consoleon == false) {
tellTarget ('_parent') {
gotoAndPlay('start');
}
}
}
}
frame 29 {
gotoAndPlay(1);
}
frame 30 {
idle = false;
consoleon = true;
}
instance usingcomputer of movieClip 219 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.horndroid.grab) && _root.computer.consoleon == false) {
tellTarget ('_parent') {
gotoAndPlay('start');
}
}
}
}
frame 39 {
stop();
idle = true;
}
}
instance book of movieClip 1756 {
onClipEvent (enterFrame) {
if (Key.isDown(69) && idle == true && consoleon == true) {
this.gotoAndPlay('shutdown');
}
}
}
movieClip 1759 {
}
movieClip 1762 {
}
movieClip 1764 {
}
movieClip 1766 {
}
movieClip 1768 {
}
movieClip 1770 {
}
movieClip 1772 {
}
movieClip 1774 {
}
movieClip 1776 {
}
movieClip 1778 {
}
movieClip 1780 {
}
movieClip 1785 {
}
movieClip 1787 {
}
movieClip 1790 {
}
movieClip 1791 {
}
movieClip 1793 {
}
movieClip 1795 {
}
movieClip 1797 {
}
movieClip 1800 {
}
movieClip 1801 {
}
movieClip 1803 {
}
movieClip 1804 {
frame 80 {
gotoAndPlay(1);
}
}
movieClip 1806 {
}
movieClip 1808 {
}
movieClip 1810 {
}
movieClip 1811 {
}
movieClip 1813 {
}
movieClip 1815 {
}
movieClip 1817 {
}
movieClip 1819 {
}
movieClip 1821 {
}
movieClip 1824 {
}
movieClip 1826 {
}
movieClip 1828 {
}
movieClip 1830 {
}
movieClip 1832 {
}
movieClip 1833 {
frame 40 {
gotoAndPlay(1);
}
}
movieClip 1835 {
}
movieClip 1836 {
frame 40 {
gotoAndPlay(1);
}
}
movieClip 1838 {
}
movieClip 1839 {
}
movieClip 1840 {
}
movieClip 1842 {
}
movieClip 1843 {
}
movieClip 1845 {
}
movieClip 1847 {
}
movieClip 1850 {
}
movieClip 1852 {
}
movieClip 1854 {
}
movieClip 1856 {
}
movieClip 1857 {
frame 40 {
gotoAndPlay(1);
}
}
movieClip 1858 {
}
movieClip 1860 {
}
movieClip 1862 {
}
movieClip 1864 {
}
movieClip 1865 {
frame 20 {
gotoAndPlay(1);
}
}
movieClip 1867 {
}
movieClip 1868 {
}
movieClip 1870 {
}
movieClip 1872 {
}
movieClip 1873 {
frame 20 {
gotoAndPlay(1);
}
}
movieClip 1876 {
}
movieClip 1878 {
}
movieClip 1879 {
}
movieClip 1880 {
frame 1 {
gotoAndPlay(1);
}
}
movieClip 1882 {
}
movieClip 1883 {
}
movieClip 1884 {
}
movieClip 1885 {
frame 19 {
gotoAndPlay(1);
}
}
movieClip 1886 {
frame 13 {
gotoAndPlay(1);
}
}
movieClip 1887 {
frame 8 {
gotoAndPlay(1);
}
}
movieClip 1888 {
frame 40 {
gotoAndPlay(1);
}
}
movieClip 1889 {
}
movieClip 1891 {
}
movieClip 1892 {
}
movieClip 1894 {
}
movieClip 1895 {
}
movieClip 1897 {
}
movieClip 1898 {
frame 20 {
gotoAndPlay(1);
}
}
movieClip 1899 {
frame 12 {
gotoAndPlay(1);
}
}
movieClip 1900 {
frame 7 {
gotoAndPlay(1);
}
}
movieClip 1902 {
}
movieClip 1903 {
frame 65 {
gotoAndPlay(1);
}
}
movieClip 1904 {
}
movieClip 1906 {
}
movieClip 1908 {
}
movieClip 1910 {
}
movieClip 1911 {
}
movieClip 1913 {
}
movieClip 1915 {
}
movieClip 1916 {
frame 30 {
gotoAndPlay(1);
}
}
movieClip 1917 {
frame 20 {
gotoAndPlay(1);
}
}
movieClip 1918 {
frame 10 {
gotoAndPlay(1);
}
}
movieClip 1920 {
}
movieClip 1921 {
frame 40 {
gotoAndPlay(1);
}
}
movieClip 1923 {
}
movieClip 1925 {
}
movieClip 1926 {
}
movieClip 1927 {
}
movieClip 1929 {
}
movieClip 1932 {
}
movieClip 1933 {
}
movieClip 1934 {
frame 30 {
gotoAndPlay(1);
}
}
movieClip 1936 {
}
movieClip 1937 {
frame 20 {
gotoAndPlay(1);
}
}
movieClip 1939 {
}
movieClip 1940 {
frame 10 {
gotoAndPlay(1);
}
}
movieClip 1942 {
}
movieClip 1943 {
frame 40 {
gotoAndPlay(1);
}
}
movieClip 1954 {
}
movieClip 1955 {
}
movieClip 1957 {
}
movieClip 1959 {
}
movieClip 1961 {
}
movieClip 1964 {
}
movieClip 1973 {
}
movieClip 1974 {
}
movieClip 1975 {
frame 40 {
gotoAndPlay(1);
}
}
movieClip 1977 {
frame 80 {
gotoAndPlay(1);
}
}
movieClip 1979 {
}
movieClip 1980 {
frame 1 {
stop();
gettingfucked = false;
gettingfuckedfast = false;
gettingfuckedturbo = false;
teasing = false;
cumming = false;
suckingcock = false;
suckingcockfast = false;
suckingcockturbo = false;
mouthtease = false;
mouthcumming = false;
blewjob = false;
sporespent = false;
}
frame 2 {
sporespent = true;
}
frame 5 {
stop();
sporespent = false;
}
frame 6 {
stop();
cumming = false;
mouthcumming = false;
}
instance pussyfuck of movieClip 304 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.horndroid.grab)) {
tellTarget ('_parent') {
gotoAndPlay('fucked');
}
}
}
}
frame 7 {
stop();
cumming = false;
mouthcumming = false;
blewjob = true;
}
instance ff2 of movieClip 304 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.horndroid.grab)) {
tellTarget ('_parent') {
gotoAndPlay('fucktitties');
}
}
}
}
frame 8 {
stop();
a1 = true;
a2 = false;
a3 = false;
a4 = false;
ac = false;
}
frame 9 {
stop();
a1 = false;
a2 = true;
a3 = false;
a4 = false;
ac = false;
}
frame 10 {
stop();
a1 = false;
a2 = false;
a3 = true;
a4 = false;
ac = false;
}
frame 11 {
stop();
a1 = false;
a2 = false;
a3 = false;
a4 = true;
ac = false;
}
frame 12 {
stop();
gettingfucked = true;
gettingfuckedfast = false;
gettingfuckedturbo = false;
teasing = false;
cumming = false;
a4 = false;
}
frame 13 {
stop();
gettingfucked = false;
gettingfuckedfast = true;
gettingfuckedturbo = false;
teasing = false;
cumming = false;
}
frame 14 {
stop();
gettingfucked = false;
gettingfuckedfast = false;
gettingfuckedturbo = true;
teasing = false;
cumming = false;
}
frame 15 {
stop();
gettingfucked = false;
gettingfuckedfast = false;
gettingfuckedturbo = false;
teasing = true;
cumming = false;
}
frame 16 {
stop();
suckingcock = true;
suckingcockfast = false;
suckingcockturbo = false;
mouthtease = false;
mouthcumming = false;
}
frame 17 {
stop();
suckingcock = false;
suckingcockfast = true;
suckingcockturbo = false;
mouthtease = false;
mouthcumming = false;
}
frame 18 {
stop();
suckingcock = false;
suckingcockfast = false;
suckingcockturbo = true;
mouthtease = false;
mouthcumming = false;
}
frame 19 {
stop();
suckingcock = false;
suckingcockfast = false;
suckingcockturbo = false;
mouthtease = true;
mouthcumming = false;
}
frame 20 {
stop();
fuckingtits = true;
fuckingtitsfast = false;
fuckingtitsturbo = false;
teasetits = false;
cumontits = false;
}
frame 21 {
stop();
fuckingtits = false;
fuckingtitsfast = true;
fuckingtitsturbo = false;
teasetits = false;
cumontits = false;
}
frame 22 {
stop();
fuckingtits = false;
fuckingtitsfast = false;
fuckingtitsturbo = true;
teasetits = false;
cumontits = false;
}
frame 23 {
stop();
fuckingtits = false;
fuckingtitsfast = false;
fuckingtitsturbo = false;
teasetits = true;
cumontits = false;
}
frame 24 {
stop();
fuckingass = true;
fuckingassfast = false;
fuckingassturbo = false;
teaseass = false;
cumonass = false;
}
frame 25 {
stop();
fuckingass = false;
fuckingassfast = true;
fuckingassturbo = false;
teaseass = false;
cumonass = false;
}
frame 26 {
stop();
fuckingass = false;
fuckingassfast = false;
fuckingassturbo = true;
teaseass = false;
cumonass = false;
}
frame 27 {
stop();
fuckingass = false;
fuckingassfast = false;
fuckingassturbo = false;
teaseass = true;
cumonass = false;
}
frame 28 {
gettingfucked = false;
gettingfuckedfast = false;
gettingfuckedturbo = false;
teasing = false;
cumming = true;
}
frame 116 {
if (blewjob == false) {
gotoAndStop('fuckedmilf');
}
if (blewjob == true) {
gotoAndStop('mouthfuckedmilf');
}
}
frame 170 {
stop();
}
instance of movieClip 280 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.horndroid.grab) && _root.hpbar.sporeactive == true && _root.policewoman.fleeing == true && _root.horndroid.mission1finish == true) {
tellTarget ('_parent') {
gotoAndPlay('usedspore');
}
sporespent = true;
} else {
if (this.hitTest(_root.horndroid.grab) && _root.hpbar.sporeactive == false && _root.policewoman.fleeing == true && _root.horndroid.mission1finish == true) {
tellTarget ('_parent') {
gotoAndPlay('fucked');
}
}
}
}
}
frame 171 {
suckingcock = false;
suckingcockfast = false;
suckingcockturbo = false;
mouthtease = false;
mouthcumming = true;
}
frame 220 {
mouthcumming = false;
gotoAndPlay('mouthfuckedmilf');
}
frame 221 {
fuckingtits = false;
fuckingtitsfast = false;
fuckingtitsturbo = false;
teasetits = false;
cumontits = true;
}
frame 273 {
cumontits = false;
gotoAndPlay('mouthfuckedmilf');
}
frame 274 {
fuckingass = false;
fuckingassfast = false;
fuckingassturbo = false;
teaseass = false;
cumonass = true;
}
frame 364 {
cumonass = false;
gotoAndPlay('mouthfuckedmilf');
}
}
instance policewoman of movieClip 1730 {
onClipEvent (load) {
chasing = false;
gettingfucked = false;
}
}
movieClip 1982 {
}
movieClip 1983 {
frame 1 {
stop();
talking = false;
}
instance of movieClip 240 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.horndroid.checkfuck) && _root.talker.talking == false && _root.milf._currentframe < 2 && _root.horndroid.landlady == false) {
tellTarget ('_parent') {
gotoAndPlay('message');
}
}
if (this.hitTest(_root.horndroid.checkfuck) && _root.talker.talking == false && _root.milf._currentframe < 2 && _root.horndroid.landlady == true) {
tellTarget ('_parent') {
gotoAndPlay('messageps');
}
}
}
}
frame 5 {
talking = true;
}
frame 204 {
gotoAndPlay(1);
}
frame 400 {
gotoAndPlay(1);
}
}
movieClip 1986 {
}
movieClip 1988 {
}
movieClip 1990 {
}
movieClip 1994 {
}
movieClip 1996 {
}
movieClip 1998 {
}
movieClip 2000 {
}
movieClip 2002 {
}
movieClip 2004 {
}
movieClip 2006 {
}
movieClip 2008 {
}
movieClip 2010 {
}
movieClip 2011 {
}
movieClip 2013 {
}
movieClip 2015 {
}
movieClip 2017 {
}
movieClip 2019 {
}
movieClip 2021 {
}
movieClip 2023 {
}
movieClip 2024 {
}
movieClip 2026 {
}
movieClip 2028 {
}
movieClip 2029 {
}
movieClip 2030 {
}
movieClip 2032 {
}
movieClip 2034 {
}
movieClip 2035 {
}
movieClip 2036 {
}
movieClip 2038 {
}
movieClip 2039 {
}
movieClip 2040 {
frame 80 {
gotoAndPlay(1);
}
}
movieClip 2042 {
}
movieClip 2044 {
}
movieClip 2046 {
}
movieClip 2048 {
}
movieClip 2050 {
}
movieClip 2052 {
}
movieClip 2054 {
}
movieClip 2055 {
}
movieClip 2057 {
}
movieClip 2058 {
}
movieClip 2059 {
}
movieClip 2060 {
}
movieClip 2062 {
}
movieClip 2064 {
}
movieClip 2066 {
}
movieClip 2067 {
}
movieClip 2069 {
}
movieClip 2070 {
}
movieClip 2071 {
}
movieClip 2072 {
}
movieClip 2074 {
}
movieClip 2076 {
}
movieClip 2077 {
}
movieClip 2079 {
}
movieClip 2080 {
frame 20 {
gotoAndPlay(1);
}
}
movieClip 2081 {
frame 15 {
gotoAndPlay(1);
}
}
movieClip 2082 {
frame 11 {
gotoAndPlay(1);
}
}
movieClip 2083 {
}
movieClip 2084 {
frame 40 {
gotoAndPlay(1);
}
}
movieClip 2085 {
frame 30 {
gotoAndPlay(1);
}
}
movieClip 2086 {
}
movieClip 2087 {
frame 20 {
gotoAndPlay(1);
}
}
movieClip 2088 {
frame 10 {
gotoAndPlay(1);
}
}
movieClip 2090 {
}
movieClip 2091 {
}
movieClip 2092 {
}
movieClip 2093 {
frame 20 {
gotoAndPlay(1);
}
}
movieClip 2094 {
frame 14 {
gotoAndPlay(1);
}
}
movieClip 2095 {
frame 8 {
gotoAndPlay(1);
}
}
movieClip 2096 {
frame 40 {
gotoAndPlay(1);
}
}
movieClip 2097 {
frame 30 {
gotoAndPlay(1);
}
}
movieClip 2098 {
frame 20 {
gotoAndPlay(1);
}
}
movieClip 2099 {
frame 10 {
gotoAndPlay(1);
}
}
movieClip 2100 {
frame 40 {
gotoAndPlay(1);
}
}
movieClip 2101 {
frame 30 {
gotoAndPlay(1);
}
}
movieClip 2102 {
frame 15 {
gotoAndPlay(1);
}
}
movieClip 2103 {
frame 8 {
gotoAndPlay(1);
}
}
movieClip 2104 {
frame 40 {
gotoAndPlay(1);
}
}
movieClip 2115 {
}
movieClip 2116 {
frame 80 {
gotoAndPlay(1);
}
}
movieClip 2118 {
}
movieClip 2119 {
}
movieClip 2120 {
}
movieClip 2121 {
}
movieClip 2122 {
frame 40 {
gotoAndPlay(1);
}
}
movieClip 2123 {
frame 40 {
gotoAndPlay(1);
}
}
movieClip 2124 {
frame 75 {
gotoAndPlay(1);
}
}
movieClip 2125 {
frame 1 {
stop();
gettingfucked = false;
gettingfuckedfast = false;
gettingfuckedturbo = false;
teasing = false;
cumming = false;
suckingcock = false;
suckingcockfast = false;
suckingcockturbo = false;
mouthtease = false;
mouthcumming = false;
blewjob = false;
sporespent = false;
}
frame 2 {
sporespent = true;
}
frame 5 {
stop();
sporespent = false;
}
frame 6 {
stop();
cumming = false;
mouthcumming = false;
}
instance pussyfuck of movieClip 2059 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.horndroid.grab)) {
tellTarget ('_parent') {
gotoAndPlay('fucked');
}
}
}
}
frame 7 {
stop();
cumming = false;
mouthcumming = false;
blewjob = true;
}
instance ff2 of movieClip 2059 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.horndroid.grab)) {
tellTarget ('_parent') {
gotoAndPlay('fucktitties');
}
}
}
}
frame 8 {
stop();
a1 = true;
a2 = false;
a3 = false;
a4 = false;
ac = false;
}
frame 9 {
stop();
a1 = false;
a2 = true;
a3 = false;
a4 = false;
ac = false;
}
frame 10 {
stop();
a1 = false;
a2 = false;
a3 = true;
a4 = false;
ac = false;
}
frame 11 {
stop();
a1 = false;
a2 = false;
a3 = false;
a4 = true;
ac = false;
}
frame 12 {
stop();
gettingfucked = true;
gettingfuckedfast = false;
gettingfuckedturbo = false;
teasing = false;
cumming = false;
a4 = false;
}
frame 13 {
stop();
gettingfucked = false;
gettingfuckedfast = true;
gettingfuckedturbo = false;
teasing = false;
cumming = false;
}
frame 14 {
stop();
gettingfucked = false;
gettingfuckedfast = false;
gettingfuckedturbo = true;
teasing = false;
cumming = false;
}
frame 15 {
stop();
gettingfucked = false;
gettingfuckedfast = false;
gettingfuckedturbo = false;
teasing = true;
cumming = false;
}
frame 16 {
stop();
suckingcock = true;
suckingcockfast = false;
suckingcockturbo = false;
mouthtease = false;
mouthcumming = false;
}
frame 17 {
stop();
suckingcock = false;
suckingcockfast = true;
suckingcockturbo = false;
mouthtease = false;
mouthcumming = false;
}
frame 18 {
stop();
suckingcock = false;
suckingcockfast = false;
suckingcockturbo = true;
mouthtease = false;
mouthcumming = false;
}
frame 19 {
stop();
suckingcock = false;
suckingcockfast = false;
suckingcockturbo = false;
mouthtease = true;
mouthcumming = false;
}
frame 20 {
stop();
fuckingtits = true;
fuckingtitsfast = false;
fuckingtitsturbo = false;
teasetits = false;
cumontits = false;
}
frame 21 {
stop();
fuckingtits = false;
fuckingtitsfast = true;
fuckingtitsturbo = false;
teasetits = false;
cumontits = false;
}
frame 22 {
stop();
fuckingtits = false;
fuckingtitsfast = false;
fuckingtitsturbo = true;
teasetits = false;
cumontits = false;
}
frame 23 {
stop();
fuckingtits = false;
fuckingtitsfast = false;
fuckingtitsturbo = false;
teasetits = true;
cumontits = false;
}
frame 24 {
stop();
fuckingass = true;
fuckingassfast = false;
fuckingassturbo = false;
teaseass = false;
cumonass = false;
}
frame 25 {
stop();
fuckingass = false;
fuckingassfast = true;
fuckingassturbo = false;
teaseass = false;
cumonass = false;
}
frame 26 {
stop();
fuckingass = false;
fuckingassfast = false;
fuckingassturbo = true;
teaseass = false;
cumonass = false;
}
frame 27 {
stop();
fuckingass = false;
fuckingassfast = false;
fuckingassturbo = false;
teaseass = true;
cumonass = false;
}
frame 28 {
gettingfucked = false;
gettingfuckedfast = false;
gettingfuckedturbo = false;
teasing = false;
cumming = true;
}
frame 116 {
if (blewjob == false) {
gotoAndStop('fuckedmilf');
}
if (blewjob == true) {
gotoAndStop('mouthfuckedmilf');
}
}
frame 170 {
gotoAndPlay(1);
}
frame 171 {
suckingcock = false;
suckingcockfast = false;
suckingcockturbo = false;
mouthtease = false;
mouthcumming = true;
}
frame 220 {
mouthcumming = false;
gotoAndPlay('mouthfuckedmilf');
}
frame 221 {
fuckingtits = false;
fuckingtitsfast = false;
fuckingtitsturbo = false;
teasetits = false;
cumontits = true;
}
frame 273 {
cumontits = false;
gotoAndPlay('mouthfuckedmilf');
}
frame 274 {
fuckingass = false;
fuckingassfast = false;
fuckingassturbo = false;
teaseass = false;
cumonass = true;
}
frame 364 {
cumonass = false;
gotoAndPlay('mouthfuckedmilf');
}
}
movieClip 2127 {
}
movieClip 2129 {
}
movieClip 2131 {
}
movieClip 2132 {
frame 1 {
stop();
talking = false;
}
instance of movieClip 240 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.horndroid.checkfuck) && _root.talker.talking == false && _root.large._currentframe < 2 && _root.horndroid.largerosa == false) {
tellTarget ('_parent') {
gotoAndPlay('message');
}
}
if (this.hitTest(_root.horndroid.checkfuck) && _root.talker.talking == false && _root.large._currentframe < 2 && _root.horndroid.largerosa == true) {
tellTarget ('_parent') {
gotoAndPlay('messageps');
}
}
}
}
frame 5 {
talking = true;
}
frame 204 {
gotoAndPlay(1);
}
frame 400 {
gotoAndPlay(1);
}
}
movieClip 2134 {
}
movieClip 2137 {
}
movieClip 2139 {
}
movieClip 2141 {
}
movieClip 2143 {
}
movieClip 2145 {
}
movieClip 2147 {
}
movieClip 2149 {
}
movieClip 2151 {
}
movieClip 2153 {
}
movieClip 2155 {
}
movieClip 2157 {
}
movieClip 2159 {
}
movieClip 2161 {
}
movieClip 2163 {
}
movieClip 2165 {
}
movieClip 2167 {
}
movieClip 2169 {
}
movieClip 2171 {
}
movieClip 2172 {
frame 26 {
gotoAndPlay(1);
}
}
movieClip 2173 {
}
movieClip 2175 {
}
movieClip 2177 {
}
movieClip 2179 {
}
movieClip 2180 {
}
movieClip 2181 {
}
movieClip 2183 {
}
movieClip 2185 {
}
movieClip 2186 {
}
movieClip 2187 {
}
movieClip 2189 {
}
movieClip 2190 {
}
movieClip 2192 {
}
movieClip 2193 {
}
movieClip 2195 {
}
movieClip 2197 {
}
movieClip 2199 {
}
movieClip 2201 {
}
movieClip 2203 {
}
movieClip 2205 {
}
movieClip 2207 {
}
movieClip 2209 {
}
movieClip 2211 {
}
movieClip 2213 {
}
movieClip 2214 {
frame 30 {
gotoAndPlay(1);
}
}
movieClip 2216 {
}
movieClip 2218 {
}
movieClip 2220 {
}
movieClip 2222 {
}
movieClip 2223 {
frame 20 {
gotoAndPlay(1);
}
}
movieClip 2225 {
}
movieClip 2226 {
frame 10 {
gotoAndPlay(1);
}
}
movieClip 2228 {
}
movieClip 2229 {
frame 40 {
gotoAndPlay(1);
}
}
movieClip 2238 {
}
movieClip 2239 {
frame 48 {
gotoAndPlay(1);
}
}
movieClip 2240 {
}
movieClip 2241 {
frame 1 {
stop();
chasing = false;
hitting = false;
fleeing = false;
sporespent = false;
}
instance policehittest of movieClip 2173 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.horndroid.jerkingseen)) {
tellTarget ('_parent') {
gotoAndPlay('chase');
}
}
}
}
frame 5 {
stop();
chasing = true;
hitting = false;
}
instance policevision of movieClip 2181 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.horndroid.checkfuck)) {
tellTarget ('_parent') {
gotoAndPlay('hit');
}
}
}
}
frame 10 {
hitting = true;
}
instance club of movieClip 2181 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.horndroid.checkfuck)) {
tellTarget ('_parent') {
gotoAndPlay('hit');
}
}
}
}
frame 25 {
hitting = false;
chasing = false;
}
frame 52 {
gotoAndPlay('Chase');
}
frame 53 {
sporespent = true;
}
frame 59 {
stop();
sporespent = false;
}
frame 60 {
stop();
gettingfucked = true;
gettingfuckedfast = false;
gettingfuckedturbo = false;
teasing = false;
cumming = false;
}
frame 61 {
stop();
gettingfucked = false;
gettingfuckedfast = true;
gettingfuckedturbo = false;
teasing = false;
cumming = false;
}
frame 62 {
stop();
gettingfucked = false;
gettingfuckedfast = false;
gettingfuckedturbo = true;
teasing = false;
cumming = false;
}
frame 63 {
stop();
gettingfucked = false;
gettingfuckedfast = false;
gettingfuckedturbo = false;
teasing = true;
cumming = false;
}
frame 64 {
gettingfucked = false;
gettingfuckedfast = false;
gettingfuckedturbo = false;
teasing = false;
cumming = true;
}
frame 107 {
gettingfucked = false;
gettingfuckedfast = false;
gettingfuckedturbo = false;
teasing = false;
cumming = false;
}
frame 165 {
stop();
}
}
instance policewoman of movieClip 2241 {
onClipEvent (load) {
speed = 6;
strafe = 1;
chasing = false;
gettingfucked = false;
}
onClipEvent (enterFrame) {
if (this._x <= _root.horndroid._x && chasing == true && hitting == false && fleeing == false) {
this._x += speed;
this._xscale = 85;
} else {
if (this._x >= _root.horndroid._x && chasing == true && hitting == false && fleeing == false) {
this._x -= speed;
this._xscale = -85;
}
}
if (this._y <= _root.horndroid._y && chasing == true && hitting == false && fleeing == false) {
this._y += strafe;
} else {
if (this._y >= _root.horndroid._y && chasing == true && hitting == false && fleeing == false) {
this._y -= strafe;
}
}
if (Key.isDown(65) && gettingfucked == false && teasing == true) {
this.gotoAndStop('fucked');
}
if (Key.isDown(68) && gettingfucked == true && gettingfuckedfast == false) {
this.gotoAndStop('fuckedfast');
}
if (Key.isDown(87) && gettingfuckedturbo == false && gettingfuckedfast == true) {
this.gotoAndStop('fuckedturbo');
}
if (Key.isDown(83) && gettingfuckedturbo == true && teasing == false && cumming == false) {
this.gotoAndStop('tease');
}
if (Key.isDown(9) && gettingfuckedturbo == true && cumming == false) {
this.gotoAndPlay('cum');
}
if (gettingfucked == true) {
_root.horndroid.sp += _root.horndroid.spmodifier;
}
if (gettingfuckedfast == true) {
_root.horndroid.sp -= _root.horndroid.spmodifierfast;
}
if (gettingfuckedturbo == true) {
_root.horndroid.sp -= _root.horndroid.spmodifierturbo;
}
if (teasing == true) {
_root.horndroid.sp += _root.horndroid.spmodifierfast;
}
if (cumming == true) {
_root.horndroid.hp += _root.horndroid.hpmodifier;
}
if (sporespent == true) {
_root.horndroid.hp -= 100;
}
}
}
movieClip 2243 {
}
movieClip 2245 {
}
movieClip 2247 {
}
movieClip 2249 {
}
movieClip 2251 {
}
movieClip 2253 {
}
movieClip 2255 {
}
movieClip 2257 {
}
movieClip 2259 {
}
movieClip 2261 {
}
movieClip 2263 {
}
movieClip 2265 {
}
movieClip 2267 {
}
movieClip 2269 {
}
movieClip 2271 {
}
movieClip 2273 {
}
movieClip 2274 {
frame 40 {
gotoAndPlay(1);
}
}
movieClip 2275 {
}
movieClip 2277 {
}
movieClip 2279 {
}
movieClip 2280 {
}
movieClip 2281 {
}
movieClip 2283 {
}
movieClip 2285 {
}
movieClip 2286 {
}
movieClip 2287 {
}
movieClip 2289 {
}
movieClip 2291 {
}
movieClip 2293 {
}
movieClip 2294 {
}
movieClip 2296 {
}
movieClip 2298 {
}
movieClip 2300 {
}
movieClip 2302 {
}
movieClip 2304 {
}
movieClip 2306 {
}
movieClip 2308 {
}
movieClip 2310 {
}
movieClip 2312 {
}
movieClip 2313 {
frame 30 {
gotoAndPlay(1);
}
}
movieClip 2315 {
}
movieClip 2317 {
}
movieClip 2319 {
}
movieClip 2321 {
}
movieClip 2322 {
frame 20 {
gotoAndPlay(1);
}
}
movieClip 2324 {
}
movieClip 2325 {
frame 10 {
gotoAndPlay(1);
}
}
movieClip 2327 {
}
movieClip 2328 {
frame 40 {
gotoAndPlay(1);
}
}
movieClip 2337 {
}
movieClip 2338 {
frame 48 {
gotoAndPlay(1);
}
}
movieClip 2339 {
}
movieClip 2340 {
frame 1 {
stop();
chasing = false;
hitting = false;
fleeing = false;
sporespent = false;
}
instance policehittest of movieClip 2275 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.horndroid.jerkingseen)) {
tellTarget ('_parent') {
gotoAndPlay('chase');
}
}
}
}
frame 5 {
stop();
chasing = true;
hitting = false;
}
instance policevision of movieClip 2281 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.horndroid.checkfuck)) {
tellTarget ('_parent') {
gotoAndPlay('hit');
}
}
}
}
frame 10 {
hitting = true;
}
instance club of movieClip 2281 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.horndroid.checkfuck)) {
tellTarget ('_parent') {
gotoAndPlay('hit');
}
}
}
}
frame 25 {
hitting = false;
chasing = false;
}
frame 52 {
gotoAndPlay('Chase');
}
frame 53 {
sporespent = true;
}
frame 59 {
stop();
sporespent = false;
}
frame 60 {
stop();
gettingfucked = true;
gettingfuckedfast = false;
gettingfuckedturbo = false;
teasing = false;
cumming = false;
}
frame 61 {
stop();
gettingfucked = false;
gettingfuckedfast = true;
gettingfuckedturbo = false;
teasing = false;
cumming = false;
}
frame 62 {
stop();
gettingfucked = false;
gettingfuckedfast = false;
gettingfuckedturbo = true;
teasing = false;
cumming = false;
}
frame 63 {
stop();
gettingfucked = false;
gettingfuckedfast = false;
gettingfuckedturbo = false;
teasing = true;
cumming = false;
}
frame 64 {
gettingfucked = false;
gettingfuckedfast = false;
gettingfuckedturbo = false;
teasing = false;
cumming = true;
}
frame 107 {
gettingfucked = false;
gettingfuckedfast = false;
gettingfuckedturbo = false;
teasing = false;
cumming = false;
}
frame 165 {
stop();
}
}
instance policewoman of movieClip 2340 {
onClipEvent (load) {
speed = 6;
strafe = 1;
chasing = false;
gettingfucked = false;
}
onClipEvent (enterFrame) {
if (this._x <= _root.horndroid._x && chasing == true && hitting == false && fleeing == false) {
this._x += speed;
this._xscale = 85;
} else {
if (this._x >= _root.horndroid._x && chasing == true && hitting == false && fleeing == false) {
this._x -= speed;
this._xscale = -85;
}
}
if (this._y <= _root.horndroid._y && chasing == true && hitting == false && fleeing == false) {
this._y += strafe;
} else {
if (this._y >= _root.horndroid._y && chasing == true && hitting == false && fleeing == false) {
this._y -= strafe;
}
}
if (Key.isDown(65) && gettingfucked == false && teasing == true) {
this.gotoAndStop('fucked');
}
if (Key.isDown(68) && gettingfucked == true && gettingfuckedfast == false) {
this.gotoAndStop('fuckedfast');
}
if (Key.isDown(87) && gettingfuckedturbo == false && gettingfuckedfast == true) {
this.gotoAndStop('fuckedturbo');
}
if (Key.isDown(83) && gettingfuckedturbo == true && teasing == false && cumming == false) {
this.gotoAndStop('tease');
}
if (Key.isDown(9) && gettingfuckedturbo == true && cumming == false) {
this.gotoAndPlay('cum');
}
if (gettingfucked == true) {
_root.horndroid.sp += _root.horndroid.spmodifier;
}
if (gettingfuckedfast == true) {
_root.horndroid.sp -= _root.horndroid.spmodifierfast;
}
if (gettingfuckedturbo == true) {
_root.horndroid.sp -= _root.horndroid.spmodifierturbo;
}
if (teasing == true) {
_root.horndroid.sp += _root.horndroid.spmodifierfast;
}
if (cumming == true) {
_root.horndroid.hp += _root.horndroid.hpmodifier;
}
if (sporespent == true) {
_root.horndroid.hp -= 100;
}
}
}
movieClip 2342 {
}
movieClip 2345 {
}
movieClip 2348 {
}
movieClip 2349 {
}
movieClip 2351 {
}
movieClip 2352 {
}
movieClip 2354 {
}
movieClip 2355 {
}
movieClip 2356 {
}
movieClip 2358 {
}
movieClip 2359 {
}
movieClip 2362 {
}
movieClip 2363 {
}
movieClip 2364 {
}
movieClip 2366 {
}
movieClip 2368 {
}
movieClip 2370 {
}
movieClip 2374 {
}
movieClip 2375 {
}
movieClip 2378 {
}
movieClip 2379 {
}
movieClip 2381 {
}
movieClip 2382 {
}
movieClip 2383 {
frame 80 {
gotoAndPlay(1);
}
}
movieClip 2385 {
}
movieClip 2387 {
}
movieClip 2388 {
}
movieClip 2389 {
}
movieClip 2391 {
}
movieClip 2393 {
}
movieClip 2394 {
}
movieClip 2396 {
}
movieClip 2397 {
}
movieClip 2400 {
}
movieClip 2401 {
}
movieClip 2403 {
}
movieClip 2405 {
}
movieClip 2407 {
}
movieClip 2408 {
frame 40 {
gotoAndPlay(1);
}
}
movieClip 2410 {
}
movieClip 2411 {
frame 40 {
gotoAndPlay(1);
}
}
movieClip 2413 {
}
movieClip 2415 {
}
movieClip 2416 {
}
movieClip 2417 {
}
movieClip 2419 {
}
movieClip 2420 {
}
movieClip 2423 {
}
movieClip 2425 {
}
movieClip 2427 {
}
movieClip 2429 {
}
movieClip 2430 {
frame 40 {
gotoAndPlay(1);
}
}
movieClip 2431 {
}
movieClip 2433 {
}
movieClip 2435 {
}
movieClip 2436 {
frame 20 {
gotoAndPlay(1);
}
}
movieClip 2437 {
}
movieClip 2438 {
}
movieClip 2439 {
}
movieClip 2440 {
}
movieClip 2441 {
frame 20 {
gotoAndPlay(1);
}
}
movieClip 2444 {
}
movieClip 2446 {
}
movieClip 2447 {
}
movieClip 2448 {
frame 1 {
gotoAndPlay(1);
}
}
movieClip 2450 {
}
movieClip 2452 {
}
movieClip 2453 {
}
movieClip 2454 {
}
movieClip 2456 {
}
movieClip 2458 {
}
movieClip 2460 {
}
movieClip 2461 {
}
movieClip 2462 {
frame 19 {
gotoAndPlay(1);
}
}
movieClip 2463 {
frame 13 {
gotoAndPlay(1);
}
}
movieClip 2464 {
frame 8 {
gotoAndPlay(1);
}
}
movieClip 2465 {
frame 40 {
gotoAndPlay(1);
}
}
movieClip 2466 {
}
movieClip 2468 {
}
movieClip 2469 {
}
movieClip 2471 {
}
movieClip 2472 {
}
movieClip 2474 {
}
movieClip 2475 {
frame 20 {
gotoAndPlay(1);
}
}
movieClip 2476 {
frame 12 {
gotoAndPlay(1);
}
}
movieClip 2477 {
frame 7 {
gotoAndPlay(1);
}
}
movieClip 2479 {
}
movieClip 2480 {
}
movieClip 2481 {
frame 65 {
gotoAndPlay(1);
}
}
movieClip 2482 {
}
movieClip 2484 {
}
movieClip 2485 {
}
movieClip 2487 {
}
movieClip 2488 {
}
movieClip 2489 {
}
movieClip 2491 {
}
movieClip 2492 {
frame 30 {
gotoAndPlay(1);
}
}
movieClip 2493 {
frame 20 {
gotoAndPlay(1);
}
}
movieClip 2494 {
frame 10 {
gotoAndPlay(1);
}
}
movieClip 2496 {
}
movieClip 2497 {
frame 40 {
gotoAndPlay(1);
}
}
movieClip 2499 {
}
movieClip 2500 {
}
movieClip 2501 {
}
movieClip 2502 {
}
movieClip 2503 {
}
movieClip 2505 {
}
movieClip 2508 {
}
movieClip 2509 {
}
movieClip 2510 {
}
movieClip 2511 {
frame 30 {
gotoAndPlay(1);
}
}
movieClip 2513 {
}
movieClip 2514 {
frame 20 {
gotoAndPlay(1);
}
}
movieClip 2516 {
}
movieClip 2517 {
frame 10 {
gotoAndPlay(1);
}
}
movieClip 2519 {
}
movieClip 2520 {
frame 40 {
gotoAndPlay(1);
}
}
movieClip 2531 {
}
movieClip 2532 {
}
movieClip 2534 {
}
movieClip 2536 {
}
movieClip 2537 {
}
movieClip 2538 {
}
movieClip 2547 {
}
movieClip 2548 {
}
movieClip 2549 {
frame 40 {
gotoAndPlay(1);
}
}
movieClip 2551 {
frame 80 {
gotoAndPlay(1);
}
}
movieClip 2553 {
}
movieClip 2554 {
frame 1 {
stop();
gettingfucked = false;
gettingfuckedfast = false;
gettingfuckedturbo = false;
teasing = false;
cumming = false;
suckingcock = false;
suckingcockfast = false;
suckingcockturbo = false;
mouthtease = false;
mouthcumming = false;
blewjob = false;
sporespent = false;
}
frame 2 {
sporespent = true;
}
frame 5 {
stop();
sporespent = false;
}
frame 6 {
stop();
cumming = false;
mouthcumming = false;
}
instance pussyfuck of movieClip 304 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.horndroid.grab)) {
tellTarget ('_parent') {
gotoAndPlay('fucked');
}
}
}
}
frame 7 {
stop();
cumming = false;
mouthcumming = false;
blewjob = true;
}
instance ff2 of movieClip 304 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.horndroid.grab)) {
tellTarget ('_parent') {
gotoAndPlay('fucktitties');
}
}
}
}
frame 8 {
stop();
a1 = true;
a2 = false;
a3 = false;
a4 = false;
ac = false;
}
frame 9 {
stop();
a1 = false;
a2 = true;
a3 = false;
a4 = false;
ac = false;
}
frame 10 {
stop();
a1 = false;
a2 = false;
a3 = true;
a4 = false;
ac = false;
}
frame 11 {
stop();
a1 = false;
a2 = false;
a3 = false;
a4 = true;
ac = false;
}
frame 12 {
stop();
gettingfucked = true;
gettingfuckedfast = false;
gettingfuckedturbo = false;
teasing = false;
cumming = false;
a4 = false;
}
frame 13 {
stop();
gettingfucked = false;
gettingfuckedfast = true;
gettingfuckedturbo = false;
teasing = false;
cumming = false;
}
frame 14 {
stop();
gettingfucked = false;
gettingfuckedfast = false;
gettingfuckedturbo = true;
teasing = false;
cumming = false;
}
frame 15 {
stop();
gettingfucked = false;
gettingfuckedfast = false;
gettingfuckedturbo = false;
teasing = true;
cumming = false;
}
frame 16 {
stop();
suckingcock = true;
suckingcockfast = false;
suckingcockturbo = false;
mouthtease = false;
mouthcumming = false;
}
frame 17 {
stop();
suckingcock = false;
suckingcockfast = true;
suckingcockturbo = false;
mouthtease = false;
mouthcumming = false;
}
frame 18 {
stop();
suckingcock = false;
suckingcockfast = false;
suckingcockturbo = true;
mouthtease = false;
mouthcumming = false;
}
frame 19 {
stop();
suckingcock = false;
suckingcockfast = false;
suckingcockturbo = false;
mouthtease = true;
mouthcumming = false;
}
frame 20 {
stop();
fuckingtits = true;
fuckingtitsfast = false;
fuckingtitsturbo = false;
teasetits = false;
cumontits = false;
}
frame 21 {
stop();
fuckingtits = false;
fuckingtitsfast = true;
fuckingtitsturbo = false;
teasetits = false;
cumontits = false;
}
frame 22 {
stop();
fuckingtits = false;
fuckingtitsfast = false;
fuckingtitsturbo = true;
teasetits = false;
cumontits = false;
}
frame 23 {
stop();
fuckingtits = false;
fuckingtitsfast = false;
fuckingtitsturbo = false;
teasetits = true;
cumontits = false;
}
frame 24 {
stop();
fuckingass = true;
fuckingassfast = false;
fuckingassturbo = false;
teaseass = false;
cumonass = false;
}
frame 25 {
stop();
fuckingass = false;
fuckingassfast = true;
fuckingassturbo = false;
teaseass = false;
cumonass = false;
}
frame 26 {
stop();
fuckingass = false;
fuckingassfast = false;
fuckingassturbo = true;
teaseass = false;
cumonass = false;
}
frame 27 {
stop();
fuckingass = false;
fuckingassfast = false;
fuckingassturbo = false;
teaseass = true;
cumonass = false;
}
frame 28 {
gettingfucked = false;
gettingfuckedfast = false;
gettingfuckedturbo = false;
teasing = false;
cumming = true;
}
frame 116 {
if (blewjob == false) {
gotoAndStop('fuckedmilf');
}
if (blewjob == true) {
gotoAndStop('mouthfuckedmilf');
}
}
frame 170 {
stop();
}
instance of movieClip 280 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.horndroid.grab) && _root.hpbar.sporeactive == true && _root.policewoman.fleeing == true && _root.horndroid.mission1finish == true) {
tellTarget ('_parent') {
gotoAndPlay('usedspore');
}
sporespent = true;
} else {
if (this.hitTest(_root.horndroid.grab) && _root.hpbar.sporeactive == false && _root.policewoman.fleeing == true && _root.horndroid.mission1finish == true) {
tellTarget ('_parent') {
gotoAndPlay('fucked');
}
}
}
}
}
frame 171 {
suckingcock = false;
suckingcockfast = false;
suckingcockturbo = false;
mouthtease = false;
mouthcumming = true;
}
frame 220 {
mouthcumming = false;
gotoAndPlay('mouthfuckedmilf');
}
frame 221 {
fuckingtits = false;
fuckingtitsfast = false;
fuckingtitsturbo = false;
teasetits = false;
cumontits = true;
}
frame 273 {
cumontits = false;
gotoAndPlay('mouthfuckedmilf');
}
frame 274 {
fuckingass = false;
fuckingassfast = false;
fuckingassturbo = false;
teaseass = false;
cumonass = true;
}
frame 364 {
cumonass = false;
gotoAndPlay('mouthfuckedmilf');
}
}
movieClip 2556 {
}
movieClip 2558 {
}
movieClip 2560 {
}
movieClip 2562 {
}
movieClip 2564 {
}
movieClip 2566 {
}
movieClip 2568 {
}
movieClip 2570 {
}
movieClip 2572 {
}
movieClip 2574 {
}
movieClip 2576 {
}
movieClip 2578 {
}
movieClip 2580 {
}
movieClip 2582 {
}
movieClip 2584 {
}
movieClip 2585 {
}
movieClip 2587 {
}
movieClip 2588 {
}
movieClip 2589 {
}
movieClip 2591 {
}
movieClip 2592 {
}
movieClip 2594 {
}
movieClip 2595 {
}
movieClip 2597 {
}
movieClip 2599 {
}
movieClip 2601 {
}
movieClip 2603 {
}
movieClip 2605 {
}
movieClip 2607 {
}
movieClip 2609 {
}
movieClip 2611 {
}
movieClip 2612 {
frame 30 {
gotoAndPlay(1);
}
}
movieClip 2614 {
}
movieClip 2616 {
}
movieClip 2618 {
}
movieClip 2620 {
}
movieClip 2621 {
frame 20 {
gotoAndPlay(1);
}
}
movieClip 2623 {
}
movieClip 2624 {
}
movieClip 2625 {
frame 10 {
gotoAndPlay(1);
}
}
movieClip 2626 {
frame 40 {
gotoAndPlay(1);
}
}
movieClip 2635 {
}
movieClip 2636 {
frame 48 {
gotoAndPlay(1);
}
}
movieClip 2638 {
}
movieClip 2639 {
}
movieClip 2640 {
frame 1 {
stop();
chasing = false;
hitting = false;
fleeing = false;
sporespent = false;
}
frame 5 {
stop();
chasing = true;
hitting = false;
}
frame 10 {
hitting = true;
chasing = false;
}
frame 25 {
hitting = false;
chasing = false;
}
frame 52 {
gotoAndPlay('Chase');
}
frame 53 {
sporespent = true;
chasing = false;
hitting = false;
}
frame 59 {
stop();
sporespent = false;
}
frame 60 {
stop();
gettingfucked = true;
gettingfuckedfast = false;
gettingfuckedturbo = false;
teasing = false;
cumming = false;
}
frame 61 {
stop();
gettingfucked = false;
gettingfuckedfast = true;
gettingfuckedturbo = false;
teasing = false;
cumming = false;
}
frame 62 {
stop();
gettingfucked = false;
gettingfuckedfast = false;
gettingfuckedturbo = true;
teasing = false;
cumming = false;
}
frame 63 {
stop();
gettingfucked = false;
gettingfuckedfast = false;
gettingfuckedturbo = false;
teasing = true;
cumming = false;
}
frame 64 {
gettingfucked = false;
gettingfuckedfast = false;
gettingfuckedturbo = false;
teasing = false;
cumming = true;
}
frame 107 {
gettingfucked = false;
gettingfuckedfast = false;
gettingfuckedturbo = false;
teasing = false;
cumming = false;
}
frame 108 {
fleeing = true;
}
frame 165 {
stop();
}
}
instance policewoman of movieClip 2640 {
onClipEvent (load) {
chasing = false;
gettingfucked = false;
}
}
movieClip 2642 {
}
movieClip 2644 {
}
movieClip 2645 {
frame 1 {
stop();
talking = false;
}
instance of movieClip 240 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.horndroid.checkfuck) && _root.talker.talking == false && _root.milf._currentframe < 2 && _root.horndroid.landlady == false) {
tellTarget ('_parent') {
gotoAndPlay('message');
}
}
if (this.hitTest(_root.horndroid.checkfuck) && _root.talker.talking == false && _root.milf._currentframe < 2 && _root.horndroid.landlady == true) {
tellTarget ('_parent') {
gotoAndPlay('messageps');
}
}
}
}
frame 5 {
talking = true;
}
frame 204 {
gotoAndPlay(1);
}
frame 400 {
gotoAndPlay(1);
}
}
movieClip 2647 {
}
movieClip 2649 {
}
movieClip 2651 {
}
movieClip 2653 {
}
movieClip 2655 {
}
movieClip 2657 {
}
movieClip 2659 {
}
movieClip 2661 {
}
movieClip 2663 {
}
movieClip 2666 {
}
movieClip 2668 {
}
movieClip 2670 {
}
movieClip 2671 {
}
movieClip 2673 {
}
movieClip 2676 {
}
movieClip 2677 {
}
movieClip 2678 {
}
movieClip 2679 {
}
movieClip 2681 {
}
movieClip 2682 {
}
movieClip 2684 {
}
movieClip 2687 {
}
movieClip 2690 {
}
movieClip 2692 {
}
movieClip 2693 {
}
movieClip 2695 {
}
movieClip 2697 {
}
movieClip 2698 {
}
movieClip 2699 {
}
movieClip 2700 {
}
movieClip 2701 {
}
movieClip 2703 {
}
movieClip 2705 {
}
movieClip 2707 {
}
movieClip 2709 {
}
movieClip 2710 {
}
movieClip 2711 {
}
movieClip 2713 {
}
movieClip 2715 {
}
movieClip 2716 {
}
movieClip 2718 {
}
movieClip 2721 {
}
movieClip 2722 {
}
movieClip 2723 {
}
movieClip 2724 {
frame 10 {
gotoAndPlay(1);
}
}
movieClip 2725 {
frame 10 {
gotoAndPlay(1);
}
}
movieClip 2727 {
}
movieClip 2730 {
}
movieClip 2732 {
}
movieClip 2733 {
frame 40 {
gotoAndPlay(1);
}
}
movieClip 2734 {
frame 15 {
gotoAndPlay(1);
}
}
movieClip 2735 {
}
movieClip 2737 {
}
movieClip 2738 {
}
movieClip 2740 {
}
movieClip 2741 {
}
movieClip 2743 {
}
movieClip 2744 {
frame 15 {
gotoAndPlay(1);
}
}
movieClip 2745 {
frame 10 {
gotoAndPlay(1);
}
}
movieClip 2746 {
frame 7 {
gotoAndPlay(1);
}
}
movieClip 2747 {
frame 31 {
gotoAndPlay(1);
}
}
movieClip 2749 {
}
movieClip 2750 {
frame 20 {
gotoAndPlay(1);
}
}
movieClip 2751 {
frame 14 {
gotoAndPlay(1);
}
}
movieClip 2752 {
frame 10 {
gotoAndPlay(1);
}
}
movieClip 2753 {
frame 30 {
gotoAndPlay(1);
}
}
movieClip 2754 {
frame 10 {
gotoAndPlay(1);
}
}
movieClip 2755 {
frame 6 {
gotoAndPlay(1);
}
}
movieClip 2757 {
}
movieClip 2759 {
}
movieClip 2760 {
frame 24 {
gotoAndPlay(1);
}
}
movieClip 2761 {
frame 15 {
gotoAndPlay(1);
}
}
movieClip 2762 {
frame 8 {
gotoAndPlay(1);
}
}
movieClip 2763 {
frame 40 {
gotoAndPlay(1);
}
}
movieClip 2772 {
}
movieClip 2773 {
frame 40 {
gotoAndPlay(1);
}
}
movieClip 2782 {
}
movieClip 2783 {
frame 40 {
gotoAndPlay(1);
}
}
movieClip 2785 {
}
movieClip 2786 {
}
movieClip 2788 {
}
movieClip 2789 {
}
movieClip 2791 {
}
movieClip 2793 {
}
movieClip 2795 {
}
movieClip 2797 {
}
movieClip 2808 {
}
movieClip 2809 {
frame 40 {
gotoAndPlay(1);
}
}
movieClip 2810 {
frame 40 {
gotoAndPlay(1);
}
}
movieClip 2811 {
frame 41 {
gotoAndPlay(1);
}
}
movieClip 2812 {
frame 41 {
gotoAndPlay(1);
}
}
movieClip 2821 {
}
movieClip 2822 {
}
movieClip 2823 {
}
movieClip 2824 {
frame 1 {
stop();
gettingfucked = false;
gettingfuckedfast = false;
gettingfuckedturbo = false;
teasing = false;
cumming = false;
suckingcock = false;
suckingcockfast = false;
suckingcockturbo = false;
mouthtease = false;
mouthcumming = false;
blewjob = false;
sporespent = false;
}
frame 2 {
sporespent = true;
}
frame 5 {
stop();
sporespent = false;
}
frame 6 {
stop();
cumming = false;
mouthcumming = false;
}
instance pussyfuck of movieClip 2701 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.horndroid.grab)) {
tellTarget ('_parent') {
gotoAndPlay('fucked');
}
}
}
}
frame 7 {
stop();
cumming = false;
mouthcumming = false;
blewjob = true;
}
instance ff2 of movieClip 2701 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.horndroid.grab)) {
tellTarget ('_parent') {
gotoAndPlay('fucktitties');
}
}
}
}
frame 8 {
stop();
a1 = true;
a2 = false;
a3 = false;
a4 = false;
ac = false;
}
frame 9 {
stop();
a1 = false;
a2 = true;
a3 = false;
a4 = false;
ac = false;
}
frame 10 {
stop();
a1 = false;
a2 = false;
a3 = true;
a4 = false;
ac = false;
}
frame 11 {
stop();
a1 = false;
a2 = false;
a3 = false;
a4 = true;
ac = false;
}
frame 12 {
stop();
gettingfucked = true;
gettingfuckedfast = false;
gettingfuckedturbo = false;
teasing = false;
cumming = false;
a4 = false;
}
frame 13 {
stop();
gettingfucked = false;
gettingfuckedfast = true;
gettingfuckedturbo = false;
teasing = false;
cumming = false;
}
frame 14 {
stop();
gettingfucked = false;
gettingfuckedfast = false;
gettingfuckedturbo = true;
teasing = false;
cumming = false;
}
frame 15 {
stop();
gettingfucked = false;
gettingfuckedfast = false;
gettingfuckedturbo = false;
teasing = true;
cumming = false;
}
frame 16 {
stop();
suckingcock = true;
suckingcockfast = false;
suckingcockturbo = false;
mouthtease = false;
mouthcumming = false;
}
frame 17 {
stop();
suckingcock = false;
suckingcockfast = true;
suckingcockturbo = false;
mouthtease = false;
mouthcumming = false;
}
frame 18 {
stop();
suckingcock = false;
suckingcockfast = false;
suckingcockturbo = true;
mouthtease = false;
mouthcumming = false;
}
frame 19 {
stop();
suckingcock = false;
suckingcockfast = false;
suckingcockturbo = false;
mouthtease = true;
mouthcumming = false;
}
frame 20 {
stop();
fuckingtits = true;
fuckingtitsfast = false;
fuckingtitsturbo = false;
teasetits = false;
cumontits = false;
}
frame 21 {
stop();
fuckingtits = false;
fuckingtitsfast = true;
fuckingtitsturbo = false;
teasetits = false;
cumontits = false;
}
frame 22 {
stop();
fuckingtits = false;
fuckingtitsfast = false;
fuckingtitsturbo = true;
teasetits = false;
cumontits = false;
}
frame 23 {
stop();
fuckingtits = false;
fuckingtitsfast = false;
fuckingtitsturbo = false;
teasetits = true;
cumontits = false;
}
frame 24 {
stop();
fuckingass = true;
fuckingassfast = false;
fuckingassturbo = false;
teaseass = false;
cumonass = false;
}
frame 25 {
stop();
fuckingass = false;
fuckingassfast = true;
fuckingassturbo = false;
teaseass = false;
cumonass = false;
}
frame 26 {
stop();
fuckingass = false;
fuckingassfast = false;
fuckingassturbo = true;
teaseass = false;
cumonass = false;
}
frame 27 {
stop();
fuckingass = false;
fuckingassfast = false;
fuckingassturbo = false;
teaseass = true;
cumonass = false;
}
frame 28 {
gettingfucked = false;
gettingfuckedfast = false;
gettingfuckedturbo = false;
teasing = false;
cumming = true;
}
frame 75 {
if (blewjob == false) {
gotoAndStop('fuckedmilf');
}
if (blewjob == true) {
gotoAndStop('mouthfuckedmilf');
}
}
frame 129 {
gotoAndStop(1);
}
frame 130 {
suckingcock = false;
suckingcockfast = false;
suckingcockturbo = false;
mouthtease = false;
mouthcumming = true;
}
frame 179 {
mouthcumming = false;
gotoAndPlay('mouthfuckedmilf');
}
frame 180 {
fuckingtits = false;
fuckingtitsfast = false;
fuckingtitsturbo = false;
teasetits = false;
cumontits = true;
}
frame 232 {
cumontits = false;
gotoAndPlay('mouthfuckedmilf');
}
frame 233 {
fuckingass = false;
fuckingassfast = false;
fuckingassturbo = false;
teaseass = false;
cumonass = true;
}
frame 323 {
cumonass = false;
gotoAndPlay('mouthfuckedmilf');
}
}
movieClip 2826 {
}
movieClip 2828 {
}
movieClip 2830 {
}
movieClip 2831 {
frame 1 {
stop();
talking = false;
}
instance of movieClip 240 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.horndroid.checkfuck) && _root.talker.talking == false && _root.teen._currentframe < 2 && _root.horndroid.lorraine == false) {
tellTarget ('_parent') {
gotoAndPlay('message');
}
}
if (this.hitTest(_root.horndroid.checkfuck) && _root.talker.talking == false && _root.teen._currentframe < 2 && _root.horndroid.lorraine == true) {
tellTarget ('_parent') {
gotoAndPlay('messageps');
}
}
}
}
frame 5 {
talking = true;
}
frame 204 {
gotoAndPlay(1);
}
frame 400 {
gotoAndPlay(1);
}
}
movieClip 2833 {
}
movieClip 2837 {
}
movieClip 2838 {
}
movieClip 2840 {
}
movieClip 2842 {
}
movieClip 2843 {
}
movieClip 2846 {
}
movieClip 2848 {
}
movieClip 2850 {
}
movieClip 2852 {
}
movieClip 2854 {
}
movieClip 2856 {
}
movieClip 2857 {
}
movieClip 2858 {
}
movieClip 2859 {
}
movieClip 2861 {
}
movieClip 2863 {
}
movieClip 2865 {
}
movieClip 2867 {
}
movieClip 2871 {
}
movieClip 2873 {
}
movieClip 2875 {
}
movieClip 2877 {
}
movieClip 2878 {
frame 80 {
gotoAndPlay(1);
}
}
movieClip 2880 {
}
movieClip 2882 {
}
movieClip 2883 {
}
movieClip 2884 {
}
movieClip 2885 {
}
movieClip 2887 {
}
movieClip 2888 {
}
movieClip 2890 {
}
movieClip 2891 {
}
movieClip 2893 {
}
movieClip 2894 {
}
movieClip 2896 {
}
movieClip 2898 {
}
movieClip 2899 {
frame 40 {
gotoAndPlay(1);
}
}
movieClip 2901 {
}
movieClip 2902 {
frame 40 {
gotoAndPlay(1);
}
}
movieClip 2904 {
}
movieClip 2905 {
}
movieClip 2908 {
}
movieClip 2910 {
}
movieClip 2911 {
}
movieClip 2913 {
}
movieClip 2915 {
}
movieClip 2916 {
frame 40 {
gotoAndPlay(1);
}
}
movieClip 2918 {
}
movieClip 2920 {
}
movieClip 2921 {
frame 20 {
gotoAndPlay(1);
}
}
movieClip 2922 {
}
movieClip 2923 {
}
movieClip 2924 {
}
movieClip 2925 {
}
movieClip 2926 {
frame 20 {
gotoAndPlay(1);
}
}
movieClip 2928 {
}
movieClip 2929 {
frame 1 {
gotoAndPlay(1);
}
}
movieClip 2931 {
}
movieClip 2932 {
}
movieClip 2933 {
}
movieClip 2935 {
}
movieClip 2937 {
}
movieClip 2938 {
}
movieClip 2939 {
}
movieClip 2940 {
frame 19 {
gotoAndPlay(1);
}
}
movieClip 2941 {
frame 13 {
gotoAndPlay(1);
}
}
movieClip 2942 {
frame 8 {
gotoAndPlay(1);
}
}
movieClip 2943 {
frame 40 {
gotoAndPlay(1);
}
}
movieClip 2944 {
}
movieClip 2946 {
}
movieClip 2948 {
}
movieClip 2950 {
}
movieClip 2952 {
}
movieClip 2953 {
frame 20 {
gotoAndPlay(1);
}
}
movieClip 2954 {
frame 12 {
gotoAndPlay(1);
}
}
movieClip 2955 {
frame 7 {
gotoAndPlay(1);
}
}
movieClip 2957 {
}
movieClip 2958 {
frame 65 {
gotoAndPlay(1);
}
}
movieClip 2959 {
}
movieClip 2961 {
}
movieClip 2963 {
}
movieClip 2964 {
}
movieClip 2965 {
}
movieClip 2967 {
}
movieClip 2968 {
frame 30 {
gotoAndPlay(1);
}
}
movieClip 2969 {
frame 20 {
gotoAndPlay(1);
}
}
movieClip 2970 {
frame 10 {
gotoAndPlay(1);
}
}
movieClip 2972 {
}
movieClip 2973 {
frame 40 {
gotoAndPlay(1);
}
}
movieClip 2975 {
}
movieClip 2976 {
}
movieClip 2977 {
}
movieClip 2978 {
}
movieClip 2980 {
}
movieClip 2982 {
}
movieClip 2983 {
}
movieClip 2984 {
frame 30 {
gotoAndPlay(1);
}
}
movieClip 2986 {
}
movieClip 2987 {
frame 20 {
gotoAndPlay(1);
}
}
movieClip 2989 {
}
movieClip 2990 {
frame 10 {
gotoAndPlay(1);
}
}
movieClip 2992 {
}
movieClip 2993 {
frame 40 {
gotoAndPlay(1);
}
}
movieClip 3004 {
}
movieClip 3005 {
}
movieClip 3019 {
}
movieClip 3021 {
}
movieClip 3023 {
}
movieClip 3025 {
}
movieClip 3026 {
}
movieClip 3029 {
}
movieClip 3038 {
}
movieClip 3040 {
}
movieClip 3041 {
}
movieClip 3042 {
frame 40 {
gotoAndPlay(1);
}
}
movieClip 3044 {
frame 80 {
gotoAndPlay(1);
}
}
movieClip 3046 {
}
movieClip 3047 {
frame 1 {
stop();
gettingfucked = false;
gettingfuckedfast = false;
gettingfuckedturbo = false;
teasing = false;
cumming = false;
suckingcock = false;
suckingcockfast = false;
suckingcockturbo = false;
mouthtease = false;
mouthcumming = false;
blewjob = false;
sporespent = false;
}
frame 2 {
sporespent = true;
}
frame 5 {
stop();
sporespent = false;
}
frame 6 {
stop();
cumming = false;
mouthcumming = false;
}
instance pussyfuck of movieClip 304 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.horndroid.grab)) {
tellTarget ('_parent') {
gotoAndPlay('fucked');
}
}
}
}
frame 7 {
stop();
cumming = false;
mouthcumming = false;
blewjob = true;
}
instance ff2 of movieClip 304 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.horndroid.grab)) {
tellTarget ('_parent') {
gotoAndPlay('fucktitties');
}
}
}
}
frame 8 {
stop();
a1 = true;
a2 = false;
a3 = false;
a4 = false;
ac = false;
}
frame 9 {
stop();
a1 = false;
a2 = true;
a3 = false;
a4 = false;
ac = false;
}
frame 10 {
stop();
a1 = false;
a2 = false;
a3 = true;
a4 = false;
ac = false;
}
frame 11 {
stop();
a1 = false;
a2 = false;
a3 = false;
a4 = true;
ac = false;
}
frame 12 {
stop();
gettingfucked = true;
gettingfuckedfast = false;
gettingfuckedturbo = false;
teasing = false;
cumming = false;
a4 = false;
}
frame 13 {
stop();
gettingfucked = false;
gettingfuckedfast = true;
gettingfuckedturbo = false;
teasing = false;
cumming = false;
}
frame 14 {
stop();
gettingfucked = false;
gettingfuckedfast = false;
gettingfuckedturbo = true;
teasing = false;
cumming = false;
}
frame 15 {
stop();
gettingfucked = false;
gettingfuckedfast = false;
gettingfuckedturbo = false;
teasing = true;
cumming = false;
}
frame 16 {
stop();
suckingcock = true;
suckingcockfast = false;
suckingcockturbo = false;
mouthtease = false;
mouthcumming = false;
}
frame 17 {
stop();
suckingcock = false;
suckingcockfast = true;
suckingcockturbo = false;
mouthtease = false;
mouthcumming = false;
}
frame 18 {
stop();
suckingcock = false;
suckingcockfast = false;
suckingcockturbo = true;
mouthtease = false;
mouthcumming = false;
}
frame 19 {
stop();
suckingcock = false;
suckingcockfast = false;
suckingcockturbo = false;
mouthtease = true;
mouthcumming = false;
}
frame 20 {
stop();
fuckingtits = true;
fuckingtitsfast = false;
fuckingtitsturbo = false;
teasetits = false;
cumontits = false;
}
frame 21 {
stop();
fuckingtits = false;
fuckingtitsfast = true;
fuckingtitsturbo = false;
teasetits = false;
cumontits = false;
}
frame 22 {
stop();
fuckingtits = false;
fuckingtitsfast = false;
fuckingtitsturbo = true;
teasetits = false;
cumontits = false;
}
frame 23 {
stop();
fuckingtits = false;
fuckingtitsfast = false;
fuckingtitsturbo = false;
teasetits = true;
cumontits = false;
}
frame 24 {
stop();
fuckingass = true;
fuckingassfast = false;
fuckingassturbo = false;
teaseass = false;
cumonass = false;
}
frame 25 {
stop();
fuckingass = false;
fuckingassfast = true;
fuckingassturbo = false;
teaseass = false;
cumonass = false;
}
frame 26 {
stop();
fuckingass = false;
fuckingassfast = false;
fuckingassturbo = true;
teaseass = false;
cumonass = false;
}
frame 27 {
stop();
fuckingass = false;
fuckingassfast = false;
fuckingassturbo = false;
teaseass = true;
cumonass = false;
}
frame 28 {
gettingfucked = false;
gettingfuckedfast = false;
gettingfuckedturbo = false;
teasing = false;
cumming = true;
}
frame 116 {
if (blewjob == false) {
gotoAndStop('fuckedmilf');
}
if (blewjob == true) {
gotoAndStop('mouthfuckedmilf');
}
}
frame 170 {
stop();
}
instance of movieClip 280 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.horndroid.grab) && _root.hpbar.sporeactive == true && _root.policewoman.fleeing == true && _root.horndroid.mission1finish == true) {
tellTarget ('_parent') {
gotoAndPlay('usedspore');
}
sporespent = true;
} else {
if (this.hitTest(_root.horndroid.grab) && _root.hpbar.sporeactive == false && _root.policewoman.fleeing == true && _root.horndroid.mission1finish == true) {
tellTarget ('_parent') {
gotoAndPlay('fucked');
}
}
}
}
}
frame 171 {
suckingcock = false;
suckingcockfast = false;
suckingcockturbo = false;
mouthtease = false;
mouthcumming = true;
}
frame 220 {
mouthcumming = false;
gotoAndPlay('mouthfuckedmilf');
}
frame 221 {
fuckingtits = false;
fuckingtitsfast = false;
fuckingtitsturbo = false;
teasetits = false;
cumontits = true;
}
frame 273 {
cumontits = false;
gotoAndPlay('mouthfuckedmilf');
}
frame 274 {
fuckingass = false;
fuckingassfast = false;
fuckingassturbo = false;
teaseass = false;
cumonass = true;
}
instance nymphdoorkeyacquired of movieClip 280 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.horndroid.grab) && _root.hpbar.sporeactive == true && _root.policewoman.fleeing == true && _root.horndroid.mission1finish == true) {
tellTarget ('_parent') {
gotoAndPlay('usedspore');
}
sporespent = true;
} else {
if (this.hitTest(_root.horndroid.grab) && _root.hpbar.sporeactive == false && _root.policewoman.fleeing == true && _root.horndroid.mission1finish == true) {
tellTarget ('_parent') {
gotoAndPlay('fucked');
}
}
}
}
}
frame 364 {
cumonass = false;
gotoAndPlay('mouthfuckedmilf');
}
}
movieClip 3048 {
}
movieClip 3050 {
}
movieClip 3051 {
}
movieClip 3053 {
}
movieClip 3055 {
}
movieClip 3057 {
}
movieClip 3059 {
}
movieClip 3061 {
}
movieClip 3063 {
}
movieClip 3064 {
}
movieClip 3066 {
}
movieClip 3067 {
}
movieClip 3069 {
}
movieClip 3071 {
}
movieClip 3073 {
}
movieClip 3075 {
}
movieClip 3076 {
}
movieClip 3077 {
}
movieClip 3079 {
}
movieClip 3081 {
}
movieClip 3082 {
}
movieClip 3083 {
}
movieClip 3085 {
}
movieClip 3086 {
}
movieClip 3088 {
}
movieClip 3089 {
}
movieClip 3091 {
}
movieClip 3093 {
}
movieClip 3095 {
}
movieClip 3097 {
}
movieClip 3099 {
}
movieClip 3100 {
}
movieClip 3102 {
}
movieClip 3104 {
}
movieClip 3106 {
}
movieClip 3108 {
}
movieClip 3109 {
frame 30 {
gotoAndPlay(1);
}
}
movieClip 3111 {
}
movieClip 3113 {
}
movieClip 3115 {
}
movieClip 3116 {
frame 20 {
gotoAndPlay(1);
}
}
movieClip 3118 {
}
movieClip 3120 {
}
movieClip 3121 {
frame 10 {
gotoAndPlay(1);
}
}
movieClip 3123 {
}
movieClip 3124 {
frame 40 {
gotoAndPlay(1);
}
}
movieClip 3133 {
}
movieClip 3134 {
frame 48 {
gotoAndPlay(1);
}
}
movieClip 3136 {
}
movieClip 3137 {
}
movieClip 3138 {
frame 1 {
stop();
chasing = false;
hitting = false;
fleeing = false;
sporespent = false;
}
frame 5 {
stop();
chasing = true;
hitting = false;
}
frame 10 {
hitting = true;
chasing = false;
}
frame 25 {
hitting = false;
chasing = false;
}
frame 52 {
gotoAndPlay('Chase');
}
frame 53 {
sporespent = true;
chasing = false;
hitting = false;
}
frame 59 {
stop();
sporespent = false;
}
frame 60 {
stop();
gettingfucked = true;
gettingfuckedfast = false;
gettingfuckedturbo = false;
teasing = false;
cumming = false;
}
frame 61 {
stop();
gettingfucked = false;
gettingfuckedfast = true;
gettingfuckedturbo = false;
teasing = false;
cumming = false;
}
frame 62 {
stop();
gettingfucked = false;
gettingfuckedfast = false;
gettingfuckedturbo = true;
teasing = false;
cumming = false;
}
frame 63 {
stop();
gettingfucked = false;
gettingfuckedfast = false;
gettingfuckedturbo = false;
teasing = true;
cumming = false;
}
frame 64 {
gettingfucked = false;
gettingfuckedfast = false;
gettingfuckedturbo = false;
teasing = false;
cumming = true;
}
frame 107 {
gettingfucked = false;
gettingfuckedfast = false;
gettingfuckedturbo = false;
teasing = false;
cumming = false;
}
frame 108 {
fleeing = true;
}
frame 165 {
stop();
}
}
instance policewoman of movieClip 3138 {
onClipEvent (load) {
chasing = false;
gettingfucked = false;
}
}
movieClip 3140 {
}
movieClip 3142 {
}
movieClip 3144 {
}
movieClip 3146 {
}
movieClip 3147 {
frame 1 {
stop();
talking = false;
}
instance of movieClip 240 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.horndroid.grab) && _root.talker.talking == false && _root.milf._currentframe < 2 && _root.horndroid.nymphdoor == false && _root.horndroid.nymphkey == false) {
tellTarget ('_parent') {
gotoAndPlay('message');
}
}
if (this.hitTest(_root.horndroid.grab) && _root.talker.talking == false && _root.horndroid.nymphdoor == true && _root.horndroid.nymphkey == false) {
tellTarget ('_parent') {
gotoAndPlay('messageps');
}
}
}
}
instance of movieClip 240 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.horndroid.whilefucking) && _root.talker.talking == false && _root.milf._currentframe < 325 && _root.milf._currentframe > 323 && _root.horndroid.nymphdoor == false) {
tellTarget ('_parent') {
gotoAndPlay('messagekeyacquired');
}
}
}
}
frame 5 {
talking = true;
}
frame 100 {
gotoAndPlay(1);
}
frame 296 {
gotoAndPlay(1);
}
frame 297 {
talking = true;
}
frame 393 {
gotoAndPlay(1);
}
}
movieClip 3149 {
}
movieClip 3150 {
}
movieClip 3151 {
}
movieClip 3153 {
}
movieClip 3155 {
}
movieClip 3158 {
}
movieClip 3159 {
}
movieClip 3161 {
}
movieClip 3162 {
}
movieClip 3164 {
}
movieClip 3166 {
}
movieClip 3168 {
}
movieClip 3170 {
}
movieClip 3172 {
}
movieClip 3175 {
}
movieClip 3176 {
}
movieClip 3178 {
}
movieClip 3180 {
}
movieClip 3183 {
}
movieClip 3185 {
}
movieClip 3186 {
}
movieClip 3187 {
}
movieClip 3189 {
}
movieClip 3191 {
}
movieClip 3193 {
}
movieClip 3195 {
}
movieClip 3198 {
}
movieClip 3200 {
}
movieClip 3202 {
}
movieClip 3203 {
}
movieClip 3204 {
}
movieClip 3206 {
}
movieClip 3208 {
}
movieClip 3210 {
}
movieClip 3212 {
}
movieClip 3214 {
}
movieClip 3216 {
}
movieClip 3218 {
}
movieClip 3220 {
}
movieClip 3221 {
}
movieClip 3222 {
frame 40 {
gotoAndPlay(1);
}
}
movieClip 3223 {
}
movieClip 3226 {
}
movieClip 3227 {
}
movieClip 3228 {
frame 40 {
gotoAndPlay(1);
}
}
movieClip 3230 {
}
movieClip 3232 {
}
movieClip 3234 {
}
movieClip 3236 {
}
movieClip 3238 {
}
movieClip 3239 {
}
movieClip 3241 {
}
movieClip 3242 {
}
movieClip 3243 {
}
movieClip 3244 {
}
movieClip 3245 {
}
movieClip 3247 {
}
movieClip 3248 {
}
movieClip 3250 {
}
movieClip 3251 {
}
movieClip 3252 {
}
movieClip 3254 {
}
movieClip 3256 {
}
movieClip 3258 {
}
movieClip 3260 {
}
movieClip 3261 {
frame 40 {
gotoAndPlay(1);
}
}
movieClip 3262 {
}
movieClip 3264 {
}
movieClip 3266 {
}
movieClip 3267 {
frame 20 {
gotoAndPlay(1);
}
}
movieClip 3270 {
}
movieClip 3273 {
}
movieClip 3274 {
}
movieClip 3276 {
}
movieClip 3277 {
}
movieClip 3278 {
}
movieClip 3279 {
frame 20 {
gotoAndPlay(1);
}
}
movieClip 3282 {
}
movieClip 3284 {
}
movieClip 3285 {
}
movieClip 3287 {
}
movieClip 3288 {
frame 1 {
gotoAndPlay(1);
}
}
movieClip 3290 {
}
movieClip 3292 {
}
movieClip 3294 {
}
movieClip 3295 {
}
movieClip 3297 {
}
movieClip 3298 {
}
movieClip 3300 {
}
movieClip 3303 {
}
movieClip 3304 {
}
movieClip 3306 {
}
movieClip 3310 {
}
movieClip 3312 {
}
movieClip 3313 {
}
movieClip 3314 {
}
movieClip 3316 {
}
movieClip 3318 {
}
movieClip 3319 {
}
movieClip 3321 {
}
movieClip 3325 {
frame 20 {
gotoAndPlay(1);
}
}
movieClip 3326 {
frame 15 {
gotoAndPlay(1);
}
}
movieClip 3327 {
frame 8 {
gotoAndPlay(1);
}
}
movieClip 3329 {
}
movieClip 3331 {
}
movieClip 3333 {
}
movieClip 3335 {
frame 40 {
gotoAndPlay(1);
}
}
movieClip 3336 {
}
movieClip 3337 {
}
movieClip 3338 {
}
movieClip 3340 {
}
movieClip 3342 {
}
movieClip 3343 {
}
movieClip 3344 {
}
movieClip 3346 {
}
movieClip 3348 {
}
movieClip 3349 {
frame 20 {
gotoAndPlay(1);
}
}
movieClip 3350 {
frame 12 {
gotoAndPlay(1);
}
}
movieClip 3351 {
frame 7 {
gotoAndPlay(1);
}
}
movieClip 3353 {
}
movieClip 3354 {
frame 65 {
gotoAndPlay(1);
}
}
movieClip 3355 {
}
movieClip 3357 {
}
movieClip 3359 {
}
movieClip 3360 {
}
movieClip 3361 {
}
movieClip 3363 {
}
movieClip 3364 {
frame 30 {
gotoAndPlay(1);
}
}
movieClip 3365 {
frame 20 {
gotoAndPlay(1);
}
}
movieClip 3366 {
}
movieClip 3368 {
}
movieClip 3369 {
}
movieClip 3370 {
frame 10 {
gotoAndPlay(1);
}
}
movieClip 3372 {
}
movieClip 3373 {
frame 40 {
gotoAndPlay(1);
}
}
movieClip 3375 {
}
movieClip 3376 {
}
movieClip 3377 {
}
movieClip 3378 {
}
movieClip 3379 {
}
movieClip 3381 {
}
movieClip 3382 {
}
movieClip 3383 {
}
movieClip 3385 {
}
movieClip 3387 {
}
movieClip 3388 {
frame 30 {
gotoAndPlay(1);
}
}
movieClip 3389 {
frame 20 {
gotoAndPlay(1);
}
}
movieClip 3390 {
}
movieClip 3391 {
frame 10 {
gotoAndPlay(1);
}
}
movieClip 3392 {
frame 40 {
gotoAndPlay(1);
}
}
movieClip 3394 {
}
movieClip 3405 {
}
movieClip 3406 {
}
movieClip 3407 {
frame 40 {
gotoAndPlay(1);
}
}
movieClip 3408 {
}
movieClip 3409 {
}
movieClip 3411 {
}
movieClip 3412 {
}
movieClip 3413 {
}
movieClip 3414 {
}
movieClip 3415 {
}
movieClip 3429 {
}
movieClip 3430 {
}
movieClip 3431 {
}
movieClip 3432 {
}
movieClip 3433 {
}
movieClip 3438 {
}
movieClip 3440 {
}
movieClip 3442 {
}
movieClip 3443 {
}
movieClip 3444 {
}
movieClip 3446 {
}
movieClip 3448 {
}
movieClip 3450 {
}
movieClip 3451 {
}
movieClip 3452 {
}
movieClip 3454 {
}
movieClip 3455 {
}
movieClip 3458 {
}
movieClip 3460 {
}
movieClip 3462 {
}
movieClip 3463 {
}
movieClip 3465 {
}
movieClip 3467 {
}
movieClip 3469 {
}
movieClip 3478 {
}
movieClip 3479 {
}
movieClip 3480 {
}
movieClip 3481 {
frame 40 {
gotoAndPlay(1);
}
}
movieClip 3482 {
frame 40 {
gotoAndPlay(1);
}
}
movieClip 3483 {
}
movieClip 3485 {
frame 80 {
gotoAndPlay(1);
}
}
movieClip 3487 {
}
movieClip 3488 {
frame 1 {
stop();
gettingfucked = false;
gettingfuckedfast = false;
gettingfuckedturbo = false;
teasing = false;
cumming = false;
suckingcock = false;
suckingcockfast = false;
suckingcockturbo = false;
mouthtease = false;
mouthcumming = false;
blewjob = false;
sporespent = false;
}
frame 2 {
sporespent = true;
}
frame 10 {
stop();
sporespent = false;
}
frame 11 {
stop();
cumming = false;
mouthcumming = false;
}
frame 12 {
stop();
cumming = false;
mouthcumming = false;
blewjob = true;
}
instance ff2 of movieClip 3223 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.horndroid.grab)) {
tellTarget ('_parent') {
gotoAndPlay('fucktitties');
}
}
}
}
frame 13 {
stop();
a1 = true;
a2 = false;
a3 = false;
a4 = false;
ac = false;
}
frame 14 {
stop();
a1 = false;
a2 = true;
a3 = false;
a4 = false;
ac = false;
}
frame 15 {
stop();
a1 = false;
a2 = false;
a3 = true;
a4 = false;
ac = false;
}
frame 16 {
stop();
a1 = false;
a2 = false;
a3 = false;
a4 = true;
ac = false;
}
frame 17 {
stop();
gettingfucked = true;
gettingfuckedfast = false;
gettingfuckedturbo = false;
teasing = false;
cumming = false;
a4 = false;
}
frame 18 {
stop();
gettingfucked = false;
gettingfuckedfast = true;
gettingfuckedturbo = false;
teasing = false;
cumming = false;
}
frame 19 {
stop();
gettingfucked = false;
gettingfuckedfast = false;
gettingfuckedturbo = true;
teasing = false;
cumming = false;
}
frame 20 {
stop();
gettingfucked = false;
gettingfuckedfast = false;
gettingfuckedturbo = false;
teasing = true;
cumming = false;
}
frame 21 {
stop();
suckingcock = true;
suckingcockfast = false;
suckingcockturbo = false;
mouthtease = false;
mouthcumming = false;
}
frame 22 {
stop();
suckingcock = false;
suckingcockfast = true;
suckingcockturbo = false;
mouthtease = false;
mouthcumming = false;
}
frame 23 {
stop();
suckingcock = false;
suckingcockfast = false;
suckingcockturbo = true;
mouthtease = false;
mouthcumming = false;
}
frame 24 {
stop();
suckingcock = false;
suckingcockfast = false;
suckingcockturbo = false;
mouthtease = true;
mouthcumming = false;
}
frame 25 {
stop();
fuckingtits = true;
fuckingtitsfast = false;
fuckingtitsturbo = false;
teasetits = false;
cumontits = false;
}
frame 26 {
stop();
fuckingtits = false;
fuckingtitsfast = true;
fuckingtitsturbo = false;
teasetits = false;
cumontits = false;
}
frame 27 {
stop();
fuckingtits = false;
fuckingtitsfast = false;
fuckingtitsturbo = true;
teasetits = false;
cumontits = false;
}
frame 28 {
stop();
fuckingtits = false;
fuckingtitsfast = false;
fuckingtitsturbo = false;
teasetits = true;
cumontits = false;
}
frame 29 {
stop();
fuckingass = true;
fuckingassfast = false;
fuckingassturbo = false;
teaseass = false;
cumonass = false;
}
frame 30 {
stop();
fuckingass = false;
fuckingassfast = true;
fuckingassturbo = false;
teaseass = false;
cumonass = false;
}
frame 31 {
stop();
fuckingass = false;
fuckingassfast = false;
fuckingassturbo = true;
teaseass = false;
cumonass = false;
}
frame 32 {
stop();
fuckingass = false;
fuckingassfast = false;
fuckingassturbo = false;
teaseass = true;
cumonass = false;
}
frame 33 {
gettingfucked = false;
gettingfuckedfast = false;
gettingfuckedturbo = false;
teasing = false;
cumming = true;
}
frame 121 {
if (blewjob == false) {
gotoAndStop('fuckedmilf');
}
if (blewjob == true) {
gotoAndStop('mouthfuckedmilf');
}
}
frame 175 {
stop();
}
instance of movieClip 3150 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.horndroid.grab) && _root.hpbar.sporeactive == true && _root.policewoman.fleeing == true && _root.horndroid.mission1finish == true) {
tellTarget ('_parent') {
gotoAndPlay('usedspore');
}
sporespent = true;
} else {
if (this.hitTest(_root.horndroid.grab) && _root.hpbar.sporeactive == false && _root.policewoman.fleeing == true && _root.horndroid.mission1finish == true) {
tellTarget ('_parent') {
gotoAndPlay('fucked');
}
}
}
}
}
frame 176 {
suckingcock = false;
suckingcockfast = false;
suckingcockturbo = false;
mouthtease = false;
mouthcumming = true;
}
frame 225 {
mouthcumming = false;
gotoAndPlay('mouthfuckedmilf');
}
frame 226 {
fuckingtits = false;
fuckingtitsfast = false;
fuckingtitsturbo = false;
teasetits = false;
cumontits = true;
}
frame 278 {
cumontits = false;
gotoAndPlay('mouthfuckedmilf');
}
frame 279 {
fuckingass = false;
fuckingassfast = false;
fuckingassturbo = false;
teaseass = false;
cumonass = true;
}
frame 369 {
cumonass = false;
gotoAndPlay('mouthfuckedmilf');
}
}
movieClip 3490 {
}
movieClip 3491 {
frame 1 {
stop();
talking = false;
}
instance of movieClip 240 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.horndroid.whilefucking) && _root.talker.talking == false && _root.nymph._currentframe < 47 && _root.nymph._currentframe > 45 && _root.horndroid.mission3a == false) {
tellTarget ('_parent') {
gotoAndPlay('messagekeyacquired');
}
}
}
}
frame 5 {
talking = true;
}
frame 204 {
gotoAndPlay(1);
}
frame 400 {
gotoAndPlay(1);
}
frame 401 {
talking = true;
}
frame 497 {
gotoAndPlay(1);
}
}
movieClip 3493 {
}
movieClip 3495 {
}
movieClip 3496 {
frame 1 {
stop();
idle = true;
consoleon = false;
}
instance of movieClip 219 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.horndroid.grab) && _root.book.consoleon == false) {
tellTarget ('_parent') {
gotoAndPlay('start');
}
}
}
}
frame 2 {
idle = false;
consoleon = true;
}
instance shutdowncomputer of movieClip 219 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.horndroid.grab) && _root.computer.consoleon == false) {
tellTarget ('_parent') {
gotoAndPlay('start');
}
}
}
}
frame 29 {
gotoAndPlay(1);
}
frame 30 {
idle = false;
consoleon = true;
}
instance usingcomputer of movieClip 219 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.horndroid.grab) && _root.computer.consoleon == false) {
tellTarget ('_parent') {
gotoAndPlay('start');
}
}
}
}
frame 39 {
stop();
idle = true;
}
}
instance book of movieClip 3496 {
onClipEvent (enterFrame) {
if (Key.isDown(69) && idle == true && consoleon == true) {
this.gotoAndPlay('shutdown');
}
}
}
movieClip 3498 {
}
movieClip 3500 {
}
movieClip 3502 {
}
movieClip 3505 {
}
movieClip 3507 {
}
movieClip 3509 {
}
movieClip 3511 {
}
movieClip 3513 {
}
movieClip 3515 {
}
movieClip 3517 {
}
movieClip 3520 {
}
movieClip 3522 {
}
movieClip 3523 {
}
movieClip 3525 {
}
movieClip 3527 {
}
movieClip 3529 {
}
movieClip 3531 {
}
movieClip 3534 {
}
movieClip 3535 {
}
movieClip 3537 {
}
movieClip 3540 {
}
movieClip 3542 {
}
movieClip 3544 {
}
movieClip 3545 {
frame 80 {
gotoAndPlay(1);
}
}
movieClip 3547 {
}
movieClip 3549 {
}
movieClip 3550 {
}
movieClip 3552 {
}
movieClip 3554 {
}
movieClip 3556 {
}
movieClip 3558 {
}
movieClip 3560 {
}
movieClip 3562 {
}
movieClip 3564 {
}
movieClip 3565 {
frame 40 {
gotoAndPlay(1);
}
}
movieClip 3568 {
}
movieClip 3569 {
frame 40 {
gotoAndPlay(1);
}
}
movieClip 3571 {
}
movieClip 3572 {
}
movieClip 3573 {
}
movieClip 3575 {
}
movieClip 3577 {
}
movieClip 3578 {
}
movieClip 3580 {
}
movieClip 3582 {
}
movieClip 3583 {
}
movieClip 3585 {
}
movieClip 3587 {
}
movieClip 3588 {
}
movieClip 3590 {
}
movieClip 3592 {
}
movieClip 3593 {
frame 40 {
gotoAndPlay(1);
}
}
movieClip 3595 {
}
movieClip 3596 {
}
movieClip 3598 {
}
movieClip 3600 {
}
movieClip 3601 {
frame 20 {
gotoAndPlay(1);
}
}
movieClip 3603 {
}
movieClip 3604 {
}
movieClip 3605 {
}
movieClip 3606 {
}
movieClip 3607 {
frame 20 {
gotoAndPlay(1);
}
}
movieClip 3609 {
}
movieClip 3611 {
}
movieClip 3613 {
}
movieClip 3615 {
}
movieClip 3617 {
}
movieClip 3619 {
}
movieClip 3620 {
}
movieClip 3621 {
frame 25 {
gotoAndPlay(1);
}
}
movieClip 3623 {
}
movieClip 3624 {
}
movieClip 3626 {
}
movieClip 3628 {
}
movieClip 3631 {
}
movieClip 3633 {
}
movieClip 3634 {
}
movieClip 3635 {
}
movieClip 3637 {
}
movieClip 3638 {
}
movieClip 3639 {
}
movieClip 3640 {
}
movieClip 3641 {
frame 20 {
gotoAndPlay(1);
}
}
movieClip 3642 {
frame 13 {
gotoAndPlay(1);
}
}
movieClip 3643 {
frame 8 {
gotoAndPlay(1);
}
}
movieClip 3646 {
}
movieClip 3648 {
}
movieClip 3649 {
frame 40 {
gotoAndPlay(1);
}
}
movieClip 3650 {
}
movieClip 3653 {
}
movieClip 3654 {
}
movieClip 3656 {
}
movieClip 3658 {
}
movieClip 3659 {
}
movieClip 3660 {
frame 20 {
gotoAndPlay(1);
}
}
movieClip 3661 {
frame 12 {
gotoAndPlay(1);
}
}
movieClip 3662 {
frame 7 {
gotoAndPlay(1);
}
}
movieClip 3665 {
}
movieClip 3667 {
}
movieClip 3670 {
}
movieClip 3671 {
frame 65 {
gotoAndPlay(1);
}
}
movieClip 3672 {
}
movieClip 3675 {
}
movieClip 3677 {
}
movieClip 3678 {
}
movieClip 3679 {
}
movieClip 3681 {
}
movieClip 3682 {
frame 30 {
gotoAndPlay(1);
}
}
movieClip 3683 {
frame 20 {
gotoAndPlay(1);
}
}
movieClip 3684 {
frame 10 {
gotoAndPlay(1);
}
}
movieClip 3686 {
}
movieClip 3687 {
frame 40 {
gotoAndPlay(1);
}
}
movieClip 3688 {
}
movieClip 3690 {
}
movieClip 3691 {
}
movieClip 3692 {
}
movieClip 3693 {
}
movieClip 3695 {
}
movieClip 3698 {
}
movieClip 3700 {
}
movieClip 3701 {
}
movieClip 3702 {
frame 30 {
gotoAndPlay(1);
}
}
movieClip 3704 {
}
movieClip 3705 {
frame 20 {
gotoAndPlay(1);
}
}
movieClip 3707 {
}
movieClip 3708 {
frame 10 {
gotoAndPlay(1);
}
}
movieClip 3710 {
}
movieClip 3711 {
frame 40 {
gotoAndPlay(1);
}
}
movieClip 3722 {
}
movieClip 3723 {
}
movieClip 3724 {
}
movieClip 3726 {
}
movieClip 3728 {
}
movieClip 3730 {
}
movieClip 3740 {
}
movieClip 3741 {
}
movieClip 3742 {
frame 40 {
gotoAndPlay(1);
}
}
movieClip 3744 {
}
movieClip 3746 {
frame 80 {
gotoAndPlay(1);
}
}
movieClip 3748 {
}
movieClip 3749 {
frame 1 {
stop();
gettingfucked = false;
gettingfuckedfast = false;
gettingfuckedturbo = false;
teasing = false;
cumming = false;
suckingcock = false;
suckingcockfast = false;
suckingcockturbo = false;
mouthtease = false;
mouthcumming = false;
blewjob = false;
sporespent = false;
}
frame 2 {
sporespent = true;
}
frame 5 {
stop();
sporespent = false;
}
frame 6 {
stop();
cumming = false;
mouthcumming = false;
}
instance pussyfuck of movieClip 304 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.horndroid.grab)) {
tellTarget ('_parent') {
gotoAndPlay('fucked');
}
}
}
}
frame 7 {
stop();
cumming = false;
mouthcumming = false;
blewjob = true;
}
instance ff2 of movieClip 304 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.horndroid.grab)) {
tellTarget ('_parent') {
gotoAndPlay('fucktitties');
}
}
}
}
frame 8 {
stop();
a1 = true;
a2 = false;
a3 = false;
a4 = false;
ac = false;
}
frame 9 {
stop();
a1 = false;
a2 = true;
a3 = false;
a4 = false;
ac = false;
}
frame 10 {
stop();
a1 = false;
a2 = false;
a3 = true;
a4 = false;
ac = false;
}
frame 11 {
stop();
a1 = false;
a2 = false;
a3 = false;
a4 = true;
ac = false;
}
frame 12 {
stop();
gettingfucked = true;
gettingfuckedfast = false;
gettingfuckedturbo = false;
teasing = false;
cumming = false;
a4 = false;
}
frame 13 {
stop();
gettingfucked = false;
gettingfuckedfast = true;
gettingfuckedturbo = false;
teasing = false;
cumming = false;
}
frame 14 {
stop();
gettingfucked = false;
gettingfuckedfast = false;
gettingfuckedturbo = true;
teasing = false;
cumming = false;
}
frame 15 {
stop();
gettingfucked = false;
gettingfuckedfast = false;
gettingfuckedturbo = false;
teasing = true;
cumming = false;
}
frame 16 {
stop();
suckingcock = true;
suckingcockfast = false;
suckingcockturbo = false;
mouthtease = false;
mouthcumming = false;
}
frame 17 {
stop();
suckingcock = false;
suckingcockfast = true;
suckingcockturbo = false;
mouthtease = false;
mouthcumming = false;
}
frame 18 {
stop();
suckingcock = false;
suckingcockfast = false;
suckingcockturbo = true;
mouthtease = false;
mouthcumming = false;
}
frame 19 {
stop();
suckingcock = false;
suckingcockfast = false;
suckingcockturbo = false;
mouthtease = true;
mouthcumming = false;
}
frame 20 {
stop();
fuckingtits = true;
fuckingtitsfast = false;
fuckingtitsturbo = false;
teasetits = false;
cumontits = false;
}
frame 21 {
stop();
fuckingtits = false;
fuckingtitsfast = true;
fuckingtitsturbo = false;
teasetits = false;
cumontits = false;
}
frame 22 {
stop();
fuckingtits = false;
fuckingtitsfast = false;
fuckingtitsturbo = true;
teasetits = false;
cumontits = false;
}
frame 23 {
stop();
fuckingtits = false;
fuckingtitsfast = false;
fuckingtitsturbo = false;
teasetits = true;
cumontits = false;
}
frame 24 {
stop();
fuckingass = true;
fuckingassfast = false;
fuckingassturbo = false;
teaseass = false;
cumonass = false;
}
frame 25 {
stop();
fuckingass = false;
fuckingassfast = true;
fuckingassturbo = false;
teaseass = false;
cumonass = false;
}
frame 26 {
stop();
fuckingass = false;
fuckingassfast = false;
fuckingassturbo = true;
teaseass = false;
cumonass = false;
}
frame 27 {
stop();
fuckingass = false;
fuckingassfast = false;
fuckingassturbo = false;
teaseass = true;
cumonass = false;
}
frame 28 {
gettingfucked = false;
gettingfuckedfast = false;
gettingfuckedturbo = false;
teasing = false;
cumming = true;
}
frame 116 {
if (blewjob == false) {
gotoAndStop('fuckedmilf');
}
if (blewjob == true) {
gotoAndStop('mouthfuckedmilf');
}
}
frame 170 {
stop();
}
instance of movieClip 3724 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.horndroid.grab) && _root.hpbar.sporeactive == true && _root.policewoman.fleeing == true && _root.horndroid.mission1finish == true) {
tellTarget ('_parent') {
gotoAndPlay('usedspore');
}
sporespent = true;
} else {
if (this.hitTest(_root.horndroid.grab) && _root.hpbar.sporeactive == false && _root.policewoman.fleeing == true && _root.horndroid.mission1finish == true) {
tellTarget ('_parent') {
gotoAndPlay('fucked');
}
}
}
}
}
frame 171 {
suckingcock = false;
suckingcockfast = false;
suckingcockturbo = false;
mouthtease = false;
mouthcumming = true;
}
frame 220 {
mouthcumming = false;
gotoAndPlay('mouthfuckedmilf');
}
frame 221 {
fuckingtits = false;
fuckingtitsfast = false;
fuckingtitsturbo = false;
teasetits = false;
cumontits = true;
}
frame 273 {
cumontits = false;
gotoAndPlay('mouthfuckedmilf');
}
frame 274 {
fuckingass = false;
fuckingassfast = false;
fuckingassturbo = false;
teaseass = false;
cumonass = true;
}
frame 364 {
cumonass = false;
gotoAndPlay('mouthfuckedmilf');
}
}
movieClip 3750 {
}
movieClip 3752 {
}
movieClip 3754 {
}
movieClip 3756 {
}
movieClip 3758 {
}
movieClip 3760 {
}
movieClip 3762 {
}
movieClip 3764 {
}
movieClip 3766 {
}
movieClip 3768 {
}
movieClip 3770 {
}
movieClip 3772 {
}
movieClip 3774 {
}
movieClip 3777 {
}
movieClip 3779 {
}
movieClip 3781 {
}
movieClip 3783 {
}
movieClip 3784 {
}
movieClip 3785 {
}
movieClip 3787 {
}
movieClip 3789 {
}
movieClip 3790 {
}
movieClip 3791 {
}
movieClip 3793 {
}
movieClip 3794 {
}
movieClip 3796 {
}
movieClip 3797 {
}
movieClip 3799 {
}
movieClip 3801 {
}
movieClip 3803 {
}
movieClip 3805 {
}
movieClip 3807 {
}
movieClip 3809 {
}
movieClip 3811 {
}
movieClip 3813 {
}
movieClip 3815 {
}
movieClip 3817 {
}
movieClip 3818 {
frame 30 {
gotoAndPlay(1);
}
}
movieClip 3820 {
}
movieClip 3822 {
}
movieClip 3824 {
}
movieClip 3826 {
}
movieClip 3827 {
frame 20 {
gotoAndPlay(1);
}
}
movieClip 3829 {
}
movieClip 3830 {
frame 10 {
gotoAndPlay(1);
}
}
movieClip 3832 {
}
movieClip 3833 {
frame 40 {
gotoAndPlay(1);
}
}
movieClip 3842 {
}
movieClip 3843 {
frame 48 {
gotoAndPlay(1);
}
}
movieClip 3845 {
}
movieClip 3846 {
}
movieClip 3847 {
frame 1 {
stop();
chasing = false;
hitting = false;
fleeing = false;
sporespent = false;
}
frame 5 {
stop();
chasing = true;
hitting = false;
}
frame 10 {
hitting = true;
chasing = false;
}
frame 25 {
hitting = false;
chasing = false;
}
frame 52 {
gotoAndPlay('Chase');
}
frame 53 {
sporespent = true;
chasing = false;
hitting = false;
}
frame 59 {
stop();
sporespent = false;
}
frame 60 {
stop();
gettingfucked = true;
gettingfuckedfast = false;
gettingfuckedturbo = false;
teasing = false;
cumming = false;
}
frame 61 {
stop();
gettingfucked = false;
gettingfuckedfast = true;
gettingfuckedturbo = false;
teasing = false;
cumming = false;
}
frame 62 {
stop();
gettingfucked = false;
gettingfuckedfast = false;
gettingfuckedturbo = true;
teasing = false;
cumming = false;
}
frame 63 {
stop();
gettingfucked = false;
gettingfuckedfast = false;
gettingfuckedturbo = false;
teasing = true;
cumming = false;
}
frame 64 {
gettingfucked = false;
gettingfuckedfast = false;
gettingfuckedturbo = false;
teasing = false;
cumming = true;
}
frame 107 {
gettingfucked = false;
gettingfuckedfast = false;
gettingfuckedturbo = false;
teasing = false;
cumming = false;
}
frame 108 {
fleeing = true;
}
frame 165 {
stop();
}
}
instance policewoman of movieClip 3847 {
onClipEvent (load) {
chasing = false;
gettingfucked = false;
}
}
movieClip 3849 {
}
movieClip 3851 {
}
movieClip 3852 {
frame 1 {
stop();
talking = false;
}
instance of movieClip 240 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.horndroid.checkfuck) && _root.talker.talking == false && _root.milf._currentframe < 2 && _root.horndroid.mrsneilsen == false) {
tellTarget ('_parent') {
gotoAndPlay('message');
}
}
if (this.hitTest(_root.horndroid.checkfuck) && _root.talker.talking == false && _root.milf._currentframe < 2 && _root.horndroid.mrsneilsen == true) {
tellTarget ('_parent') {
gotoAndPlay('messageps');
}
}
}
}
frame 5 {
talking = true;
}
frame 204 {
gotoAndPlay(1);
}
frame 400 {
gotoAndPlay(1);
}
}
movieClip 3854 {
}
movieClip 3856 {
}
movieClip 3858 {
}
movieClip 3859 {
frame 1 {
stop();
talking = false;
}
instance of movieClip 240 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.horndroid.checkfuck) && _root.talker.talking == false && _root.horndroid.orgypass == false) {
tellTarget ('_parent') {
gotoAndPlay('message');
}
}
if (this.hitTest(_root.horndroid.checkfuck) && _root.talker.talking == false && _root.horndroid.orgypass == true) {
tellTarget ('_parent') {
gotoAndPlay('messageps');
}
}
}
}
frame 5 {
talking = true;
}
frame 100 {
gotoAndPlay(1);
}
frame 197 {
gotoAndPlay(1);
}
}
movieClip 3861 {
}
movieClip 3863 {
}
movieClip 3865 {
}
movieClip 3867 {
}
movieClip 3869 {
}
movieClip 3871 {
}
movieClip 3873 {
}
movieClip 3875 {
}
movieClip 3877 {
}
movieClip 3879 {
}
movieClip 3881 {
}
movieClip 3883 {
}
movieClip 3885 {
}
movieClip 3887 {
}
movieClip 3889 {
}
movieClip 3891 {
}
movieClip 3893 {
}
movieClip 3894 {
}
movieClip 3895 {
}
movieClip 3897 {
}
movieClip 3899 {
}
movieClip 3901 {
}
movieClip 3903 {
}
movieClip 3905 {
}
movieClip 3907 {
}
movieClip 3909 {
}
movieClip 3911 {
}
movieClip 3913 {
}
movieClip 3915 {
}
movieClip 3917 {
}
movieClip 3919 {
}
movieClip 3922 {
}
movieClip 3923 {
}
movieClip 3926 {
}
movieClip 3927 {
}
movieClip 3929 {
}
movieClip 3931 {
}
movieClip 3933 {
}
movieClip 3935 {
}
movieClip 3937 {
}
movieClip 3939 {
}
movieClip 3941 {
}
movieClip 3943 {
}
movieClip 3945 {
}
movieClip 3947 {
}
movieClip 3950 {
}
movieClip 3951 {
}
movieClip 3954 {
}
movieClip 3955 {
}
movieClip 3957 {
}
movieClip 3959 {
}
movieClip 3961 {
}
movieClip 3963 {
}
movieClip 3965 {
}
movieClip 3967 {
}
movieClip 3969 {
}
movieClip 3970 {
frame 30 {
gotoAndPlay(1);
}
}
movieClip 3972 {
}
movieClip 3974 {
}
movieClip 3976 {
}
movieClip 3978 {
}
movieClip 3980 {
}
movieClip 3982 {
}
movieClip 3985 {
}
movieClip 3987 {
}
movieClip 3989 {
}
movieClip 3990 {
}
movieClip 3992 {
}
movieClip 3993 {
}
movieClip 3995 {
}
movieClip 3996 {
}
movieClip 3998 {
}
movieClip 4000 {
}
movieClip 4004 {
}
movieClip 4007 {
}
movieClip 4009 {
}
movieClip 4011 {
}
movieClip 4012 {
}
movieClip 4014 {
}
movieClip 4016 {
}
movieClip 4017 {
}
movieClip 4019 {
}
movieClip 4021 {
}
movieClip 4025 {
}
movieClip 4028 {
}
movieClip 4030 {
}
movieClip 4032 {
}
movieClip 4033 {
}
movieClip 4035 {
}
movieClip 4037 {
}
movieClip 4038 {
}
movieClip 4040 {
}
movieClip 4042 {
}
movieClip 4043 {
}
movieClip 4045 {
}
movieClip 4046 {
}
movieClip 4048 {
}
movieClip 4050 {
}
movieClip 4053 {
}
movieClip 4055 {
}
movieClip 4057 {
}
movieClip 4058 {
}
movieClip 4060 {
}
movieClip 4061 {
}
movieClip 4063 {
}
movieClip 4064 {
}
movieClip 4065 {
}
movieClip 4067 {
}
movieClip 4069 {
}
movieClip 4071 {
}
movieClip 4072 {
}
movieClip 4074 {
}
movieClip 4077 {
}
movieClip 4079 {
}
movieClip 4080 {
}
movieClip 4082 {
}
movieClip 4084 {
}
movieClip 4085 {
}
movieClip 4087 {
}
movieClip 4088 {
}
movieClip 4090 {
}
movieClip 4093 {
}
movieClip 4094 {
}
movieClip 4096 {
}
movieClip 4097 {
frame 16 {
gotoAndPlay(1);
}
}
movieClip 4099 {
}
movieClip 4100 {
frame 30 {
gotoAndPlay(1);
}
}
movieClip 4102 {
}
movieClip 4104 {
}
movieClip 4106 {
}
movieClip 4107 {
}
movieClip 4109 {
}
movieClip 4112 {
}
movieClip 4114 {
}
movieClip 4115 {
}
movieClip 4117 {
}
movieClip 4119 {
}
movieClip 4120 {
}
movieClip 4122 {
}
movieClip 4123 {
}
movieClip 4125 {
}
movieClip 4128 {
}
movieClip 4129 {
}
movieClip 4131 {
}
movieClip 4132 {
frame 16 {
gotoAndPlay(1);
}
}
movieClip 4134 {
}
movieClip 4137 {
}
movieClip 4139 {
}
movieClip 4140 {
frame 20 {
gotoAndPlay(1);
}
}
movieClip 4141 {
}
movieClip 4143 {
}
movieClip 4145 {
}
movieClip 4146 {
frame 15 {
gotoAndPlay(1);
}
}
movieClip 4148 {
}
movieClip 4150 {
}
movieClip 4154 {
}
movieClip 4156 {
}
movieClip 4158 {
}
movieClip 4159 {
frame 15 {
gotoAndPlay(1);
}
}
movieClip 4160 {
}
movieClip 4162 {
}
movieClip 4163 {
}
movieClip 4165 {
}
movieClip 4166 {
}
movieClip 4167 {
frame 20 {
gotoAndPlay(1);
}
}
movieClip 4169 {
}
movieClip 4171 {
}
movieClip 4172 {
}
movieClip 4174 {
}
movieClip 4176 {
}
movieClip 4179 {
}
movieClip 4181 {
}
movieClip 4183 {
}
movieClip 4184 {
frame 15 {
gotoAndPlay(1);
}
}
movieClip 4185 {
frame 8 {
gotoAndPlay(1);
}
}
movieClip 4186 {
frame 30 {
gotoAndPlay(1);
}
}
movieClip 4188 {
}
movieClip 4192 {
}
movieClip 4194 {
}
movieClip 4195 {
frame 20 {
gotoAndPlay(1);
}
}
movieClip 4196 {
}
movieClip 4198 {
}
movieClip 4200 {
}
movieClip 4202 {
}
movieClip 4204 {
}
movieClip 4205 {
}
movieClip 4207 {
}
movieClip 4208 {
}
movieClip 4209 {
frame 10 {
gotoAndPlay(1);
}
}
movieClip 4210 {
frame 20 {
gotoAndPlay(1);
}
}
movieClip 4212 {
}
movieClip 4214 {
}
movieClip 4216 {
}
movieClip 4218 {
}
movieClip 4219 {
frame 10 {
gotoAndPlay(1);
}
}
movieClip 4220 {
frame 20 {
gotoAndPlay(1);
}
}
movieClip 4222 {
}
movieClip 4224 {
}
movieClip 4225 {
frame 20 {
gotoAndPlay(1);
}
}
movieClip 4227 {
}
movieClip 4228 {
frame 8 {
gotoAndPlay(1);
}
}
movieClip 4237 {
}
movieClip 4238 {
}
movieClip 4239 {
}
movieClip 4241 {
}
movieClip 4250 {
}
movieClip 4251 {
frame 40 {
gotoAndPlay(1);
}
}
movieClip 4252 {
frame 40 {
gotoAndPlay(1);
}
}
movieClip 4261 {
}
movieClip 4262 {
frame 40 {
gotoAndPlay(1);
}
}
movieClip 4263 {
frame 40 {
gotoAndPlay(1);
}
}
movieClip 4272 {
}
movieClip 4273 {
}
movieClip 4274 {
}
movieClip 4275 {
frame 1 {
stop();
gettingfucked = false;
gettingfuckedfast = false;
gettingfuckedturbo = false;
teasing = false;
cumming = false;
suckingcock = false;
suckingcockfast = false;
suckingcockturbo = false;
mouthtease = false;
mouthcumming = false;
blewjob = false;
sporespent = false;
}
frame 2 {
sporespent = true;
}
frame 5 {
stop();
sporespent = false;
}
frame 6 {
stop();
cumming = false;
mouthcumming = false;
}
instance pussyfuck of movieClip 304 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.horndroid.grab)) {
tellTarget ('_parent') {
gotoAndPlay('fucked');
}
}
}
}
frame 7 {
stop();
cumming = false;
mouthcumming = false;
blewjob = true;
}
instance ff2 of movieClip 304 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.horndroid.grab)) {
tellTarget ('_parent') {
gotoAndPlay('fucktitties');
}
}
}
}
frame 8 {
stop();
a1 = true;
a2 = false;
a3 = false;
a4 = false;
ac = false;
}
frame 9 {
stop();
a1 = false;
a2 = true;
a3 = false;
a4 = false;
ac = false;
}
frame 10 {
stop();
a1 = false;
a2 = false;
a3 = true;
a4 = false;
ac = false;
}
frame 11 {
stop();
a1 = false;
a2 = false;
a3 = false;
a4 = true;
ac = false;
}
frame 12 {
stop();
gettingfucked = true;
gettingfuckedfast = false;
gettingfuckedturbo = false;
teasing = false;
cumming = false;
a4 = false;
}
frame 13 {
stop();
gettingfucked = false;
gettingfuckedfast = true;
gettingfuckedturbo = false;
teasing = false;
cumming = false;
}
frame 14 {
stop();
gettingfucked = false;
gettingfuckedfast = false;
gettingfuckedturbo = true;
teasing = false;
cumming = false;
}
frame 15 {
stop();
gettingfucked = false;
gettingfuckedfast = false;
gettingfuckedturbo = false;
teasing = true;
cumming = false;
}
frame 16 {
stop();
suckingcock = true;
suckingcockfast = false;
suckingcockturbo = false;
mouthtease = false;
mouthcumming = false;
}
frame 17 {
stop();
suckingcock = false;
suckingcockfast = true;
suckingcockturbo = false;
mouthtease = false;
mouthcumming = false;
}
frame 18 {
stop();
suckingcock = false;
suckingcockfast = false;
suckingcockturbo = true;
mouthtease = false;
mouthcumming = false;
}
frame 19 {
stop();
suckingcock = false;
suckingcockfast = false;
suckingcockturbo = false;
mouthtease = true;
mouthcumming = false;
}
frame 20 {
stop();
fuckingtits = true;
fuckingtitsfast = false;
fuckingtitsturbo = false;
teasetits = false;
cumontits = false;
}
frame 21 {
stop();
fuckingtits = false;
fuckingtitsfast = true;
fuckingtitsturbo = false;
teasetits = false;
cumontits = false;
}
frame 22 {
stop();
fuckingtits = false;
fuckingtitsfast = false;
fuckingtitsturbo = true;
teasetits = false;
cumontits = false;
}
frame 23 {
stop();
fuckingtits = false;
fuckingtitsfast = false;
fuckingtitsturbo = false;
teasetits = true;
cumontits = false;
}
frame 24 {
stop();
fuckingass = true;
fuckingassfast = false;
fuckingassturbo = false;
teaseass = false;
cumonass = false;
}
frame 25 {
stop();
fuckingass = false;
fuckingassfast = true;
fuckingassturbo = false;
teaseass = false;
cumonass = false;
}
frame 26 {
stop();
fuckingass = false;
fuckingassfast = false;
fuckingassturbo = true;
teaseass = false;
cumonass = false;
}
frame 27 {
stop();
fuckingass = false;
fuckingassfast = false;
fuckingassturbo = false;
teaseass = true;
cumonass = false;
}
frame 28 {
gettingfucked = false;
gettingfuckedfast = false;
gettingfuckedturbo = false;
teasing = false;
cumming = true;
}
frame 75 {
if (blewjob == false) {
gotoAndStop('fuckedmilf');
}
if (blewjob == true) {
gotoAndStop('mouthfuckedmilf');
}
}
frame 129 {
gotoAndPlay(1);
}
frame 130 {
suckingcock = false;
suckingcockfast = false;
suckingcockturbo = false;
mouthtease = false;
mouthcumming = true;
}
frame 179 {
mouthcumming = false;
gotoAndPlay('mouthfuckedmilf');
}
frame 180 {
fuckingtits = false;
fuckingtitsfast = false;
fuckingtitsturbo = false;
teasetits = false;
cumontits = true;
}
frame 232 {
cumontits = false;
gotoAndPlay('mouthfuckedmilf');
}
frame 233 {
fuckingass = false;
fuckingassfast = false;
fuckingassturbo = false;
teaseass = false;
cumonass = true;
}
frame 323 {
cumonass = false;
gotoAndPlay('mouthfuckedmilf');
}
}
movieClip 4277 {
}
movieClip 4279 {
}
movieClip 4281 {
}
movieClip 4283 {
}
movieClip 4284 {
}
movieClip 4286 {
}
movieClip 4288 {
}
movieClip 4290 {
}
movieClip 4293 {
}
movieClip 4295 {
}
movieClip 4297 {
}
movieClip 4298 {
}
movieClip 4300 {
}
movieClip 4302 {
}
movieClip 4304 {
}
movieClip 4306 {
}
movieClip 4308 {
}
movieClip 4310 {
}
movieClip 4312 {
}
movieClip 4313 {
}
movieClip 4314 {
}
movieClip 4316 {
}
movieClip 4317 {
}
movieClip 4319 {
}
movieClip 4322 {
}
movieClip 4325 {
}
movieClip 4327 {
}
movieClip 4328 {
}
movieClip 4330 {
}
movieClip 4331 {
}
movieClip 4332 {
}
movieClip 4333 {
}
movieClip 4334 {
}
movieClip 4336 {
}
movieClip 4338 {
}
movieClip 4340 {
}
movieClip 4342 {
}
movieClip 4343 {
}
movieClip 4344 {
}
movieClip 4346 {
}
movieClip 4348 {
}
movieClip 4349 {
}
movieClip 4351 {
}
movieClip 4354 {
}
movieClip 4355 {
}
movieClip 4356 {
}
movieClip 4357 {
frame 10 {
gotoAndPlay(1);
}
}
movieClip 4358 {
frame 10 {
gotoAndPlay(1);
}
}
movieClip 4359 {
}
movieClip 4361 {
}
movieClip 4362 {
}
movieClip 4364 {
}
movieClip 4366 {
}
movieClip 4368 {
}
movieClip 4371 {
}
movieClip 4373 {
}
movieClip 4374 {
frame 40 {
gotoAndPlay(1);
}
}
movieClip 4375 {
frame 15 {
gotoAndPlay(1);
}
}
movieClip 4376 {
}
movieClip 4378 {
}
movieClip 4380 {
}
movieClip 4381 {
}
movieClip 4383 {
}
movieClip 4384 {
}
movieClip 4386 {
}
movieClip 4387 {
frame 15 {
gotoAndPlay(1);
}
}
movieClip 4388 {
frame 10 {
gotoAndPlay(1);
}
}
movieClip 4389 {
frame 7 {
gotoAndPlay(1);
}
}
movieClip 4390 {
frame 31 {
gotoAndPlay(1);
}
}
movieClip 4392 {
}
movieClip 4394 {
}
movieClip 4395 {
frame 20 {
gotoAndPlay(1);
}
}
movieClip 4396 {
frame 14 {
gotoAndPlay(1);
}
}
movieClip 4397 {
frame 10 {
gotoAndPlay(1);
}
}
movieClip 4398 {
frame 30 {
gotoAndPlay(1);
}
}
movieClip 4399 {
frame 10 {
gotoAndPlay(1);
}
}
movieClip 4400 {
frame 6 {
gotoAndPlay(1);
}
}
movieClip 4402 {
}
movieClip 4403 {
frame 24 {
gotoAndPlay(1);
}
}
movieClip 4404 {
frame 15 {
gotoAndPlay(1);
}
}
movieClip 4405 {
frame 8 {
gotoAndPlay(1);
}
}
movieClip 4406 {
frame 40 {
gotoAndPlay(1);
}
}
movieClip 4415 {
}
movieClip 4416 {
frame 40 {
gotoAndPlay(1);
}
}
movieClip 4425 {
}
movieClip 4426 {
frame 40 {
gotoAndPlay(1);
}
}
movieClip 4428 {
}
movieClip 4439 {
}
movieClip 4440 {
frame 40 {
gotoAndPlay(1);
}
}
movieClip 4441 {
frame 40 {
gotoAndPlay(1);
}
}
movieClip 4442 {
frame 41 {
gotoAndPlay(1);
}
}
movieClip 4443 {
frame 41 {
gotoAndPlay(1);
}
}
movieClip 4452 {
}
movieClip 4453 {
}
movieClip 4454 {
}
movieClip 4455 {
frame 1 {
stop();
gettingfucked = false;
gettingfuckedfast = false;
gettingfuckedturbo = false;
teasing = false;
cumming = false;
suckingcock = false;
suckingcockfast = false;
suckingcockturbo = false;
mouthtease = false;
mouthcumming = false;
blewjob = false;
sporespent = false;
}
frame 2 {
sporespent = true;
}
frame 5 {
stop();
sporespent = false;
}
frame 6 {
stop();
cumming = false;
mouthcumming = false;
}
instance pussyfuck of movieClip 4334 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.horndroid.grab)) {
tellTarget ('_parent') {
gotoAndPlay('fucked');
}
}
}
}
frame 7 {
stop();
cumming = false;
mouthcumming = false;
blewjob = true;
}
instance ff2 of movieClip 4334 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.horndroid.grab)) {
tellTarget ('_parent') {
gotoAndPlay('fucktitties');
}
}
}
}
frame 8 {
stop();
a1 = true;
a2 = false;
a3 = false;
a4 = false;
ac = false;
}
frame 9 {
stop();
a1 = false;
a2 = true;
a3 = false;
a4 = false;
ac = false;
}
frame 10 {
stop();
a1 = false;
a2 = false;
a3 = true;
a4 = false;
ac = false;
}
frame 11 {
stop();
a1 = false;
a2 = false;
a3 = false;
a4 = true;
ac = false;
}
frame 12 {
stop();
gettingfucked = true;
gettingfuckedfast = false;
gettingfuckedturbo = false;
teasing = false;
cumming = false;
a4 = false;
}
frame 13 {
stop();
gettingfucked = false;
gettingfuckedfast = true;
gettingfuckedturbo = false;
teasing = false;
cumming = false;
}
frame 14 {
stop();
gettingfucked = false;
gettingfuckedfast = false;
gettingfuckedturbo = true;
teasing = false;
cumming = false;
}
frame 15 {
stop();
gettingfucked = false;
gettingfuckedfast = false;
gettingfuckedturbo = false;
teasing = true;
cumming = false;
}
frame 16 {
stop();
suckingcock = true;
suckingcockfast = false;
suckingcockturbo = false;
mouthtease = false;
mouthcumming = false;
}
frame 17 {
stop();
suckingcock = false;
suckingcockfast = true;
suckingcockturbo = false;
mouthtease = false;
mouthcumming = false;
}
frame 18 {
stop();
suckingcock = false;
suckingcockfast = false;
suckingcockturbo = true;
mouthtease = false;
mouthcumming = false;
}
frame 19 {
stop();
suckingcock = false;
suckingcockfast = false;
suckingcockturbo = false;
mouthtease = true;
mouthcumming = false;
}
frame 20 {
stop();
fuckingtits = true;
fuckingtitsfast = false;
fuckingtitsturbo = false;
teasetits = false;
cumontits = false;
}
frame 21 {
stop();
fuckingtits = false;
fuckingtitsfast = true;
fuckingtitsturbo = false;
teasetits = false;
cumontits = false;
}
frame 22 {
stop();
fuckingtits = false;
fuckingtitsfast = false;
fuckingtitsturbo = true;
teasetits = false;
cumontits = false;
}
frame 23 {
stop();
fuckingtits = false;
fuckingtitsfast = false;
fuckingtitsturbo = false;
teasetits = true;
cumontits = false;
}
frame 24 {
stop();
fuckingass = true;
fuckingassfast = false;
fuckingassturbo = false;
teaseass = false;
cumonass = false;
}
frame 25 {
stop();
fuckingass = false;
fuckingassfast = true;
fuckingassturbo = false;
teaseass = false;
cumonass = false;
}
frame 26 {
stop();
fuckingass = false;
fuckingassfast = false;
fuckingassturbo = true;
teaseass = false;
cumonass = false;
}
frame 27 {
stop();
fuckingass = false;
fuckingassfast = false;
fuckingassturbo = false;
teaseass = true;
cumonass = false;
}
frame 28 {
gettingfucked = false;
gettingfuckedfast = false;
gettingfuckedturbo = false;
teasing = false;
cumming = true;
}
frame 75 {
if (blewjob == false) {
gotoAndStop('fuckedmilf');
}
if (blewjob == true) {
gotoAndStop('mouthfuckedmilf');
}
}
frame 129 {
stop();
}
frame 130 {
suckingcock = false;
suckingcockfast = false;
suckingcockturbo = false;
mouthtease = false;
mouthcumming = true;
}
frame 179 {
mouthcumming = false;
gotoAndPlay('mouthfuckedmilf');
}
frame 180 {
fuckingtits = false;
fuckingtitsfast = false;
fuckingtitsturbo = false;
teasetits = false;
cumontits = true;
}
frame 232 {
cumontits = false;
gotoAndPlay('mouthfuckedmilf');
}
frame 233 {
fuckingass = false;
fuckingassfast = false;
fuckingassturbo = false;
teaseass = false;
cumonass = true;
}
frame 323 {
cumonass = false;
gotoAndPlay('mouthfuckedmilf');
}
}
movieClip 4457 {
}
movieClip 4459 {
}
movieClip 4460 {
frame 1 {
stop();
talking = false;
}
instance of movieClip 240 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.horndroid.checkfuck) && _root.talker.talking == false && _root.teen._currentframe < 2 && _root.horndroid.janine == false) {
tellTarget ('_parent') {
gotoAndPlay('message');
}
}
if (this.hitTest(_root.horndroid.checkfuck) && _root.talker.talking == false && _root.teen._currentframe < 2 && _root.horndroid.janine == true) {
tellTarget ('_parent') {
gotoAndPlay('messageps');
}
}
}
}
frame 5 {
talking = true;
}
frame 204 {
gotoAndPlay(1);
}
frame 400 {
gotoAndPlay(1);
}
}
movieClip 4462 {
}
movieClip 4464 {
}
// unknown tag 88 length 94
movieClip 4469 {
}
movieClip 4471 {
}
movieClip 4473 {
}
movieClip 4474 {
}
movieClip 4475 {
}
movieClip 4477 {
}
movieClip 4479 {
}
movieClip 4481 {
}
movieClip 4484 {
}
movieClip 4485 {
}
movieClip 4487 {
}
movieClip 4490 {
}
movieClip 4491 {
}
movieClip 4493 {
}
movieClip 4495 {
}
movieClip 4497 {
}
movieClip 4499 {
}
movieClip 4500 {
}
movieClip 4501 {
}
movieClip 4502 {
}
movieClip 4504 {
}
movieClip 4506 {
}
movieClip 4509 {
}
movieClip 4511 {
}
movieClip 4513 {
}
movieClip 4515 {
}
movieClip 4517 {
}
movieClip 4518 {
}
movieClip 4519 {
frame 80 {
gotoAndPlay(1);
}
}
movieClip 4521 {
}
movieClip 4522 {
}
movieClip 4524 {
}
movieClip 4525 {
}
movieClip 4526 {
}
movieClip 4528 {
}
movieClip 4530 {
}
movieClip 4532 {
}
movieClip 4534 {
}
movieClip 4536 {
}
movieClip 4537 {
frame 40 {
gotoAndPlay(1);
}
}
movieClip 4538 {
}
movieClip 4540 {
}
movieClip 4541 {
frame 40 {
gotoAndPlay(1);
}
}
movieClip 4543 {
}
movieClip 4544 {
}
movieClip 4545 {
}
movieClip 4546 {
}
movieClip 4548 {
}
movieClip 4549 {
}
movieClip 4551 {
}
movieClip 4553 {
}
movieClip 4554 {
}
movieClip 4556 {
}
movieClip 4558 {
}
movieClip 4559 {
}
movieClip 4561 {
}
movieClip 4563 {
}
movieClip 4564 {
frame 40 {
gotoAndPlay(1);
}
}
movieClip 4566 {
}
movieClip 4567 {
}
movieClip 4568 {
}
movieClip 4570 {
}
movieClip 4571 {
frame 20 {
gotoAndPlay(1);
}
}
movieClip 4572 {
}
movieClip 4573 {
}
movieClip 4574 {
}
movieClip 4575 {
}
movieClip 4576 {
frame 20 {
gotoAndPlay(1);
}
}
movieClip 4578 {
}
movieClip 4579 {
}
movieClip 4580 {
}
movieClip 4582 {
}
movieClip 4583 {
}
movieClip 4584 {
}
movieClip 4585 {
}
movieClip 4586 {
frame 25 {
gotoAndPlay(1);
}
}
movieClip 4588 {
}
movieClip 4589 {
}
movieClip 4591 {
}
movieClip 4593 {
}
movieClip 4595 {
}
movieClip 4596 {
}
movieClip 4598 {
}
movieClip 4599 {
}
movieClip 4600 {
}
movieClip 4601 {
}
movieClip 4602 {
frame 20 {
gotoAndPlay(1);
}
}
movieClip 4603 {
frame 13 {
gotoAndPlay(1);
}
}
movieClip 4604 {
frame 8 {
gotoAndPlay(1);
}
}
movieClip 4606 {
}
movieClip 4609 {
}
movieClip 4611 {
}
movieClip 4612 {
frame 40 {
gotoAndPlay(1);
}
}
movieClip 4613 {
}
movieClip 4615 {
}
movieClip 4616 {
}
movieClip 4618 {
}
movieClip 4619 {
}
movieClip 4620 {
}
movieClip 4621 {
frame 20 {
gotoAndPlay(1);
}
}
movieClip 4622 {
frame 12 {
gotoAndPlay(1);
}
}
movieClip 4623 {
frame 7 {
gotoAndPlay(1);
}
}
movieClip 4626 {
}
movieClip 4627 {
}
movieClip 4629 {
}
movieClip 4632 {
}
movieClip 4633 {
frame 65 {
gotoAndPlay(1);
}
}
movieClip 4634 {
}
movieClip 4636 {
}
movieClip 4638 {
}
movieClip 4639 {
}
movieClip 4640 {
}
movieClip 4642 {
}
movieClip 4643 {
frame 30 {
gotoAndPlay(1);
}
}
movieClip 4644 {
frame 20 {
gotoAndPlay(1);
}
}
movieClip 4645 {
frame 10 {
gotoAndPlay(1);
}
}
movieClip 4647 {
}
movieClip 4648 {
frame 40 {
gotoAndPlay(1);
}
}
movieClip 4649 {
}
movieClip 4650 {
}
movieClip 4651 {
}
movieClip 4652 {
}
movieClip 4653 {
}
movieClip 4654 {
}
movieClip 4656 {
}
movieClip 4657 {
}
movieClip 4658 {
}
movieClip 4659 {
frame 30 {
gotoAndPlay(1);
}
}
movieClip 4661 {
}
movieClip 4662 {
frame 20 {
gotoAndPlay(1);
}
}
movieClip 4665 {
}
movieClip 4666 {
frame 10 {
gotoAndPlay(1);
}
}
movieClip 4668 {
}
movieClip 4669 {
frame 40 {
gotoAndPlay(1);
}
}
movieClip 4680 {
}
movieClip 4681 {
}
movieClip 4682 {
}
movieClip 4684 {
}
movieClip 4686 {
}
movieClip 4695 {
}
movieClip 4696 {
}
movieClip 4697 {
frame 40 {
gotoAndPlay(1);
}
}
movieClip 4699 {
}
movieClip 4701 {
frame 80 {
gotoAndPlay(1);
}
}
movieClip 4703 {
}
movieClip 4704 {
frame 1 {
stop();
gettingfucked = false;
gettingfuckedfast = false;
gettingfuckedturbo = false;
teasing = false;
cumming = false;
suckingcock = false;
suckingcockfast = false;
suckingcockturbo = false;
mouthtease = false;
mouthcumming = false;
blewjob = false;
sporespent = false;
}
frame 2 {
sporespent = true;
}
frame 5 {
stop();
sporespent = false;
}
frame 6 {
stop();
cumming = false;
mouthcumming = false;
}
instance pussyfuck of movieClip 4538 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.horndroid.grab)) {
tellTarget ('_parent') {
gotoAndPlay('fucked');
}
}
}
}
frame 7 {
stop();
cumming = false;
mouthcumming = false;
blewjob = true;
}
instance ff2 of movieClip 4538 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.horndroid.grab)) {
tellTarget ('_parent') {
gotoAndPlay('fucktitties');
}
}
}
}
frame 8 {
stop();
a1 = true;
a2 = false;
a3 = false;
a4 = false;
ac = false;
}
frame 9 {
stop();
a1 = false;
a2 = true;
a3 = false;
a4 = false;
ac = false;
}
frame 10 {
stop();
a1 = false;
a2 = false;
a3 = true;
a4 = false;
ac = false;
}
frame 11 {
stop();
a1 = false;
a2 = false;
a3 = false;
a4 = true;
ac = false;
}
frame 12 {
stop();
gettingfucked = true;
gettingfuckedfast = false;
gettingfuckedturbo = false;
teasing = false;
cumming = false;
a4 = false;
}
frame 13 {
stop();
gettingfucked = false;
gettingfuckedfast = true;
gettingfuckedturbo = false;
teasing = false;
cumming = false;
}
frame 14 {
stop();
gettingfucked = false;
gettingfuckedfast = false;
gettingfuckedturbo = true;
teasing = false;
cumming = false;
}
frame 15 {
stop();
gettingfucked = false;
gettingfuckedfast = false;
gettingfuckedturbo = false;
teasing = true;
cumming = false;
}
frame 16 {
stop();
suckingcock = true;
suckingcockfast = false;
suckingcockturbo = false;
mouthtease = false;
mouthcumming = false;
}
frame 17 {
stop();
suckingcock = false;
suckingcockfast = true;
suckingcockturbo = false;
mouthtease = false;
mouthcumming = false;
}
frame 18 {
stop();
suckingcock = false;
suckingcockfast = false;
suckingcockturbo = true;
mouthtease = false;
mouthcumming = false;
}
frame 19 {
stop();
suckingcock = false;
suckingcockfast = false;
suckingcockturbo = false;
mouthtease = true;
mouthcumming = false;
}
frame 20 {
stop();
fuckingtits = true;
fuckingtitsfast = false;
fuckingtitsturbo = false;
teasetits = false;
cumontits = false;
}
frame 21 {
stop();
fuckingtits = false;
fuckingtitsfast = true;
fuckingtitsturbo = false;
teasetits = false;
cumontits = false;
}
frame 22 {
stop();
fuckingtits = false;
fuckingtitsfast = false;
fuckingtitsturbo = true;
teasetits = false;
cumontits = false;
}
frame 23 {
stop();
fuckingtits = false;
fuckingtitsfast = false;
fuckingtitsturbo = false;
teasetits = true;
cumontits = false;
}
frame 24 {
stop();
fuckingass = true;
fuckingassfast = false;
fuckingassturbo = false;
teaseass = false;
cumonass = false;
}
frame 25 {
stop();
fuckingass = false;
fuckingassfast = true;
fuckingassturbo = false;
teaseass = false;
cumonass = false;
}
frame 26 {
stop();
fuckingass = false;
fuckingassfast = false;
fuckingassturbo = true;
teaseass = false;
cumonass = false;
}
frame 27 {
stop();
fuckingass = false;
fuckingassfast = false;
fuckingassturbo = false;
teaseass = true;
cumonass = false;
}
frame 28 {
gettingfucked = false;
gettingfuckedfast = false;
gettingfuckedturbo = false;
teasing = false;
cumming = true;
}
frame 116 {
if (blewjob == false) {
gotoAndStop('fuckedmilf');
}
if (blewjob == true) {
gotoAndStop('mouthfuckedmilf');
}
}
frame 170 {
stop();
}
instance of movieClip 4682 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.horndroid.grab) && _root.hpbar.sporeactive == true && _root.policewoman.fleeing == true && _root.horndroid.mission1finish == true) {
tellTarget ('_parent') {
gotoAndPlay('usedspore');
}
sporespent = true;
} else {
if (this.hitTest(_root.horndroid.grab) && _root.hpbar.sporeactive == false && _root.policewoman.fleeing == true && _root.horndroid.mission1finish == true) {
tellTarget ('_parent') {
gotoAndPlay('fucked');
}
}
}
}
}
frame 171 {
suckingcock = false;
suckingcockfast = false;
suckingcockturbo = false;
mouthtease = false;
mouthcumming = true;
}
frame 220 {
mouthcumming = false;
gotoAndPlay('mouthfuckedmilf');
}
frame 221 {
fuckingtits = false;
fuckingtitsfast = false;
fuckingtitsturbo = false;
teasetits = false;
cumontits = true;
}
frame 273 {
cumontits = false;
gotoAndPlay('mouthfuckedmilf');
}
frame 274 {
fuckingass = false;
fuckingassfast = false;
fuckingassturbo = false;
teaseass = false;
cumonass = true;
}
frame 364 {
cumonass = false;
gotoAndPlay('mouthfuckedmilf');
}
}
instance policewoman of movieClip 3847 {
onClipEvent (load) {
chasing = false;
gettingfucked = false;
}
}
movieClip 4705 {
frame 1 {
stop();
talking = false;
}
instance of movieClip 240 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.horndroid.grab) && _root.talker.talking == false && _root.horndroid.labdoor == false && _root.horndroid.labkey == false) {
tellTarget ('_parent') {
gotoAndPlay('message');
}
}
if (this.hitTest(_root.horndroid.grab) && _root.talker.talking == false && _root.horndroid.labdoor == true && _root.horndroid.labkey == false) {
tellTarget ('_parent') {
gotoAndPlay('messageps');
}
}
}
}
frame 5 {
talking = true;
}
frame 100 {
gotoAndPlay(1);
}
frame 296 {
gotoAndPlay(1);
}
frame 297 {
talking = true;
}
frame 393 {
gotoAndPlay(1);
}
}
// unknown tag 88 length 56
movieClip 4710 {
}
movieClip 4712 {
}
movieClip 4714 {
}
movieClip 4715 {
frame 109 {
stop();
}
}
movieClip 4716 {
frame 1 {
stop();
}
instance of movieClip 733 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.horndroid.grab) && _root.horndroid.mission2a == false && _root.horndroid.mission2finish == false) {
_root.horndroid.mission2a = true;
tellTarget ('_parent') {
gotoAndStop('up');
}
}
}
}
frame 2 {
stop();
}
}
movieClip 4718 {
}
// unknown tag 88 length 53
movieClip 4723 {
}
movieClip 4725 {
}
movieClip 4726 {
}
movieClip 4728 {
}
movieClip 4730 {
}
movieClip 4732 {
}
movieClip 4734 {
}
movieClip 4736 {
}
movieClip 4738 {
}
movieClip 4740 {
}
movieClip 4742 {
}
movieClip 4744 {
}
movieClip 4745 {
}
movieClip 4747 {
}
movieClip 4749 {
}
movieClip 4751 {
}
movieClip 4752 {
frame 60 {
gotoAndPlay(1);
}
}
movieClip 4754 {
}
movieClip 4757 {
}
movieClip 4758 {
}
movieClip 4760 {
}
movieClip 4761 {
}
movieClip 4763 {
}
movieClip 4765 {
}
movieClip 4766 {
}
movieClip 4767 {
}
movieClip 4769 {
}
movieClip 4770 {
}
movieClip 4772 {
}
movieClip 4773 {
}
movieClip 4775 {
}
movieClip 4777 {
}
movieClip 4779 {
}
movieClip 4781 {
}
movieClip 4783 {
}
movieClip 4785 {
}
movieClip 4787 {
}
movieClip 4789 {
}
movieClip 4791 {
}
movieClip 4792 {
frame 30 {
gotoAndPlay(1);
}
}
movieClip 4794 {
}
movieClip 4796 {
}
movieClip 4798 {
}
movieClip 4800 {
}
movieClip 4801 {
frame 20 {
gotoAndPlay(1);
}
}
movieClip 4803 {
}
movieClip 4804 {
frame 10 {
gotoAndPlay(1);
}
}
movieClip 4806 {
}
movieClip 4807 {
frame 40 {
gotoAndPlay(1);
}
}
movieClip 4816 {
}
movieClip 4817 {
frame 48 {
gotoAndPlay(1);
}
}
movieClip 4818 {
}
movieClip 4819 {
frame 1 {
stop();
chasing = false;
hitting = false;
fleeing = false;
sporespent = false;
}
frame 5 {
stop();
chasing = true;
hitting = false;
}
frame 10 {
hitting = true;
chasing = false;
}
frame 25 {
hitting = false;
chasing = false;
}
frame 52 {
gotoAndPlay('Chase');
}
frame 53 {
sporespent = true;
chasing = false;
hitting = false;
}
frame 59 {
stop();
sporespent = false;
}
frame 60 {
stop();
gettingfucked = true;
gettingfuckedfast = false;
gettingfuckedturbo = false;
teasing = false;
cumming = false;
}
frame 61 {
stop();
gettingfucked = false;
gettingfuckedfast = true;
gettingfuckedturbo = false;
teasing = false;
cumming = false;
}
frame 62 {
stop();
gettingfucked = false;
gettingfuckedfast = false;
gettingfuckedturbo = true;
teasing = false;
cumming = false;
}
frame 63 {
stop();
gettingfucked = false;
gettingfuckedfast = false;
gettingfuckedturbo = false;
teasing = true;
cumming = false;
}
frame 64 {
gettingfucked = false;
gettingfuckedfast = false;
gettingfuckedturbo = false;
teasing = false;
cumming = true;
}
frame 107 {
gettingfucked = false;
gettingfuckedfast = false;
gettingfuckedturbo = false;
teasing = false;
cumming = false;
}
frame 108 {
fleeing = true;
}
frame 165 {
stop();
}
}
instance policewoman of movieClip 4819 {
onClipEvent (load) {
speed = 6;
strafe = 1;
chasing = false;
gettingfucked = false;
}
onClipEvent (enterFrame) {
if (this._x <= _root.horndroid._x && chasing == true && hitting == false && fleeing == false) {
this._x += speed;
this._xscale = 85;
} else {
if (this._x >= _root.horndroid._x && chasing == true && hitting == false && fleeing == false) {
this._x -= speed;
this._xscale = -85;
}
}
if (this._y <= _root.horndroid._y && chasing == true && hitting == false && fleeing == false) {
this._y += strafe;
} else {
if (this._y >= _root.horndroid._y && chasing == true && hitting == false && fleeing == false) {
this._y -= strafe;
}
}
if (Key.isDown(65) && gettingfucked == false && teasing == true) {
this.gotoAndStop('fucked');
}
if (Key.isDown(68) && gettingfucked == true && gettingfuckedfast == false) {
this.gotoAndStop('fuckedfast');
}
if (Key.isDown(87) && gettingfuckedturbo == false && gettingfuckedfast == true) {
this.gotoAndStop('fuckedturbo');
}
if (Key.isDown(83) && gettingfuckedturbo == true && teasing == false && cumming == false) {
this.gotoAndStop('tease');
}
if (Key.isDown(9) && gettingfuckedturbo == true && cumming == false) {
this.gotoAndPlay('cum');
}
if (gettingfucked == true) {
_root.horndroid.sp += _root.horndroid.spmodifier;
}
if (gettingfuckedfast == true) {
_root.horndroid.sp -= _root.horndroid.spmodifierfast;
}
if (gettingfuckedturbo == true) {
_root.horndroid.sp -= _root.horndroid.spmodifierturbo;
}
if (teasing == true) {
_root.horndroid.sp += _root.horndroid.spmodifierfast;
}
if (cumming == true) {
_root.horndroid.hp += _root.horndroid.hpmodifier;
}
if (sporespent == true) {
_root.horndroid.hp -= 100;
}
}
}
movieClip 4821 {
}
movieClip 4823 {
}
movieClip 4824 {
frame 1 {
stop();
talking = false;
}
instance of movieClip 240 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.horndroid.checkfuck) && _root.talker.talking == false && _root.policewoman._currentframe < 2 && _root.horndroid.officerjean == false) {
tellTarget ('_parent') {
gotoAndPlay('message');
}
}
if (this.hitTest(_root.horndroid.checkfuck) && _root.talker.talking == false && _root.policewoman._currentframe < 2 && _root.horndroid.officerjean == true) {
tellTarget ('_parent') {
gotoAndPlay('messageps');
}
}
}
}
frame 5 {
talking = true;
}
frame 204 {
gotoAndPlay(1);
}
frame 400 {
gotoAndPlay(1);
}
}
// unknown tag 88 length 68
movieClip 4828 {
}
movieClip 4830 {
}
movieClip 4832 {
}
movieClip 4834 {
}
movieClip 4836 {
}
movieClip 4839 {
}
movieClip 4842 {
}
movieClip 4844 {
}
movieClip 4846 {
}
movieClip 4847 {
}
movieClip 4849 {
}
movieClip 4851 {
}
movieClip 4852 {
}
movieClip 4854 {
}
movieClip 4856 {
}
movieClip 4858 {
}
movieClip 4860 {
}
movieClip 4862 {
}
movieClip 4864 {
}
movieClip 4865 {
}
movieClip 4868 {
}
movieClip 4869 {
}
movieClip 4871 {
}
movieClip 4874 {
}
movieClip 4876 {
}
movieClip 4878 {
}
movieClip 4879 {
}
movieClip 4881 {
}
movieClip 4883 {
}
movieClip 4884 {
}
movieClip 4885 {
}
movieClip 4887 {
}
movieClip 4889 {
}
movieClip 4891 {
}
movieClip 4893 {
}
movieClip 4895 {
}
movieClip 4898 {
}
movieClip 4901 {
}
movieClip 4903 {
}
movieClip 4905 {
}
movieClip 4906 {
}
movieClip 4908 {
}
movieClip 4910 {
}
movieClip 4911 {
}
movieClip 4912 {
}
movieClip 4914 {
}
movieClip 4916 {
}
movieClip 4918 {
}
movieClip 4920 {
}
movieClip 4922 {
}
movieClip 4923 {
}
movieClip 4926 {
}
movieClip 4927 {
}
movieClip 4929 {
}
movieClip 4932 {
}
movieClip 4934 {
}
movieClip 4936 {
}
movieClip 4938 {
}
movieClip 4939 {
}
movieClip 4941 {
}
movieClip 4943 {
}
movieClip 4944 {
}
movieClip 4945 {
}
movieClip 4947 {
}
movieClip 4948 {
}
movieClip 4949 {
}
movieClip 4952 {
}
movieClip 4954 {
}
movieClip 4955 {
}
movieClip 4957 {
}
movieClip 4958 {
}
movieClip 4961 {
}
movieClip 4963 {
}
movieClip 4964 {
}
movieClip 4965 {
}
movieClip 4968 {
}
movieClip 4970 {
}
movieClip 4971 {
}
movieClip 4972 {
}
movieClip 4974 {
}
movieClip 4975 {
}
movieClip 4976 {
}
movieClip 4978 {
}
movieClip 4980 {
}
movieClip 4981 {
}
movieClip 4983 {
}
movieClip 4984 {
}
movieClip 4985 {
}
movieClip 4987 {
}
movieClip 4989 {
}
movieClip 4990 {
}
movieClip 4992 {
}
movieClip 4993 {
}
movieClip 4995 {
}
movieClip 4997 {
}
movieClip 4999 {
}
movieClip 5001 {
}
movieClip 5003 {
}
movieClip 5005 {
}
movieClip 5007 {
}
movieClip 5009 {
}
movieClip 5011 {
}
movieClip 5013 {
}
movieClip 5014 {
}
movieClip 5015 {
}
movieClip 5016 {
}
movieClip 5018 {
}
movieClip 5020 {
}
movieClip 5022 {
}
movieClip 5024 {
}
movieClip 5026 {
}
movieClip 5028 {
}
movieClip 5030 {
}
movieClip 5032 {
}
movieClip 5033 {
}
movieClip 5034 {
}
movieClip 5035 {
}
movieClip 5037 {
}
movieClip 5038 {
}
movieClip 5039 {
}
movieClip 5040 {
frame 30 {
gotoAndPlay(1);
}
}
movieClip 5041 {
}
movieClip 5043 {
}
movieClip 5045 {
}
movieClip 5047 {
}
movieClip 5048 {
}
movieClip 5050 {
}
movieClip 5053 {
}
movieClip 5054 {
}
movieClip 5056 {
}
movieClip 5058 {
}
movieClip 5059 {
}
movieClip 5061 {
}
movieClip 5062 {
}
movieClip 5064 {
}
movieClip 5065 {
}
movieClip 5066 {
frame 16 {
gotoAndPlay(1);
}
}
movieClip 5068 {
}
movieClip 5069 {
frame 30 {
gotoAndPlay(1);
}
}
movieClip 5071 {
}
movieClip 5073 {
}
movieClip 5075 {
}
movieClip 5076 {
}
movieClip 5078 {
}
movieClip 5080 {
}
movieClip 5082 {
}
movieClip 5083 {
}
movieClip 5085 {
}
movieClip 5086 {
}
movieClip 5088 {
}
movieClip 5090 {
}
movieClip 5091 {
frame 16 {
gotoAndPlay(1);
}
}
movieClip 5092 {
}
movieClip 5095 {
}
movieClip 5097 {
}
movieClip 5098 {
frame 20 {
gotoAndPlay(1);
}
}
movieClip 5099 {
}
movieClip 5101 {
}
movieClip 5103 {
}
movieClip 5104 {
frame 15 {
gotoAndPlay(1);
}
}
movieClip 5106 {
}
movieClip 5107 {
}
movieClip 5111 {
}
movieClip 5113 {
}
movieClip 5115 {
}
movieClip 5116 {
frame 15 {
gotoAndPlay(1);
}
}
movieClip 5117 {
}
movieClip 5119 {
}
movieClip 5120 {
}
movieClip 5122 {
}
movieClip 5123 {
}
movieClip 5124 {
frame 20 {
gotoAndPlay(1);
}
}
movieClip 5126 {
}
movieClip 5127 {
}
movieClip 5129 {
}
movieClip 5131 {
}
movieClip 5134 {
}
movieClip 5135 {
}
movieClip 5137 {
}
movieClip 5138 {
frame 15 {
gotoAndPlay(1);
}
}
movieClip 5139 {
frame 10 {
gotoAndPlay(1);
}
}
movieClip 5140 {
frame 30 {
gotoAndPlay(1);
}
}
movieClip 5142 {
}
movieClip 5146 {
}
movieClip 5148 {
}
movieClip 5149 {
frame 20 {
gotoAndPlay(1);
}
}
movieClip 5150 {
}
movieClip 5152 {
}
movieClip 5154 {
}
movieClip 5156 {
}
movieClip 5158 {
}
movieClip 5159 {
}
movieClip 5161 {
}
movieClip 5162 {
}
movieClip 5163 {
frame 10 {
gotoAndPlay(1);
}
}
movieClip 5164 {
frame 20 {
gotoAndPlay(1);
}
}
movieClip 5166 {
}
movieClip 5168 {
}
movieClip 5170 {
}
movieClip 5172 {
}
movieClip 5173 {
frame 10 {
gotoAndPlay(1);
}
}
movieClip 5174 {
frame 20 {
gotoAndPlay(1);
}
}
movieClip 5176 {
}
movieClip 5178 {
}
movieClip 5179 {
frame 20 {
gotoAndPlay(1);
}
}
movieClip 5181 {
}
movieClip 5182 {
frame 10 {
gotoAndPlay(1);
}
}
movieClip 5191 {
}
movieClip 5192 {
}
movieClip 5193 {
}
movieClip 5194 {
}
movieClip 5196 {
}
movieClip 5205 {
}
movieClip 5206 {
frame 40 {
gotoAndPlay(1);
}
}
movieClip 5207 {
frame 40 {
gotoAndPlay(1);
}
}
movieClip 5216 {
}
movieClip 5217 {
frame 40 {
gotoAndPlay(1);
}
}
movieClip 5218 {
frame 40 {
gotoAndPlay(1);
}
}
movieClip 5227 {
}
movieClip 5228 {
}
movieClip 5229 {
}
movieClip 5230 {
frame 1 {
stop();
gettingfucked = false;
gettingfuckedfast = false;
gettingfuckedturbo = false;
teasing = false;
cumming = false;
suckingcock = false;
suckingcockfast = false;
suckingcockturbo = false;
mouthtease = false;
mouthcumming = false;
blewjob = false;
sporespent = false;
}
frame 2 {
sporespent = true;
}
frame 5 {
stop();
sporespent = false;
}
frame 6 {
stop();
cumming = false;
mouthcumming = false;
}
instance pussyfuck of movieClip 5041 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.horndroid.grab)) {
tellTarget ('_parent') {
gotoAndPlay('fucked');
}
}
}
}
frame 7 {
stop();
cumming = false;
mouthcumming = false;
blewjob = true;
}
instance ff2 of movieClip 5041 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.horndroid.grab)) {
tellTarget ('_parent') {
gotoAndPlay('fucktitties');
}
}
}
}
frame 8 {
stop();
a1 = true;
a2 = false;
a3 = false;
a4 = false;
ac = false;
}
frame 9 {
stop();
a1 = false;
a2 = true;
a3 = false;
a4 = false;
ac = false;
}
frame 10 {
stop();
a1 = false;
a2 = false;
a3 = true;
a4 = false;
ac = false;
}
frame 11 {
stop();
a1 = false;
a2 = false;
a3 = false;
a4 = true;
ac = false;
}
frame 12 {
stop();
gettingfucked = true;
gettingfuckedfast = false;
gettingfuckedturbo = false;
teasing = false;
cumming = false;
a4 = false;
}
frame 13 {
stop();
gettingfucked = false;
gettingfuckedfast = true;
gettingfuckedturbo = false;
teasing = false;
cumming = false;
}
frame 14 {
stop();
gettingfucked = false;
gettingfuckedfast = false;
gettingfuckedturbo = true;
teasing = false;
cumming = false;
}
frame 15 {
stop();
gettingfucked = false;
gettingfuckedfast = false;
gettingfuckedturbo = false;
teasing = true;
cumming = false;
}
frame 16 {
stop();
suckingcock = true;
suckingcockfast = false;
suckingcockturbo = false;
mouthtease = false;
mouthcumming = false;
}
frame 17 {
stop();
suckingcock = false;
suckingcockfast = true;
suckingcockturbo = false;
mouthtease = false;
mouthcumming = false;
}
frame 18 {
stop();
suckingcock = false;
suckingcockfast = false;
suckingcockturbo = true;
mouthtease = false;
mouthcumming = false;
}
frame 19 {
stop();
suckingcock = false;
suckingcockfast = false;
suckingcockturbo = false;
mouthtease = true;
mouthcumming = false;
}
frame 20 {
stop();
fuckingtits = true;
fuckingtitsfast = false;
fuckingtitsturbo = false;
teasetits = false;
cumontits = false;
}
frame 21 {
stop();
fuckingtits = false;
fuckingtitsfast = true;
fuckingtitsturbo = false;
teasetits = false;
cumontits = false;
}
frame 22 {
stop();
fuckingtits = false;
fuckingtitsfast = false;
fuckingtitsturbo = true;
teasetits = false;
cumontits = false;
}
frame 23 {
stop();
fuckingtits = false;
fuckingtitsfast = false;
fuckingtitsturbo = false;
teasetits = true;
cumontits = false;
}
frame 24 {
stop();
fuckingass = true;
fuckingassfast = false;
fuckingassturbo = false;
teaseass = false;
cumonass = false;
}
frame 25 {
stop();
fuckingass = false;
fuckingassfast = true;
fuckingassturbo = false;
teaseass = false;
cumonass = false;
}
frame 26 {
stop();
fuckingass = false;
fuckingassfast = false;
fuckingassturbo = true;
teaseass = false;
cumonass = false;
}
frame 27 {
stop();
fuckingass = false;
fuckingassfast = false;
fuckingassturbo = false;
teaseass = true;
cumonass = false;
}
frame 28 {
gettingfucked = false;
gettingfuckedfast = false;
gettingfuckedturbo = false;
teasing = false;
cumming = true;
}
frame 75 {
if (blewjob == false) {
gotoAndStop('fuckedmilf');
}
if (blewjob == true) {
gotoAndStop('mouthfuckedmilf');
}
}
frame 129 {
gotoAndStop(1);
}
frame 130 {
suckingcock = false;
suckingcockfast = false;
suckingcockturbo = false;
mouthtease = false;
mouthcumming = true;
}
frame 179 {
mouthcumming = false;
gotoAndPlay('mouthfuckedmilf');
}
frame 180 {
fuckingtits = false;
fuckingtitsfast = false;
fuckingtitsturbo = false;
teasetits = false;
cumontits = true;
}
frame 232 {
cumontits = false;
gotoAndPlay('mouthfuckedmilf');
}
frame 233 {
fuckingass = false;
fuckingassfast = false;
fuckingassturbo = false;
teaseass = false;
cumonass = true;
}
frame 323 {
cumonass = false;
gotoAndPlay('mouthfuckedmilf');
}
}
movieClip 5234 {
}
movieClip 5236 {
}
movieClip 5238 {
}
movieClip 5240 {
}
movieClip 5242 {
}
movieClip 5244 {
}
movieClip 5246 {
}
movieClip 5249 {
}
movieClip 5251 {
}
movieClip 5253 {
}
movieClip 5255 {
}
movieClip 5257 {
}
movieClip 5260 {
}
movieClip 5261 {
}
movieClip 5264 {
}
movieClip 5265 {
}
movieClip 5267 {
}
movieClip 5269 {
}
movieClip 5272 {
}
movieClip 5274 {
}
movieClip 5275 {
}
movieClip 5276 {
}
movieClip 5277 {
}
movieClip 5279 {
}
movieClip 5281 {
}
movieClip 5283 {
}
movieClip 5287 {
}
movieClip 5290 {
}
movieClip 5292 {
}
movieClip 5294 {
}
movieClip 5296 {
}
movieClip 5297 {
}
movieClip 5298 {
}
movieClip 5299 {
}
movieClip 5300 {
}
movieClip 5302 {
}
movieClip 5304 {
}
movieClip 5306 {
}
movieClip 5308 {
}
movieClip 5309 {
}
movieClip 5310 {
}
movieClip 5312 {
}
movieClip 5314 {
}
movieClip 5315 {
}
movieClip 5317 {
}
movieClip 5320 {
}
movieClip 5322 {
}
movieClip 5324 {
}
movieClip 5325 {
frame 10 {
gotoAndPlay(1);
}
}
movieClip 5326 {
frame 10 {
gotoAndPlay(1);
}
}
movieClip 5328 {
}
movieClip 5330 {
}
movieClip 5332 {
}
movieClip 5334 {
}
movieClip 5336 {
}
movieClip 5338 {
}
movieClip 5341 {
}
movieClip 5343 {
}
movieClip 5344 {
frame 40 {
gotoAndPlay(1);
}
}
movieClip 5345 {
frame 15 {
gotoAndPlay(1);
}
}
movieClip 5346 {
}
movieClip 5348 {
}
movieClip 5350 {
}
movieClip 5352 {
}
movieClip 5353 {
}
movieClip 5355 {
}
movieClip 5356 {
}
movieClip 5357 {
frame 15 {
gotoAndPlay(1);
}
}
movieClip 5359 {
}
movieClip 5360 {
frame 10 {
gotoAndPlay(1);
}
}
movieClip 5361 {
frame 7 {
gotoAndPlay(1);
}
}
movieClip 5362 {
frame 31 {
gotoAndPlay(1);
}
}
movieClip 5364 {
}
movieClip 5366 {
}
movieClip 5367 {
frame 20 {
gotoAndPlay(1);
}
}
movieClip 5368 {
frame 14 {
gotoAndPlay(1);
}
}
movieClip 5369 {
frame 10 {
gotoAndPlay(1);
}
}
movieClip 5370 {
frame 30 {
gotoAndPlay(1);
}
}
movieClip 5371 {
frame 10 {
gotoAndPlay(1);
}
}
movieClip 5372 {
frame 6 {
gotoAndPlay(1);
}
}
movieClip 5374 {
}
movieClip 5375 {
frame 24 {
gotoAndPlay(1);
}
}
movieClip 5376 {
frame 15 {
gotoAndPlay(1);
}
}
movieClip 5377 {
frame 8 {
gotoAndPlay(1);
}
}
movieClip 5378 {
frame 40 {
gotoAndPlay(1);
}
}
movieClip 5387 {
}
movieClip 5388 {
frame 40 {
gotoAndPlay(1);
}
}
movieClip 5397 {
}
movieClip 5398 {
frame 40 {
gotoAndPlay(1);
}
}
movieClip 5410 {
}
movieClip 5411 {
frame 40 {
gotoAndPlay(1);
}
}
movieClip 5412 {
frame 40 {
gotoAndPlay(1);
}
}
movieClip 5413 {
frame 41 {
gotoAndPlay(1);
}
}
movieClip 5414 {
frame 41 {
gotoAndPlay(1);
}
}
movieClip 5423 {
}
movieClip 5424 {
}
movieClip 5425 {
}
movieClip 5426 {
frame 1 {
stop();
gettingfucked = false;
gettingfuckedfast = false;
gettingfuckedturbo = false;
teasing = false;
cumming = false;
suckingcock = false;
suckingcockfast = false;
suckingcockturbo = false;
mouthtease = false;
mouthcumming = false;
blewjob = false;
sporespent = false;
}
frame 2 {
sporespent = true;
}
frame 5 {
stop();
sporespent = false;
}
frame 6 {
stop();
cumming = false;
mouthcumming = false;
}
instance pussyfuck of movieClip 5300 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.horndroid.grab)) {
tellTarget ('_parent') {
gotoAndPlay('fucked');
}
}
}
}
frame 7 {
stop();
cumming = false;
mouthcumming = false;
blewjob = true;
}
instance ff2 of movieClip 5300 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.horndroid.grab)) {
tellTarget ('_parent') {
gotoAndPlay('fucktitties');
}
}
}
}
frame 8 {
stop();
a1 = true;
a2 = false;
a3 = false;
a4 = false;
ac = false;
}
frame 9 {
stop();
a1 = false;
a2 = true;
a3 = false;
a4 = false;
ac = false;
}
frame 10 {
stop();
a1 = false;
a2 = false;
a3 = true;
a4 = false;
ac = false;
}
frame 11 {
stop();
a1 = false;
a2 = false;
a3 = false;
a4 = true;
ac = false;
}
frame 12 {
stop();
gettingfucked = true;
gettingfuckedfast = false;
gettingfuckedturbo = false;
teasing = false;
cumming = false;
a4 = false;
}
frame 13 {
stop();
gettingfucked = false;
gettingfuckedfast = true;
gettingfuckedturbo = false;
teasing = false;
cumming = false;
}
frame 14 {
stop();
gettingfucked = false;
gettingfuckedfast = false;
gettingfuckedturbo = true;
teasing = false;
cumming = false;
}
frame 15 {
stop();
gettingfucked = false;
gettingfuckedfast = false;
gettingfuckedturbo = false;
teasing = true;
cumming = false;
}
frame 16 {
stop();
suckingcock = true;
suckingcockfast = false;
suckingcockturbo = false;
mouthtease = false;
mouthcumming = false;
}
frame 17 {
stop();
suckingcock = false;
suckingcockfast = true;
suckingcockturbo = false;
mouthtease = false;
mouthcumming = false;
}
frame 18 {
stop();
suckingcock = false;
suckingcockfast = false;
suckingcockturbo = true;
mouthtease = false;
mouthcumming = false;
}
frame 19 {
stop();
suckingcock = false;
suckingcockfast = false;
suckingcockturbo = false;
mouthtease = true;
mouthcumming = false;
}
frame 20 {
stop();
fuckingtits = true;
fuckingtitsfast = false;
fuckingtitsturbo = false;
teasetits = false;
cumontits = false;
}
frame 21 {
stop();
fuckingtits = false;
fuckingtitsfast = true;
fuckingtitsturbo = false;
teasetits = false;
cumontits = false;
}
frame 22 {
stop();
fuckingtits = false;
fuckingtitsfast = false;
fuckingtitsturbo = true;
teasetits = false;
cumontits = false;
}
frame 23 {
stop();
fuckingtits = false;
fuckingtitsfast = false;
fuckingtitsturbo = false;
teasetits = true;
cumontits = false;
}
frame 24 {
stop();
fuckingass = true;
fuckingassfast = false;
fuckingassturbo = false;
teaseass = false;
cumonass = false;
}
frame 25 {
stop();
fuckingass = false;
fuckingassfast = true;
fuckingassturbo = false;
teaseass = false;
cumonass = false;
}
frame 26 {
stop();
fuckingass = false;
fuckingassfast = false;
fuckingassturbo = true;
teaseass = false;
cumonass = false;
}
frame 27 {
stop();
fuckingass = false;
fuckingassfast = false;
fuckingassturbo = false;
teaseass = true;
cumonass = false;
}
frame 28 {
gettingfucked = false;
gettingfuckedfast = false;
gettingfuckedturbo = false;
teasing = false;
cumming = true;
}
frame 75 {
if (blewjob == false) {
gotoAndStop('fuckedmilf');
}
if (blewjob == true) {
gotoAndStop('mouthfuckedmilf');
}
}
frame 129 {
gotoAndStop(1);
}
frame 130 {
suckingcock = false;
suckingcockfast = false;
suckingcockturbo = false;
mouthtease = false;
mouthcumming = true;
}
frame 179 {
mouthcumming = false;
gotoAndPlay('mouthfuckedmilf');
}
frame 180 {
fuckingtits = false;
fuckingtitsfast = false;
fuckingtitsturbo = false;
teasetits = false;
cumontits = true;
}
frame 232 {
cumontits = false;
gotoAndPlay('mouthfuckedmilf');
}
frame 233 {
fuckingass = false;
fuckingassfast = false;
fuckingassturbo = false;
teaseass = false;
cumonass = true;
}
frame 323 {
cumonass = false;
gotoAndPlay('mouthfuckedmilf');
}
}
movieClip 5429 {
}
movieClip 5430 {
frame 1 {
stop();
talking = false;
}
instance of movieClip 240 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.horndroid.whilefucking) && _root.talker.talking == false && _root.teen._currentframe < 42 && _root.teen._currentframe > 40 && _root.horndroid.sayoko == false) {
tellTarget ('_parent') {
gotoAndPlay('messagekeyacquired');
}
}
}
}
frame 5 {
talking = true;
}
frame 204 {
gotoAndPlay(1);
}
frame 400 {
gotoAndPlay(1);
}
frame 401 {
talking = true;
}
frame 497 {
gotoAndPlay(1);
}
}
movieClip 5432 {
}
movieClip 5434 {
}
movieClip 5436 {
}
movieClip 5439 {
}
movieClip 5442 {
}
movieClip 5444 {
}
movieClip 5447 {
}
movieClip 5448 {
}
movieClip 5450 {
}
movieClip 5452 {
}
movieClip 5454 {
}
movieClip 5455 {
}
movieClip 5456 {
}
movieClip 5457 {
}
movieClip 5459 {
}
movieClip 5462 {
}
movieClip 5464 {
}
movieClip 5465 {
}
movieClip 5466 {
}
movieClip 5468 {
}
movieClip 5470 {
}
movieClip 5472 {
}
movieClip 5474 {
}
movieClip 5476 {
}
movieClip 5478 {
}
movieClip 5480 {
}
movieClip 5482 {
}
movieClip 5484 {
}
movieClip 5486 {
}
movieClip 5488 {
}
movieClip 5489 {
frame 30 {
gotoAndPlay(1);
}
}
movieClip 5490 {
}
movieClip 5492 {
}
movieClip 5494 {
}
movieClip 5495 {
}
movieClip 5496 {
}
movieClip 5498 {
}
movieClip 5499 {
}
movieClip 5501 {
}
movieClip 5503 {
}
movieClip 5505 {
}
movieClip 5506 {
frame 30 {
gotoAndPlay(1);
}
}
movieClip 5508 {
}
movieClip 5509 {
}
movieClip 5511 {
}
movieClip 5512 {
frame 20 {
gotoAndPlay(1);
}
}
movieClip 5514 {
}
movieClip 5515 {
frame 15 {
gotoAndPlay(1);
}
}
movieClip 5517 {
}
movieClip 5519 {
}
movieClip 5520 {
}
movieClip 5521 {
}
movieClip 5522 {
frame 30 {
gotoAndPlay(1);
}
}
movieClip 5525 {
}
movieClip 5526 {
}
movieClip 5527 {
frame 30 {
gotoAndPlay(1);
}
}
movieClip 5528 {
frame 15 {
gotoAndPlay(1);
}
}
movieClip 5529 {
frame 7 {
gotoAndPlay(1);
}
}
movieClip 5530 {
frame 14 {
gotoAndPlay(1);
}
}
movieClip 5531 {
frame 7 {
gotoAndPlay(1);
}
}
movieClip 5540 {
}
movieClip 5541 {
frame 40 {
gotoAndPlay(1);
}
}
movieClip 5542 {
frame 30 {
gotoAndPlay(1);
}
}
movieClip 5543 {
frame 30 {
gotoAndPlay(1);
}
}
movieClip 5544 {
frame 15 {
gotoAndPlay(1);
}
}
movieClip 5545 {
frame 7 {
gotoAndPlay(1);
}
}
movieClip 5546 {
frame 26 {
gotoAndPlay(1);
}
}
movieClip 5547 {
frame 30 {
gotoAndPlay(1);
}
}
movieClip 5548 {
frame 30 {
gotoAndPlay(1);
}
}
movieClip 5550 {
}
movieClip 5551 {
frame 40 {
gotoAndPlay(1);
}
}
movieClip 5552 {
frame 40 {
gotoAndPlay(1);
}
}
movieClip 5553 {
frame 40 {
gotoAndPlay(1);
}
}
movieClip 5554 {
frame 1 {
stop();
gettingfucked = false;
gettingfuckedfast = false;
gettingfuckedturbo = false;
teasing = false;
cumming = false;
suckingcock = false;
suckingcockfast = false;
suckingcockturbo = false;
mouthtease = false;
mouthcumming = false;
blewjob = false;
sporespent = false;
}
frame 2 {
sporespent = true;
}
frame 5 {
stop();
sporespent = false;
}
frame 6 {
stop();
cumming = false;
mouthcumming = false;
}
instance pussyfuck of movieClip 5490 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.horndroid.grab)) {
tellTarget ('_parent') {
gotoAndPlay('fucked');
}
}
}
}
frame 7 {
stop();
cumming = false;
mouthcumming = false;
blewjob = true;
}
instance ff2 of movieClip 5490 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.horndroid.grab)) {
tellTarget ('_parent') {
gotoAndPlay('fucktitties');
}
}
}
}
frame 8 {
stop();
a1 = true;
a2 = false;
a3 = false;
a4 = false;
ac = false;
}
frame 9 {
stop();
a1 = false;
a2 = true;
a3 = false;
a4 = false;
ac = false;
}
frame 10 {
stop();
a1 = false;
a2 = false;
a3 = true;
a4 = false;
ac = false;
}
frame 11 {
stop();
a1 = false;
a2 = false;
a3 = false;
a4 = true;
ac = false;
}
frame 12 {
stop();
gettingfucked = true;
gettingfuckedfast = false;
gettingfuckedturbo = false;
teasing = false;
cumming = false;
a4 = false;
}
frame 13 {
stop();
gettingfucked = false;
gettingfuckedfast = true;
gettingfuckedturbo = false;
teasing = false;
cumming = false;
}
frame 14 {
stop();
gettingfucked = false;
gettingfuckedfast = false;
gettingfuckedturbo = true;
teasing = false;
cumming = false;
}
frame 15 {
stop();
gettingfucked = false;
gettingfuckedfast = false;
gettingfuckedturbo = false;
teasing = true;
cumming = false;
}
frame 16 {
stop();
suckingcock = true;
suckingcockfast = false;
suckingcockturbo = false;
mouthtease = false;
mouthcumming = false;
}
frame 17 {
stop();
suckingcock = false;
suckingcockfast = true;
suckingcockturbo = false;
mouthtease = false;
mouthcumming = false;
}
frame 18 {
stop();
suckingcock = false;
suckingcockfast = false;
suckingcockturbo = true;
mouthtease = false;
mouthcumming = false;
}
frame 19 {
stop();
suckingcock = false;
suckingcockfast = false;
suckingcockturbo = false;
mouthtease = true;
mouthcumming = false;
}
frame 20 {
stop();
fuckingtits = true;
fuckingtitsfast = false;
fuckingtitsturbo = false;
teasetits = false;
cumontits = false;
}
frame 21 {
stop();
fuckingtits = false;
fuckingtitsfast = true;
fuckingtitsturbo = false;
teasetits = false;
cumontits = false;
}
frame 22 {
stop();
fuckingtits = false;
fuckingtitsfast = false;
fuckingtitsturbo = true;
teasetits = false;
cumontits = false;
}
frame 23 {
stop();
fuckingtits = false;
fuckingtitsfast = false;
fuckingtitsturbo = false;
teasetits = true;
cumontits = false;
}
frame 24 {
stop();
fuckingass = true;
fuckingassfast = false;
fuckingassturbo = false;
teaseass = false;
cumonass = false;
}
frame 25 {
stop();
fuckingass = false;
fuckingassfast = true;
fuckingassturbo = false;
teaseass = false;
cumonass = false;
}
frame 26 {
stop();
fuckingass = false;
fuckingassfast = false;
fuckingassturbo = true;
teaseass = false;
cumonass = false;
}
frame 27 {
stop();
fuckingass = false;
fuckingassfast = false;
fuckingassturbo = false;
teaseass = true;
cumonass = false;
}
frame 28 {
gettingfucked = false;
gettingfuckedfast = false;
gettingfuckedturbo = false;
teasing = false;
cumming = true;
}
frame 75 {
if (blewjob == false) {
gotoAndStop('fuckedmilf');
}
if (blewjob == true) {
gotoAndStop('mouthfuckedmilf');
}
}
frame 129 {
stop();
gotoAndPlay(1);
}
frame 130 {
suckingcock = false;
suckingcockfast = false;
suckingcockturbo = false;
mouthtease = false;
mouthcumming = true;
}
frame 179 {
mouthcumming = false;
gotoAndPlay('mouthfuckedmilf');
}
frame 180 {
fuckingtits = false;
fuckingtitsfast = false;
fuckingtitsturbo = false;
teasetits = false;
cumontits = true;
}
frame 232 {
cumontits = false;
gotoAndPlay('mouthfuckedmilf');
}
frame 233 {
fuckingass = false;
fuckingassfast = false;
fuckingassturbo = false;
teaseass = false;
cumonass = true;
}
frame 323 {
cumonass = false;
gotoAndPlay('mouthfuckedmilf');
}
}
movieClip 5556 {
}
movieClip 5558 {
}
movieClip 5560 {
}
movieClip 5562 {
}
movieClip 5564 {
}
movieClip 5566 {
}
movieClip 5568 {
}
movieClip 5570 {
}
movieClip 5572 {
}
movieClip 5575 {
}
movieClip 5577 {
}
movieClip 5579 {
}
movieClip 5580 {
}
movieClip 5582 {
}
movieClip 5584 {
}
movieClip 5585 {
}
movieClip 5586 {
}
movieClip 5587 {
}
movieClip 5589 {
}
movieClip 5591 {
}
movieClip 5593 {
}
movieClip 5597 {
}
movieClip 5600 {
}
movieClip 5602 {
}
movieClip 5603 {
}
movieClip 5605 {
}
movieClip 5606 {
}
movieClip 5607 {
}
movieClip 5608 {
}
movieClip 5609 {
}
movieClip 5611 {
}
movieClip 5613 {
}
movieClip 5615 {
}
movieClip 5617 {
}
movieClip 5618 {
}
movieClip 5619 {
}
movieClip 5621 {
}
movieClip 5623 {
}
movieClip 5624 {
}
movieClip 5626 {
}
movieClip 5629 {
}
movieClip 5630 {
}
movieClip 5632 {
}
movieClip 5633 {
frame 10 {
gotoAndPlay(1);
}
}
movieClip 5634 {
frame 10 {
gotoAndPlay(1);
}
}
movieClip 5635 {
}
movieClip 5637 {
}
movieClip 5639 {
}
movieClip 5641 {
}
movieClip 5643 {
}
movieClip 5645 {
}
movieClip 5647 {
}
movieClip 5650 {
}
movieClip 5651 {
frame 40 {
gotoAndPlay(1);
}
}
movieClip 5653 {
}
movieClip 5655 {
}
movieClip 5656 {
frame 15 {
gotoAndPlay(1);
}
}
movieClip 5657 {
}
movieClip 5659 {
}
movieClip 5661 {
}
movieClip 5662 {
}
movieClip 5664 {
}
movieClip 5665 {
}
movieClip 5667 {
}
movieClip 5668 {
frame 15 {
gotoAndPlay(1);
}
}
movieClip 5669 {
frame 10 {
gotoAndPlay(1);
}
}
movieClip 5670 {
frame 7 {
gotoAndPlay(1);
}
}
movieClip 5671 {
frame 20 {
gotoAndPlay(1);
}
}
movieClip 5673 {
}
movieClip 5675 {
}
movieClip 5676 {
frame 20 {
gotoAndPlay(1);
}
}
movieClip 5677 {
frame 14 {
gotoAndPlay(1);
}
}
movieClip 5678 {
frame 10 {
gotoAndPlay(1);
}
}
movieClip 5679 {
frame 40 {
gotoAndPlay(1);
}
}
movieClip 5680 {
frame 11 {
gotoAndPlay(1);
}
}
movieClip 5681 {
frame 7 {
gotoAndPlay(1);
}
}
movieClip 5682 {
frame 40 {
gotoAndPlay(1);
}
}
movieClip 5684 {
}
movieClip 5686 {
}
movieClip 5687 {
frame 24 {
gotoAndPlay(1);
}
}
movieClip 5688 {
frame 15 {
gotoAndPlay(1);
}
}
movieClip 5689 {
frame 8 {
gotoAndPlay(1);
}
}
movieClip 5690 {
frame 40 {
gotoAndPlay(1);
}
}
movieClip 5699 {
}
movieClip 5700 {
frame 40 {
gotoAndPlay(1);
}
}
movieClip 5709 {
}
movieClip 5710 {
frame 40 {
gotoAndPlay(1);
}
}
movieClip 5712 {
}
movieClip 5723 {
}
movieClip 5724 {
frame 40 {
gotoAndPlay(1);
}
}
movieClip 5725 {
frame 40 {
gotoAndPlay(1);
}
}
movieClip 5726 {
frame 41 {
gotoAndPlay(1);
}
}
movieClip 5727 {
frame 41 {
gotoAndPlay(1);
}
}
movieClip 5736 {
}
movieClip 5737 {
}
movieClip 5738 {
}
movieClip 5739 {
frame 1 {
stop();
gettingfucked = false;
gettingfuckedfast = false;
gettingfuckedturbo = false;
teasing = false;
cumming = false;
suckingcock = false;
suckingcockfast = false;
suckingcockturbo = false;
mouthtease = false;
mouthcumming = false;
blewjob = false;
sporespent = false;
}
frame 2 {
sporespent = true;
}
frame 5 {
stop();
sporespent = false;
}
frame 6 {
stop();
cumming = false;
mouthcumming = false;
}
instance pussyfuck of movieClip 5609 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.horndroid.grab)) {
tellTarget ('_parent') {
gotoAndPlay('fucked');
}
}
}
}
frame 7 {
stop();
cumming = false;
mouthcumming = false;
blewjob = true;
}
instance ff2 of movieClip 5609 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.horndroid.grab)) {
tellTarget ('_parent') {
gotoAndPlay('fucktitties');
}
}
}
}
frame 8 {
stop();
a1 = true;
a2 = false;
a3 = false;
a4 = false;
ac = false;
}
frame 9 {
stop();
a1 = false;
a2 = true;
a3 = false;
a4 = false;
ac = false;
}
frame 10 {
stop();
a1 = false;
a2 = false;
a3 = true;
a4 = false;
ac = false;
}
frame 11 {
stop();
a1 = false;
a2 = false;
a3 = false;
a4 = true;
ac = false;
}
frame 12 {
stop();
gettingfucked = true;
gettingfuckedfast = false;
gettingfuckedturbo = false;
teasing = false;
cumming = false;
a4 = false;
}
frame 13 {
stop();
gettingfucked = false;
gettingfuckedfast = true;
gettingfuckedturbo = false;
teasing = false;
cumming = false;
}
frame 14 {
stop();
gettingfucked = false;
gettingfuckedfast = false;
gettingfuckedturbo = true;
teasing = false;
cumming = false;
}
frame 15 {
stop();
gettingfucked = false;
gettingfuckedfast = false;
gettingfuckedturbo = false;
teasing = true;
cumming = false;
}
frame 16 {
stop();
suckingcock = true;
suckingcockfast = false;
suckingcockturbo = false;
mouthtease = false;
mouthcumming = false;
}
frame 17 {
stop();
suckingcock = false;
suckingcockfast = true;
suckingcockturbo = false;
mouthtease = false;
mouthcumming = false;
}
frame 18 {
stop();
suckingcock = false;
suckingcockfast = false;
suckingcockturbo = true;
mouthtease = false;
mouthcumming = false;
}
frame 19 {
stop();
suckingcock = false;
suckingcockfast = false;
suckingcockturbo = false;
mouthtease = true;
mouthcumming = false;
}
frame 20 {
stop();
fuckingtits = true;
fuckingtitsfast = false;
fuckingtitsturbo = false;
teasetits = false;
cumontits = false;
}
frame 21 {
stop();
fuckingtits = false;
fuckingtitsfast = true;
fuckingtitsturbo = false;
teasetits = false;
cumontits = false;
}
frame 22 {
stop();
fuckingtits = false;
fuckingtitsfast = false;
fuckingtitsturbo = true;
teasetits = false;
cumontits = false;
}
frame 23 {
stop();
fuckingtits = false;
fuckingtitsfast = false;
fuckingtitsturbo = false;
teasetits = true;
cumontits = false;
}
frame 24 {
stop();
fuckingass = true;
fuckingassfast = false;
fuckingassturbo = false;
teaseass = false;
cumonass = false;
}
frame 25 {
stop();
fuckingass = false;
fuckingassfast = true;
fuckingassturbo = false;
teaseass = false;
cumonass = false;
}
frame 26 {
stop();
fuckingass = false;
fuckingassfast = false;
fuckingassturbo = true;
teaseass = false;
cumonass = false;
}
frame 27 {
stop();
fuckingass = false;
fuckingassfast = false;
fuckingassturbo = false;
teaseass = true;
cumonass = false;
}
frame 28 {
gettingfucked = false;
gettingfuckedfast = false;
gettingfuckedturbo = false;
teasing = false;
cumming = true;
}
frame 75 {
if (blewjob == false) {
gotoAndStop('fuckedmilf');
}
if (blewjob == true) {
gotoAndStop('mouthfuckedmilf');
}
}
frame 129 {
gotoAndStop(1);
}
frame 130 {
suckingcock = false;
suckingcockfast = false;
suckingcockturbo = false;
mouthtease = false;
mouthcumming = true;
}
frame 179 {
mouthcumming = false;
gotoAndPlay('mouthfuckedmilf');
}
frame 180 {
fuckingtits = false;
fuckingtitsfast = false;
fuckingtitsturbo = false;
teasetits = false;
cumontits = true;
}
frame 232 {
cumontits = false;
gotoAndPlay('mouthfuckedmilf');
}
frame 233 {
fuckingass = false;
fuckingassfast = false;
fuckingassturbo = false;
teaseass = false;
cumonass = true;
}
frame 323 {
cumonass = false;
gotoAndPlay('mouthfuckedmilf');
}
}
movieClip 5741 {
}
instance policewoman of movieClip 1177 {
onClipEvent (load) {
chasing = false;
gettingfucked = false;
}
}
movieClip 5743 {
}
movieClip 5745 {
}
movieClip 5747 {
}
movieClip 5748 {
}
movieClip 5749 {
}
movieClip 5750 {
}
movieClip 5752 {
}
movieClip 5753 {
}
movieClip 5756 {
}
movieClip 5758 {
}
movieClip 5760 {
}
movieClip 5762 {
}
movieClip 5763 {
}
movieClip 5765 {
}
movieClip 5766 {
}
movieClip 5768 {
}
movieClip 5770 {
}
movieClip 5771 {
}
movieClip 5772 {
}
movieClip 5773 {
}
movieClip 5775 {
}
movieClip 5778 {
}
movieClip 5779 {
}
movieClip 5780 {
}
movieClip 5781 {
}
movieClip 5782 {
}
movieClip 5785 {
}
movieClip 5787 {
}
movieClip 5790 {
}
movieClip 5791 {
}
movieClip 5793 {
}
movieClip 5795 {
}
movieClip 5797 {
}
movieClip 5798 {
}
movieClip 5799 {
frame 80 {
gotoAndPlay(1);
}
}
movieClip 5801 {
}
movieClip 5803 {
}
movieClip 5804 {
}
movieClip 5805 {
}
movieClip 5807 {
}
movieClip 5809 {
}
movieClip 5812 {
}
movieClip 5813 {
}
movieClip 5814 {
}
movieClip 5815 {
}
movieClip 5817 {
}
movieClip 5819 {
}
movieClip 5820 {
}
movieClip 5822 {
}
movieClip 5824 {
}
movieClip 5826 {
}
movieClip 5827 {
frame 40 {
gotoAndPlay(1);
}
}
movieClip 5829 {
}
movieClip 5830 {
}
movieClip 5831 {
frame 40 {
gotoAndPlay(1);
}
}
movieClip 5832 {
}
movieClip 5834 {
}
movieClip 5835 {
}
movieClip 5836 {
}
movieClip 5837 {
}
movieClip 5838 {
}
movieClip 5840 {
}
movieClip 5841 {
}
movieClip 5842 {
}
movieClip 5844 {
}
movieClip 5846 {
}
movieClip 5848 {
}
movieClip 5849 {
frame 40 {
gotoAndPlay(1);
}
}
movieClip 5850 {
}
movieClip 5851 {
}
movieClip 5853 {
}
movieClip 5854 {
frame 20 {
gotoAndPlay(1);
}
}
movieClip 5855 {
}
movieClip 5856 {
}
movieClip 5857 {
}
movieClip 5858 {
}
movieClip 5859 {
frame 20 {
gotoAndPlay(1);
}
}
movieClip 5862 {
}
movieClip 5864 {
}
movieClip 5865 {
}
movieClip 5866 {
}
movieClip 5867 {
frame 1 {
gotoAndPlay(1);
}
}
movieClip 5868 {
}
movieClip 5870 {
}
movieClip 5871 {
}
movieClip 5873 {
}
movieClip 5874 {
}
movieClip 5876 {
}
movieClip 5878 {
}
movieClip 5881 {
}
movieClip 5883 {
}
movieClip 5884 {
}
movieClip 5885 {
}
movieClip 5887 {
}
movieClip 5888 {
}
movieClip 5890 {
}
movieClip 5891 {
frame 20 {
gotoAndPlay(1);
}
}
movieClip 5892 {
frame 15 {
gotoAndPlay(1);
}
}
movieClip 5893 {
frame 8 {
gotoAndPlay(1);
}
}
movieClip 5896 {
}
movieClip 5897 {
}
movieClip 5898 {
}
movieClip 5899 {
frame 40 {
gotoAndPlay(1);
}
}
movieClip 5900 {
}
movieClip 5902 {
}
movieClip 5904 {
}
movieClip 5905 {
}
movieClip 5906 {
}
movieClip 5908 {
}
movieClip 5909 {
}
movieClip 5910 {
frame 20 {
gotoAndPlay(1);
}
}
movieClip 5911 {
frame 12 {
gotoAndPlay(1);
}
}
movieClip 5912 {
frame 7 {
gotoAndPlay(1);
}
}
movieClip 5913 {
frame 65 {
gotoAndPlay(1);
}
}
movieClip 5914 {
}
movieClip 5916 {
}
movieClip 5918 {
}
movieClip 5919 {
}
movieClip 5920 {
}
movieClip 5922 {
}
movieClip 5923 {
frame 30 {
gotoAndPlay(1);
}
}
movieClip 5924 {
frame 20 {
gotoAndPlay(1);
}
}
movieClip 5926 {
}
movieClip 5928 {
}
movieClip 5929 {
}
movieClip 5930 {
frame 10 {
gotoAndPlay(1);
}
}
movieClip 5932 {
}
movieClip 5933 {
frame 40 {
gotoAndPlay(1);
}
}
movieClip 5935 {
}
movieClip 5936 {
}
movieClip 5937 {
}
movieClip 5938 {
}
movieClip 5939 {
}
movieClip 5940 {
}
movieClip 5942 {
}
movieClip 5943 {
}
movieClip 5944 {
}
movieClip 5945 {
frame 30 {
gotoAndPlay(1);
}
}
movieClip 5946 {
frame 20 {
gotoAndPlay(1);
}
}
movieClip 5948 {
}
movieClip 5949 {
frame 10 {
gotoAndPlay(1);
}
}
movieClip 5950 {
frame 40 {
gotoAndPlay(1);
}
}
movieClip 5952 {
}
movieClip 5963 {
}
movieClip 5964 {
}
movieClip 5966 {
}
movieClip 5967 {
}
movieClip 5968 {
}
movieClip 5969 {
}
movieClip 5971 {
}
movieClip 5972 {
}
movieClip 5975 {
}
movieClip 5976 {
}
movieClip 5977 {
}
movieClip 5979 {
}
movieClip 5982 {
}
movieClip 5985 {
}
movieClip 5986 {
}
movieClip 5987 {
}
movieClip 5996 {
}
movieClip 5997 {
}
movieClip 5998 {
frame 40 {
gotoAndPlay(1);
}
}
movieClip 5999 {
frame 80 {
gotoAndPlay(1);
}
}
movieClip 6000 {
frame 80 {
gotoAndPlay(1);
}
}
movieClip 6001 {
frame 1 {
stop();
gettingfucked = false;
gettingfuckedfast = false;
gettingfuckedturbo = false;
teasing = false;
cumming = false;
suckingcock = false;
suckingcockfast = false;
suckingcockturbo = false;
mouthtease = false;
mouthcumming = false;
blewjob = false;
sporespent = false;
}
frame 2 {
sporespent = true;
}
frame 5 {
stop();
sporespent = false;
}
frame 6 {
stop();
cumming = false;
mouthcumming = false;
}
frame 7 {
stop();
cumming = false;
mouthcumming = false;
blewjob = true;
}
instance ff2 of movieClip 304 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.horndroid.grab)) {
tellTarget ('_parent') {
gotoAndPlay('fucktitties');
}
}
}
}
frame 8 {
stop();
a1 = true;
a2 = false;
a3 = false;
a4 = false;
ac = false;
}
frame 9 {
stop();
a1 = false;
a2 = true;
a3 = false;
a4 = false;
ac = false;
}
frame 10 {
stop();
a1 = false;
a2 = false;
a3 = true;
a4 = false;
ac = false;
}
frame 11 {
stop();
a1 = false;
a2 = false;
a3 = false;
a4 = true;
ac = false;
}
frame 12 {
stop();
gettingfucked = true;
gettingfuckedfast = false;
gettingfuckedturbo = false;
teasing = false;
cumming = false;
a4 = false;
}
frame 13 {
stop();
gettingfucked = false;
gettingfuckedfast = true;
gettingfuckedturbo = false;
teasing = false;
cumming = false;
}
frame 14 {
stop();
gettingfucked = false;
gettingfuckedfast = false;
gettingfuckedturbo = true;
teasing = false;
cumming = false;
}
frame 15 {
stop();
gettingfucked = false;
gettingfuckedfast = false;
gettingfuckedturbo = false;
teasing = true;
cumming = false;
}
frame 16 {
stop();
suckingcock = true;
suckingcockfast = false;
suckingcockturbo = false;
mouthtease = false;
mouthcumming = false;
}
frame 17 {
stop();
suckingcock = false;
suckingcockfast = true;
suckingcockturbo = false;
mouthtease = false;
mouthcumming = false;
}
frame 18 {
stop();
suckingcock = false;
suckingcockfast = false;
suckingcockturbo = true;
mouthtease = false;
mouthcumming = false;
}
frame 19 {
stop();
suckingcock = false;
suckingcockfast = false;
suckingcockturbo = false;
mouthtease = true;
mouthcumming = false;
}
frame 20 {
stop();
fuckingtits = true;
fuckingtitsfast = false;
fuckingtitsturbo = false;
teasetits = false;
cumontits = false;
}
frame 21 {
stop();
fuckingtits = false;
fuckingtitsfast = true;
fuckingtitsturbo = false;
teasetits = false;
cumontits = false;
}
frame 22 {
stop();
fuckingtits = false;
fuckingtitsfast = false;
fuckingtitsturbo = true;
teasetits = false;
cumontits = false;
}
frame 23 {
stop();
fuckingtits = false;
fuckingtitsfast = false;
fuckingtitsturbo = false;
teasetits = true;
cumontits = false;
}
frame 24 {
stop();
fuckingass = true;
fuckingassfast = false;
fuckingassturbo = false;
teaseass = false;
cumonass = false;
}
frame 25 {
stop();
fuckingass = false;
fuckingassfast = true;
fuckingassturbo = false;
teaseass = false;
cumonass = false;
}
frame 26 {
stop();
fuckingass = false;
fuckingassfast = false;
fuckingassturbo = true;
teaseass = false;
cumonass = false;
}
frame 27 {
stop();
fuckingass = false;
fuckingassfast = false;
fuckingassturbo = false;
teaseass = true;
cumonass = false;
}
frame 28 {
gettingfucked = false;
gettingfuckedfast = false;
gettingfuckedturbo = false;
teasing = false;
cumming = true;
}
frame 116 {
if (blewjob == false) {
gotoAndStop('fuckedmilf');
}
if (blewjob == true) {
gotoAndStop('mouthfuckedmilf');
}
}
frame 170 {
stop();
}
instance of movieClip 280 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.horndroid.grab) && _root.hpbar.sporeactive == true && _root.policewoman.fleeing == true && _root.horndroid.mission1finish == true) {
tellTarget ('_parent') {
gotoAndPlay('usedspore');
}
sporespent = true;
} else {
if (this.hitTest(_root.horndroid.grab) && _root.hpbar.sporeactive == false && _root.policewoman.fleeing == true && _root.horndroid.mission1finish == true) {
tellTarget ('_parent') {
gotoAndPlay('fucked');
}
}
}
}
}
frame 171 {
suckingcock = false;
suckingcockfast = false;
suckingcockturbo = false;
mouthtease = false;
mouthcumming = true;
}
frame 220 {
mouthcumming = false;
gotoAndPlay('mouthfuckedmilf');
}
frame 221 {
fuckingtits = false;
fuckingtitsfast = false;
fuckingtitsturbo = false;
teasetits = false;
cumontits = true;
}
frame 273 {
cumontits = false;
gotoAndPlay('mouthfuckedmilf');
}
frame 274 {
fuckingass = false;
fuckingassfast = false;
fuckingassturbo = false;
teaseass = false;
cumonass = true;
}
frame 364 {
cumonass = false;
gotoAndPlay('mouthfuckedmilf');
}
}
frame 166 {
function saveGame() {
myLSO = SharedObject.getLocal('henshi');
if (myLSO.data.myObj == undefined) {
trace('Saved Game');
} else {
trace('Overwrote Saved Game');
}
myObj = {};
myObj.objArray = new Array();
myObj.objArray[0] = _root.horndroid.kitty;
myObj.objArray[1] = _root.horndroid.sandra;
myObj.objArray[2] = _root.horndroid.score;
myObj.objArray[3] = _root.horndroid.hp;
myObj.objArray[4] = _root.horndroid.sp;
myObj.objArray[5] = _root.horndroid.sporeunlocked;
myObj.objArray[6] = _root.horndroid.vacation;
myObj.objArray[7] = _root.horndroid.mission1a;
myObj.objArray[8] = _root.horndroid.mission1finish;
myObj.objArray[9] = _root.horndroid.mission2a;
myObj.objArray[10] = _root.horndroid.mission2finish;
myObj.objArray[11] = _root.horndroid.mission3a;
myObj.objArray[12] = _root.horndroid.mission3finish;
myObj.objArray[13] = _root.horndroid.console1;
myObj.objArray[14] = _root.horndroid.console2;
myObj.objArray[15] = _root.horndroid.console3;
myObj.objArray[16] = _root.horndroid.nymphdoor;
myObj.objArray[17] = _root.horndroid.nymphkey;
myObj.objArray[18] = _root.horndroid.labdoor;
myObj.objArray[19] = _root.horndroid.labkey;
myObj.objArray[20] = _root.horndroid.orgypass;
myObj.objArray[21] = _root.horndroid.largejenny;
myObj.objArray[22] = _root.horndroid.largerosa;
myObj.objArray[23] = _root.horndroid.largeshanikwa;
myObj.objArray[24] = _root.horndroid.landlady;
myObj.objArray[25] = _root.horndroid.mrscitroen;
myObj.objArray[26] = _root.horndroid.mrshamilton;
myObj.objArray[27] = _root.horndroid.mrsbranch;
myObj.objArray[28] = _root.horndroid.mrsneilsen;
myObj.objArray[29] = _root.horndroid.msyamaguchi;
myObj.objArray[30] = _root.horndroid.mrsibuki;
myObj.objArray[31] = _root.horndroid.fanny;
myObj.objArray[32] = _root.horndroid.stacycitroen;
myObj.objArray[33] = _root.horndroid.quincitroen;
myObj.objArray[34] = _root.horndroid.carriehamilton;
myObj.objArray[35] = _root.horndroid.daisybranch;
myObj.objArray[36] = _root.horndroid.nancyneilsen;
myObj.objArray[37] = _root.horndroid.bernadethhans;
myObj.objArray[38] = _root.horndroid.lisa;
myObj.objArray[39] = _root.horndroid.sayoko;
myObj.objArray[40] = _root.horndroid.janine;
myObj.objArray[41] = _root.horndroid.cl1;
myObj.objArray[42] = _root.horndroid.cl2;
myObj.objArray[43] = _root.horndroid.cl3;
myObj.objArray[44] = _root.horndroid.cl4;
myObj.objArray[45] = _root.horndroid.lorraine;
myObj.objArray[46] = _root.horndroid.officerjean;
myObj.objArray[47] = _root.horndroid.officersavannah;
myObj.objArray[48] = _root.horndroid.officerprokofyevna;
myObj.objArray[49] = _root.horndroid.officermolly;
myObj.objArray[50] = _root.horndroid.officerjane;
myObj.objArray[51] = _root.horndroid.officervanessa;
myObj.objArray[52] = _root.horndroid.jossie;
myLSO.data.myObj = myObj;
myLSO.data.flush();
}
function loadGame() {
myLSO = SharedObject.getLocal('henshi');
if (myLSO.data.myObj == undefined) {
trace('No Saved Game');
} else {
trace('Loaded Game');
_root.horndroid.kitty = myObj.objArray[0];
_root.horndroid.sandra = myObj.objArray[1];
_root.horndroid.score = myObj.objArray[2];
_root.horndroid.hp = myObj.objArray[3];
_root.horndroid.sp = myObj.objArray[4];
_root.horndroid.sporeunlocked = myObj.objArray[5];
_root.horndroid.vacation = myObj.objArray[6];
_root.horndroid.mission1a = myObj.objArray[7];
_root.horndroid.mission1finish = myObj.objArray[8];
_root.horndroid.mission2a = myObj.objArray[9];
_root.horndroid.mission2finish = myObj.objArray[10];
_root.horndroid.mission3a = myObj.objArray[11];
_root.horndroid.mission3finish = myObj.objArray[12];
_root.horndroid.console1 = myObj.objArray[13];
_root.horndroid.console2 = myObj.objArray[14];
_root.horndroid.console3 = myObj.objArray[15];
_root.horndroid.nymphdoor = myObj.objArray[16];
_root.horndroid.nymphkey = myObj.objArray[17];
_root.horndroid.labdoor = myObj.objArray[18];
_root.horndroid.labkey = myObj.objArray[19];
_root.horndroid.orgypass = myObj.objArray[20];
_root.horndroid.largejenny = myObj.objArray[21];
_root.horndroid.largerosa = myObj.objArray[22];
_root.horndroid.largeshanikwa = myObj.objArray[23];
_root.horndroid.landlady = myObj.objArray[24];
_root.horndroid.mrscitroen = myObj.objArray[25];
_root.horndroid.mrshamilton = myObj.objArray[26];
_root.horndroid.mrsbranch = myObj.objArray[27];
_root.horndroid.mrsneilsen = myObj.objArray[28];
_root.horndroid.msyamaguchi = myObj.objArray[29];
_root.horndroid.mrsibuki = myObj.objArray[30];
_root.horndroid.fanny = myObj.objArray[31];
_root.horndroid.stacycitroen = myObj.objArray[32];
_root.horndroid.quincitroen = myObj.objArray[33];
_root.horndroid.carriehamilton = myObj.objArray[34];
_root.horndroid.daisybranch = myObj.objArray[35];
_root.horndroid.nancyneilsen = myObj.objArray[36];
_root.horndroid.bernadethhans = myObj.objArray[37];
_root.horndroid.lisa = myObj.objArray[38];
_root.horndroid.sayoko = myObj.objArray[39];
_root.horndroid.janine = myObj.objArray[40];
_root.horndroid.cl1 = myObj.objArray[41];
_root.horndroid.cl2 = myObj.objArray[42];
_root.horndroid.cl3 = myObj.objArray[43];
_root.horndroid.cl4 = myObj.objArray[44];
_root.horndroid.lorraine = myObj.objArray[45];
_root.horndroid.officerjean = myObj.objArray[46];
_root.horndroid.officersavannah = myObj.objArray[47];
_root.horndroid.officerprokofyevna = myObj.objArray[48];
_root.horndroid.officermolly = myObj.objArray[49];
_root.horndroid.officerjane = myObj.objArray[50];
_root.horndroid.officervanessa = myObj.objArray[51];
_root.horndroid.jossie = myObj.objArray[52];
}
}
stop();
speed = 6;
strafe = 1;
regenerating = true;
}
button 6015 {
on (release) {
getURL('http://dz.mysexgames.com', '_blank');
}
}
button 6018 {
on (release) {
getURL('http://mysexgames.com', '_blank');
}
}
instance of movieClip 122 {
onClipEvent (enterFrame) {
if (Key.isDown(83)) {
_root.saveGame();
_root.gotoAndStop(1);
}
if (Key.isDown(87)) {
_;
_root.saveGame();
_root.gotoAndStop('home');
_root.horndroid.gotoAndPlay('standing');
}
}
}