Combined Code
frame 1 {
var my_cm = new ContextMenu();
my_cm.hideBuiltInItems();
this.menu = my_cm;
stop();
}
frame 1 {
_global.higheststage = 0;
_global.mademusic = 0;
}
movieClip 3 {
}
movieClip 8 {
}
movieClip 9 {
}
movieClip 12 {
}
movieClip 14 {
}
movieClip 17 {
}
movieClip 22 {
}
movieClip 26 {
}
movieClip 28 {
}
movieClip 30 {
}
movieClip 31 {
frame 1 {
function myWidth(moveObj, newWidth) {
moveObj.w = moveObj._width;
moveObj.dwidth = newWidth - moveObj.w;
moveObj.t = 0;
NFRAMES = 6;
moveObj.onEnterFrame = function () {
if (moveObj.t++ < NFRAMES) {
moveObj._width = easeOutQuad(moveObj.t, moveObj.w, moveObj.dwidth, NFRAMES);
} else {
delete this.onEnterFrame;
}
};
}
function myMove(moveObj, newX) {
moveObj.x = moveObj._x;
moveObj.dx = newX - moveObj.x;
moveObj.t = 0;
NFRAMES = 6;
moveObj.onEnterFrame = function () {
if (moveObj.t++ < NFRAMES) {
moveObj._x = easeOutQuad(moveObj.t, moveObj.x, moveObj.dx, NFRAMES);
} else {
delete this.onEnterFrame;
}
};
}
percentLoaded = Math.round((_root.getBytesLoaded() / _root.getBytesTotal()) * 100);
this.myWidth(this.loadBar, percentLoaded * 1.94);
this.myMove(this.mc_loadNum, percentLoaded * 1.9 - 8);
mc_loadNum.loadNum.text = percentLoaded;
easeOutQuad = function (time, beginX, changeX, durationX) {
time /= durationX / 2;
if (time < 1) {
return (changeX / 2) * time * time + beginX;
}
return (-changeX / 2) * (--time * (time - 2) - 1) + beginX;
};
}
frame 2 {
if (percentLoaded < 100) {
gotoAndPlay('loading');
}
}
frame 25 {
_root.gotoAndStop(2);
}
}
movieClip 33 {
}
frame 2 {
stop();
_root.highs = _global.higheststage;
if (_global.mademusic == 0) {
_root.createEmptyMovieClip('umichan_bgm', _root.getNextHighestDepth());
var umichan_bgm = new Sound(umichan_bgm);
umichan_bgm.attachSound('umichan_bgm');
_root.createEmptyMovieClip('Clap3', _root.getNextHighestDepth());
var Clap3 = new Sound();
Clap3.attachSound('Clap3');
Clap3.setVolume(40);
var Decision = new Sound();
Decision.attachSound('Decision');
_global.mademusic = 1;
}
umichan_bgm.setVolume(100);
stopAllSounds();
_global.pleasure = 30;
_global.points = 1;
_global.stage = 1;
_global.skill = 1;
_global.difficuilty = 1;
_global.maiko_choice = 'Doggy';
_global.maiko_speed = 'Slow';
_global.selected_choice = 'Doggy';
_global.selected_speed = 'Slow';
_global.maiko_select = 0;
_global.pounder = 9;
_global.game = 0;
_global.bg = 0;
_global.sounds = 1;
_global.gameeasy = 0;
_global.gameangle = 0;
_global.timer = 140;
_root.highstage = _global.higheststage;
_root.pswrd = '';
if (_global.sounds == 1) {
umichan_bgm.start(0, 99);
}
}
movieClip 36 {
}
movieClip 39 {
}
button 40 {
on (release) {
_global.game = 1;
_global.gameeasy = 0;
_global.gamefree = 0;
umichan_bgm.setVolume(20);
_root.gotoAndStop(3);
}
}
button 41 {
on (release) {
_global.game = 1;
_global.gameeasy = 1;
_global.gamefree = 0;
umichan_bgm.setVolume(20);
_root.gotoAndStop(3);
}
}
button 42 {
on (release) {
_global.game = 1;
_global.gameeasy = 0;
_global.gamefree = 1;
umichan_bgm.setVolume(20);
_root.gotoAndStop(3);
}
}
button 43 {
on (release) {
_root.gotoAndStop(5);
}
}
button 44 {
on (release) {
if (_root.pswrd == 'Vortex00IsBackAtIt') {
_global.higheststage = 100;
_root.pswrd = 'correct!';
} else {
_root.pswrd = 'nope!';
}
}
}
button 45 {
on (release) {
_root.gotoAndStop(6);
}
}
movieClip 48 {
}
movieClip 49 {
}
button 50 {
on (release) {
_global.sounds = 1;
stopAllSounds();
umichan_bgm.start();
}
}
button 51 {
on (release) {
_global.sounds = 0;
stopAllSounds();
}
}
frame 3 {
_root.DBox.TBox.gotoAndStop(13);
_root.onEnterFrame = function () {
if (_global.game == 1) {
if (Key.isDown(49) == true) {
_global.selected_choice = 'Doggy';
} else {
if (Key.isDown(50) == true) {
_global.selected_choice = 'Down';
} else {
if (Key.isDown(51) == true) {
_global.selected_choice = 'Stand';
} else {
if (Key.isDown(52) == true) {
_global.selected_choice = 'Spoon';
} else {
if (Key.isDown(100) == true) {
_global.selected_speed = 'Slow';
} else {
if (Key.isDown(101) == true) {
_global.selected_speed = 'Medium';
} else {
if (Key.isDown(102) == true) {
_global.selected_speed = 'Fast';
}
}
}
}
}
}
}
if (_global.pleasure <= 0 && _global.gamefree == 0) {
if (_global.stage >= 20) {
_global.game = 0;
_root.gotoAndStop(4);
} else {
_global.game = 0;
_root.gotoAndStop(2);
}
}
if (_global.pleasure >= 60 && _global.gamefree == 0) {
_root.pleasurestar.gotoAndPlay(2);
_global.pleasure = 30;
_global.points += 1;
++_global.stage;
if (_global.stage % 10 == 0) {
_root.stageclear.gotoAndPlay(2);
}
if (_global.higheststage < _global.stage) {
_global.higheststage = _global.stage;
}
}
_root.pleasure_points = _global.points;
if (_global.gamefree == 1) {
_root.pleasure_points = '';
}
_root.style_select = _global.selected_choice;
_root.stagenum = _global.stage;
if (_global.gamefree == 0) {
if (_global.maiko_speed == 'Slow' && _root.maiko._currentframe < 14) {
_global.pleasure -= _global.stage / 80;
} else {
if (_global.maiko_speed == 'Medium' && _root.maiko._currentframe < 14) {
_global.pleasure -= _global.stage / 60;
} else {
if (_root.maiko._currentframe < 14) {
_global.pleasure -= _global.stage / 40;
}
}
}
}
--_global.timer;
if (_global.timer <= 0) {
_global.maiko_select = random(15);
_global.timer = random(120) + 120;
if (_global.maiko_select == 0) {
_root.DBox.TBox.gotoAndStop(2);
_root.DBox.gotoAndPlay(2);
} else {
if (_global.maiko_select == 1) {
_root.DBox.TBox.gotoAndStop(3);
_root.DBox.gotoAndPlay(2);
} else {
if (_global.maiko_select == 2) {
_root.DBox.TBox.gotoAndStop(4);
_root.DBox.gotoAndPlay(2);
} else {
if (_global.maiko_select == 3) {
_root.DBox.TBox.gotoAndStop(5);
_root.DBox.gotoAndPlay(2);
} else {
if (_global.maiko_select > 3 && _global.maiko_select < 12) {
_root.DBox.TBox.gotoAndStop(6 + random(8));
_root.DBox.gotoAndPlay(2);
} else {
if (_global.maiko_select == 12) {
_root.DBox.TBox.gotoAndStop(15);
_root.DBox.gotoAndPlay(2);
} else {
if (_global.maiko_select == 13) {
_root.DBox.TBox.gotoAndStop(16);
_root.DBox.gotoAndPlay(2);
} else {
if (_global.maiko_select == 14) {
_root.DBox.TBox.gotoAndStop(17);
_root.DBox.gotoAndPlay(2);
}
}
}
}
}
}
}
}
}
}
};
}
movieClip 69 {
frame 13 {
if (_global.selected_choice == 'Doggy' && _global.selected_speed == 'Slow') {
_root.maiko.gotoAndStop(2);
} else {
if (_global.selected_choice == 'Doggy' && _global.selected_speed == 'Medium') {
_root.maiko.gotoAndStop(3);
} else {
if (_global.selected_choice == 'Doggy' && _global.selected_speed == 'Fast') {
_root.maiko.gotoAndStop(4);
} else {
if (_global.selected_choice == 'Down' && _global.selected_speed == 'Slow') {
_root.maiko.gotoAndStop(5);
} else {
if (_global.selected_choice == 'Down' && _global.selected_speed == 'Medium') {
_root.maiko.gotoAndStop(6);
} else {
if (_global.selected_choice == 'Down' && _global.selected_speed == 'Fast') {
_root.maiko.gotoAndStop(7);
} else {
if (_global.selected_choice == 'Stand' && _global.selected_speed == 'Slow') {
_root.maiko.gotoAndStop(8);
} else {
if (_global.selected_choice == 'Stand' && _global.selected_speed == 'Medium') {
_root.maiko.gotoAndStop(9);
} else {
if (_global.selected_choice == 'Stand' && _global.selected_speed == 'Fast') {
_root.maiko.gotoAndStop(10);
} else {
if (_global.selected_choice == 'Spoon' && _global.selected_speed == 'Slow') {
_root.maiko.gotoAndStop(11);
} else {
if (_global.selected_choice == 'Spoon' && _global.selected_speed == 'Medium') {
_root.maiko.gotoAndStop(12);
} else {
if (_global.selected_choice == 'Spoon' && _global.selected_speed == 'Fast') {
_root.maiko.gotoAndStop(13);
}
}
}
}
}
}
}
}
}
}
}
}
}
}
movieClip 71 {
frame 9 {
_root.Clap3.start();
}
frame 13 {
if (_global.maiko_choice == _global.selected_choice && _global.maiko_speed == _global.selected_speed) {
_global.pleasure += _global.skill;
} else {
if (_global.gameeasy == 0) {
_global.pleasure -= _global.difficuilty;
}
}
}
frame 24 {
if (_global.selected_choice == 'Doggy' && _global.selected_speed == 'Slow') {
_root.maiko.gotoAndStop(2);
} else {
if (_global.selected_choice == 'Doggy' && _global.selected_speed == 'Medium') {
_root.maiko.gotoAndStop(3);
} else {
if (_global.selected_choice == 'Doggy' && _global.selected_speed == 'Fast') {
_root.maiko.gotoAndStop(4);
} else {
if (_global.selected_choice == 'Down') {
_root.maiko.gotoAndStop(14);
} else {
if (_global.selected_choice == 'Stand') {
_root.maiko.gotoAndStop(16);
} else {
if (_global.selected_choice == 'Spoon') {
_root.maiko.gotoAndStop(15);
}
}
}
}
}
}
}
}
movieClip 73 {
}
movieClip 75 {
frame 3 {
_root.Clap3.start();
}
frame 7 {
if (_global.maiko_choice == _global.selected_choice && _global.maiko_speed == _global.selected_speed) {
_global.pleasure += _global.skill;
} else {
if (_global.gameeasy == 0) {
_global.pleasure -= _global.difficuilty;
}
}
}
frame 13 {
if (_global.selected_choice == 'Doggy' && _global.selected_speed == 'Slow') {
_root.maiko.gotoAndStop(2);
} else {
if (_global.selected_choice == 'Doggy' && _global.selected_speed == 'Medium') {
_root.maiko.gotoAndStop(3);
} else {
if (_global.selected_choice == 'Doggy' && _global.selected_speed == 'Fast') {
_root.maiko.gotoAndStop(4);
} else {
if (_global.selected_choice == 'Down') {
_root.maiko.gotoAndStop(14);
} else {
if (_global.selected_choice == 'Stand') {
_root.maiko.gotoAndStop(16);
} else {
if (_global.selected_choice == 'Spoon') {
_root.maiko.gotoAndStop(15);
}
}
}
}
}
}
}
}
movieClip 77 {
}
movieClip 79 {
frame 1 {
_root.Clap3.start();
}
frame 4 {
if (_global.maiko_choice == _global.selected_choice && _global.maiko_speed == _global.selected_speed) {
_global.pleasure += _global.skill;
} else {
if (_global.gameeasy == 0) {
_global.pleasure -= _global.difficuilty;
}
}
}
frame 7 {
if (_global.selected_choice == 'Doggy' && _global.selected_speed == 'Slow') {
_root.maiko.gotoAndStop(2);
} else {
if (_global.selected_choice == 'Doggy' && _global.selected_speed == 'Medium') {
_root.maiko.gotoAndStop(3);
} else {
if (_global.selected_choice == 'Doggy' && _global.selected_speed == 'Fast') {
_root.maiko.gotoAndStop(4);
} else {
if (_global.selected_choice == 'Down') {
_root.maiko.gotoAndStop(14);
} else {
if (_global.selected_choice == 'Stand') {
_root.maiko.gotoAndStop(16);
} else {
if (_global.selected_choice == 'Spoon') {
_root.maiko.gotoAndStop(15);
}
}
}
}
}
}
}
}
movieClip 81 {
}
movieClip 83 {
frame 9 {
_root.Clap3.start();
}
frame 13 {
if (_global.maiko_choice == _global.selected_choice && _global.maiko_speed == _global.selected_speed) {
_global.pleasure += _global.skill;
} else {
if (_global.gameeasy == 0) {
_global.pleasure -= _global.difficuilty;
}
}
}
frame 25 {
if (_global.selected_choice != 'Down') {
_root.maiko.gotoAndStop(17);
} else {
if (_global.selected_choice == 'Down' && _global.selected_speed == 'Slow') {
_root.maiko.gotoAndStop(5);
} else {
if (_global.selected_choice == 'Down' && _global.selected_speed == 'Medium') {
_root.maiko.gotoAndStop(6);
} else {
if (_global.selected_choice == 'Down' && _global.selected_speed == 'Fast') {
_root.maiko.gotoAndStop(7);
}
}
}
}
}
}
movieClip 85 {
}
movieClip 87 {
frame 3 {
_root.Clap3.start();
}
frame 7 {
if (_global.maiko_choice == _global.selected_choice && _global.maiko_speed == _global.selected_speed) {
_global.pleasure += _global.skill;
} else {
if (_global.gameeasy == 0) {
_global.pleasure -= _global.difficuilty;
}
}
}
frame 13 {
if (_global.selected_choice != 'Down') {
_root.maiko.gotoAndStop(17);
} else {
if (_global.selected_choice == 'Down' && _global.selected_speed == 'Slow') {
_root.maiko.gotoAndStop(5);
} else {
if (_global.selected_choice == 'Down' && _global.selected_speed == 'Medium') {
_root.maiko.gotoAndStop(6);
} else {
if (_global.selected_choice == 'Down' && _global.selected_speed == 'Fast') {
_root.maiko.gotoAndStop(7);
}
}
}
}
}
}
movieClip 89 {
}
movieClip 91 {
frame 1 {
_root.Clap3.start();
}
frame 4 {
if (_global.maiko_choice == _global.selected_choice && _global.maiko_speed == _global.selected_speed) {
_global.pleasure += _global.skill;
} else {
if (_global.gameeasy == 0) {
_global.pleasure -= _global.difficuilty;
}
}
}
frame 7 {
if (_global.selected_choice != 'Down') {
_root.maiko.gotoAndStop(17);
} else {
if (_global.selected_choice == 'Down' && _global.selected_speed == 'Slow') {
_root.maiko.gotoAndStop(5);
} else {
if (_global.selected_choice == 'Down' && _global.selected_speed == 'Medium') {
_root.maiko.gotoAndStop(6);
} else {
if (_global.selected_choice == 'Down' && _global.selected_speed == 'Fast') {
_root.maiko.gotoAndStop(7);
}
}
}
}
}
}
movieClip 93 {
}
movieClip 95 {
frame 9 {
_root.Clap3.start();
}
frame 13 {
if (_global.maiko_choice == _global.selected_choice && _global.maiko_speed == _global.selected_speed) {
_global.pleasure += _global.skill;
} else {
if (_global.gameeasy == 0) {
_global.pleasure -= _global.difficuilty;
}
}
}
frame 25 {
if (_global.selected_choice != 'Stand') {
_root.maiko.gotoAndStop(19);
} else {
if (_global.selected_choice == 'Stand' && _global.selected_speed == 'Slow') {
_root.maiko.gotoAndStop(8);
} else {
if (_global.selected_choice == 'Stand' && _global.selected_speed == 'Medium') {
_root.maiko.gotoAndStop(9);
} else {
if (_global.selected_choice == 'Stand' && _global.selected_speed == 'Fast') {
_root.maiko.gotoAndStop(10);
}
}
}
}
}
}
movieClip 97 {
}
movieClip 99 {
frame 3 {
_root.Clap3.start();
}
frame 7 {
if (_global.maiko_choice == _global.selected_choice && _global.maiko_speed == _global.selected_speed) {
_global.pleasure += _global.skill;
} else {
if (_global.gameeasy == 0) {
_global.pleasure -= _global.difficuilty;
}
}
}
frame 13 {
if (_global.selected_choice != 'Stand') {
_root.maiko.gotoAndStop(19);
} else {
if (_global.selected_choice == 'Stand' && _global.selected_speed == 'Slow') {
_root.maiko.gotoAndStop(8);
} else {
if (_global.selected_choice == 'Stand' && _global.selected_speed == 'Medium') {
_root.maiko.gotoAndStop(9);
} else {
if (_global.selected_choice == 'Stand' && _global.selected_speed == 'Fast') {
_root.maiko.gotoAndStop(10);
}
}
}
}
}
}
movieClip 101 {
}
movieClip 103 {
frame 1 {
_root.Clap3.start();
}
frame 4 {
if (_global.maiko_choice == _global.selected_choice && _global.maiko_speed == _global.selected_speed) {
_global.pleasure += _global.skill;
} else {
if (_global.gameeasy == 0) {
_global.pleasure -= _global.difficuilty;
}
}
}
frame 7 {
if (_global.selected_choice != 'Stand') {
_root.maiko.gotoAndStop(19);
} else {
if (_global.selected_choice == 'Stand' && _global.selected_speed == 'Slow') {
_root.maiko.gotoAndStop(8);
} else {
if (_global.selected_choice == 'Stand' && _global.selected_speed == 'Medium') {
_root.maiko.gotoAndStop(9);
} else {
if (_global.selected_choice == 'Stand' && _global.selected_speed == 'Fast') {
_root.maiko.gotoAndStop(10);
}
}
}
}
}
}
movieClip 105 {
}
movieClip 107 {
frame 8 {
_root.Clap3.start();
}
frame 13 {
if (_global.maiko_choice == _global.selected_choice && _global.maiko_speed == _global.selected_speed) {
_global.pleasure += _global.skill;
} else {
if (_global.gameeasy == 0) {
_global.pleasure -= _global.difficuilty;
}
}
}
frame 25 {
if (_global.selected_choice != 'Spoon') {
_root.maiko.gotoAndStop(18);
} else {
if (_global.selected_choice == 'Spoon' && _global.selected_speed == 'Slow') {
_root.maiko.gotoAndStop(11);
} else {
if (_global.selected_choice == 'Spoon' && _global.selected_speed == 'Medium') {
_root.maiko.gotoAndStop(12);
} else {
if (_global.selected_choice == 'Spoon' && _global.selected_speed == 'Fast') {
_root.maiko.gotoAndStop(13);
}
}
}
}
}
}
movieClip 109 {
}
movieClip 111 {
frame 3 {
_root.Clap3.start();
}
frame 7 {
if (_global.maiko_choice == _global.selected_choice && _global.maiko_speed == _global.selected_speed) {
_global.pleasure += _global.skill;
} else {
if (_global.gameeasy == 0) {
_global.pleasure -= _global.difficuilty;
}
}
}
frame 13 {
if (_global.selected_choice != 'Spoon') {
_root.maiko.gotoAndStop(18);
} else {
if (_global.selected_choice == 'Spoon' && _global.selected_speed == 'Slow') {
_root.maiko.gotoAndStop(11);
} else {
if (_global.selected_choice == 'Spoon' && _global.selected_speed == 'Medium') {
_root.maiko.gotoAndStop(12);
} else {
if (_global.selected_choice == 'Spoon' && _global.selected_speed == 'Fast') {
_root.maiko.gotoAndStop(13);
}
}
}
}
}
}
movieClip 113 {
}
movieClip 115 {
frame 1 {
_root.Clap3.start();
}
frame 4 {
if (_global.maiko_choice == _global.selected_choice && _global.maiko_speed == _global.selected_speed) {
_global.pleasure += _global.skill;
} else {
if (_global.gameeasy == 0) {
_global.pleasure -= _global.difficuilty;
}
}
}
frame 7 {
if (_global.selected_choice != 'Spoon') {
_root.maiko.gotoAndStop(18);
} else {
if (_global.selected_choice == 'Spoon' && _global.selected_speed == 'Slow') {
_root.maiko.gotoAndStop(11);
} else {
if (_global.selected_choice == 'Spoon' && _global.selected_speed == 'Medium') {
_root.maiko.gotoAndStop(12);
} else {
if (_global.selected_choice == 'Spoon' && _global.selected_speed == 'Fast') {
_root.maiko.gotoAndStop(13);
}
}
}
}
}
}
movieClip 117 {
}
movieClip 119 {
frame 13 {
if (_global.selected_choice != 'Down') {
_root.maiko.gotoAndStop(17);
} else {
if (_global.selected_choice == 'Down' && _global.selected_speed == 'Slow') {
_root.maiko.gotoAndStop(5);
} else {
if (_global.selected_choice == 'Down' && _global.selected_speed == 'Medium') {
_root.maiko.gotoAndStop(6);
} else {
if (_global.selected_choice == 'Down' && _global.selected_speed == 'Fast') {
_root.maiko.gotoAndStop(7);
}
}
}
}
}
}
movieClip 121 {
}
movieClip 123 {
frame 13 {
if (_global.selected_choice != 'Spoon') {
_root.maiko.gotoAndStop(18);
} else {
if (_global.selected_choice == 'Spoon' && _global.selected_speed == 'Slow') {
_root.maiko.gotoAndStop(11);
} else {
if (_global.selected_choice == 'Spoon' && _global.selected_speed == 'Medium') {
_root.maiko.gotoAndStop(12);
} else {
if (_global.selected_choice == 'Spoon' && _global.selected_speed == 'Fast') {
_root.maiko.gotoAndStop(13);
}
}
}
}
}
}
movieClip 125 {
}
movieClip 127 {
frame 13 {
if (_global.selected_choice != 'Stand') {
_root.maiko.gotoAndStop(19);
} else {
if (_global.selected_choice == 'Stand' && _global.selected_speed == 'Slow') {
_root.maiko.gotoAndStop(8);
} else {
if (_global.selected_choice == 'Stand' && _global.selected_speed == 'Medium') {
_root.maiko.gotoAndStop(9);
} else {
if (_global.selected_choice == 'Stand' && _global.selected_speed == 'Fast') {
_root.maiko.gotoAndStop(10);
}
}
}
}
}
}
movieClip 129 {
}
movieClip 131 {
frame 13 {
if (_global.selected_choice == 'Doggy' && _global.selected_speed == 'Slow') {
_root.maiko.gotoAndStop(2);
} else {
if (_global.selected_choice == 'Doggy' && _global.selected_speed == 'Medium') {
_root.maiko.gotoAndStop(3);
} else {
if (_global.selected_choice == 'Doggy' && _global.selected_speed == 'Fast') {
_root.maiko.gotoAndStop(4);
} else {
if (_global.selected_choice == 'Down') {
_root.maiko.gotoAndStop(14);
} else {
if (_global.selected_choice == 'Stand') {
_root.maiko.gotoAndStop(16);
} else {
if (_global.selected_choice == 'Spoon') {
_root.maiko.gotoAndStop(15);
}
}
}
}
}
}
}
}
movieClip 133 {
}
movieClip 135 {
frame 13 {
if (_global.selected_choice == 'Doggy' && _global.selected_speed == 'Slow') {
_root.maiko.gotoAndStop(2);
} else {
if (_global.selected_choice == 'Doggy' && _global.selected_speed == 'Medium') {
_root.maiko.gotoAndStop(3);
} else {
if (_global.selected_choice == 'Doggy' && _global.selected_speed == 'Fast') {
_root.maiko.gotoAndStop(4);
} else {
if (_global.selected_choice == 'Down') {
_root.maiko.gotoAndStop(14);
} else {
if (_global.selected_choice == 'Stand') {
_root.maiko.gotoAndStop(16);
} else {
if (_global.selected_choice == 'Spoon') {
_root.maiko.gotoAndStop(15);
}
}
}
}
}
}
}
}
movieClip 137 {
}
movieClip 139 {
frame 13 {
if (_global.selected_choice == 'Doggy' && _global.selected_speed == 'Slow') {
_root.maiko.gotoAndStop(2);
} else {
if (_global.selected_choice == 'Doggy' && _global.selected_speed == 'Medium') {
_root.maiko.gotoAndStop(3);
} else {
if (_global.selected_choice == 'Doggy' && _global.selected_speed == 'Fast') {
_root.maiko.gotoAndStop(4);
} else {
if (_global.selected_choice == 'Down') {
_root.maiko.gotoAndStop(14);
} else {
if (_global.selected_choice == 'Stand') {
_root.maiko.gotoAndStop(16);
} else {
if (_global.selected_choice == 'Spoon') {
_root.maiko.gotoAndStop(15);
}
}
}
}
}
}
}
}
movieClip 141 {
}
movieClip 154 {
frame 1 {
stop();
}
frame 2 {
play();
}
frame 20 {
gotoAndStop(1);
}
}
button 166 {
on (release) {
_root.gotoAndStop(2);
}
}
movieClip 168 {
frame 13 {
if (_global.pounder > 0) {
--_global.pounder;
gotoAndPlay(1);
}
}
frame 23 {
this.Spray.gotoAndPlay(2);
}
frame 61 {
stop();
}
}
movieClip 170 {
frame 13 {
stop();
}
}
movieClip 171 {
frame 1 {
stop();
}
frame 2 {
stop();
}
instance of movieClip 73 {
onClipEvent (load) {
if (_global.gameangle == 0) {
this._visible = false;
} else {
this._visible = true;
}
}
onClipEvent (enterFrame) {
if (_global.gameangle == 0) {
this._visible = false;
} else {
this._visible = true;
}
}
}
frame 3 {
stop();
}
instance of movieClip 77 {
onClipEvent (load) {
if (_global.gameangle == 0) {
this._visible = false;
} else {
this._visible = true;
}
}
onClipEvent (enterFrame) {
if (_global.gameangle == 0) {
this._visible = false;
} else {
this._visible = true;
}
}
}
frame 4 {
stop();
}
instance of movieClip 81 {
onClipEvent (load) {
if (_global.gameangle == 0) {
this._visible = false;
} else {
this._visible = true;
}
}
onClipEvent (enterFrame) {
if (_global.gameangle == 0) {
this._visible = false;
} else {
this._visible = true;
}
}
}
frame 5 {
stop();
}
instance of movieClip 85 {
onClipEvent (load) {
if (_global.gameangle == 0) {
this._visible = false;
} else {
this._visible = true;
}
}
onClipEvent (enterFrame) {
if (_global.gameangle == 0) {
this._visible = false;
} else {
this._visible = true;
}
}
}
frame 6 {
stop();
}
instance of movieClip 89 {
onClipEvent (load) {
if (_global.gameangle == 0) {
this._visible = false;
} else {
this._visible = true;
}
}
onClipEvent (enterFrame) {
if (_global.gameangle == 0) {
this._visible = false;
} else {
this._visible = true;
}
}
}
frame 7 {
stop();
}
instance of movieClip 93 {
onClipEvent (load) {
if (_global.gameangle == 0) {
this._visible = false;
} else {
this._visible = true;
}
}
onClipEvent (enterFrame) {
if (_global.gameangle == 0) {
this._visible = false;
} else {
this._visible = true;
}
}
}
frame 8 {
stop();
}
instance of movieClip 97 {
onClipEvent (load) {
if (_global.gameangle == 0) {
this._visible = false;
} else {
this._visible = true;
}
}
onClipEvent (enterFrame) {
if (_global.gameangle == 0) {
this._visible = false;
} else {
this._visible = true;
}
}
}
frame 9 {
stop();
}
instance of movieClip 101 {
onClipEvent (load) {
if (_global.gameangle == 0) {
this._visible = false;
} else {
this._visible = true;
}
}
onClipEvent (enterFrame) {
if (_global.gameangle == 0) {
this._visible = false;
} else {
this._visible = true;
}
}
}
frame 10 {
stop();
}
instance of movieClip 105 {
onClipEvent (load) {
if (_global.gameangle == 0) {
this._visible = false;
} else {
this._visible = true;
}
}
onClipEvent (enterFrame) {
if (_global.gameangle == 0) {
this._visible = false;
} else {
this._visible = true;
}
}
}
frame 11 {
stop();
}
instance of movieClip 109 {
onClipEvent (load) {
if (_global.gameangle == 0) {
this._visible = false;
} else {
this._visible = true;
}
}
onClipEvent (enterFrame) {
if (_global.gameangle == 0) {
this._visible = false;
} else {
this._visible = true;
}
}
}
frame 12 {
stop();
}
instance of movieClip 113 {
onClipEvent (load) {
if (_global.gameangle == 0) {
this._visible = false;
} else {
this._visible = true;
}
}
onClipEvent (enterFrame) {
if (_global.gameangle == 0) {
this._visible = false;
} else {
this._visible = true;
}
}
}
frame 13 {
stop();
}
instance of movieClip 117 {
onClipEvent (load) {
if (_global.gameangle == 0) {
this._visible = false;
} else {
this._visible = true;
}
}
onClipEvent (enterFrame) {
if (_global.gameangle == 0) {
this._visible = false;
} else {
this._visible = true;
}
}
}
frame 14 {
stop();
}
instance of movieClip 121 {
onClipEvent (load) {
if (_global.gameangle == 0) {
this._visible = false;
} else {
this._visible = true;
}
}
onClipEvent (enterFrame) {
if (_global.gameangle == 0) {
this._visible = false;
} else {
this._visible = true;
}
}
}
frame 15 {
stop();
}
instance of movieClip 125 {
onClipEvent (load) {
if (_global.gameangle == 0) {
this._visible = false;
} else {
this._visible = true;
}
}
onClipEvent (enterFrame) {
if (_global.gameangle == 0) {
this._visible = false;
} else {
this._visible = true;
}
}
}
frame 16 {
stop();
}
instance of movieClip 129 {
onClipEvent (load) {
if (_global.gameangle == 0) {
this._visible = false;
} else {
this._visible = true;
}
}
onClipEvent (enterFrame) {
if (_global.gameangle == 0) {
this._visible = false;
} else {
this._visible = true;
}
}
}
frame 17 {
stop();
}
instance of movieClip 133 {
onClipEvent (load) {
if (_global.gameangle == 0) {
this._visible = false;
} else {
this._visible = true;
}
}
onClipEvent (enterFrame) {
if (_global.gameangle == 0) {
this._visible = false;
} else {
this._visible = true;
}
}
}
frame 18 {
stop();
}
instance of movieClip 137 {
onClipEvent (load) {
if (_global.gameangle == 0) {
this._visible = false;
} else {
this._visible = true;
}
}
onClipEvent (enterFrame) {
if (_global.gameangle == 0) {
this._visible = false;
} else {
this._visible = true;
}
}
}
frame 19 {
stop();
}
instance of movieClip 141 {
onClipEvent (load) {
if (_global.gameangle == 0) {
this._visible = false;
} else {
this._visible = true;
}
}
onClipEvent (enterFrame) {
if (_global.gameangle == 0) {
this._visible = false;
} else {
this._visible = true;
}
}
}
frame 20 {
stop();
}
frame 21 {
stop();
}
}
movieClip 174 {
}
movieClip 209 {
frame 1 {
stop();
_global.maiko_choice = 'Doggy';
}
frame 2 {
stop();
_global.maiko_choice = 'Doggy';
_root.maiko_sfx_doggy_converted.start();
}
frame 3 {
stop();
_global.maiko_choice = 'Down';
_root.maiko_sfx_down_converted.start();
}
frame 4 {
stop();
_global.maiko_choice = 'Stand';
_root.maiko_sfx_standing_converted.start();
}
frame 5 {
stop();
_global.maiko_choice = 'Spoon';
_root.maiko_sfx_spoon_converted.start();
}
frame 6 {
stop();
}
frame 7 {
stop();
}
frame 8 {
stop();
}
frame 9 {
stop();
}
frame 10 {
stop();
}
frame 11 {
stop();
}
frame 12 {
stop();
}
frame 13 {
stop();
}
frame 14 {
stop();
}
frame 15 {
stop();
_global.maiko_speed = 'Fast';
}
frame 16 {
stop();
_global.maiko_speed = 'Medium';
}
frame 17 {
stop();
_global.maiko_speed = 'Slow';
}
frame 18 {
stop();
}
}
movieClip 210 {
frame 1 {
stop();
}
frame 129 {
stop();
}
}
movieClip 213 {
}
movieClip 216 {
}
instance pleasuregauge of movieClip 216 {
onClipEvent (load) {
var rotated = 30;
if (_global.gamefree == 1) {
this._visible = false;
} else {
this._visible = true;
}
}
onClipEvent (enterFrame) {
if (_global.pleasure * 2 > 0 && _global.pleasure * 2 < 130) {
this.circcover._rotation = rotated + _global.pleasure * 2;
} else {
if (_global.pleasure * 2 + 30 <= 0) {
this.circcover._rotation = 30;
} else {
if (_global.pleasure * 2 + 30 >= 130) {
this.circcover._rotation = 160;
}
}
}
}
}
movieClip 218 {
}
movieClip 221 {
}
movieClip 222 {
frame 1 {
stop();
}
frame 20 {
gotoAndStop(1);
}
}
instance pleasurestar of movieClip 222 {
onClipEvent (load) {
if (_global.gamefree == 1) {
this._visible = false;
} else {
this._visible = true;
}
}
}
button 223 {
on (release) {
_global.selected_speed = 'Slow';
}
}
button 224 {
on (release) {
_global.selected_speed = 'Medium';
}
}
button 225 {
on (release) {
_global.selected_speed = 'Fast';
}
}
button 226 {
on (release) {
if (_global.points >= 1) {
_global.skill += 0.5;
_root.pleasurestar.gotoAndPlay(2);
--_global.points;
}
}
}
button 227 {
on (release) {
if (_global.points >= 1) {
_global.maiko_speed = 'Fast';
_global.selected_speed = 'Fast';
_root.pleasurestar.gotoAndPlay(2);
--_global.points;
}
}
}
button 228 {
on (release) {
_global.selected_choice = 'Doggy';
}
}
button 229 {
on (release) {
_global.selected_choice = 'Down';
}
}
button 230 {
on (release) {
_global.selected_choice = 'Stand';
}
}
button 231 {
on (release) {
_global.selected_choice = 'Spoon';
}
}
button 232 {
on (release) {
if (_global.gameangle == 0) {
_global.gameangle = 1;
} else {
_global.gameangle = 0;
}
}
}
movieClip 251 {
}
movieClip 252 {
frame 1 {
stop();
}
frame 5 {
_root.Decision.start();
}
frame 42 {
gotoAndStop(1);
}
}
frame 4 {
stop();
_root.DBox.TBox.gotoAndStop(18);
_root.DBox.gotoAndPlay(2);
}
movieClip 253 {
frame 1 {
stop();
}
}
movieClip 256 {
}
movieClip 257 {
}
movieClip 262 {
}
movieClip 265 {
}
movieClip 266 {
}
movieClip 268 {
}
movieClip 270 {
}
movieClip 272 {
}
movieClip 274 {
}
movieClip 276 {
}
movieClip 278 {
}
movieClip 280 {
}
movieClip 282 {
}
movieClip 284 {
}
movieClip 285 {
frame 1 {
stop();
if (_global.higheststage >= 10) {
nextFrame();
}
}
frame 2 {
stop();
}
instance of movieClip 262 {
onClipEvent (load) {
if (_root.gallery._currentframe == 2 && _global.higheststage >= 10) {
this._visible = true;
} else {
if (_root.gallery._currentframe == 3 && _global.higheststage >= 20) {
this._visible = true;
} else {
if (_root.gallery._currentframe == 4 && _global.higheststage >= 30) {
this._visible = true;
} else {
if (_root.gallery._currentframe == 5 && _global.higheststage >= 40) {
this._visible = true;
} else {
if (_root.gallery._currentframe == 6 && _global.higheststage >= 50) {
this._visible = true;
} else {
if (_root.gallery._currentframe == 7 && _global.higheststage >= 60) {
this._visible = true;
} else {
if (_root.gallery._currentframe == 8 && _global.higheststage >= 70) {
this._visible = true;
} else {
if (_root.gallery._currentframe == 9 && _global.higheststage >= 80) {
this._visible = true;
} else {
if (_root.gallery._currentframe == 10 && _global.higheststage >= 90) {
this._visible = true;
} else {
if (_root.gallery._currentframe == 11 && _global.higheststage >= 100) {
this._visible = true;
} else {
this._visible = false;
this.stop();
}
}
}
}
}
}
}
}
}
}
}
}
instance of movieClip 262 {
onClipEvent (load) {
this.stop();
if (_root.gallery._currentframe == 2 && _global.higheststage >= 10) {
this._visible = false;
} else {
if (_root.gallery._currentframe == 3 && _global.higheststage >= 20) {
this._visible = false;
} else {
if (_root.gallery._currentframe == 4 && _global.higheststage >= 30) {
this._visible = false;
} else {
if (_root.gallery._currentframe == 5 && _global.higheststage >= 40) {
this._visible = false;
} else {
if (_root.gallery._currentframe == 6 && _global.higheststage >= 50) {
this._visible = false;
} else {
if (_root.gallery._currentframe == 7 && _global.higheststage >= 60) {
this._visible = false;
} else {
if (_root.gallery._currentframe == 8 && _global.higheststage >= 70) {
this._visible = false;
} else {
if (_root.gallery._currentframe == 9 && _global.higheststage >= 80) {
this._visible = false;
} else {
if (_root.gallery._currentframe == 10 && _global.higheststage >= 90) {
this._visible = false;
} else {
if (_root.gallery._currentframe == 11 && _global.higheststage >= 100) {
this._visible = false;
} else {
this._visible = true;
this.stop();
}
}
}
}
}
}
}
}
}
}
}
}
instance of movieClip 266 {
onClipEvent (load) {
this.stop();
if (_root.gallery._currentframe == 2 && _global.higheststage >= 10) {
this._visible = false;
} else {
if (_root.gallery._currentframe == 3 && _global.higheststage >= 20) {
this._visible = false;
} else {
if (_root.gallery._currentframe == 4 && _global.higheststage >= 30) {
this._visible = false;
} else {
if (_root.gallery._currentframe == 5 && _global.higheststage >= 40) {
this._visible = false;
} else {
if (_root.gallery._currentframe == 6 && _global.higheststage >= 50) {
this._visible = false;
} else {
if (_root.gallery._currentframe == 7 && _global.higheststage >= 60) {
this._visible = false;
} else {
if (_root.gallery._currentframe == 8 && _global.higheststage >= 70) {
this._visible = false;
} else {
if (_root.gallery._currentframe == 9 && _global.higheststage >= 80) {
this._visible = false;
} else {
if (_root.gallery._currentframe == 10 && _global.higheststage >= 90) {
this._visible = false;
} else {
if (_root.gallery._currentframe == 11 && _global.higheststage >= 100) {
this._visible = false;
} else {
this._visible = true;
this.stop();
}
}
}
}
}
}
}
}
}
}
}
onClipEvent (enterFrame) {
this.stop();
if (_root.gallery._currentframe == 2 && _global.higheststage >= 10) {
this._visible = false;
} else {
if (_root.gallery._currentframe == 3 && _global.higheststage >= 20) {
this._visible = false;
} else {
if (_root.gallery._currentframe == 4 && _global.higheststage >= 30) {
this._visible = false;
} else {
if (_root.gallery._currentframe == 5 && _global.higheststage >= 40) {
this._visible = false;
} else {
if (_root.gallery._currentframe == 6 && _global.higheststage >= 50) {
this._visible = false;
} else {
if (_root.gallery._currentframe == 7 && _global.higheststage >= 60) {
this._visible = false;
} else {
if (_root.gallery._currentframe == 8 && _global.higheststage >= 70) {
this._visible = false;
} else {
if (_root.gallery._currentframe == 9 && _global.higheststage >= 80) {
this._visible = false;
} else {
if (_root.gallery._currentframe == 10 && _global.higheststage >= 90) {
this._visible = false;
} else {
if (_root.gallery._currentframe == 11 && _global.higheststage >= 100) {
this._visible = false;
} else {
this._visible = true;
this.stop();
}
}
}
}
}
}
}
}
}
}
}
}
instance of movieClip 268 {
onClipEvent (load) {
if (_root.gallery._currentframe == 2 && _global.higheststage >= 10) {
this._visible = true;
} else {
if (_root.gallery._currentframe == 3 && _global.higheststage >= 20) {
this._visible = true;
} else {
if (_root.gallery._currentframe == 4 && _global.higheststage >= 30) {
this._visible = true;
} else {
if (_root.gallery._currentframe == 5 && _global.higheststage >= 40) {
this._visible = true;
} else {
if (_root.gallery._currentframe == 6 && _global.higheststage >= 50) {
this._visible = true;
} else {
if (_root.gallery._currentframe == 7 && _global.higheststage >= 60) {
this._visible = true;
} else {
if (_root.gallery._currentframe == 8 && _global.higheststage >= 70) {
this._visible = true;
} else {
if (_root.gallery._currentframe == 9 && _global.higheststage >= 80) {
this._visible = true;
} else {
if (_root.gallery._currentframe == 10 && _global.higheststage >= 90) {
this._visible = true;
} else {
if (_root.gallery._currentframe == 11 && _global.higheststage >= 100) {
this._visible = true;
} else {
this._visible = false;
this.stop();
}
}
}
}
}
}
}
}
}
}
}
}
instance of movieClip 268 {
onClipEvent (load) {
this.stop();
if (_root.gallery._currentframe == 2 && _global.higheststage >= 10) {
this._visible = false;
} else {
if (_root.gallery._currentframe == 3 && _global.higheststage >= 20) {
this._visible = false;
} else {
if (_root.gallery._currentframe == 4 && _global.higheststage >= 30) {
this._visible = false;
} else {
if (_root.gallery._currentframe == 5 && _global.higheststage >= 40) {
this._visible = false;
} else {
if (_root.gallery._currentframe == 6 && _global.higheststage >= 50) {
this._visible = false;
} else {
if (_root.gallery._currentframe == 7 && _global.higheststage >= 60) {
this._visible = false;
} else {
if (_root.gallery._currentframe == 8 && _global.higheststage >= 70) {
this._visible = false;
} else {
if (_root.gallery._currentframe == 9 && _global.higheststage >= 80) {
this._visible = false;
} else {
if (_root.gallery._currentframe == 10 && _global.higheststage >= 90) {
this._visible = false;
} else {
if (_root.gallery._currentframe == 11 && _global.higheststage >= 100) {
this._visible = false;
} else {
this._visible = true;
this.stop();
}
}
}
}
}
}
}
}
}
}
}
}
instance of movieClip 270 {
onClipEvent (load) {
if (_root.gallery._currentframe == 2 && _global.higheststage >= 10) {
this._visible = true;
} else {
if (_root.gallery._currentframe == 3 && _global.higheststage >= 20) {
this._visible = true;
} else {
if (_root.gallery._currentframe == 4 && _global.higheststage >= 30) {
this._visible = true;
} else {
if (_root.gallery._currentframe == 5 && _global.higheststage >= 40) {
this._visible = true;
} else {
if (_root.gallery._currentframe == 6 && _global.higheststage >= 50) {
this._visible = true;
} else {
if (_root.gallery._currentframe == 7 && _global.higheststage >= 60) {
this._visible = true;
} else {
if (_root.gallery._currentframe == 8 && _global.higheststage >= 70) {
this._visible = true;
} else {
if (_root.gallery._currentframe == 9 && _global.higheststage >= 80) {
this._visible = true;
} else {
if (_root.gallery._currentframe == 10 && _global.higheststage >= 90) {
this._visible = true;
} else {
if (_root.gallery._currentframe == 11 && _global.higheststage >= 100) {
this._visible = true;
} else {
this._visible = false;
this.stop();
}
}
}
}
}
}
}
}
}
}
}
}
instance of movieClip 270 {
onClipEvent (load) {
this.stop();
if (_root.gallery._currentframe == 2 && _global.higheststage >= 10) {
this._visible = false;
} else {
if (_root.gallery._currentframe == 3 && _global.higheststage >= 20) {
this._visible = false;
} else {
if (_root.gallery._currentframe == 4 && _global.higheststage >= 30) {
this._visible = false;
} else {
if (_root.gallery._currentframe == 5 && _global.higheststage >= 40) {
this._visible = false;
} else {
if (_root.gallery._currentframe == 6 && _global.higheststage >= 50) {
this._visible = false;
} else {
if (_root.gallery._currentframe == 7 && _global.higheststage >= 60) {
this._visible = false;
} else {
if (_root.gallery._currentframe == 8 && _global.higheststage >= 70) {
this._visible = false;
} else {
if (_root.gallery._currentframe == 9 && _global.higheststage >= 80) {
this._visible = false;
} else {
if (_root.gallery._currentframe == 10 && _global.higheststage >= 90) {
this._visible = false;
} else {
if (_root.gallery._currentframe == 11 && _global.higheststage >= 100) {
this._visible = false;
} else {
this._visible = true;
this.stop();
}
}
}
}
}
}
}
}
}
}
}
}
instance of movieClip 272 {
onClipEvent (load) {
if (_root.gallery._currentframe == 2 && _global.higheststage >= 10) {
this._visible = true;
} else {
if (_root.gallery._currentframe == 3 && _global.higheststage >= 20) {
this._visible = true;
} else {
if (_root.gallery._currentframe == 4 && _global.higheststage >= 30) {
this._visible = true;
} else {
if (_root.gallery._currentframe == 5 && _global.higheststage >= 40) {
this._visible = true;
} else {
if (_root.gallery._currentframe == 6 && _global.higheststage >= 50) {
this._visible = true;
} else {
if (_root.gallery._currentframe == 7 && _global.higheststage >= 60) {
this._visible = true;
} else {
if (_root.gallery._currentframe == 8 && _global.higheststage >= 70) {
this._visible = true;
} else {
if (_root.gallery._currentframe == 9 && _global.higheststage >= 80) {
this._visible = true;
} else {
if (_root.gallery._currentframe == 10 && _global.higheststage >= 90) {
this._visible = true;
} else {
if (_root.gallery._currentframe == 11 && _global.higheststage >= 100) {
this._visible = true;
} else {
this._visible = false;
this.stop();
}
}
}
}
}
}
}
}
}
}
}
}
instance of movieClip 272 {
onClipEvent (load) {
this.stop();
if (_root.gallery._currentframe == 2 && _global.higheststage >= 10) {
this._visible = false;
} else {
if (_root.gallery._currentframe == 3 && _global.higheststage >= 20) {
this._visible = false;
} else {
if (_root.gallery._currentframe == 4 && _global.higheststage >= 30) {
this._visible = false;
} else {
if (_root.gallery._currentframe == 5 && _global.higheststage >= 40) {
this._visible = false;
} else {
if (_root.gallery._currentframe == 6 && _global.higheststage >= 50) {
this._visible = false;
} else {
if (_root.gallery._currentframe == 7 && _global.higheststage >= 60) {
this._visible = false;
} else {
if (_root.gallery._currentframe == 8 && _global.higheststage >= 70) {
this._visible = false;
} else {
if (_root.gallery._currentframe == 9 && _global.higheststage >= 80) {
this._visible = false;
} else {
if (_root.gallery._currentframe == 10 && _global.higheststage >= 90) {
this._visible = false;
} else {
if (_root.gallery._currentframe == 11 && _global.higheststage >= 100) {
this._visible = false;
} else {
this._visible = true;
this.stop();
}
}
}
}
}
}
}
}
}
}
}
}
instance of movieClip 274 {
onClipEvent (load) {
if (_root.gallery._currentframe == 2 && _global.higheststage >= 10) {
this._visible = true;
} else {
if (_root.gallery._currentframe == 3 && _global.higheststage >= 20) {
this._visible = true;
} else {
if (_root.gallery._currentframe == 4 && _global.higheststage >= 30) {
this._visible = true;
} else {
if (_root.gallery._currentframe == 5 && _global.higheststage >= 40) {
this._visible = true;
} else {
if (_root.gallery._currentframe == 6 && _global.higheststage >= 50) {
this._visible = true;
} else {
if (_root.gallery._currentframe == 7 && _global.higheststage >= 60) {
this._visible = true;
} else {
if (_root.gallery._currentframe == 8 && _global.higheststage >= 70) {
this._visible = true;
} else {
if (_root.gallery._currentframe == 9 && _global.higheststage >= 80) {
this._visible = true;
} else {
if (_root.gallery._currentframe == 10 && _global.higheststage >= 90) {
this._visible = true;
} else {
if (_root.gallery._currentframe == 11 && _global.higheststage >= 100) {
this._visible = true;
} else {
this._visible = false;
this.stop();
}
}
}
}
}
}
}
}
}
}
}
}
instance of movieClip 274 {
onClipEvent (load) {
this.stop();
if (_root.gallery._currentframe == 2 && _global.higheststage >= 10) {
this._visible = false;
} else {
if (_root.gallery._currentframe == 3 && _global.higheststage >= 20) {
this._visible = false;
} else {
if (_root.gallery._currentframe == 4 && _global.higheststage >= 30) {
this._visible = false;
} else {
if (_root.gallery._currentframe == 5 && _global.higheststage >= 40) {
this._visible = false;
} else {
if (_root.gallery._currentframe == 6 && _global.higheststage >= 50) {
this._visible = false;
} else {
if (_root.gallery._currentframe == 7 && _global.higheststage >= 60) {
this._visible = false;
} else {
if (_root.gallery._currentframe == 8 && _global.higheststage >= 70) {
this._visible = false;
} else {
if (_root.gallery._currentframe == 9 && _global.higheststage >= 80) {
this._visible = false;
} else {
if (_root.gallery._currentframe == 10 && _global.higheststage >= 90) {
this._visible = false;
} else {
if (_root.gallery._currentframe == 11 && _global.higheststage >= 100) {
this._visible = false;
} else {
this._visible = true;
this.stop();
}
}
}
}
}
}
}
}
}
}
}
}
instance of movieClip 276 {
onClipEvent (load) {
if (_root.gallery._currentframe == 2 && _global.higheststage >= 10) {
this._visible = true;
} else {
if (_root.gallery._currentframe == 3 && _global.higheststage >= 20) {
this._visible = true;
} else {
if (_root.gallery._currentframe == 4 && _global.higheststage >= 30) {
this._visible = true;
} else {
if (_root.gallery._currentframe == 5 && _global.higheststage >= 40) {
this._visible = true;
} else {
if (_root.gallery._currentframe == 6 && _global.higheststage >= 50) {
this._visible = true;
} else {
if (_root.gallery._currentframe == 7 && _global.higheststage >= 60) {
this._visible = true;
} else {
if (_root.gallery._currentframe == 8 && _global.higheststage >= 70) {
this._visible = true;
} else {
if (_root.gallery._currentframe == 9 && _global.higheststage >= 80) {
this._visible = true;
} else {
if (_root.gallery._currentframe == 10 && _global.higheststage >= 90) {
this._visible = true;
} else {
if (_root.gallery._currentframe == 11 && _global.higheststage >= 100) {
this._visible = true;
} else {
this._visible = false;
this.stop();
}
}
}
}
}
}
}
}
}
}
}
}
instance of movieClip 276 {
onClipEvent (load) {
this.stop();
if (_root.gallery._currentframe == 2 && _global.higheststage >= 10) {
this._visible = false;
} else {
if (_root.gallery._currentframe == 3 && _global.higheststage >= 20) {
this._visible = false;
} else {
if (_root.gallery._currentframe == 4 && _global.higheststage >= 30) {
this._visible = false;
} else {
if (_root.gallery._currentframe == 5 && _global.higheststage >= 40) {
this._visible = false;
} else {
if (_root.gallery._currentframe == 6 && _global.higheststage >= 50) {
this._visible = false;
} else {
if (_root.gallery._currentframe == 7 && _global.higheststage >= 60) {
this._visible = false;
} else {
if (_root.gallery._currentframe == 8 && _global.higheststage >= 70) {
this._visible = false;
} else {
if (_root.gallery._currentframe == 9 && _global.higheststage >= 80) {
this._visible = false;
} else {
if (_root.gallery._currentframe == 10 && _global.higheststage >= 90) {
this._visible = false;
} else {
if (_root.gallery._currentframe == 11 && _global.higheststage >= 100) {
this._visible = false;
} else {
this._visible = true;
this.stop();
}
}
}
}
}
}
}
}
}
}
}
}
instance of movieClip 278 {
onClipEvent (load) {
if (_root.gallery._currentframe == 2 && _global.higheststage >= 10) {
this._visible = true;
} else {
if (_root.gallery._currentframe == 3 && _global.higheststage >= 20) {
this._visible = true;
} else {
if (_root.gallery._currentframe == 4 && _global.higheststage >= 30) {
this._visible = true;
} else {
if (_root.gallery._currentframe == 5 && _global.higheststage >= 40) {
this._visible = true;
} else {
if (_root.gallery._currentframe == 6 && _global.higheststage >= 50) {
this._visible = true;
} else {
if (_root.gallery._currentframe == 7 && _global.higheststage >= 60) {
this._visible = true;
} else {
if (_root.gallery._currentframe == 8 && _global.higheststage >= 70) {
this._visible = true;
} else {
if (_root.gallery._currentframe == 9 && _global.higheststage >= 80) {
this._visible = true;
} else {
if (_root.gallery._currentframe == 10 && _global.higheststage >= 90) {
this._visible = true;
} else {
if (_root.gallery._currentframe == 11 && _global.higheststage >= 100) {
this._visible = true;
} else {
this._visible = false;
this.stop();
}
}
}
}
}
}
}
}
}
}
}
}
instance of movieClip 278 {
onClipEvent (load) {
this.stop();
if (_root.gallery._currentframe == 2 && _global.higheststage >= 10) {
this._visible = false;
} else {
if (_root.gallery._currentframe == 3 && _global.higheststage >= 20) {
this._visible = false;
} else {
if (_root.gallery._currentframe == 4 && _global.higheststage >= 30) {
this._visible = false;
} else {
if (_root.gallery._currentframe == 5 && _global.higheststage >= 40) {
this._visible = false;
} else {
if (_root.gallery._currentframe == 6 && _global.higheststage >= 50) {
this._visible = false;
} else {
if (_root.gallery._currentframe == 7 && _global.higheststage >= 60) {
this._visible = false;
} else {
if (_root.gallery._currentframe == 8 && _global.higheststage >= 70) {
this._visible = false;
} else {
if (_root.gallery._currentframe == 9 && _global.higheststage >= 80) {
this._visible = false;
} else {
if (_root.gallery._currentframe == 10 && _global.higheststage >= 90) {
this._visible = false;
} else {
if (_root.gallery._currentframe == 11 && _global.higheststage >= 100) {
this._visible = false;
} else {
this._visible = true;
this.stop();
}
}
}
}
}
}
}
}
}
}
}
}
instance of movieClip 280 {
onClipEvent (load) {
if (_root.gallery._currentframe == 2 && _global.higheststage >= 10) {
this._visible = true;
} else {
if (_root.gallery._currentframe == 3 && _global.higheststage >= 20) {
this._visible = true;
} else {
if (_root.gallery._currentframe == 4 && _global.higheststage >= 30) {
this._visible = true;
} else {
if (_root.gallery._currentframe == 5 && _global.higheststage >= 40) {
this._visible = true;
} else {
if (_root.gallery._currentframe == 6 && _global.higheststage >= 50) {
this._visible = true;
} else {
if (_root.gallery._currentframe == 7 && _global.higheststage >= 60) {
this._visible = true;
} else {
if (_root.gallery._currentframe == 8 && _global.higheststage >= 70) {
this._visible = true;
} else {
if (_root.gallery._currentframe == 9 && _global.higheststage >= 80) {
this._visible = true;
} else {
if (_root.gallery._currentframe == 10 && _global.higheststage >= 90) {
this._visible = true;
} else {
if (_root.gallery._currentframe == 11 && _global.higheststage >= 100) {
this._visible = true;
} else {
this._visible = false;
this.stop();
}
}
}
}
}
}
}
}
}
}
}
}
instance of movieClip 280 {
onClipEvent (load) {
this.stop();
if (_root.gallery._currentframe == 2 && _global.higheststage >= 10) {
this._visible = false;
} else {
if (_root.gallery._currentframe == 3 && _global.higheststage >= 20) {
this._visible = false;
} else {
if (_root.gallery._currentframe == 4 && _global.higheststage >= 30) {
this._visible = false;
} else {
if (_root.gallery._currentframe == 5 && _global.higheststage >= 40) {
this._visible = false;
} else {
if (_root.gallery._currentframe == 6 && _global.higheststage >= 50) {
this._visible = false;
} else {
if (_root.gallery._currentframe == 7 && _global.higheststage >= 60) {
this._visible = false;
} else {
if (_root.gallery._currentframe == 8 && _global.higheststage >= 70) {
this._visible = false;
} else {
if (_root.gallery._currentframe == 9 && _global.higheststage >= 80) {
this._visible = false;
} else {
if (_root.gallery._currentframe == 10 && _global.higheststage >= 90) {
this._visible = false;
} else {
if (_root.gallery._currentframe == 11 && _global.higheststage >= 100) {
this._visible = false;
} else {
this._visible = true;
this.stop();
}
}
}
}
}
}
}
}
}
}
}
}
instance of movieClip 282 {
onClipEvent (load) {
if (_root.gallery._currentframe == 2 && _global.higheststage >= 10) {
this._visible = true;
} else {
if (_root.gallery._currentframe == 3 && _global.higheststage >= 20) {
this._visible = true;
} else {
if (_root.gallery._currentframe == 4 && _global.higheststage >= 30) {
this._visible = true;
} else {
if (_root.gallery._currentframe == 5 && _global.higheststage >= 40) {
this._visible = true;
} else {
if (_root.gallery._currentframe == 6 && _global.higheststage >= 50) {
this._visible = true;
} else {
if (_root.gallery._currentframe == 7 && _global.higheststage >= 60) {
this._visible = true;
} else {
if (_root.gallery._currentframe == 8 && _global.higheststage >= 70) {
this._visible = true;
} else {
if (_root.gallery._currentframe == 9 && _global.higheststage >= 80) {
this._visible = true;
} else {
if (_root.gallery._currentframe == 10 && _global.higheststage >= 90) {
this._visible = true;
} else {
if (_root.gallery._currentframe == 11 && _global.higheststage >= 100) {
this._visible = true;
} else {
this._visible = false;
this.stop();
}
}
}
}
}
}
}
}
}
}
}
}
instance of movieClip 282 {
onClipEvent (load) {
this.stop();
if (_root.gallery._currentframe == 2 && _global.higheststage >= 10) {
this._visible = false;
} else {
if (_root.gallery._currentframe == 3 && _global.higheststage >= 20) {
this._visible = false;
} else {
if (_root.gallery._currentframe == 4 && _global.higheststage >= 30) {
this._visible = false;
} else {
if (_root.gallery._currentframe == 5 && _global.higheststage >= 40) {
this._visible = false;
} else {
if (_root.gallery._currentframe == 6 && _global.higheststage >= 50) {
this._visible = false;
} else {
if (_root.gallery._currentframe == 7 && _global.higheststage >= 60) {
this._visible = false;
} else {
if (_root.gallery._currentframe == 8 && _global.higheststage >= 70) {
this._visible = false;
} else {
if (_root.gallery._currentframe == 9 && _global.higheststage >= 80) {
this._visible = false;
} else {
if (_root.gallery._currentframe == 10 && _global.higheststage >= 90) {
this._visible = false;
} else {
if (_root.gallery._currentframe == 11 && _global.higheststage >= 100) {
this._visible = false;
} else {
this._visible = true;
this.stop();
}
}
}
}
}
}
}
}
}
}
}
}
instance of movieClip 284 {
onClipEvent (load) {
if (_root.gallery._currentframe == 2 && _global.higheststage >= 10) {
this._visible = true;
} else {
if (_root.gallery._currentframe == 3 && _global.higheststage >= 20) {
this._visible = true;
} else {
if (_root.gallery._currentframe == 4 && _global.higheststage >= 30) {
this._visible = true;
} else {
if (_root.gallery._currentframe == 5 && _global.higheststage >= 40) {
this._visible = true;
} else {
if (_root.gallery._currentframe == 6 && _global.higheststage >= 50) {
this._visible = true;
} else {
if (_root.gallery._currentframe == 7 && _global.higheststage >= 60) {
this._visible = true;
} else {
if (_root.gallery._currentframe == 8 && _global.higheststage >= 70) {
this._visible = true;
} else {
if (_root.gallery._currentframe == 9 && _global.higheststage >= 80) {
this._visible = true;
} else {
if (_root.gallery._currentframe == 10 && _global.higheststage >= 90) {
this._visible = true;
} else {
if (_root.gallery._currentframe == 11 && _global.higheststage >= 100) {
this._visible = true;
} else {
this._visible = false;
this.stop();
}
}
}
}
}
}
}
}
}
}
}
}
instance of movieClip 284 {
onClipEvent (load) {
this.stop();
if (_root.gallery._currentframe == 2 && _global.higheststage >= 10) {
this._visible = false;
} else {
if (_root.gallery._currentframe == 3 && _global.higheststage >= 20) {
this._visible = false;
} else {
if (_root.gallery._currentframe == 4 && _global.higheststage >= 30) {
this._visible = false;
} else {
if (_root.gallery._currentframe == 5 && _global.higheststage >= 40) {
this._visible = false;
} else {
if (_root.gallery._currentframe == 6 && _global.higheststage >= 50) {
this._visible = false;
} else {
if (_root.gallery._currentframe == 7 && _global.higheststage >= 60) {
this._visible = false;
} else {
if (_root.gallery._currentframe == 8 && _global.higheststage >= 70) {
this._visible = false;
} else {
if (_root.gallery._currentframe == 9 && _global.higheststage >= 80) {
this._visible = false;
} else {
if (_root.gallery._currentframe == 10 && _global.higheststage >= 90) {
this._visible = false;
} else {
if (_root.gallery._currentframe == 11 && _global.higheststage >= 100) {
this._visible = false;
} else {
this._visible = true;
this.stop();
}
}
}
}
}
}
}
}
}
}
}
}
}
button 286 {
on (release) {
if (_global.higheststage >= 10) {
_root.gallery.gotoAndStop(_root.gallery._currentframe - 1);
}
}
}
button 287 {
on (release) {
if (_global.higheststage >= 10) {
_root.gallery.gotoAndStop(_root.gallery._currentframe + 1);
}
}
}