Frame 1
stop();
var female_counter = 1;
var male_counter = 1;
var round_counter = 1;
var card = 0;
var pick = 0;
var conclusion = 0;
belt.gotoAndStop(1);
bracelet.gotoAndStop(1);
bracelet2.gotoAndStop(1);
earing.gotoAndStop(1);
necklace.gotoAndStop(1);
panties.gotoAndStop(1);
pants.gotoAndStop(1);
shirt.gotoAndStop(1);
top.gotoAndStop(1);
male.gotoAndStop(1);
female.gotoAndStop(1);
finalResult.gotoAndStop(1);
result_box.text = "";
round.text = "";
Frame 2
function RandomCard() {
n = Math.floor(Math.random() * 9) + 1;
if (n <= 4) {
return(2);
}
if (n > 8) {
return(4);
}
return(3);
}
round.text = round_counter;
Frame 3
if (card == 1) {
result1.gotoAndStop(pick);
}
if (card == 2) {
result2.gotoAndStop(pick);
}
if (card == 3) {
result3.gotoAndStop(pick);
}
round.text = round_counter;
round_counter++;
belt.gotoAndStop(round_counter);
bracelet.gotoAndStop(round_counter);
bracelet2.gotoAndStop(round_counter);
earing.gotoAndStop(round_counter);
necklace.gotoAndStop(round_counter);
panties.gotoAndStop(male_counter);
pants.gotoAndStop(male_counter);
shirt.gotoAndStop(female_counter);
top.gotoAndStop(female_counter);
Frame 19
result1.gotoAndStop(1);
result2.gotoAndStop(1);
result3.gotoAndStop(1);
pick = RandomCard();
if (round_counter > 6) {
_root.gotoAndStop("end");
} else if (male_counter == 7) {
_root.gotoAndStop("end");
} else if (female_counter == 7) {
_root.gotoAndStop("end");
} else {
_root.gotoAndStop(2);
}
Frame 20
stop();
conclusion = male_counter - female_counter;
if (conclusion > 0) {
finalResult.gotoAndStop(2);
} else if (conclusion < 0) {
finalResult.gotoAndStop(3);
} else {
finalResult.gotoAndStop(4);
}
if (conclusion > 0) {
if ((male_counter == 7) && (conclusion == 6)) {
result_box.text = "Rating: MALE GOD \n\n";
result_box.text = result_box.text + "You have managed what seemed truly impossible and grew the most magnificent of male tools. You are truly the MALE GOD!";
}
if ((conclusion >= 4) && (conclusion < 6)) {
result_box.text = "Rating: Real Male \n\n";
result_box.text = result_box.text + "Against all odds you have managed to grow the most luxourious of male tools. You have truly become a perfect example of manhood.";
}
if ((conclusion >= 2) && (conclusion < 4)) {
result_box.text = "Rating: Male \n\n";
result_box.text = result_box.text + "Though you haven't managed to achieve the pure male equipment you became quite the stud. You are sure to enchant your share of the ladies.";
}
if ((conclusion > 0) && (conclusion < 2)) {
result_box.text = "Rating: Slightly Male \n\n";
result_box.text = result_box.text + "Though pending more to the male side you pretty much are in both sides at once. I am sure there are plenty who will love to venture in such waters.";
}
}
if (conclusion < 0) {
if ((female_counter == 7) && (conclusion == -6)) {
result_box.text = "Rating: FEMALE GOD \n\n";
result_box.text = result_box.text + "You have managed what seemed truly impossible and grew the most magnificent of female endowments. You are truly the FEMALE GOD!";
}
if ((conclusion > -6) && (conclusion <= -4)) {
result_box.text = "Rating: Real Female \n\n";
result_box.text = result_box.text + "Against all odds you have managed to grow the most luxourious of female endowments. You have truly become a perfect example of womanhood.";
}
if ((conclusion > -4) && (conclusion <= -2)) {
result_box.text = "Rating: Female \n\n";
result_box.text = result_box.text + "Though you haven't managed to achieve the full feminine assets you became quite the eye catcher. You are sure to charm your share of the boys.";
}
if ((conclusion > -2) && (conclusion < 0)) {
result_box.text = "Rating: Slightly Female \n\n";
result_box.text = result_box.text + "Though pending more to the female side you pretty much are in both sides at once. I am sure there are plenty who will love to venture in such waters.";
}
}
if (conclusion == 0) {
if ((male_counter == 7) && (female_counter == 7)) {
result_box.text = "Rating: TRUE GOD \n\n";
result_box.text = result_box.text + "You have managed what seemed truly impossible and grew not only the most magnificent of male tools but also the most luxorious of female endowments. You are the TRUE GOD of both genders.";
} else {
result_box.text = "Rating: Herm \n\n";
result_box.text = result_box.text + "Against all odds you have managed to grow and blossom into a pure hermaphrodite. You are a true master of both male and female features.";
}
}
trace("Round " + round_counter);
trace("Male " + male_counter);
trace("Female " + female_counter);
trace("Result " + conclusion);
trace(result_box.text);
trace("");
Symbol 8 Button
on (release) {
_root.gotoAndStop(2);
}
Symbol 17 MovieClip Frame 1
stop();
Symbol 25 MovieClip Frame 1
stop();
Symbol 32 MovieClip Frame 1
stop();
Symbol 39 MovieClip Frame 1
stop();
Symbol 41 MovieClip Frame 1
stop();
Symbol 43 MovieClip Frame 1
stop();
Symbol 45 MovieClip Frame 1
stop();
Symbol 47 MovieClip Frame 1
stop();
Symbol 49 MovieClip Frame 1
stop();
Symbol 53 Button
on (release) {
male_counter++;
card = 1;
_root.gotoAndPlay(3);
}
Symbol 56 Button
on (release) {
female_counter++;
card = 2;
_root.gotoAndPlay(3);
}
Symbol 59 Button
on (release) {
male_counter++;
female_counter++;
card = 3;
_root.gotoAndPlay(3);
}
Symbol 63 MovieClip Frame 1
stop();
Symbol 65 MovieClip Frame 1
stop();
Symbol 69 MovieClip Frame 1
stop();
Symbol 70 MovieClip Frame 1
stop();
Symbol 71 MovieClip Frame 1
stop();
Symbol 76 MovieClip Frame 1
stop();
Symbol 81 Button
on (release) {
_root.gotoAndStop(1);
}