Combined Code
frame 1 {
var bits = 0;
var clothes = 0;
var bitType = 0;
BitsFlyout.NullButton.gotoAndStop(3);
BitsFlyout.VagButton.gotoAndStop(1);
BitsFlyout.SheathButton.gotoAndStop(1);
BitsFlyout.HumanButton.gotoAndStop(1);
BitsFlyout.KnotButton.gotoAndStop(1);
NaughtyBits.gotoAndStop(1);
Clothes.gotoAndStop(1);
ClothesFlyout.Amy.gotoAndStop(1);
ClothesFlyout.Bunnie.gotoAndStop(1);
ClothesFlyout.Cream.gotoAndStop(1);
ClothesFlyout.Nicole.gotoAndStop(1);
ClothesFlyout.Rouge.gotoAndStop(1);
ClothesFlyout.Sally.gotoAndStop(1);
ClothesFlyout.Sticks.gotoAndStop(1);
ClothesFlyout.Sonic.gotoAndStop(1);
ClothesFlyout.Tails.gotoAndStop(1);
ClothesFlyout.Nude.gotoAndStop(1);
BitsButton.gotoAndStop(1);
ClothesButton.gotoAndStop(1);
BitsFlyout.gotoAndStop(1);
ClothesFlyout.gotoAndStop(1);
ClothesFlyout.Nude.gotoAndStop(3);
BitsButton.onRollOver = function () {
BitsButton.gotoAndStop(2);
};
BitsButton.onRollOut = function () {
BitsButton.gotoAndStop(1);
};
BitsFlyout.NullButton.onRollOver = function () {
BitsFlyout.NullButton.gotoAndStop(2);
};
BitsFlyout.NullButton.onRollOut = function () {
if (bits == 0) {
BitsFlyout.NullButton.gotoAndStop(3);
} else {
BitsFlyout.NullButton.gotoAndStop(1);
}
};
BitsFlyout.VagButton.onRollOver = function () {
BitsFlyout.VagButton.gotoAndStop(2);
};
BitsFlyout.VagButton.onRollOut = function () {
if (bits == 1) {
BitsFlyout.VagButton.gotoAndStop(3);
} else {
BitsFlyout.VagButton.gotoAndStop(1);
}
};
BitsFlyout.SheathButton.onRollOver = function () {
BitsFlyout.SheathButton.gotoAndStop(2);
};
BitsFlyout.SheathButton.onRollOut = function () {
if (bits == 2) {
BitsFlyout.SheathButton.gotoAndStop(3);
} else {
BitsFlyout.SheathButton.gotoAndStop(1);
}
};
BitsFlyout.HumanButton.onRollOver = function () {
BitsFlyout.HumanButton.gotoAndStop(2);
};
BitsFlyout.HumanButton.onRollOut = function () {
if (bits == 3) {
BitsFlyout.HumanButton.gotoAndStop(3);
} else {
BitsFlyout.HumanButton.gotoAndStop(1);
}
};
BitsFlyout.KnotButton.onRollOver = function () {
BitsFlyout.KnotButton.gotoAndStop(2);
};
BitsFlyout.KnotButton.onRollOut = function () {
if (bits == 4) {
BitsFlyout.KnotButton.gotoAndStop(3);
} else {
BitsFlyout.KnotButton.gotoAndStop(1);
}
};
ClothesButton.onRollOver = function () {
ClothesButton.gotoAndStop(2);
};
ClothesButton.onRollOut = function () {
ClothesButton.gotoAndStop(1);
};
ClothesFlyout.NudeMouse.onRollOver = function () {
ClothesFlyout.Nude.gotoAndStop(2);
};
ClothesFlyout.NudeMouse.onRollOut = function () {
if (clothes == 0) {
ClothesFlyout.Nude.gotoAndStop(3);
} else {
ClothesFlyout.Nude.gotoAndStop(1);
}
};
ClothesFlyout.AmyMouse.onRollOver = function () {
ClothesFlyout.Amy.gotoAndStop(2);
};
ClothesFlyout.AmyMouse.onRollOut = function () {
if (clothes == 1) {
ClothesFlyout.Amy.gotoAndStop(3);
} else {
ClothesFlyout.Amy.gotoAndStop(1);
}
};
ClothesFlyout.BunnieMouse.onRollOver = function () {
ClothesFlyout.Bunnie.gotoAndStop(2);
};
ClothesFlyout.BunnieMouse.onRollOut = function () {
if (clothes == 2) {
ClothesFlyout.Bunnie.gotoAndStop(3);
} else {
ClothesFlyout.Bunnie.gotoAndStop(1);
}
};
ClothesFlyout.CreamMouse.onRollOver = function () {
ClothesFlyout.Cream.gotoAndStop(2);
};
ClothesFlyout.CreamMouse.onRollOut = function () {
if (clothes == 3) {
ClothesFlyout.Cream.gotoAndStop(3);
} else {
ClothesFlyout.Cream.gotoAndStop(1);
}
};
ClothesFlyout.NicoleMouse.onRollOver = function () {
ClothesFlyout.Nicole.gotoAndStop(2);
};
ClothesFlyout.NicoleMouse.onRollOut = function () {
if (clothes == 4) {
ClothesFlyout.Nicole.gotoAndStop(3);
} else {
ClothesFlyout.Nicole.gotoAndStop(1);
}
};
ClothesFlyout.RougeMouse.onRollOver = function () {
ClothesFlyout.Rouge.gotoAndStop(2);
};
ClothesFlyout.RougeMouse.onRollOut = function () {
if (clothes == 5) {
ClothesFlyout.Rouge.gotoAndStop(3);
} else {
ClothesFlyout.Rouge.gotoAndStop(1);
}
};
ClothesFlyout.SallyMouse.onRollOver = function () {
ClothesFlyout.Sally.gotoAndStop(2);
};
ClothesFlyout.SallyMouse.onRollOut = function () {
if (clothes == 6) {
ClothesFlyout.Sally.gotoAndStop(3);
} else {
ClothesFlyout.Sally.gotoAndStop(1);
}
};
ClothesFlyout.SonicMouse.onRollOver = function () {
ClothesFlyout.Sonic.gotoAndStop(2);
};
ClothesFlyout.SonicMouse.onRollOut = function () {
if (clothes == 7) {
ClothesFlyout.Sonic.gotoAndStop(3);
} else {
ClothesFlyout.Sonic.gotoAndStop(1);
}
};
ClothesFlyout.SticksMouse.onRollOver = function () {
ClothesFlyout.Sticks.gotoAndStop(2);
};
ClothesFlyout.SticksMouse.onRollOut = function () {
if (clothes == 8) {
ClothesFlyout.Sticks.gotoAndStop(3);
} else {
ClothesFlyout.Sticks.gotoAndStop(1);
}
};
ClothesFlyout.TailsMouse.onRollOver = function () {
ClothesFlyout.Tails.gotoAndStop(2);
};
ClothesFlyout.TailsMouse.onRollOut = function () {
if (clothes == 9) {
ClothesFlyout.Tails.gotoAndStop(3);
} else {
ClothesFlyout.Tails.gotoAndStop(1);
}
};
BitsButton.onRelease = function () {
BitsFlyout.gotoAndPlay(1);
ClothesFlyout.gotoAndStop(1);
};
ClothesButton.onRelease = function () {
ClothesFlyout.gotoAndPlay(1);
BitsFlyout.gotoAndStop(1);
};
BitsFlyout.BitsShut.onRollOver = function () {
BitsFlyout.gotoAndStop(1);
};
ClothesFlyout.ClothesShut.onRollOver = function () {
ClothesFlyout.gotoAndStop(1);
};
BitsFlyout.NullButton.onRelease = function () {
BitsFlyout.NullButton.gotoAndStop(3);
BitsFlyout.VagButton.gotoAndStop(1);
BitsFlyout.SheathButton.gotoAndStop(1);
BitsFlyout.HumanButton.gotoAndStop(1);
BitsFlyout.KnotButton.gotoAndStop(1);
NaughtyBits.gotoAndStop(1);
bits = 0;
bitType = 0;
if (clothes == 1) {
Clothes.gotoAndStop(2);
} else {
if (clothes == 2) {
Clothes.gotoAndStop(4);
} else {
if (clothes == 3) {
Clothes.gotoAndStop(8);
} else {
if (clothes == 4) {
Clothes.gotoAndStop(10);
} else {
if (clothes == 5) {
Clothes.gotoAndStop(14);
} else {
if (clothes == 8) {
Clothes.gotoAndStop(20);
}
}
}
}
}
}
};
BitsFlyout.VagButton.onRelease = function () {
BitsFlyout.NullButton.gotoAndStop(1);
BitsFlyout.VagButton.gotoAndStop(3);
BitsFlyout.SheathButton.gotoAndStop(1);
BitsFlyout.HumanButton.gotoAndStop(1);
BitsFlyout.KnotButton.gotoAndStop(1);
NaughtyBits.gotoAndStop(2);
bits = 1;
bitType = 1;
if (clothes == 1) {
Clothes.gotoAndStop(2);
} else {
if (clothes == 2) {
Clothes.gotoAndStop(4);
} else {
if (clothes == 3) {
Clothes.gotoAndStop(8);
} else {
if (clothes == 4) {
Clothes.gotoAndStop(10);
} else {
if (clothes == 5) {
Clothes.gotoAndStop(14);
} else {
if (clothes == 8) {
Clothes.gotoAndStop(20);
}
}
}
}
}
}
};
BitsFlyout.SheathButton.onRelease = function () {
BitsFlyout.NullButton.gotoAndStop(1);
BitsFlyout.VagButton.gotoAndStop(1);
BitsFlyout.SheathButton.gotoAndStop(3);
BitsFlyout.HumanButton.gotoAndStop(1);
BitsFlyout.KnotButton.gotoAndStop(1);
NaughtyBits.gotoAndStop(3);
bits = 2;
bitType = 2;
if (clothes == 1) {
Clothes.gotoAndStop(2);
} else {
if (clothes == 2) {
Clothes.gotoAndStop(5);
} else {
if (clothes == 3) {
Clothes.gotoAndStop(8);
} else {
if (clothes == 4) {
Clothes.gotoAndStop(11);
} else {
if (clothes == 5) {
Clothes.gotoAndStop(15);
} else {
if (clothes == 8) {
Clothes.gotoAndStop(21);
}
}
}
}
}
}
};
BitsFlyout.HumanButton.onRelease = function () {
BitsFlyout.NullButton.gotoAndStop(1);
BitsFlyout.VagButton.gotoAndStop(1);
BitsFlyout.SheathButton.gotoAndStop(1);
BitsFlyout.HumanButton.gotoAndStop(3);
BitsFlyout.KnotButton.gotoAndStop(1);
NaughtyBits.gotoAndStop(4);
bits = 3;
bitType = 3;
if (clothes == 1) {
Clothes.gotoAndStop(3);
} else {
if (clothes == 2) {
Clothes.gotoAndStop(6);
} else {
if (clothes == 3) {
Clothes.gotoAndStop(9);
} else {
if (clothes == 4) {
Clothes.gotoAndStop(12);
} else {
if (clothes == 5) {
Clothes.gotoAndStop(16);
} else {
if (clothes == 8) {
Clothes.gotoAndStop(22);
}
}
}
}
}
}
};
BitsFlyout.KnotButton.onRelease = function () {
BitsFlyout.NullButton.gotoAndStop(1);
BitsFlyout.VagButton.gotoAndStop(1);
BitsFlyout.SheathButton.gotoAndStop(1);
BitsFlyout.HumanButton.gotoAndStop(1);
BitsFlyout.KnotButton.gotoAndStop(3);
NaughtyBits.gotoAndStop(5);
bits = 4;
bitType = 4;
if (clothes == 1) {
Clothes.gotoAndStop(3);
} else {
if (clothes == 2) {
Clothes.gotoAndStop(7);
} else {
if (clothes == 3) {
Clothes.gotoAndStop(9);
} else {
if (clothes == 4) {
Clothes.gotoAndStop(13);
} else {
if (clothes == 5) {
Clothes.gotoAndStop(17);
} else {
if (clothes == 8) {
Clothes.gotoAndStop(23);
}
}
}
}
}
}
};
ClothesFlyout.NudeMouse.onRelease = function () {
Clothes.gotoAndStop(1);
ClothesFlyout.Amy.gotoAndStop(1);
ClothesFlyout.Bunnie.gotoAndStop(1);
ClothesFlyout.Cream.gotoAndStop(1);
ClothesFlyout.Nicole.gotoAndStop(1);
ClothesFlyout.Rouge.gotoAndStop(1);
ClothesFlyout.Sally.gotoAndStop(1);
ClothesFlyout.Sticks.gotoAndStop(1);
ClothesFlyout.Sonic.gotoAndStop(1);
ClothesFlyout.Tails.gotoAndStop(1);
ClothesFlyout.Nude.gotoAndStop(3);
clothes = 0;
};
ClothesFlyout.AmyMouse.onRelease = function () {
ClothesFlyout.Amy.gotoAndStop(3);
ClothesFlyout.Bunnie.gotoAndStop(1);
ClothesFlyout.Cream.gotoAndStop(1);
ClothesFlyout.Nicole.gotoAndStop(1);
ClothesFlyout.Rouge.gotoAndStop(1);
ClothesFlyout.Sally.gotoAndStop(1);
ClothesFlyout.Sticks.gotoAndStop(1);
ClothesFlyout.Sonic.gotoAndStop(1);
ClothesFlyout.Tails.gotoAndStop(1);
ClothesFlyout.Nude.gotoAndStop(1);
clothes = 1;
if (bitType < 3) {
Clothes.gotoAndStop(2);
} else {
Clothes.gotoAndStop(3);
}
};
ClothesFlyout.BunnieMouse.onRelease = function () {
ClothesFlyout.Amy.gotoAndStop(1);
ClothesFlyout.Bunnie.gotoAndStop(3);
ClothesFlyout.Cream.gotoAndStop(1);
ClothesFlyout.Nicole.gotoAndStop(1);
ClothesFlyout.Rouge.gotoAndStop(1);
ClothesFlyout.Sally.gotoAndStop(1);
ClothesFlyout.Sticks.gotoAndStop(1);
ClothesFlyout.Sonic.gotoAndStop(1);
ClothesFlyout.Tails.gotoAndStop(1);
ClothesFlyout.Nude.gotoAndStop(1);
clothes = 2;
if (bitType < 2) {
Clothes.gotoAndStop(4);
} else {
if (bitType == 2) {
Clothes.gotoAndStop(5);
} else {
if (bitType == 3) {
Clothes.gotoAndStop(6);
} else {
Clothes.gotoAndStop(7);
}
}
}
};
ClothesFlyout.CreamMouse.onRelease = function () {
ClothesFlyout.Amy.gotoAndStop(1);
ClothesFlyout.Bunnie.gotoAndStop(1);
ClothesFlyout.Cream.gotoAndStop(3);
ClothesFlyout.Nicole.gotoAndStop(1);
ClothesFlyout.Rouge.gotoAndStop(1);
ClothesFlyout.Sally.gotoAndStop(1);
ClothesFlyout.Sticks.gotoAndStop(1);
ClothesFlyout.Sonic.gotoAndStop(1);
ClothesFlyout.Tails.gotoAndStop(1);
ClothesFlyout.Nude.gotoAndStop(1);
clothes = 3;
if (bitType < 3) {
Clothes.gotoAndStop(8);
} else {
Clothes.gotoAndStop(9);
}
};
ClothesFlyout.NicoleMouse.onRelease = function () {
ClothesFlyout.Amy.gotoAndStop(1);
ClothesFlyout.Bunnie.gotoAndStop(1);
ClothesFlyout.Cream.gotoAndStop(1);
ClothesFlyout.Nicole.gotoAndStop(3);
ClothesFlyout.Rouge.gotoAndStop(1);
ClothesFlyout.Sally.gotoAndStop(1);
ClothesFlyout.Sticks.gotoAndStop(1);
ClothesFlyout.Sonic.gotoAndStop(1);
ClothesFlyout.Tails.gotoAndStop(1);
ClothesFlyout.Nude.gotoAndStop(1);
clothes = 4;
if (bitType < 2) {
Clothes.gotoAndStop(10);
} else {
if (bitType == 2) {
Clothes.gotoAndStop(11);
} else {
if (bitType == 3) {
Clothes.gotoAndStop(12);
} else {
Clothes.gotoAndStop(13);
}
}
}
};
ClothesFlyout.RougeMouse.onRelease = function () {
ClothesFlyout.Amy.gotoAndStop(1);
ClothesFlyout.Bunnie.gotoAndStop(1);
ClothesFlyout.Cream.gotoAndStop(1);
ClothesFlyout.Nicole.gotoAndStop(1);
ClothesFlyout.Rouge.gotoAndStop(3);
ClothesFlyout.Sally.gotoAndStop(1);
ClothesFlyout.Sticks.gotoAndStop(1);
ClothesFlyout.Sonic.gotoAndStop(1);
ClothesFlyout.Tails.gotoAndStop(1);
ClothesFlyout.Nude.gotoAndStop(1);
clothes = 5;
if (bitType < 2) {
Clothes.gotoAndStop(14);
} else {
if (bitType == 2) {
Clothes.gotoAndStop(15);
} else {
if (bitType == 3) {
Clothes.gotoAndStop(16);
} else {
Clothes.gotoAndStop(17);
}
}
}
};
ClothesFlyout.SallyMouse.onRelease = function () {
Clothes.gotoAndStop(18);
ClothesFlyout.Amy.gotoAndStop(1);
ClothesFlyout.Bunnie.gotoAndStop(1);
ClothesFlyout.Cream.gotoAndStop(1);
ClothesFlyout.Nicole.gotoAndStop(1);
ClothesFlyout.Rouge.gotoAndStop(1);
ClothesFlyout.Sally.gotoAndStop(3);
ClothesFlyout.Sticks.gotoAndStop(1);
ClothesFlyout.Sonic.gotoAndStop(1);
ClothesFlyout.Tails.gotoAndStop(1);
ClothesFlyout.Nude.gotoAndStop(1);
clothes = 6;
};
ClothesFlyout.SonicMouse.onRelease = function () {
Clothes.gotoAndStop(19);
ClothesFlyout.Amy.gotoAndStop(1);
ClothesFlyout.Bunnie.gotoAndStop(1);
ClothesFlyout.Cream.gotoAndStop(1);
ClothesFlyout.Nicole.gotoAndStop(1);
ClothesFlyout.Rouge.gotoAndStop(1);
ClothesFlyout.Sally.gotoAndStop(1);
ClothesFlyout.Sticks.gotoAndStop(1);
ClothesFlyout.Sonic.gotoAndStop(3);
ClothesFlyout.Tails.gotoAndStop(1);
ClothesFlyout.Nude.gotoAndStop(1);
clothes = 7;
};
ClothesFlyout.SticksMouse.onRelease = function () {
ClothesFlyout.Amy.gotoAndStop(1);
ClothesFlyout.Bunnie.gotoAndStop(1);
ClothesFlyout.Cream.gotoAndStop(1);
ClothesFlyout.Nicole.gotoAndStop(1);
ClothesFlyout.Rouge.gotoAndStop(1);
ClothesFlyout.Sally.gotoAndStop(1);
ClothesFlyout.Sticks.gotoAndStop(3);
ClothesFlyout.Sonic.gotoAndStop(1);
ClothesFlyout.Tails.gotoAndStop(1);
ClothesFlyout.Nude.gotoAndStop(1);
clothes = 8;
if (bitType < 2) {
Clothes.gotoAndStop(20);
} else {
if (bitType == 2) {
Clothes.gotoAndStop(21);
} else {
if (bitType == 3) {
Clothes.gotoAndStop(22);
} else {
Clothes.gotoAndStop(23);
}
}
}
};
ClothesFlyout.TailsMouse.onRelease = function () {
Clothes.gotoAndStop(24);
ClothesFlyout.Amy.gotoAndStop(1);
ClothesFlyout.Bunnie.gotoAndStop(1);
ClothesFlyout.Cream.gotoAndStop(1);
ClothesFlyout.Nicole.gotoAndStop(1);
ClothesFlyout.Rouge.gotoAndStop(1);
ClothesFlyout.Sally.gotoAndStop(1);
ClothesFlyout.Sticks.gotoAndStop(1);
ClothesFlyout.Sonic.gotoAndStop(1);
ClothesFlyout.Tails.gotoAndStop(3);
ClothesFlyout.Nude.gotoAndStop(1);
clothes = 9;
};
stop();
}
// unknown tag 88 length 65
movieClip 15 {
}
movieClip 62 {
}
// unknown tag 88 length 68
movieClip 67 {
}
movieClip 71 {
}
movieClip 73 {
}
movieClip 75 {
}
movieClip 76 {
}
movieClip 78 {
}
movieClip 79 {
}
movieClip 81 {
}
movieClip 83 {
}
movieClip 85 {
}
movieClip 87 {
}
movieClip 94 {
}
movieClip 98 {
}
movieClip 102 {
}
movieClip 106 {
}
movieClip 110 {
}
movieClip 115 {
}
movieClip 119 {
}
movieClip 123 {
}
movieClip 126 {
}
movieClip 129 {
}
movieClip 132 {
frame 6 {
stop();
}
}
movieClip 140 {
}
movieClip 143 {
}
movieClip 146 {
}
movieClip 149 {
}
movieClip 152 {
}
movieClip 155 {
frame 6 {
stop();
}
}
movieClip 159 {
}