Combined Code
// unknown tag 88 length 81
button 17 {
on (release) {
_root.newDay = true;
_root.gotoScreen('4');
}
}
movieClip 21 {
frame 1 {
stop();
}
frame 2 {
stop();
}
}
movieClip 27 {
}
movieClip 35 {
}
movieClip 54 {
frame 20 {
_parent.gotoAndStop('idle');
}
}
movieClip 55 {
frame 20 {
_parent.gotoAndStop('idle');
}
}
movieClip 56 {
frame 14 {
}
}
movieClip 57 {
frame 1 {
stop();
}
}
button 59 {
on (rollOver) {
a.gotoAndStop('over');
}
on (rollOut) {
a.gotoAndStop('no');
}
on (releaseOutside) {
a.gotoAndStop('no');
}
on (press) {
a.gotoAndStop('down');
}
on (release) {
_root.gotoScreen('1');
_root.level_pause = true;
}
}
movieClip 74 {
frame 1 {
gotoAndStop('no');
}
}
movieClip 82 {
}
movieClip 85 {
frame 200 {
gotoAndPlay('loop');
}
}
movieClip 117 {
frame 231 {
stop();
}
}
// unknown tag 88 length 68
movieClip 125 {
frame 1 {
stop();
}
}
movieClip 126 {
frame 1 {
_visible = false;
}
}
movieClip 127 {
}
movieClip 128 610b3745 {
frame 1 {
_root.done = false;
_root.doneticks = 0;
if (_root.character != _root.characterSaved) {
_root.character = _root.characterSaved;
}
if (_root.costume != _root.costumeSaved) {
_root.costume = _root.costumeSaved;
}
dayNumber.text = _root.dayNumber - 1;
_root.session_cash = Math.floor(_root._score - _root.session_start_score);
_root.cashCurrent = 0;
cashEarned.text = '';
cashEarnedRed.text = '';
_root.session_rep = Math.floor(_root.mapLocalRep - _root.session_start_rep);
if (_root.session_start_rep < 100) {
_root.repDiff = 0;
repEarned.text = '';
} else {
_root.repDiff = 0;
repEarned.text = '-max rep-';
}
reputation.gotoAndStop(Math.floor(_root.session_start_rep + 2));
reputation.orb.gotoAndStop(Math.floor(_root.session_start_rep + 2));
_root.statTimeMinNeeded = Math.floor(_root.StatsSessionPlayTime / 60);
_root.statTimeSecNeeded = Math.floor(_root.StatsSessionPlayTime - _root.statTimeMinNeeded * 60);
_root.statTimeMinCurrent = 0;
statTimeMin.text = '';
_root.statTimeSecCurrent = 0;
statTimeSec.text = '';
_root.statServedCurrent = 0;
statServed.text = '';
_root.statExcellentCurrent = 0;
statExcellent.text = '';
_root.statMissedCurrent = 0;
statMissed.text = '';
}
frame 1 {
function tick() {
if (_root.session_cash > 0) {
if (_root.cashCurrent < _root.session_cash) {
if (_root.cashCurrent + _root.session_cash * 0.05 < _root.session_cash) {
_root.cashCurrent += _root.session_cash * 0.01;
_root.cashCurrent = Math.ceil(_root.cashCurrent);
}
if (_root.cashCurrent < _root.session_cash) {
_root.cashCurrent += 1;
}
cashEarned.text = '+ ' + _root.cashCurrent;
}
} else {
if (_root.session_cash < 0) {
if (_root.cashCurrent > _root.session_cash) {
if (_root.cashCurrent + _root.session_cash * 0.05 > _root.session_cash) {
_root.cashCurrent += _root.session_cash * 0.01;
_root.cashCurrent = Math.ceil(_root.cashCurrent);
}
if (_root.cashCurrent > _root.session_cash) {
_root.cashCurrent -= 1;
}
cashEarnedRed.text = _root.cashCurrent;
}
}
}
if (_root.repDiff < _root.session_rep) {
_root.repDiff += 1;
repEarned.text = '+ ' + _root.repDiff;
reputation.gotoAndStop(Math.floor(_root.repDiff + _root.session_start_rep + 2));
reputation.orb.gotoAndStop(Math.floor(_root.repDiff + _root.session_start_rep + 2));
}
if (_root.statTimeMinCurrent < _root.statTimeMinNeeded) {
_root.statTimeMinCurrent += 0.1;
statTimeMin.text = Math.round(_root.statTimeMinCurrent);
}
if (_root.statTimeSecCurrent < _root.statTimeSecNeeded) {
_root.statTimeSecCurrent += 0.75;
if (_root.statTimeSecCurrent < 10) {
statTimeSec.text = '0' + Math.round(_root.statTimeSecCurrent);
} else {
statTimeSec.text = Math.round(_root.statTimeSecCurrent);
}
}
if (_root.statServedCurrent < _root.StatsSessionServed) {
if (_root.statServedCurrent + _root.StatsSessionServed * 0.5 < _root.StatsSessionServed) {
_root.statServedCurrent += Math.ceil(_root.StatsSessionServed * 0.01);
} else {
_root.statServedCurrent += 0.5;
}
statServed.text = Math.ceil(_root.statServedCurrent);
}
if (_root.statExcellentCurrent < _root.StatsSessionExcellent) {
if (_root.statExcellentCurrent + _root.StatsSessionExcellent * 0.5 < _root.StatsSessionExcellent) {
_root.statExcellentCurrent += Math.ceil(_root.StatsSessionExcellent * 0.01);
} else {
_root.statExcellentCurrent += 0.25;
}
statExcellent.text = Math.ceil(_root.statExcellentCurrent);
}
if (_root.statMissedCurrent < _root.StatsSessionMissed) {
if (_root.statMissedCurrent + _root.StatsSessionMissed * 0.5 < _root.StatsSessionMissed) {
_root.statMissedCurrent += Math.ceil(_root.StatsSessionMissed * 0.01);
} else {
_root.statMissedCurrent += 0.25;
}
statMissed.text = Math.ceil(_root.statMissedCurrent);
}
if (_root.cashCurrent >= _root.session_cash && _root.repDiff >= _root.session_rep && _root.statTimeMinCurrent >= _root.statTimeMinNeeded && _root.statTimeSecCurrent >= _root.statTimeSecNeeded && _root.statServedCurrent >= _root.StatsSessionServed && _root.statExcellentCurrent >= _root.StatsSessionExcellent && _root.statMissedCurrent >= _root.StatsSessionMissed) {
_root.done = true;
} else {
++_root.doneticks;
}
}
}
frame 40 {
if (_root.session_start_rep < 100 && _root.endless != true) {
clock.gotoAndStop(Math.floor(_root.session_timer_mult * 0.32 + 2));
if (_root.session_timer_mult >= 100 && _root.session_timer_mult <= 120) {
clock.icon.gotoAndStop('tick');
} else {
if (_root.session_timer_mult >= 200 && _root.session_timer_mult <= 220) {
clock.icon.gotoAndStop('tick');
} else {
if (_root.session_timer_mult >= 300 && _root.session_timer_mult <= 320) {
clock.icon.gotoAndStop('tick');
} else {
if (_root.session_timer_mult >= 400 && _root.session_timer_mult <= 420) {
clock.icon.gotoAndStop('tick');
} else {
if (_root.session_timer_mult >= 500 && _root.session_timer_mult <= 520) {
clock.icon.gotoAndStop('tickBig');
} else {
if (_root.session_timer_mult >= 600 && _root.session_timer_mult <= 620) {
clock.icon.gotoAndStop('tickBig');
} else {
if (_root.session_timer_mult >= 700) {
clock.icon.gotoAndStop('ring');
} else {
clock.icon.gotoAndStop('idle');
}
}
}
}
}
}
}
} else {
clock.gotoAndStop('endless');
}
}
frame 45 {
if (_root.session_cash > 0) {
cashEarned.text = 0;
} else {
cashEarnedRed.text = 0;
}
repEarned.text = 0;
statTimeMin.text = 0;
statTimeSec.text = 0;
statServed.text = 0;
statExcellent.text = 0;
statMissed.text = 0;
}
instance of movieClip 127 {
onClipEvent (enterFrame) {
_parent.tick();
}
}
frame 62 {
if (_root.done == true or _root.doneticks >= 250) {
gotoAndPlay('end');
} else {
gotoAndPlay('loop');
}
}
frame 75 {
stop();
}
}
movieClip 131 {
}
// unknown tag 88 length 63
movieClip 134 {
}
movieClip 136 {
}
movieClip 137 {
frame 1 {
stop();
switch (_root.level) {
case 1:
_delta = 10;
break;
case 2:
_delta = 10;
break;
case 3:
_delta = 10;
break;
case 4:
_delta = 10;
break;
case 5:
_delta = 10;
break;
case 6:
_delta = 10;
break;
case 7:
_delta = 10;
break;
case 8:
_delta = 10;
break;
case 9:
_delta = 10;
break;
case 10:
_delta = 10;
}
btn.onPress = function () {
btn.onPress = null;
_parent._parent.spark(_parent._x + 60, _parent.sh._y + 30);
_parent._parent.board.timer += _delta * 25;
txt.txt = '+' + _delta + ' sec';
gotoAndPlay(2);
};
}
frame 25 {
_parent.removeMovieClip();
stop();
}
}
movieClip 138 time_bonus {
frame 18 {
stop();
}
}
movieClip 140 {
}
movieClip 154 {
frame 1 {
if (_root.character == 5 or _root.character == 6) {
gotoAndStop(_root.costume + 31);
} else {
gotoAndStop(_root.costume + 1);
}
}
}
movieClip 209 {
frame 1 {
if (_root.character == 5 or _root.character == 6) {
gotoAndStop(_root.character + 31);
} else {
gotoAndStop(_root.character + 1);
}
}
}
movieClip 224 {
frame 1 {
if (_root.character == 5 or _root.character == 6) {
gotoAndStop(_root.costume + 31);
} else {
gotoAndStop(_root.costume + 1);
}
}
}
movieClip 280 {
frame 1 {
if (_root.character == 5 or _root.character == 6) {
gotoAndStop(_root.character + 31);
} else {
gotoAndStop(_root.character + 1);
}
}
}
movieClip 283 {
}
movieClip 285 {
}
movieClip 294 {
frame 1 {
randomFlag = function () {
gotoAndPlay('flag' + (random(2) + 1));
};
}
frame 60 {
randomFlag();
}
frame 120 {
randomFlag();
}
}
movieClip 296 {
}
movieClip 305 {
frame 1 {
gotoAndStop(_root.costume + 1);
}
}
movieClip 312 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 322 {
frame 1 {
gotoAndStop(_root.costume + 1);
}
}
movieClip 350 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 360 {
frame 1 {
gotoAndStop(_root.costume + 1);
}
}
movieClip 368 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 382 {
frame 1 {
if (_root.strippedBot != true) {
gotoAndStop(_root.costume + 1);
} else {
gotoAndStop(_root.costume + 31);
}
}
}
movieClip 390 {
frame 1 {
gotoAndStop(_root.costume + 1);
}
}
movieClip 397 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 402 {
}
movieClip 404 {
}
movieClip 406 {
}
movieClip 408 {
}
movieClip 410 {
}
movieClip 418 {
frame 1 {
gotoAndStop(_root.costume + 1);
}
}
movieClip 425 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 433 {
frame 1 {
gotoAndStop(_root.costume + 1);
}
}
movieClip 440 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 443 {
}
movieClip 451 {
frame 1 {
gotoAndStop(_root.costume + 1);
}
}
movieClip 457 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 466 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 471 {
frame 1 {
gotoAndStop(_root.costume + 1);
}
}
movieClip 477 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 480 {
frame 1 {
gotoAndStop(_root.costume + 1);
}
}
movieClip 486 {
frame 1 {
if (_root.strippedTop != true) {
gotoAndStop(_root.costume + 1);
} else {
gotoAndStop(_root.costume + 31);
}
}
}
movieClip 490 {
frame 1 {
if (_root.strippedTop != true) {
gotoAndStop(_root.costume + 1);
} else {
gotoAndStop(_root.costume + 31);
}
}
}
movieClip 505 {
frame 1 {
if (_root.strippedTop != true) {
gotoAndStop(_root.costume + 1);
} else {
gotoAndStop(_root.costume + 31);
}
}
}
movieClip 518 {
frame 1 {
if (_root.strippedTop != true) {
gotoAndStop(_root.costume + 1);
} else {
gotoAndStop(_root.costume + 31);
}
}
}
movieClip 524 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 526 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 538 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 546 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 547 {
}
movieClip 576 {
frame 1 {
if (_root.rainbow != false && _root.jutsu == 5) {
if (!_parent.holdFrame) {
_parent.holdFrame = _root.character;
}
gotoAndStop(_parent.holdFrame + 1);
} else {
gotoAndStop(_root.character + 1);
}
}
}
movieClip 583 {
frame 1 {
if (_root.rainbow != false && _root.jutsu == 5) {
if (!_parent.holdFrame) {
_parent.holdFrame = _root.character;
}
gotoAndStop(_parent.holdFrame + 1);
} else {
gotoAndStop(_root.character + 1);
}
}
}
movieClip 584 {
frame 1 {
gotoAndPlay(random(100) + 1);
}
frame 105 {
gotoAndStop(1);
}
}
movieClip 592 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 593 {
}
movieClip 597 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 600 {
frame 1 {
if (_root.character == 5 or _root.character == 6) {
if (_root.strippedMask == true) {
gotoAndStop('hide');
} else {
gotoAndStop(_root.character + 1);
}
} else {
gotoAndStop(_root.character + 1);
}
}
}
movieClip 606 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 607 {
}
movieClip 618 {
frame 1 {
if (_root.character == 5 or _root.character == 6) {
gotoAndStop(_root.costume + 31);
} else {
gotoAndStop(_root.costume + 1);
}
}
}
movieClip 630 {
frame 1 {
if (_root.character == 5 or _root.character == 6) {
gotoAndStop(_root.character + 31);
} else {
gotoAndStop(_root.character + 1);
}
}
}
movieClip 642 {
frame 1 {
if (_root.character == 5 or _root.character == 6) {
gotoAndStop(_root.costume + 31);
} else {
gotoAndStop(_root.costume + 1);
}
}
}
movieClip 676 {
frame 1 {
if (_root.character == 5 or _root.character == 6) {
gotoAndStop(_root.character + 31);
} else {
gotoAndStop(_root.character + 1);
}
}
}
movieClip 678 {
frame 1 {
_alpha = 0;
}
}
movieClip 709 {
frame 1 {
gotoAndStop(2);
}
frame 2 {
stop();
}
frame 29 {
stop();
_parent._remove();
}
}
movieClip 713 {
}
movieClip 715 {
frame 1 {
_alpha = 0;
}
}
movieClip 724 {
}
movieClip 728 {
}
movieClip 739 {
}
movieClip 740 {
frame 1 {
function reset() {
end = false;
intensity = 0;
switch (_root.level) {
case 1:
if (_root.skillB1 == true && _root.skillB2 == true && _root.skillB3 == true && _root.skillB4 == true && _root.skillB5 == true) {
intensity_increase = 25;
} else {
if (_root.skillB1 == true && _root.skillB2 == true && _root.skillB3 == true && _root.skillB4 == true && _root.skillB5 == false) {
intensity_increase = 23.375;
} else {
if (_root.skillB1 == true && _root.skillB2 == true && _root.skillB3 == true && _root.skillB4 == false && _root.skillB5 == false) {
intensity_increase = 21.75;
} else {
if (_root.skillB1 == true && _root.skillB2 == true && _root.skillB3 == false && _root.skillB4 == false && _root.skillB5 == false) {
intensity_increase = 20.125;
} else {
intensity_increase = 18.5;
}
}
}
}
break;
case 3:
if (_root.skillS1 == true && _root.skillS2 == true && _root.skillS3 == true && _root.skillS4 == true && _root.skillS5 == true) {
intensity_increase = 35;
} else {
if (_root.skillS1 == true && _root.skillS2 == true && _root.skillS3 == true && _root.skillS4 == true && _root.skillS5 == false) {
intensity_increase = 31;
} else {
if (_root.skillS1 == true && _root.skillS2 == true && _root.skillS3 == true && _root.skillS4 == false && _root.skillS5 == false) {
intensity_increase = 27;
} else {
if (_root.skillS1 == true && _root.skillS2 == true && _root.skillS3 == false && _root.skillS4 == false && _root.skillS5 == false) {
intensity_increase = 23;
} else {
intensity_increase = 20;
}
}
}
}
break;
case 8:
if (_root.skillF1 == true && _root.skillF2 == true && _root.skillF3 == true && _root.skillF4 == true) {
intensity_increase = 45;
} else {
if (_root.skillF1 == true && _root.skillF2 == true && _root.skillF3 == true && _root.skillF4 == false) {
intensity_increase = 38;
} else {
if (_root.skillF1 == true && _root.skillF2 == true && _root.skillF3 == false && _root.skillF4 == false) {
intensity_increase = 32;
} else {
intensity_increase = 25;
}
}
}
break;
case 10:
if (_root.skillA1 == true && _root.skillA2 == true && _root.skillA3 == true && _root.skillA4 == true) {
intensity_increase = 55;
} else {
if (_root.skillA1 == true && _root.skillA2 == true && _root.skillA3 == true && _root.skillA4 == false) {
intensity_increase = 48;
} else {
if (_root.skillA1 == true && _root.skillA2 == true && _root.skillA3 == false && _root.skillA4 == false) {
intensity_increase = 42;
} else {
intensity_increase = 35;
}
}
}
}
fade = 100;
if (_root.skillFin1 == true && _root.skillFin2 == true && _root.skillFin3 == true) {
powerMod = 2;
} else {
if (_root.skillFin1 == true && _root.skillFin2 == true && _root.skillFin3 == false) {
powerMod = 1.5;
} else {
if (_root.skillFin1 == true && _root.skillFin2 == false && _root.skillFin3 == false) {
powerMod = 1.25;
} else {
powerMod = 1;
}
}
}
if (_root.skillLib1 == true && _root.skillLib2 == true && _root.skillLib3 == true) {
_deltaMod = 4;
click_power = 40;
} else {
if (_root.skillLib1 == true && _root.skillLib2 == true && _root.skillLib3 == false) {
_deltaMod = 3;
click_power = 35;
} else {
if (_root.skillLib1 == true && _root.skillLib2 == false && _root.skillLib3 == false) {
_deltaMod = 2;
click_power = 30;
} else {
_deltaMod = 1;
click_power = 25;
}
}
}
}
function endCheck() {
if (end == false) {
if (_parent.ejac >= 100) {
_parent.ejac = 100;
fill.gotoAndStop(110);
_root.came = true;
_parent.sperm.gotoAndPlay(2);
_parent.sperm.play();
_parent.btn._visible = false;
_parent.eye.gotoAndStop(100);
_parent._parent.add_points(_parent._index, _parent.satisfaction);
switch (_root.level) {
end = true;
return undefined;
case 1:
case 3:
if (end == false) {
_root.energyS -= 1;
if (Math.round((_root.energyS / _root.energySmax) * 100) < 20) {
_root.level = 1;
_parent._parent.skills.gotoAndStop(2);
}
}
end = true;
return undefined;
case 8:
if (end == false) {
_root.energyF -= 1;
if (Math.round((_root.energyF / _root.energyFmax) * 100) < 20) {
_root.level = 1;
_parent._parent.skills.gotoAndStop(2);
}
}
end = true;
return undefined;
case 10:
if (end == false) {
_root.energyA -= 1;
if (Math.round((_root.energyA / _root.energyAmax) * 100) < 20) {
_root.level = 1;
_parent._parent.skills.gotoAndStop(2);
}
}
end = true;
return undefined;
}
end = true;
return undefined;
}
}
}
function grade_up() {
if (end == false) {
intensity += click_power / 3;
if (intensity > 100) {
intensity = 100;
}
}
}
function hold_up() {
if (end == false) {
intensity += click_power / 15;
if (intensity > 100) {
intensity = 100;
}
}
}
var intensity_increase;
onEnterFrame = function () {
if (_root.level_pause == false) {
if (_visible == false) {
return undefined;
}
switch (_root.level) {
case 1:
_parent._delta = 1 * _deltaMod + 10 * (intensity / 100);
break;
case 3:
_parent._delta = 1 * _deltaMod + 15 * (intensity / 100);
if (end == false) {
_root.energyS -= 0.04;
}
break;
case 8:
_parent._delta = 1 * _deltaMod + 15 * (intensity / 100);
if (end == false) {
_root.energyF -= 0.04;
}
break;
case 10:
_parent._delta = 1 * _deltaMod + 15 * (intensity / 100);
if (end == false) {
_root.energyA -= 0.04;
}
}
if (end == false) {
_parent.ejac += intensity_increase * (intensity / 100 + 0.1) * 5 * powerMod / 25;
endCheck();
_parent.satisfaction += (intensity_increase - 10) * 4 * powerMod * (intensity / 100) / 50;
if (_parent.ejac < 100) {
_parent.ejac -= _parent.ejac * 0.025 + 1.5;
if (_parent.ejac < 0) {
_parent.ejac = 0;
}
}
_parent.satisfaction -= 0.2;
if (_parent.satisfaction < 0) {
_parent.satisfaction = 0;
}
intensity -= intensity / 100;
if (intensity < 1) {
intensity = 0;
}
outline.gotoAndStop(Math.ceil(_parent.satisfaction) + 2);
glow.gotoAndStop(Math.ceil(intensity) + 2);
fill.gotoAndStop(Math.ceil(_parent.ejac) + 3);
} else {
fade -= 5;
_alpha = fade;
}
}
};
reset();
}
}
movieClip 753 {
frame 1 {
gotoAndStop(_root.costume + 1);
}
}
movieClip 759 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 768 {
frame 1 {
gotoAndStop(_root.costume + 1);
}
}
movieClip 775 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 782 {
frame 1 {
gotoAndStop(_root.costume + 1);
}
}
movieClip 789 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 792 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 796 {
frame 1 {
if (_root.character == 5 or _root.character == 6) {
if (_root.strippedMask == true) {
gotoAndStop('hide');
} else {
gotoAndStop(_root.character + 1);
}
} else {
gotoAndStop(_root.character + 1);
}
}
}
movieClip 797 {
}
movieClip 806 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 809 {
frame 1 {
_alpha = 0;
}
}
movieClip 825 {
}
movieClip 850 {
frame 1 {
stop();
}
frame 57 {
stop();
_parent._remove();
}
}
movieClip 859 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 863 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 866 {
frame 1 {
if (_root.character == 5 or _root.character == 6) {
if (_root.strippedMask == true) {
gotoAndStop('hide');
} else {
gotoAndStop(_root.character + 1);
}
} else {
gotoAndStop(_root.character + 1);
}
}
}
movieClip 867 {
}
movieClip 875 {
frame 1 {
gotoAndStop(_root.costume + 1);
}
}
movieClip 903 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 906 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 916 {
frame 1 {
gotoAndStop(_root.costume + 1);
}
}
movieClip 927 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 943 {
frame 1 {
if (_root.strippedBot != true) {
gotoAndStop(_root.costume + 1);
} else {
gotoAndStop(_root.costume + 31);
}
}
}
movieClip 946 {
frame 1 {
gotoAndStop(_root.costume + 1);
}
}
movieClip 955 {
frame 1 {
if (_root.hideNipples != true) {
gotoAndStop(_root.character + 1);
} else {
gotoAndStop('hide');
}
}
}
movieClip 983 {
frame 1 {
if (_root.hideNipples == false) {
if (_root.strippedTop == true or _root.strippedFull == true) {
gotoAndStop(_root.character + 1);
} else {
gotoAndStop('hide');
}
} else {
gotoAndStop('hide');
}
}
}
movieClip 1011 {
frame 1 {
if (_root.hideNipples == false) {
if (_root.strippedTop == true or _root.strippedFull == true) {
gotoAndStop(_root.character + 1);
} else {
gotoAndStop('hide');
}
} else {
gotoAndStop('hide');
}
}
}
movieClip 1021 {
frame 1 {
if (_root.strippedTop != true) {
gotoAndStop(_root.costume + 1);
} else {
gotoAndStop(_root.costume + 31);
}
}
}
movieClip 1031 {
frame 1 {
if (_root.strippedTop != true) {
gotoAndStop(_root.costume + 1);
} else {
gotoAndStop(_root.costume + 31);
}
}
}
movieClip 1039 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 1040 {
}
movieClip 1056 {
frame 1 {
if (_root.rainbow != false && _root.jutsu == 5) {
if (!_parent.holdFrame) {
_parent.holdFrame = _root.character;
}
gotoAndStop(_parent.holdFrame + 1);
} else {
gotoAndStop(_root.character + 1);
}
}
}
movieClip 1057 {
frame 1 {
gotoAndPlay(random(100) + 1);
}
frame 105 {
gotoAndStop(1);
}
}
movieClip 1058 {
}
movieClip 1076 {
frame 1 {
if (_root.character == 5 or _root.character == 6) {
gotoAndStop(_root.costume + 31);
} else {
gotoAndStop(_root.costume + 1);
}
}
}
movieClip 1109 {
frame 1 {
if (_root.character == 5 or _root.character == 6) {
gotoAndStop(_root.character + 31);
} else {
gotoAndStop(_root.character + 1);
}
}
}
movieClip 1119 {
frame 1 {
gotoAndStop(_root.costume + 1);
}
}
movieClip 1125 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 1132 {
frame 1 {
gotoAndStop(_root.costume + 1);
}
}
movieClip 1139 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 1157 {
frame 1 {
if (_root.strippedTop != true) {
gotoAndStop(_root.costume + 1);
} else {
gotoAndStop(_root.costume + 31);
}
}
}
movieClip 1166 {
frame 1 {
gotoAndStop(_root.costume + 1);
}
}
movieClip 1173 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 1176 {
frame 1 {
if (_root.strippedTop != true) {
gotoAndStop(_root.costume + 1);
} else {
gotoAndStop(_root.costume + 31);
}
}
}
movieClip 1182 {
frame 1 {
gotoAndStop(_root.costume + 1);
}
}
movieClip 1189 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 1199 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 1203 {
frame 1 {
if (_root.character == 5 or _root.character == 6) {
if (_root.strippedMask == true) {
gotoAndStop('hide');
} else {
gotoAndStop(_root.character + 1);
}
} else {
gotoAndStop(_root.character + 1);
}
}
}
movieClip 1212 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 1241 {
frame 1 {
if (_root.rainbow != false && _root.jutsu == 5) {
if (!_parent.holdFrame) {
_parent.holdFrame = _root.character;
}
gotoAndStop(_parent.holdFrame + 1);
} else {
gotoAndStop(_root.character + 1);
}
}
}
movieClip 1248 {
frame 1 {
if (_root.rainbow != false && _root.jutsu == 5) {
if (!_parent.holdFrame) {
_parent.holdFrame = _root.character;
}
gotoAndStop(_parent.holdFrame + 1);
} else {
gotoAndStop(_root.character + 1);
}
}
}
movieClip 1249 {
frame 1 {
gotoAndPlay(random(100) + 1);
}
frame 105 {
gotoAndStop(1);
}
}
movieClip 1256 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 1260 {
frame 1 {
if (_root.character == 5 or _root.character == 6) {
if (_root.strippedMask == true) {
gotoAndStop('hide');
} else {
gotoAndStop(_root.character + 1);
}
} else {
gotoAndStop(_root.character + 1);
}
}
}
movieClip 1268 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 1270 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 1272 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 1277 {
frame 1 {
if (_root.strippedTop != true) {
gotoAndStop(_root.costume + 1);
} else {
gotoAndStop(_root.costume + 31);
}
}
}
movieClip 1294 {
frame 1 {
if (_root.strippedTop != true) {
gotoAndStop(_root.costume + 1);
} else {
gotoAndStop(_root.costume + 31);
}
}
}
movieClip 1302 {
frame 1 {
gotoAndStop(_root.costume + 1);
}
}
movieClip 1309 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 1320 {
frame 1 {
if (_root.strippedBot != true) {
gotoAndStop(_root.costume + 1);
} else {
gotoAndStop(_root.costume + 31);
}
}
}
movieClip 1322 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 1332 {
frame 1 {
gotoAndStop(_root.costume + 1);
}
}
movieClip 1360 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 1372 {
frame 1 {
if (_root.character == 5 or _root.character == 6) {
gotoAndStop(_root.costume + 31);
} else {
gotoAndStop(_root.costume + 1);
}
}
}
movieClip 1428 {
frame 1 {
if (_root.character == 5 or _root.character == 6) {
gotoAndStop(_root.character + 31);
} else {
gotoAndStop(_root.character + 1);
}
}
}
movieClip 1436 {
frame 1 {
gotoAndStop(_root.costume + 1);
}
}
movieClip 1442 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 1443 ai0 {
frame 1 {
if (_mode == undefined) {
_mode = 0;
if (_root.level == 1) {
_root.poseFrame = 100;
} else {
if (_root.level >= 2 && _root.level < 5) {
_root.poseFrame = 200;
} else {
if (_root.level >= 5 && _root.level < 10) {
_root.poseFrame = 300;
} else {
if (_root.level == 10) {
_root.poseFrame = 400;
}
}
}
}
new_frame = _root.poseFrame - 100 + 2;
_direction = 1;
_delta = 1;
pleasure_meter._visible = true;
pleasure_meter.reset();
_root.held = true;
}
this.onEnterFrame = function () {
if (_root.level_pause == false) {
new_frame += _direction * Math.ceil(_delta * 1.25);
if (new_frame > _root.poseFrame + 1) {
new_frame = _root.poseFrame - 100 + 2;
}
gotoAndStop(Math.ceil(new_frame));
} else {
stop();
}
if (_root.held == true) {
pleasure_meter.hold_up();
}
};
onPress = function () {
pleasure_meter.grade_up();
if (pleasure_meter.end != true) {
_root.held = true;
}
};
onRollOver = function () {
_root.held = false;
};
onRelease = function () {
_root.held = false;
};
onReleaseOutside = function () {
_root.held = false;
};
onRollOut = function () {
_root.held = false;
};
}
}
movieClip 1466 {
frame 1 {
gotoAndPlay(Math.ceil(Math.random(30)));
}
frame 121 {
gotoAndPlay('loop');
}
}
movieClip 1468 {
}
movieClip 1470 {
}
movieClip 1494 {
}
movieClip 1504 {
frame 1 {
if (_root.character == 5 or _root.character == 6) {
gotoAndStop(_root.costume + 31);
} else {
gotoAndStop(_root.costume + 1);
}
}
}
movieClip 1538 {
frame 1 {
if (_root.character == 5 or _root.character == 6) {
gotoAndStop(_root.character + 31);
} else {
gotoAndStop(_root.character + 1);
}
}
}
movieClip 1542 {
}
movieClip 1544 {
}
movieClip 1546 {
}
movieClip 1548 {
}
movieClip 1563 {
frame 1 {
if (_root.character == 5 or _root.character == 6) {
gotoAndStop(_root.costume + 31);
} else {
gotoAndStop(_root.costume + 1);
}
}
}
movieClip 1618 {
frame 1 {
if (_root.character == 5 or _root.character == 6) {
gotoAndStop(_root.character + 31);
} else {
gotoAndStop(_root.character + 1);
}
}
}
movieClip 1620 {
}
movieClip 1627 {
frame 1 {
gotoAndStop(_root.costume + 1);
}
}
movieClip 1634 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 1642 {
frame 1 {
gotoAndStop(_root.costume + 1);
}
}
movieClip 1649 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 1663 {
frame 1 {
if (_root.strippedBot != true) {
gotoAndStop(_root.costume + 1);
} else {
gotoAndStop(_root.costume + 31);
}
}
}
movieClip 1665 {
}
movieClip 1673 {
frame 1 {
gotoAndStop(_root.costume + 1);
}
}
movieClip 1679 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 1687 {
frame 1 {
gotoAndStop(_root.costume + 1);
}
}
movieClip 1694 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 1696 {
}
movieClip 1706 {
frame 1 {
if (_root.character == 5 or _root.character == 6) {
gotoAndStop(_root.costume + 31);
} else {
gotoAndStop(_root.costume + 1);
}
}
}
movieClip 1719 {
frame 1 {
if (_root.character == 5 or _root.character == 6) {
gotoAndStop(_root.character + 31);
} else {
gotoAndStop(_root.character + 1);
}
}
}
movieClip 1727 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 1729 {
}
movieClip 1731 {
}
movieClip 1807 {
frame 1 {
if (_root.character == 5 or _root.character == 6) {
if (_root.strippedMask == true) {
gotoAndStop('hide');
} else {
gotoAndStop(_root.character + 1);
}
} else {
gotoAndStop(_root.character + 1);
}
}
}
movieClip 1814 {
}
movieClip 1826 {
frame 1 {
if (_root.character == 5 or _root.character == 6) {
gotoAndStop(_root.costume + 31);
} else {
gotoAndStop(_root.costume + 1);
}
}
}
movieClip 1859 {
frame 1 {
if (_root.character == 5 or _root.character == 6) {
gotoAndStop(_root.character + 31);
} else {
gotoAndStop(_root.character + 1);
}
}
}
movieClip 1861 {
}
movieClip 1869 {
frame 1 {
gotoAndStop(_root.costume + 1);
}
}
movieClip 1897 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 1911 {
frame 1 {
if (_root.character == 5 or _root.character == 6) {
gotoAndStop(_root.costume + 31);
} else {
gotoAndStop(_root.costume + 1);
}
}
}
movieClip 1946 {
frame 1 {
if (_root.character == 5 or _root.character == 6) {
gotoAndStop(_root.character + 31);
} else {
gotoAndStop(_root.character + 1);
}
}
}
movieClip 1960 {
frame 1 {
if (_root.character == 5 or _root.character == 6) {
gotoAndStop(_root.costume + 31);
} else {
gotoAndStop(_root.costume + 1);
}
}
}
movieClip 1994 {
frame 1 {
if (_root.character == 5 or _root.character == 6) {
gotoAndStop(_root.character + 31);
} else {
gotoAndStop(_root.character + 1);
}
}
}
movieClip 2004 {
frame 1 {
gotoAndStop(_root.costume + 1);
}
}
movieClip 2011 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 2018 {
frame 1 {
if (_root.hideNipples != true) {
gotoAndStop(_root.character + 1);
} else {
gotoAndStop('hide');
}
}
}
movieClip 2046 {
frame 1 {
if (_root.hideNipples == false) {
if (_root.strippedTop == true or _root.strippedFull == true) {
gotoAndStop(_root.character + 1);
} else {
gotoAndStop('hide');
}
} else {
gotoAndStop('hide');
}
}
}
movieClip 2053 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 2058 {
frame 1 {
gotoAndStop(_root.costume + 1);
}
}
movieClip 2064 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 2066 {
}
movieClip 2068 {
}
movieClip 2083 {
frame 1 {
if (_root.rainbow != false && _root.jutsu == 5) {
if (!_parent.holdFrame) {
_parent.holdFrame = _root.character;
}
gotoAndStop(_parent.holdFrame + 1);
} else {
gotoAndStop(_root.character + 1);
}
}
}
movieClip 2087 {
frame 1 {
if (_root.character == 5 or _root.character == 6) {
if (_root.strippedMask == true) {
gotoAndStop('hide');
} else {
gotoAndStop(_root.character + 1);
}
} else {
gotoAndStop(_root.character + 1);
}
}
}
movieClip 2099 {
frame 1 {
if (_root.character == 5 or _root.character == 6) {
gotoAndStop(_root.costume + 31);
} else {
gotoAndStop(_root.costume + 1);
}
}
}
movieClip 2155 {
frame 1 {
if (_root.character == 5 or _root.character == 6) {
gotoAndStop(_root.character + 31);
} else {
gotoAndStop(_root.character + 1);
}
}
}
movieClip 2271 {
}
movieClip 2281 {
frame 1 {
gotoAndStop(_root.costume + 1);
}
}
movieClip 2287 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 2296 {
}
movieClip 2298 {
}
movieClip 2310 {
frame 1 {
if (_root.character == 5 or _root.character == 6) {
gotoAndStop(_root.costume + 31);
} else {
gotoAndStop(_root.costume + 1);
}
}
}
movieClip 2366 {
frame 1 {
if (_root.character == 5 or _root.character == 6) {
gotoAndStop(_root.character + 31);
} else {
gotoAndStop(_root.character + 1);
}
}
}
movieClip 2378 {
frame 1 {
if (_root.character == 5 or _root.character == 6) {
gotoAndStop(_root.costume + 31);
} else {
gotoAndStop(_root.costume + 1);
}
}
}
movieClip 2434 {
frame 1 {
if (_root.character == 5 or _root.character == 6) {
gotoAndStop(_root.character + 31);
} else {
gotoAndStop(_root.character + 1);
}
}
}
movieClip 2442 {
frame 1 {
gotoAndStop(_root.costume + 1);
}
}
movieClip 2450 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 2458 {
frame 1 {
gotoAndStop(_root.costume + 1);
}
}
movieClip 2465 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 2473 {
frame 1 {
gotoAndStop(_root.costume + 1);
}
}
movieClip 2500 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 2509 {
frame 1 {
gotoAndStop(_root.costume + 1);
}
}
movieClip 2516 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 2520 {
frame 1 {
if (_root.strippedTop != true) {
gotoAndStop(_root.costume + 1);
} else {
gotoAndStop(_root.costume + 31);
}
}
}
movieClip 2525 {
frame 1 {
gotoAndStop(_root.costume + 1);
}
}
movieClip 2532 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 2539 {
frame 1 {
if (_root.hideNipples != true) {
gotoAndStop(_root.character + 1);
} else {
gotoAndStop('hide');
}
}
}
movieClip 2567 {
frame 1 {
if (_root.hideNipples == false) {
if (_root.strippedTop == true or _root.strippedFull == true) {
gotoAndStop(_root.character + 1);
} else {
gotoAndStop('hide');
}
} else {
gotoAndStop('hide');
}
}
}
movieClip 2582 {
frame 1 {
if (_root.strippedTop != true) {
gotoAndStop(_root.costume + 1);
} else {
gotoAndStop(_root.costume + 31);
}
}
}
movieClip 2592 {
frame 1 {
if (_root.strippedTop != true) {
gotoAndStop(_root.costume + 1);
} else {
gotoAndStop(_root.costume + 31);
}
}
}
movieClip 2599 {
frame 1 {
if (_root.hideNipples != true) {
gotoAndStop(_root.character + 1);
} else {
gotoAndStop('hide');
}
}
}
movieClip 2606 {
frame 1 {
if (_root.hideNipples == false) {
if (_root.strippedTop == true or _root.strippedFull == true) {
gotoAndStop(_root.character + 1);
} else {
gotoAndStop('hide');
}
} else {
gotoAndStop('hide');
}
}
}
movieClip 2623 {
frame 1 {
if (_root.strippedTop != true) {
gotoAndStop(_root.costume + 1);
} else {
gotoAndStop(_root.costume + 31);
}
}
}
movieClip 2633 {
frame 1 {
if (_root.strippedTop != true) {
gotoAndStop(_root.costume + 1);
} else {
gotoAndStop(_root.costume + 31);
}
}
}
movieClip 2638 {
frame 1 {
gotoAndStop(_root.costume + 1);
}
}
movieClip 2644 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 2648 {
frame 1 {
if (_root.strippedTop != true) {
gotoAndStop(_root.costume + 1);
} else {
gotoAndStop(_root.costume + 31);
}
}
}
movieClip 2656 {
frame 1 {
gotoAndStop(_root.costume + 1);
}
}
movieClip 2663 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 2670 {
frame 1 {
gotoAndStop(_root.costume + 1);
}
}
movieClip 2677 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 2684 {
frame 1 {
if (_root.strippedBot != true) {
gotoAndStop(_root.costume + 1);
} else {
gotoAndStop(_root.costume + 31);
}
}
}
movieClip 2700 {
frame 1 {
if (_root.strippedBot != true) {
gotoAndStop(_root.costume + 1);
} else {
gotoAndStop(_root.costume + 31);
}
}
}
movieClip 2717 {
frame 1 {
gotoAndStop(_root.costume + 1);
}
}
movieClip 2751 {
frame 1 {
if (_root.character == 5 or _root.character == 6) {
gotoAndStop(_root.character + 31);
} else {
gotoAndStop(_root.character + 1);
}
}
}
movieClip 2761 {
frame 1 {
gotoAndStop(_root.costume + 1);
}
}
movieClip 2789 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 2791 {
frame 1 {
gotoAndStop(_root.costume + 1);
}
}
movieClip 2815 {
frame 1 {
if (_root.rainbow != false && _root.jutsu == 5) {
if (!_parent.holdFrame) {
_parent.holdFrame = _root.character;
}
gotoAndStop(_parent.holdFrame + 1);
} else {
gotoAndStop(_root.character + 1);
}
}
}
movieClip 2816 {
frame 1 {
gotoAndPlay(random(100) + 1);
}
frame 105 {
gotoAndStop(1);
}
}
movieClip 2943 {
}
movieClip 2950 {
}
movieClip 2960 {
frame 1 {
if (_root.character == 5 or _root.character == 6) {
gotoAndStop(_root.costume + 31);
} else {
gotoAndStop(_root.costume + 1);
}
}
}
movieClip 2973 {
frame 1 {
if (_root.character == 5 or _root.character == 6) {
gotoAndStop(_root.character + 31);
} else {
gotoAndStop(_root.character + 1);
}
}
}
movieClip 2981 {
frame 1 {
gotoAndStop(_root.costume + 1);
}
}
movieClip 2987 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 2996 {
frame 1 {
gotoAndStop(_root.costume + 1);
}
}
movieClip 3024 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 3040 {
frame 1 {
if (_root.strippedBot != true) {
gotoAndStop(_root.costume + 1);
} else {
gotoAndStop(_root.costume + 31);
}
}
}
movieClip 3045 {
frame 1 {
gotoAndStop(_root.costume + 1);
}
}
movieClip 3052 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 3080 {
frame 1 {
if (_root.hideNipples != true) {
gotoAndStop(_root.character + 1);
} else {
gotoAndStop('hide');
}
}
}
movieClip 3108 {
frame 1 {
if (_root.hideNipples == false) {
if (_root.strippedTop == true or _root.strippedFull == true) {
gotoAndStop(_root.character + 1);
} else {
gotoAndStop('hide');
}
} else {
gotoAndStop('hide');
}
}
}
movieClip 3113 {
frame 1 {
gotoAndStop(_root.costume + 1);
}
}
movieClip 3140 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 3146 {
frame 1 {
gotoAndStop(_root.costume + 1);
}
}
movieClip 3153 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 3162 {
frame 1 {
if (_root.character == 5 or _root.character == 6) {
gotoAndStop(_root.costume + 31);
} else {
gotoAndStop(_root.costume + 1);
}
}
}
movieClip 3175 {
frame 1 {
if (_root.character == 5 or _root.character == 6) {
gotoAndStop(_root.character + 31);
} else {
gotoAndStop(_root.character + 1);
}
}
}
movieClip 3183 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 3191 {
frame 1 {
gotoAndStop(_root.costume + 1);
}
}
movieClip 3198 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 3200 {
frame 1 {
gotoAndStop(_root.costume + 1);
}
}
movieClip 3202 {
frame 1 {
gotoAndStop(_root.costume + 1);
}
}
movieClip 3204 {
}
movieClip 3206 {
}
movieClip 3320 ah0 {
frame 1 {
if (_mode == undefined) {
_mode = 0;
if (_root.level == 1) {
_root.poseFrame = 100;
} else {
if (_root.level >= 2 && _root.level < 5) {
_root.poseFrame = 200;
} else {
if (_root.level >= 5 && _root.level < 10) {
_root.poseFrame = 300;
} else {
if (_root.level == 10) {
_root.poseFrame = 400;
}
}
}
}
new_frame = _root.poseFrame - 100 + 2;
_direction = 1;
_delta = 1;
pleasure_meter._visible = true;
pleasure_meter.reset();
_root.held = true;
}
if (_root.level == 1) {
_root.poseFrame = 100;
} else {
if (_root.level > 1 && _root.level <= 5) {
_root.poseFrame = 200;
} else {
if (_root.level < 5 && _root.level > 10) {
_root.poseFrame = 300;
} else {
if (_root.level == 10) {
_root.poseFrame = 400;
}
}
}
}
this.onEnterFrame = function () {
if (_root.level_pause == false) {
new_frame += _direction * _delta;
if (new_frame > _root.poseFrame + 1) {
new_frame = _root.poseFrame - 100 + 2;
}
gotoAndStop(Math.ceil(new_frame));
} else {
stop();
}
if (_root.held == true) {
pleasure_meter.hold_up();
}
};
onPress = function () {
pleasure_meter.grade_up();
if (pleasure_meter.end != true) {
_root.held = true;
}
};
onRollOver = function () {
_root.held = false;
};
onRelease = function () {
_root.held = false;
};
onReleaseOutside = function () {
_root.held = false;
};
onRollOut = function () {
_root.held = false;
};
}
}
movieClip 3330 {
}
movieClip 3338 {
frame 1 {
gotoAndPlay(2);
}
frame 55 {
gotoAndPlay('loop');
}
}
movieClip 3344 {
frame 1 {
stop();
}
}
movieClip 3346 {
}
movieClip 3348 {
}
movieClip 3350 {
}
movieClip 3352 {
}
movieClip 3354 {
}
movieClip 3356 {
}
movieClip 3364 {
frame 1 {
gotoAndStop(_root.costume + 1);
}
}
movieClip 3371 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 3378 {
frame 1 {
gotoAndStop(_root.costume + 1);
}
}
movieClip 3406 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 3432 {
frame 1 {
if (_root.hidePussy != true) {
gotoAndStop(_root.character + 1);
} else {
gotoAndStop('hide');
}
}
}
movieClip 3444 {
frame 1 {
if (_root.strippedBot != true) {
gotoAndStop(_root.costume + 1);
} else {
gotoAndStop(_root.costume + 31);
}
}
}
movieClip 3453 {
frame 1 {
gotoAndStop(_root.costume + 1);
}
}
movieClip 3481 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 3490 {
frame 1 {
gotoAndStop(_root.costume + 1);
}
}
movieClip 3518 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 3528 {
frame 1 {
if (_root.character == 5 or _root.character == 6) {
gotoAndStop(_root.costume + 31);
} else {
gotoAndStop(_root.costume + 1);
}
}
}
movieClip 3583 {
frame 1 {
if (_root.character == 5 or _root.character == 6) {
gotoAndStop(_root.character + 31);
} else {
gotoAndStop(_root.character + 1);
}
}
}
movieClip 3586 {
}
movieClip 3587 {
}
movieClip 3589 {
frame 1 {
_alpha = 0;
}
}
movieClip 3622 {
frame 1 {
stop();
}
frame 57 {
stop();
_parent._remove();
}
}
movieClip 3631 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 3632 {
}
movieClip 3633 {
}
movieClip 3641 {
frame 1 {
gotoAndStop(_root.costume + 1);
}
}
movieClip 3647 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 3673 {
frame 1 {
if (_root.hidePussy != true) {
gotoAndStop(_root.character + 1);
} else {
gotoAndStop('hide');
}
}
}
movieClip 3683 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 3685 {
}
movieClip 3692 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 3702 {
frame 1 {
gotoAndStop(_root.costume + 1);
}
}
movieClip 3730 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 3745 {
frame 1 {
gotoAndStop(_root.costume + 1);
}
}
movieClip 3779 {
frame 1 {
if (_root.character == 5 or _root.character == 6) {
gotoAndStop(_root.character + 31);
} else {
gotoAndStop(_root.character + 1);
}
}
}
movieClip 3789 {
frame 1 {
gotoAndStop(_root.costume + 1);
}
}
movieClip 3816 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 3833 {
frame 1 {
gotoAndStop(_root.costume + 1);
}
}
movieClip 3889 {
frame 1 {
if (_root.character == 5 or _root.character == 6) {
gotoAndStop(_root.character + 31);
} else {
gotoAndStop(_root.character + 1);
}
}
}
movieClip 3890 ak0 {
frame 1 {
if (_mode == undefined) {
_mode = 0;
if (_root.level == 1) {
_root.poseFrame = 100;
} else {
if (_root.level >= 2 && _root.level < 5) {
_root.poseFrame = 200;
} else {
if (_root.level >= 5 && _root.level < 10) {
_root.poseFrame = 300;
} else {
if (_root.level == 10) {
_root.poseFrame = 400;
}
}
}
}
new_frame = _root.poseFrame - 100 + 2;
_direction = 1;
_delta = 1;
pleasure_meter._visible = true;
pleasure_meter.reset();
_root.held = true;
}
this.onEnterFrame = function () {
if (_root.level_pause == false) {
new_frame += _direction * Math.ceil(_delta * 0.75);
if (new_frame > _root.poseFrame + 1) {
new_frame = _root.poseFrame - 100 + 2;
}
gotoAndStop(Math.ceil(new_frame));
} else {
stop();
}
if (_root.held == true) {
pleasure_meter.hold_up();
}
};
onPress = function () {
pleasure_meter.grade_up();
if (pleasure_meter.end != true) {
_root.held = true;
}
};
onRollOver = function () {
_root.held = false;
};
onRelease = function () {
_root.held = false;
};
onReleaseOutside = function () {
_root.held = false;
};
onRollOut = function () {
_root.held = false;
};
}
}
movieClip 3905 {
frame 1 {
gotoAndStop(_parent._color);
}
}
movieClip 3919 {
frame 1 {
gotoAndStop(_parent._color);
}
}
movieClip 3932 {
frame 1 {
gotoAndStop(_parent._color);
}
}
movieClip 3935 {
}
movieClip 3938 aa1 {
frame 1 {
if (_mode == undefined) {
_mode = 0;
new_frame = 1;
_direction = 1;
_delta = 1;
pleasure_meter._visible = true;
pleasure_meter.reset();
_root.held = true;
}
this.onEnterFrame = function () {
if (_root.level_pause == false) {
new_frame += _direction * _delta;
if (new_frame > 51) {
_direction *= -1;
new_frame = 51;
}
if (new_frame < 2) {
_direction *= -1;
new_frame = 2;
}
gotoAndStop(Math.ceil(new_frame));
} else {
stop();
}
if (_root.held == true) {
pleasure_meter.hold_up();
}
};
onPress = function () {
pleasure_meter.grade_up();
if (pleasure_meter.end != true) {
_root.held = true;
}
};
onRollOver = function () {
_root.held = false;
};
onRelease = function () {
_root.held = false;
};
onReleaseOutside = function () {
_root.held = false;
};
onRollOut = function () {
_root.held = false;
};
}
}
movieClip 3952 {
frame 1 {
if (_root.character == 5 or _root.character == 6) {
gotoAndStop(_root.costume + 31);
} else {
gotoAndStop(_root.costume + 1);
}
}
}
movieClip 3986 {
frame 1 {
if (_root.character == 5 or _root.character == 6) {
gotoAndStop(_root.character + 31);
} else {
gotoAndStop(_root.character + 1);
}
}
}
movieClip 3995 {
frame 1 {
gotoAndStop(_root.costume + 1);
}
}
movieClip 4002 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 4016 {
frame 1 {
if (_root.character == 5 or _root.character == 6) {
gotoAndStop(_root.costume + 31);
} else {
gotoAndStop(_root.costume + 1);
}
}
}
movieClip 4050 {
frame 1 {
if (_root.character == 5 or _root.character == 6) {
gotoAndStop(_root.character + 31);
} else {
gotoAndStop(_root.character + 1);
}
}
}
movieClip 4058 {
frame 1 {
gotoAndStop(_root.costume + 1);
}
}
movieClip 4065 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 4075 {
frame 1 {
gotoAndStop(_root.costume + 1);
}
}
movieClip 4081 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 4091 {
frame 1 {
if (_root.character == 5 or _root.character == 6) {
gotoAndStop(_root.costume + 31);
} else {
gotoAndStop(_root.costume + 1);
}
}
}
movieClip 4147 {
frame 1 {
if (_root.character == 5 or _root.character == 6) {
gotoAndStop(_root.character + 31);
} else {
gotoAndStop(_root.character + 1);
}
}
}
movieClip 4148 af1 {
frame 1 {
if (_mode == undefined) {
_mode = 0;
new_frame = 1;
_direction = 1;
_delta = 1;
pleasure_meter._visible = true;
pleasure_meter.reset();
_root.held = true;
}
this.onEnterFrame = function () {
if (_root.level_pause == false) {
new_frame += _direction * _delta;
if (new_frame > 51) {
_direction *= -1;
new_frame = 51;
}
if (new_frame < 2) {
_direction *= -1;
new_frame = 2;
}
gotoAndStop(Math.ceil(new_frame));
} else {
stop();
}
if (_root.held == true) {
pleasure_meter.hold_up();
}
};
onPress = function () {
pleasure_meter.grade_up();
if (pleasure_meter.end != true) {
_root.held = true;
}
};
onRollOver = function () {
_root.held = false;
};
onRelease = function () {
_root.held = false;
};
onReleaseOutside = function () {
_root.held = false;
};
onRollOut = function () {
_root.held = false;
};
}
}
movieClip 4156 {
frame 1 {
gotoAndStop(_root.costume + 1);
}
}
movieClip 4184 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 4190 {
frame 1 {
gotoAndStop(_root.costume + 1);
}
}
movieClip 4196 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 4204 {
frame 1 {
gotoAndStop(_root.costume + 1);
}
}
movieClip 4211 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 4221 {
frame 1 {
if (_root.character == 5 or _root.character == 6) {
gotoAndStop(_root.costume + 31);
} else {
gotoAndStop(_root.costume + 1);
}
}
}
movieClip 4234 {
frame 1 {
if (_root.character == 5 or _root.character == 6) {
gotoAndStop(_root.character + 31);
} else {
gotoAndStop(_root.character + 1);
}
}
}
movieClip 4242 {
frame 1 {
gotoAndStop(_root.costume + 1);
}
}
movieClip 4249 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 4250 as1 {
frame 1 {
if (_mode == undefined) {
_mode = 0;
new_frame = 1;
_direction = 1;
_delta = 1;
pleasure_meter._visible = true;
pleasure_meter.reset();
_root.held = true;
}
this.onEnterFrame = function () {
if (_root.level_pause == false) {
new_frame += _direction * _delta;
if (new_frame > 51) {
_direction *= -1;
new_frame = 51;
}
if (new_frame < 2) {
_direction *= -1;
new_frame = 2;
}
gotoAndStop(Math.ceil(new_frame));
} else {
stop();
}
if (_root.held == true) {
pleasure_meter.hold_up();
}
};
onPress = function () {
pleasure_meter.grade_up();
if (pleasure_meter.end != true) {
_root.held = true;
}
};
onRollOver = function () {
_root.held = false;
};
onRelease = function () {
_root.held = false;
};
onReleaseOutside = function () {
_root.held = false;
};
onRollOut = function () {
_root.held = false;
};
}
}
movieClip 4258 {
frame 1 {
gotoAndStop(_root.costume + 1);
}
}
movieClip 4265 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 4267 {
}
movieClip 4276 {
frame 1 {
if (_root.character == 5 or _root.character == 6) {
gotoAndStop(_root.costume + 31);
} else {
gotoAndStop(_root.costume + 1);
}
}
}
movieClip 4311 {
frame 1 {
if (_root.character == 5 or _root.character == 6) {
gotoAndStop(_root.character + 31);
} else {
gotoAndStop(_root.character + 1);
}
}
}
movieClip 4321 {
frame 1 {
if (_root.character == 5 or _root.character == 6) {
gotoAndStop(_root.costume + 31);
} else {
gotoAndStop(_root.costume + 1);
}
}
}
movieClip 4334 {
frame 1 {
if (_root.character == 5 or _root.character == 6) {
gotoAndStop(_root.character + 31);
} else {
gotoAndStop(_root.character + 1);
}
}
}
movieClip 4336 {
}
movieClip 4338 {
}
movieClip 4339 ab1 {
frame 1 {
if (_mode == undefined) {
_mode = 0;
new_frame = 1;
_direction = 1;
_delta = 1;
pleasure_meter._visible = true;
pleasure_meter.reset();
_root.held = true;
}
this.onEnterFrame = function () {
if (_root.level_pause == false) {
new_frame += _direction * _delta;
if (new_frame > 51) {
_direction *= -1;
new_frame = 51;
}
if (new_frame < 2) {
_direction *= -1;
new_frame = 2;
}
gotoAndStop(Math.ceil(new_frame));
} else {
stop();
}
if (_root.held == true) {
pleasure_meter.hold_up();
}
};
onPress = function () {
pleasure_meter.grade_up();
if (pleasure_meter.end != true) {
_root.held = true;
}
};
onRollOver = function () {
_root.held = false;
};
onRelease = function () {
_root.held = false;
};
onReleaseOutside = function () {
_root.held = false;
};
onRollOut = function () {
_root.held = false;
};
}
}
movieClip 4351 {
frame 1 {
if (_root.character == 5 or _root.character == 6) {
gotoAndStop(_root.costume + 31);
} else {
gotoAndStop(_root.costume + 1);
}
}
}
movieClip 4364 {
frame 1 {
if (_root.character == 5 or _root.character == 6) {
gotoAndStop(_root.character + 31);
} else {
gotoAndStop(_root.character + 1);
}
}
}
movieClip 4370 {
frame 1 {
if (_root.character == 5 or _root.character == 6) {
gotoAndStop(_root.costume + 31);
} else {
gotoAndStop(_root.costume + 1);
}
}
}
movieClip 4376 {
frame 1 {
if (_root.character == 5 or _root.character == 6) {
gotoAndStop(_root.character + 31);
} else {
gotoAndStop(_root.character + 1);
}
}
}
movieClip 4383 {
frame 1 {
gotoAndStop(_root.costume + 1);
}
}
movieClip 4389 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 4403 {
frame 1 {
if (_root.character == 5 or _root.character == 6) {
gotoAndStop(_root.costume + 31);
} else {
gotoAndStop(_root.costume + 1);
}
}
}
movieClip 4418 {
frame 1 {
if (_root.character == 5 or _root.character == 6) {
gotoAndStop(_root.character + 31);
} else {
gotoAndStop(_root.character + 1);
}
}
}
movieClip 4430 {
frame 1 {
gotoAndStop(_parent._color);
}
}
movieClip 4444 {
frame 1 {
gotoAndStop(_parent._color);
}
}
movieClip 4452 {
frame 1 {
gotoAndStop(_root.costume + 1);
}
}
movieClip 4478 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 4493 {
frame 1 {
if (_root.character == 5 or _root.character == 6) {
gotoAndStop(_root.costume + 31);
} else {
gotoAndStop(_root.costume + 1);
}
}
}
movieClip 4528 {
frame 1 {
if (_root.character == 5 or _root.character == 6) {
gotoAndStop(_root.character + 31);
} else {
gotoAndStop(_root.character + 1);
}
}
}
movieClip 4536 {
frame 1 {
gotoAndStop(_root.costume + 1);
}
}
movieClip 4542 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 4543 {
frame 1 {
gotoAndPlay(random(100) + 1);
}
frame 105 {
gotoAndStop(1);
}
}
movieClip 4544 aft3 {
frame 1 {
if (_mode == undefined) {
_mode = 0;
new_frame = 1;
_direction = 1;
_delta = 1;
pleasure_meter._visible = true;
pleasure_meter.reset();
_root.held = true;
}
this.onEnterFrame = function () {
if (_root.level_pause == false) {
new_frame += _direction * _delta;
if (new_frame > 51) {
_direction *= -1;
new_frame = 51;
}
if (new_frame < 2) {
_direction *= -1;
new_frame = 2;
}
gotoAndStop(Math.ceil(new_frame));
} else {
stop();
}
if (_root.held == true) {
pleasure_meter.hold_up();
}
};
onPress = function () {
pleasure_meter.grade_up();
if (pleasure_meter.end != true) {
_root.held = true;
}
};
onRollOver = function () {
_root.held = false;
};
onRelease = function () {
_root.held = false;
};
onReleaseOutside = function () {
_root.held = false;
};
onRollOut = function () {
_root.held = false;
};
}
}
movieClip 4546 aat3 {
frame 1 {
if (_mode == undefined) {
_mode = 0;
new_frame = 1;
_direction = 1;
_delta = 1;
pleasure_meter._visible = true;
pleasure_meter.reset();
_root.held = true;
}
this.onEnterFrame = function () {
if (_root.level_pause == false) {
new_frame += _direction * _delta;
if (new_frame > 51) {
_direction *= -1;
new_frame = 51;
}
if (new_frame < 2) {
_direction *= -1;
new_frame = 2;
}
gotoAndStop(Math.ceil(new_frame));
} else {
stop();
}
if (_root.held == true) {
pleasure_meter.hold_up();
}
};
onPress = function () {
pleasure_meter.grade_up();
if (pleasure_meter.end != true) {
_root.held = true;
}
};
onRollOver = function () {
_root.held = false;
};
onRelease = function () {
_root.held = false;
};
onReleaseOutside = function () {
_root.held = false;
};
onRollOut = function () {
_root.held = false;
};
}
}
movieClip 4547 aab3 {
frame 1 {
if (_mode == undefined) {
_mode = 0;
new_frame = 1;
_direction = 1;
_delta = 1;
pleasure_meter._visible = true;
pleasure_meter.reset();
_root.held = true;
}
this.onEnterFrame = function () {
if (_root.level_pause == false) {
new_frame += _direction * _delta;
if (new_frame > 51) {
_direction *= -1;
new_frame = 51;
}
if (new_frame < 2) {
_direction *= -1;
new_frame = 2;
}
gotoAndStop(Math.ceil(new_frame));
} else {
stop();
}
if (_root.held == true) {
pleasure_meter.hold_up();
}
};
onPress = function () {
pleasure_meter.grade_up();
if (pleasure_meter.end != true) {
_root.held = true;
}
};
onRollOver = function () {
_root.held = false;
};
onRelease = function () {
_root.held = false;
};
onReleaseOutside = function () {
_root.held = false;
};
onRollOut = function () {
_root.held = false;
};
}
}
movieClip 4548 afb3 {
frame 1 {
if (_mode == undefined) {
_mode = 0;
new_frame = 1;
_direction = 1;
_delta = 1;
pleasure_meter._visible = true;
pleasure_meter.reset();
_root.held = true;
}
this.onEnterFrame = function () {
if (_root.level_pause == false) {
new_frame += _direction * _delta;
if (new_frame > 51) {
_direction *= -1;
new_frame = 51;
}
if (new_frame < 2) {
_direction *= -1;
new_frame = 2;
}
gotoAndStop(Math.ceil(new_frame));
} else {
stop();
}
if (_root.held == true) {
pleasure_meter.hold_up();
}
};
onPress = function () {
pleasure_meter.grade_up();
if (pleasure_meter.end != true) {
_root.held = true;
}
};
onRollOver = function () {
_root.held = false;
};
onRelease = function () {
_root.held = false;
};
onReleaseOutside = function () {
_root.held = false;
};
onRollOut = function () {
_root.held = false;
};
}
}
movieClip 4549 {
frame 1 {
_alpha = 0;
}
}
movieClip 4582 {
frame 1 {
gotoAndStop(2);
}
frame 2 {
stop();
}
frame 32 {
stop();
_parent._remove();
}
}
movieClip 4583 abb4 {
frame 1 {
if (_mode == undefined) {
_mode = 0;
new_frame = 1;
_direction = 1;
_delta = 1;
pleasure_meter._visible = true;
pleasure_meter.reset();
_root.held = true;
}
this.onEnterFrame = function () {
if (_root.level_pause == false) {
new_frame += _direction * _delta;
if (new_frame > 51) {
_direction *= -1;
new_frame = 51;
}
if (new_frame < 2) {
_direction *= -1;
new_frame = 2;
}
gotoAndStop(Math.ceil(new_frame));
} else {
stop();
}
if (_root.held == true) {
pleasure_meter.hold_up();
}
};
onPress = function () {
pleasure_meter.grade_up();
if (pleasure_meter.end != true) {
_root.held = true;
}
};
onRollOver = function () {
_root.held = false;
};
onRelease = function () {
_root.held = false;
};
onReleaseOutside = function () {
_root.held = false;
};
onRollOut = function () {
_root.held = false;
};
}
}
movieClip 4584 abb3 {
frame 1 {
if (_mode == undefined) {
_mode = 0;
new_frame = 1;
_direction = 1;
_delta = 1;
pleasure_meter._visible = true;
pleasure_meter.reset();
_root.held = true;
}
this.onEnterFrame = function () {
if (_root.level_pause == false) {
new_frame += _direction * _delta;
if (new_frame > 51) {
_direction *= -1;
new_frame = 51;
}
if (new_frame < 2) {
_direction *= -1;
new_frame = 2;
}
gotoAndStop(Math.ceil(new_frame));
} else {
stop();
}
if (_root.held == true) {
pleasure_meter.hold_up();
}
};
onPress = function () {
pleasure_meter.grade_up();
if (pleasure_meter.end != true) {
_root.held = true;
}
};
onRollOver = function () {
_root.held = false;
};
onRelease = function () {
_root.held = false;
};
onReleaseOutside = function () {
_root.held = false;
};
onRollOut = function () {
_root.held = false;
};
}
}
movieClip 4592 {
frame 1 {
gotoAndStop(_root.costume + 1);
}
}
movieClip 4601 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 4607 {
frame 1 {
gotoAndStop(_root.costume + 1);
}
}
movieClip 4613 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 4621 {
frame 1 {
gotoAndStop(_root.costume + 1);
}
}
movieClip 4630 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 4635 {
frame 1 {
gotoAndStop(_root.costume + 1);
}
}
movieClip 4642 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 4646 {
frame 1 {
if (_root.strippedTop != true) {
gotoAndStop(_root.costume + 1);
} else {
gotoAndStop(_root.costume + 31);
}
}
}
movieClip 4674 {
frame 1 {
if (_root.hideNipples != true) {
gotoAndStop(_root.character + 1);
} else {
gotoAndStop('hide');
}
}
}
movieClip 4681 {
frame 1 {
if (_root.strippedBot != true) {
gotoAndStop(_root.costume + 1);
} else {
gotoAndStop(_root.costume + 31);
}
}
}
movieClip 4689 {
frame 1 {
gotoAndStop(_root.costume + 1);
}
}
movieClip 4695 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 4696 asb4 {
frame 1 {
if (_mode == undefined) {
_mode = 0;
new_frame = 1;
_direction = 1;
_delta = 1;
pleasure_meter._visible = true;
pleasure_meter.reset();
_root.held = true;
}
this.onEnterFrame = function () {
if (_root.level_pause == false) {
new_frame += _direction * _delta;
if (new_frame > 51) {
_direction *= -1;
new_frame = 51;
}
if (new_frame < 2) {
_direction *= -1;
new_frame = 2;
}
gotoAndStop(Math.ceil(new_frame));
} else {
stop();
}
if (_root.held == true) {
pleasure_meter.hold_up();
}
};
onPress = function () {
pleasure_meter.grade_up();
if (pleasure_meter.end != true) {
_root.held = true;
}
};
onRollOver = function () {
_root.held = false;
};
onRelease = function () {
_root.held = false;
};
onReleaseOutside = function () {
_root.held = false;
};
onRollOut = function () {
_root.held = false;
};
}
}
movieClip 4697 asb3 {
frame 1 {
if (_mode == undefined) {
_mode = 0;
new_frame = 1;
_direction = 1;
_delta = 1;
pleasure_meter._visible = true;
pleasure_meter.reset();
_root.held = true;
}
this.onEnterFrame = function () {
if (_root.level_pause == false) {
new_frame += _direction * _delta;
if (new_frame > 51) {
_direction *= -1;
new_frame = 51;
}
if (new_frame < 2) {
_direction *= -1;
new_frame = 2;
}
gotoAndStop(Math.ceil(new_frame));
} else {
stop();
}
if (_root.held == true) {
pleasure_meter.hold_up();
}
};
onPress = function () {
pleasure_meter.grade_up();
if (pleasure_meter.end != true) {
_root.held = true;
}
};
onRollOver = function () {
_root.held = false;
};
onRelease = function () {
_root.held = false;
};
onReleaseOutside = function () {
_root.held = false;
};
onRollOut = function () {
_root.held = false;
};
}
}
movieClip 4704 {
frame 1 {
gotoAndStop(_root.costume + 1);
}
}
movieClip 4711 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 4721 {
frame 1 {
gotoAndStop(_root.costume + 1);
}
}
movieClip 4728 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 4736 {
frame 1 {
gotoAndStop(_root.costume + 1);
}
}
movieClip 4764 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 4765 abt4 {
frame 1 {
if (_mode == undefined) {
_mode = 0;
new_frame = 1;
_direction = 1;
_delta = 1;
pleasure_meter._visible = true;
pleasure_meter.reset();
_root.held = true;
}
this.onEnterFrame = function () {
if (_root.level_pause == false) {
new_frame += _direction * _delta;
if (new_frame > 51) {
_direction *= -1;
new_frame = 51;
}
if (new_frame < 2) {
_direction *= -1;
new_frame = 2;
}
gotoAndStop(Math.ceil(new_frame));
} else {
stop();
}
if (_root.held == true) {
pleasure_meter.hold_up();
}
};
onPress = function () {
pleasure_meter.grade_up();
if (pleasure_meter.end != true) {
_root.held = true;
}
};
onRollOver = function () {
_root.held = false;
};
onRelease = function () {
_root.held = false;
};
onReleaseOutside = function () {
_root.held = false;
};
onRollOut = function () {
_root.held = false;
};
}
}
movieClip 4766 abt3 {
frame 1 {
if (_mode == undefined) {
_mode = 0;
new_frame = 1;
_direction = 1;
_delta = 1;
pleasure_meter._visible = true;
pleasure_meter.reset();
_root.held = true;
}
this.onEnterFrame = function () {
if (_root.level_pause == false) {
new_frame += _direction * _delta;
if (new_frame > 51) {
_direction *= -1;
new_frame = 51;
}
if (new_frame < 2) {
_direction *= -1;
new_frame = 2;
}
gotoAndStop(Math.ceil(new_frame));
} else {
stop();
}
if (_root.held == true) {
pleasure_meter.hold_up();
}
};
onPress = function () {
pleasure_meter.grade_up();
if (pleasure_meter.end != true) {
_root.held = true;
}
};
onRollOver = function () {
_root.held = false;
};
onRelease = function () {
_root.held = false;
};
onReleaseOutside = function () {
_root.held = false;
};
onRollOut = function () {
_root.held = false;
};
}
}
movieClip 4767 ast4 {
frame 1 {
if (_mode == undefined) {
_mode = 0;
new_frame = 1;
_direction = 1;
_delta = 1;
pleasure_meter._visible = true;
pleasure_meter.reset();
_root.held = true;
}
this.onEnterFrame = function () {
if (_root.level_pause == false) {
new_frame += _direction * _delta;
if (new_frame > 51) {
_direction *= -1;
new_frame = 51;
}
if (new_frame < 2) {
_direction *= -1;
new_frame = 2;
}
gotoAndStop(Math.ceil(new_frame));
} else {
stop();
}
if (_root.held == true) {
pleasure_meter.hold_up();
}
};
onPress = function () {
pleasure_meter.grade_up();
if (pleasure_meter.end != true) {
_root.held = true;
}
};
onRollOver = function () {
_root.held = false;
};
onRelease = function () {
_root.held = false;
};
onReleaseOutside = function () {
_root.held = false;
};
onRollOut = function () {
_root.held = false;
};
}
}
movieClip 4768 ast3 {
frame 1 {
if (_mode == undefined) {
_mode = 0;
new_frame = 1;
_direction = 1;
_delta = 1;
pleasure_meter._visible = true;
pleasure_meter.reset();
_root.held = true;
}
this.onEnterFrame = function () {
if (_root.level_pause == false) {
new_frame += _direction * _delta;
if (new_frame > 51) {
_direction *= -1;
new_frame = 51;
}
if (new_frame < 2) {
_direction *= -1;
new_frame = 2;
}
gotoAndStop(Math.ceil(new_frame));
} else {
stop();
}
if (_root.held == true) {
pleasure_meter.hold_up();
}
};
onPress = function () {
pleasure_meter.grade_up();
if (pleasure_meter.end != true) {
_root.held = true;
}
};
onRollOver = function () {
_root.held = false;
};
onRelease = function () {
_root.held = false;
};
onReleaseOutside = function () {
_root.held = false;
};
onRollOut = function () {
_root.held = false;
};
}
}
movieClip 4776 {
frame 1 {
gotoAndStop(_root.costume + 1);
}
}
movieClip 4804 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 4805 abt2 {
frame 1 {
if (_mode == undefined) {
_mode = 0;
new_frame = 1;
_direction = 1;
_delta = 1;
pleasure_meter._visible = true;
pleasure_meter.reset();
_root.held = true;
}
this.onEnterFrame = function () {
if (_root.level_pause == false) {
new_frame += _direction * _delta;
if (new_frame > 51) {
_direction *= -1;
new_frame = 51;
}
if (new_frame < 2) {
_direction *= -1;
new_frame = 2;
}
gotoAndStop(Math.ceil(new_frame));
} else {
stop();
}
if (_root.held == true) {
pleasure_meter.hold_up();
}
};
onPress = function () {
pleasure_meter.grade_up();
if (pleasure_meter.end != true) {
_root.held = true;
}
};
onRollOver = function () {
_root.held = false;
};
onRelease = function () {
_root.held = false;
};
onReleaseOutside = function () {
_root.held = false;
};
onRollOut = function () {
_root.held = false;
};
}
}
movieClip 4806 abt0 {
frame 1 {
if (_mode == undefined) {
_mode = 0;
new_frame = 1;
_direction = 1;
_delta = 1;
pleasure_meter._visible = true;
pleasure_meter.reset();
_root.held = true;
}
this.onEnterFrame = function () {
if (_root.level_pause == false) {
new_frame += _direction * _delta;
if (new_frame > 51) {
_direction *= -1;
new_frame = 51;
}
if (new_frame < 2) {
_direction *= -1;
new_frame = 2;
}
gotoAndStop(Math.ceil(new_frame));
} else {
stop();
}
if (_root.held == true) {
pleasure_meter.hold_up();
}
};
onPress = function () {
pleasure_meter.grade_up();
if (pleasure_meter.end != true) {
_root.held = true;
}
};
onRollOver = function () {
_root.held = false;
};
onRelease = function () {
_root.held = false;
};
onReleaseOutside = function () {
_root.held = false;
};
onRollOut = function () {
_root.held = false;
};
}
}
movieClip 4807 abt1 {
frame 1 {
if (_mode == undefined) {
_mode = 0;
new_frame = 1;
_direction = 1;
_delta = 1;
pleasure_meter._visible = true;
pleasure_meter.reset();
_root.held = true;
}
this.onEnterFrame = function () {
if (_root.level_pause == false) {
new_frame += _direction * _delta;
if (new_frame > 51) {
_direction *= -1;
new_frame = 51;
}
if (new_frame < 2) {
_direction *= -1;
new_frame = 2;
}
gotoAndStop(Math.ceil(new_frame));
} else {
stop();
}
if (_root.held == true) {
pleasure_meter.hold_up();
}
};
onPress = function () {
pleasure_meter.grade_up();
if (pleasure_meter.end != true) {
_root.held = true;
}
};
onRollOver = function () {
_root.held = false;
};
onRelease = function () {
_root.held = false;
};
onReleaseOutside = function () {
_root.held = false;
};
onRollOut = function () {
_root.held = false;
};
}
}
movieClip 4808 abb2 {
frame 1 {
if (_mode == undefined) {
_mode = 0;
new_frame = 1;
_direction = 1;
_delta = 1;
pleasure_meter._visible = true;
pleasure_meter.reset();
_root.held = true;
}
this.onEnterFrame = function () {
if (_root.level_pause == false) {
new_frame += _direction * _delta;
if (new_frame > 51) {
_direction *= -1;
new_frame = 51;
}
if (new_frame < 2) {
_direction *= -1;
new_frame = 2;
}
gotoAndStop(Math.ceil(new_frame));
} else {
stop();
}
if (_root.held == true) {
pleasure_meter.hold_up();
}
};
onPress = function () {
pleasure_meter.grade_up();
if (pleasure_meter.end != true) {
_root.held = true;
}
};
onRollOver = function () {
_root.held = false;
};
onRelease = function () {
_root.held = false;
};
onReleaseOutside = function () {
_root.held = false;
};
onRollOut = function () {
_root.held = false;
};
}
}
movieClip 4809 abb1 {
frame 1 {
if (_mode == undefined) {
_mode = 0;
new_frame = 1;
_direction = 1;
_delta = 1;
pleasure_meter._visible = true;
pleasure_meter.reset();
_root.held = true;
}
this.onEnterFrame = function () {
if (_root.level_pause == false) {
new_frame += _direction * _delta;
if (new_frame > 51) {
_direction *= -1;
new_frame = 51;
}
if (new_frame < 2) {
_direction *= -1;
new_frame = 2;
}
gotoAndStop(Math.ceil(new_frame));
} else {
stop();
}
if (_root.held == true) {
pleasure_meter.hold_up();
}
};
onPress = function () {
pleasure_meter.grade_up();
if (pleasure_meter.end != true) {
_root.held = true;
}
};
onRollOver = function () {
_root.held = false;
};
onRelease = function () {
_root.held = false;
};
onReleaseOutside = function () {
_root.held = false;
};
onRollOut = function () {
_root.held = false;
};
}
}
movieClip 4817 {
frame 1 {
gotoAndStop(_root.costume + 1);
}
}
movieClip 4824 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 4832 {
frame 1 {
gotoAndStop(_root.costume + 1);
}
}
movieClip 4839 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 4840 aat2 {
frame 1 {
if (_mode == undefined) {
_mode = 0;
new_frame = 1;
_direction = 1;
_delta = 1;
pleasure_meter._visible = true;
pleasure_meter.reset();
_root.held = true;
}
this.onEnterFrame = function () {
if (_root.level_pause == false) {
new_frame += _direction * _delta;
if (new_frame > 51) {
_direction *= -1;
new_frame = 51;
}
if (new_frame < 2) {
_direction *= -1;
new_frame = 2;
}
gotoAndStop(Math.ceil(new_frame));
} else {
stop();
}
if (_root.held == true) {
pleasure_meter.hold_up();
}
};
onPress = function () {
pleasure_meter.grade_up();
if (pleasure_meter.end != true) {
_root.held = true;
}
};
onRollOver = function () {
_root.held = false;
};
onRelease = function () {
_root.held = false;
};
onReleaseOutside = function () {
_root.held = false;
};
onRollOut = function () {
_root.held = false;
};
}
}
movieClip 4841 aat1 {
frame 1 {
if (_mode == undefined) {
_mode = 0;
new_frame = 1;
_direction = 1;
_delta = 1;
pleasure_meter._visible = true;
pleasure_meter.reset();
_root.held = true;
}
this.onEnterFrame = function () {
if (_root.level_pause == false) {
new_frame += _direction * _delta;
if (new_frame > 51) {
_direction *= -1;
new_frame = 51;
}
if (new_frame < 2) {
_direction *= -1;
new_frame = 2;
}
gotoAndStop(Math.ceil(new_frame));
} else {
stop();
}
if (_root.held == true) {
pleasure_meter.hold_up();
}
};
onPress = function () {
pleasure_meter.grade_up();
if (pleasure_meter.end != true) {
_root.held = true;
}
};
onRollOver = function () {
_root.held = false;
};
onRelease = function () {
_root.held = false;
};
onReleaseOutside = function () {
_root.held = false;
};
onRollOut = function () {
_root.held = false;
};
}
}
movieClip 4842 aat0 {
frame 1 {
if (_mode == undefined) {
_mode = 0;
new_frame = 1;
_direction = 1;
_delta = 1;
pleasure_meter._visible = true;
pleasure_meter.reset();
_root.held = true;
}
this.onEnterFrame = function () {
if (_root.level_pause == false) {
new_frame += _direction * _delta;
if (new_frame > 51) {
_direction *= -1;
new_frame = 51;
}
if (new_frame < 2) {
_direction *= -1;
new_frame = 2;
}
gotoAndStop(Math.ceil(new_frame));
} else {
stop();
}
if (_root.held == true) {
pleasure_meter.hold_up();
}
};
onPress = function () {
pleasure_meter.grade_up();
if (pleasure_meter.end != true) {
_root.held = true;
}
};
onRollOver = function () {
_root.held = false;
};
onRelease = function () {
_root.held = false;
};
onReleaseOutside = function () {
_root.held = false;
};
onRollOut = function () {
_root.held = false;
};
}
}
movieClip 4843 aft2 {
frame 1 {
if (_mode == undefined) {
_mode = 0;
new_frame = 1;
_direction = 1;
_delta = 1;
pleasure_meter._visible = true;
pleasure_meter.reset();
_root.held = true;
}
this.onEnterFrame = function () {
if (_root.level_pause == false) {
new_frame += _direction * _delta;
if (new_frame > 51) {
_direction *= -1;
new_frame = 51;
}
if (new_frame < 2) {
_direction *= -1;
new_frame = 2;
}
gotoAndStop(Math.ceil(new_frame));
} else {
stop();
}
if (_root.held == true) {
pleasure_meter.hold_up();
}
};
onPress = function () {
pleasure_meter.grade_up();
if (pleasure_meter.end != true) {
_root.held = true;
}
};
onRollOver = function () {
_root.held = false;
};
onRelease = function () {
_root.held = false;
};
onReleaseOutside = function () {
_root.held = false;
};
onRollOut = function () {
_root.held = false;
};
}
}
movieClip 4844 aft1 {
frame 1 {
if (_mode == undefined) {
_mode = 0;
new_frame = 1;
_direction = 1;
_delta = 1;
pleasure_meter._visible = true;
pleasure_meter.reset();
_root.held = true;
}
this.onEnterFrame = function () {
if (_root.level_pause == false) {
new_frame += _direction * _delta;
if (new_frame > 51) {
_direction *= -1;
new_frame = 51;
}
if (new_frame < 2) {
_direction *= -1;
new_frame = 2;
}
gotoAndStop(Math.ceil(new_frame));
} else {
stop();
}
if (_root.held == true) {
pleasure_meter.hold_up();
}
};
onPress = function () {
pleasure_meter.grade_up();
if (pleasure_meter.end != true) {
_root.held = true;
}
};
onRollOver = function () {
_root.held = false;
};
onRelease = function () {
_root.held = false;
};
onReleaseOutside = function () {
_root.held = false;
};
onRollOut = function () {
_root.held = false;
};
}
}
movieClip 4845 ast2 {
frame 1 {
if (_mode == undefined) {
_mode = 0;
new_frame = 1;
_direction = 1;
_delta = 1;
pleasure_meter._visible = true;
pleasure_meter.reset();
_root.held = true;
}
this.onEnterFrame = function () {
if (_root.level_pause == false) {
new_frame += _direction * _delta;
if (new_frame > 51) {
_direction *= -1;
new_frame = 51;
}
if (new_frame < 2) {
_direction *= -1;
new_frame = 2;
}
gotoAndStop(Math.ceil(new_frame));
} else {
stop();
}
if (_root.held == true) {
pleasure_meter.hold_up();
}
};
onPress = function () {
pleasure_meter.grade_up();
if (pleasure_meter.end != true) {
_root.held = true;
}
};
onRollOver = function () {
_root.held = false;
};
onRelease = function () {
_root.held = false;
};
onReleaseOutside = function () {
_root.held = false;
};
onRollOut = function () {
_root.held = false;
};
}
}
movieClip 4846 ast0 {
frame 1 {
if (_mode == undefined) {
_mode = 0;
new_frame = 1;
_direction = 1;
_delta = 1;
pleasure_meter._visible = true;
pleasure_meter.reset();
_root.held = true;
}
this.onEnterFrame = function () {
if (_root.level_pause == false) {
new_frame += _direction * _delta;
if (new_frame > 51) {
_direction *= -1;
new_frame = 51;
}
if (new_frame < 2) {
_direction *= -1;
new_frame = 2;
}
gotoAndStop(Math.ceil(new_frame));
} else {
stop();
}
btn.onMouseDown = function () {
pleasure_meter.hold_up();
};
if (_root.held == true) {
pleasure_meter.hold_up();
}
};
onPress = function () {
pleasure_meter.grade_up();
if (pleasure_meter.end != true) {
_root.held = true;
}
};
onRollOver = function () {
_root.held = false;
};
onRelease = function () {
_root.held = false;
};
onReleaseOutside = function () {
_root.held = false;
};
onRollOut = function () {
_root.held = false;
};
}
}
movieClip 4847 aab0 {
frame 1 {
if (_mode == undefined) {
_mode = 0;
new_frame = 1;
_direction = 1;
_delta = 1;
pleasure_meter._visible = true;
pleasure_meter.reset();
_root.held = true;
}
this.onEnterFrame = function () {
if (_root.level_pause == false) {
new_frame += _direction * _delta;
if (new_frame > 51) {
_direction *= -1;
new_frame = 51;
}
if (new_frame < 2) {
_direction *= -1;
new_frame = 2;
}
gotoAndStop(Math.ceil(new_frame));
} else {
stop();
}
if (_root.held == true) {
pleasure_meter.hold_up();
}
};
onPress = function () {
pleasure_meter.grade_up();
if (pleasure_meter.end != true) {
_root.held = true;
}
};
onRollOver = function () {
_root.held = false;
};
onRelease = function () {
_root.held = false;
};
onReleaseOutside = function () {
_root.held = false;
};
onRollOut = function () {
_root.held = false;
};
}
}
movieClip 4848 ast1 {
frame 1 {
if (_mode == undefined) {
_mode = 0;
new_frame = 1;
_direction = 1;
_delta = 1;
pleasure_meter._visible = true;
pleasure_meter.reset();
_root.held = true;
}
this.onEnterFrame = function () {
if (_root.level_pause == false) {
new_frame += _direction * _delta;
if (new_frame > 51) {
_direction *= -1;
new_frame = 51;
}
if (new_frame < 2) {
_direction *= -1;
new_frame = 2;
}
gotoAndStop(Math.ceil(new_frame));
} else {
stop();
}
btn.onMouseDown = function () {
pleasure_meter.hold_up();
};
if (_root.held == true) {
pleasure_meter.hold_up();
}
};
onPress = function () {
pleasure_meter.grade_up();
if (pleasure_meter.end != true) {
_root.held = true;
}
};
onRollOver = function () {
_root.held = false;
};
onRelease = function () {
_root.held = false;
};
onReleaseOutside = function () {
_root.held = false;
};
onRollOut = function () {
_root.held = false;
};
}
}
movieClip 4849 asb0 {
frame 1 {
if (_mode == undefined) {
_mode = 0;
new_frame = 1;
_direction = 1;
_delta = 1;
pleasure_meter._visible = true;
pleasure_meter.reset();
_root.held = true;
}
this.onEnterFrame = function () {
if (_root.level_pause == false) {
new_frame += _direction * _delta;
if (new_frame > 51) {
_direction *= -1;
new_frame = 51;
}
if (new_frame < 2) {
_direction *= -1;
new_frame = 2;
}
gotoAndStop(Math.ceil(new_frame));
} else {
stop();
}
btn.onMouseDown = function () {
pleasure_meter.hold_up();
};
if (_root.held == true) {
pleasure_meter.hold_up();
}
};
onPress = function () {
pleasure_meter.grade_up();
if (pleasure_meter.end != true) {
_root.held = true;
}
};
onRollOver = function () {
_root.held = false;
};
onRelease = function () {
_root.held = false;
};
onReleaseOutside = function () {
_root.held = false;
};
onRollOut = function () {
_root.held = false;
};
}
}
movieClip 4850 asb2 {
frame 1 {
if (_mode == undefined) {
_mode = 0;
new_frame = 1;
_direction = 1;
_delta = 1;
pleasure_meter._visible = true;
pleasure_meter.reset();
_root.held = true;
}
this.onEnterFrame = function () {
if (_root.level_pause == false) {
new_frame += _direction * _delta;
if (new_frame > 51) {
_direction *= -1;
new_frame = 51;
}
if (new_frame < 2) {
_direction *= -1;
new_frame = 2;
}
gotoAndStop(Math.ceil(new_frame));
} else {
stop();
}
if (_root.held == true) {
pleasure_meter.hold_up();
}
};
onPress = function () {
pleasure_meter.grade_up();
if (pleasure_meter.end != true) {
_root.held = true;
}
};
onRollOver = function () {
_root.held = false;
};
onRelease = function () {
_root.held = false;
};
onReleaseOutside = function () {
_root.held = false;
};
onRollOut = function () {
_root.held = false;
};
}
}
movieClip 4858 {
frame 1 {
gotoAndStop(_root.costume + 1);
}
}
movieClip 4866 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 4867 asb1 {
frame 1 {
if (_mode == undefined) {
_mode = 0;
new_frame = 1;
_direction = 1;
_delta = 1;
pleasure_meter._visible = true;
pleasure_meter.reset();
_root.held = true;
}
this.onEnterFrame = function () {
if (_root.level_pause == false) {
new_frame += _direction * _delta;
if (new_frame > 51) {
_direction *= -1;
new_frame = 51;
}
if (new_frame < 2) {
_direction *= -1;
new_frame = 2;
}
gotoAndStop(Math.ceil(new_frame));
} else {
stop();
}
btn.onMouseDown = function () {
pleasure_meter.hold_up();
};
if (_root.held == true) {
pleasure_meter.hold_up();
}
};
onPress = function () {
pleasure_meter.grade_up();
if (pleasure_meter.end != true) {
_root.held = true;
}
};
onRollOver = function () {
_root.held = false;
};
onRelease = function () {
_root.held = false;
};
onReleaseOutside = function () {
_root.held = false;
};
onRollOut = function () {
_root.held = false;
};
}
}
movieClip 4871 as0 {
frame 1 {
if (_mode == undefined) {
_mode = 0;
new_frame = 1;
_direction = 1;
_delta = 1;
pleasure_meter._visible = true;
pleasure_meter.reset();
_root.held = true;
}
this.onEnterFrame = function () {
if (_root.level_pause == false) {
new_frame += _direction * _delta;
if (new_frame > 51) {
_direction *= -1;
new_frame = 51;
}
if (new_frame < 2) {
_direction *= -1;
new_frame = 2;
}
gotoAndStop(Math.ceil(new_frame));
} else {
stop();
}
if (_root.held == true) {
pleasure_meter.hold_up();
}
};
onPress = function () {
pleasure_meter.grade_up();
if (pleasure_meter.end != true) {
_root.held = true;
}
};
onRollOver = function () {
_root.held = false;
};
onRelease = function () {
_root.held = false;
};
onReleaseOutside = function () {
_root.held = false;
};
onRollOut = function () {
_root.held = false;
};
}
}
movieClip 4873 ab0 {
frame 1 {
if (_mode == undefined) {
_mode = 0;
new_frame = 1;
_direction = 1;
_delta = 1;
pleasure_meter._visible = true;
pleasure_meter.reset();
_root.held = true;
}
this.onEnterFrame = function () {
if (_root.level_pause == false) {
new_frame += _direction * _delta;
if (new_frame > 51) {
_direction *= -1;
new_frame = 51;
}
if (new_frame < 2) {
_direction *= -1;
new_frame = 2;
}
gotoAndStop(Math.ceil(new_frame));
} else {
stop();
}
if (_root.held == true) {
pleasure_meter.hold_up();
}
};
onPress = function () {
pleasure_meter.grade_up();
if (pleasure_meter.end != true) {
_root.held = true;
}
};
onRollOver = function () {
_root.held = false;
};
onRelease = function () {
_root.held = false;
};
onReleaseOutside = function () {
_root.held = false;
};
onRollOut = function () {
_root.held = false;
};
}
}
movieClip 4874 aa0 {
frame 1 {
if (_mode == undefined) {
_mode = 0;
new_frame = 1;
_direction = 1;
_delta = 1;
pleasure_meter._visible = true;
pleasure_meter.reset();
_root.held = true;
}
this.onEnterFrame = function () {
if (_root.level_pause == false) {
new_frame += _direction * _delta;
if (new_frame > 51) {
_direction *= -1;
new_frame = 51;
}
if (new_frame < 2) {
_direction *= -1;
new_frame = 2;
}
gotoAndStop(Math.ceil(new_frame));
} else {
stop();
}
if (_root.held == true) {
pleasure_meter.hold_up();
}
};
onPress = function () {
pleasure_meter.grade_up();
if (pleasure_meter.end != true) {
_root.held = true;
}
};
onRollOver = function () {
_root.held = false;
};
onRelease = function () {
_root.held = false;
};
onReleaseOutside = function () {
_root.held = false;
};
onRollOut = function () {
_root.held = false;
};
}
}
movieClip 4875 abb0 {
frame 1 {
if (_mode == undefined) {
_mode = 0;
new_frame = 1;
_direction = 1;
_delta = 1;
pleasure_meter._visible = true;
pleasure_meter.reset();
_root.held = true;
}
this.onEnterFrame = function () {
if (_root.level_pause == false) {
new_frame += _direction * _delta;
if (new_frame > 51) {
_direction *= -1;
new_frame = 51;
}
if (new_frame < 2) {
_direction *= -1;
new_frame = 2;
}
gotoAndStop(Math.ceil(new_frame));
} else {
stop();
}
btn.onMouseDown = function () {
pleasure_meter.hold_up();
};
if (_root.held == true) {
pleasure_meter.hold_up();
}
};
onPress = function () {
pleasure_meter.grade_up();
if (pleasure_meter.end != true) {
_root.held = true;
}
};
onRollOver = function () {
_root.held = false;
};
onRelease = function () {
_root.held = false;
};
onReleaseOutside = function () {
_root.held = false;
};
onRollOut = function () {
_root.held = false;
};
}
}
frame 1 {
_root.BGM.stop();
_root.BGMplaying = 1;
_root.BGMmute = false;
_root.BGMmax = 6;
_root.BGMvol = 0;
_root.BGMmax = 25;
_root.musicForced = false;
BGM = new Sound(this);
}
frame 1 {
_root.clothesHack = false;
_root.devHack = false;
}
movieClip 4877 {
frame 1 {
gotoAndStop(2);
}
}
instance of movieClip 4877 {
onClipEvent (enterFrame) {
if (_root.level_pause == true) {
if (_root.BGMmax >= 15) {
_root.BGMmax = 15;
}
} else {
if (_root.BGMmax != 50) {
_root.BGMmax = 50;
}
}
if (_root.BGMmute != true) {
if (_root.BGMvol < _root.BGMmax) {
_root.BGMvol = Math.round(_root.BGMvol * 1.1 + 1);
_root.BGM.setVolume(_root.BGMvol);
} else {
if (_root.BGMvol > _root.BGMmax) {
_root.BGMvol = Math.round(_root.BGMvol * 0.9 - 1);
_root.BGM.setVolume(_root.BGMvol);
}
}
} else {
_root.BGMvol = 0;
_root.BGM.setVolume(0);
}
}
}
frame 2 {
function saveGame() {
saveState.data.saved = true;
var v2 = new Date();
if (v2.getMinutes < 10) {
var v4 = v2.getHours() + ':0' + v2.getMinutes();
} else {
var v4 = v2.getHours() + ':' + v2.getMinutes();
}
var v3 = v4 + ' - ' + v2.getDate() + '/' + v2.getMonth() + '/' + v2.getFullYear();
saveState.data.savedate = v3;
loadSaved();
saveState.data.character = _root.character;
saveState.data.costume = _root.costume;
saveState.data.level = _root.level;
saveState.data.controlsScheme = _root.controlsScheme;
saveState.data._score = _root._score;
saveState.data.skillPoints = _root.skillPoints;
saveState.data.xpLevel = _root.xpLevel;
saveState.data.xp = _root.xp;
saveState.data.energySmax = _root.energySmax;
saveState.data.energyFmax = _root.energyFmax;
saveState.data.energyAmax = _root.energyAmax;
saveState.data.StatsServed = _root.StatsServed;
saveState.data.StatsExcellent = _root.StatsExcellent;
saveState.data.StatsMissed = _root.StatsMissed;
saveState.data.StatsCashEarned = _root.StatsCashEarned;
saveState.data.StatsPlayTime = _root.StatsPlayTime;
saveState.data.skillB1 = _root.skillB1;
saveState.data.skillB2 = _root.skillB2;
saveState.data.skillB3 = _root.skillB3;
saveState.data.skillB4 = _root.skillB4;
saveState.data.skillB5 = _root.skillB5;
saveState.data.skillS1 = _root.skillS1;
saveState.data.skillS2 = _root.skillS2;
saveState.data.skillS3 = _root.skillS3;
saveState.data.skillS4 = _root.skillS4;
saveState.data.skillS5 = _root.skillS5;
saveState.data.skillF1 = _root.skillF1;
saveState.data.skillF2 = _root.skillF2;
saveState.data.skillF3 = _root.skillF3;
saveState.data.skillF4 = _root.skillF4;
saveState.data.skillA1 = _root.skillA1;
saveState.data.skillA2 = _root.skillA2;
saveState.data.skillA3 = _root.skillA3;
saveState.data.skillA4 = _root.skillA4;
saveState.data.skillFin1 = _root.skillFin1;
saveState.data.skillFin2 = _root.skillFin2;
saveState.data.skillFin3 = _root.skillFin3;
saveState.data.skillSta1 = _root.skillSta1;
saveState.data.skillSta2 = _root.skillSta2;
saveState.data.skillSta3 = _root.skillSta3;
saveState.data.skillAll1 = _root.skillAll1;
saveState.data.skillAll2 = _root.skillAll2;
saveState.data.skillAll3 = _root.skillAll3;
saveState.data.skillLib1 = _root.skillLib1;
saveState.data.skillLib2 = _root.skillLib2;
saveState.data.skillLib3 = _root.skillLib3;
saveState.data.character01unlocked = _root.character01unlocked;
saveState.data.character02unlocked = _root.character02unlocked;
saveState.data.character03unlocked = _root.character03unlocked;
saveState.data.character04unlocked = _root.character04unlocked;
saveState.data.character05unlocked = _root.character05unlocked;
saveState.data.character06unlocked = _root.character06unlocked;
saveState.data.character07unlocked = _root.character07unlocked;
saveState.data.costume01unlocked = _root.costume01unlocked;
saveState.data.costume02unlocked = _root.costume02unlocked;
saveState.data.costume03unlocked = _root.costume03unlocked;
saveState.data.costume04unlocked = _root.costume04unlocked;
saveState.data.costume05unlocked = _root.costume05unlocked;
saveState.data.costume06unlocked = _root.costume06unlocked;
saveState.data.costume07unlocked = _root.costume07unlocked;
saveState.data.costume08unlocked = _root.costume08unlocked;
saveState.data.costume23unlocked = _root.costume23unlocked;
saveState.data.costume24unlocked = _root.costume24unlocked;
saveState.data.costume25unlocked = _root.costume25unlocked;
saveState.data.costume26unlocked = _root.costume26unlocked;
saveState.data.costume27unlocked = _root.costume27unlocked;
saveState.data.costume28unlocked = _root.costume28unlocked;
saveState.data.costume29unlocked = _root.costume29unlocked;
saveState.data.strippedHairUnlocked = _root.strippedHairUnlocked;
saveState.data.strippedFaceUnlocked = _root.strippedFaceUnlocked;
saveState.data.strippedMaskUnlocked = _root.strippedMaskUnlocked;
saveState.data.strippedTopUnlocked = _root.strippedTopUnlocked;
saveState.data.strippedBotUnlocked = _root.strippedBotUnlocked;
saveState.data.strippedFullUnlocked = _root.strippedFullUnlocked;
saveState.data.jutsu = _root.jutsu;
saveState.data.endless = _root.endless;
saveState.data.cheatRegular = _root.cheatRegular;
saveState.data.cheatEnergy = _root.cheatEnergy;
saveState.data.rainbow = _root.rainbow;
saveState.data.jutsuUnlocked = _root.jutsuUnlocked;
saveState.data.endlessUnlocked = _root.endlessUnlocked;
saveState.data.cheatRegularUnlocked = _root.cheatRegularUnlocked;
saveState.data.cheatEnergyUnlocked = _root.cheatEnergyUnlocked;
saveState.data.rainbowAllUnlocked = _root.rainbowAllUnlocked;
saveState.data.rainbowHeadUnlocked = _root.rainbowHeadUnlocked;
saveState.data.rainbowBodyUnlocked = _root.rainbowBodyUnlocked;
saveState.data.rainbowSquadUnlocked = _root.rainbowSquadUnlocked;
saveState.data.music01Unlocked = _root.music01Unlocked;
saveState.data.music02Unlocked = _root.music02Unlocked;
saveState.data.music03Unlocked = _root.music03Unlocked;
saveState.data.music04Unlocked = _root.music04Unlocked;
saveState.data.music05Unlocked = _root.music05Unlocked;
saveState.data.music06Unlocked = _root.music06Unlocked;
saveState.data.music07Unlocked = _root.music07Unlocked;
saveState.data.mapSlumsUnlocked = _root.mapSlumsUnlocked;
saveState.data.mapSlumsRep = _root.mapSlumsRep;
saveState.data.mapSlumsHoles = _root.mapSlumsHoles;
saveState.data.mapSlumsHoleTapeUnlocked = _root.mapSlumsHoleTapeUnlocked;
saveState.data.mapSlumsHoleGelUnlocked = _root.mapSlumsHoleGelUnlocked;
saveState.data.mapCsecUnlocked = _root.mapCsecUnlocked;
saveState.data.mapCsecRep = _root.mapCsecRep;
saveState.data.mapCsecHoles = _root.mapCsecHoles;
saveState.data.mapCsecHoleTapeUnlocked = _root.mapCsecHoleTapeUnlocked;
saveState.data.mapCsecHoleGelUnlocked = _root.mapCsecHoleGelUnlocked;
saveState.data.mapConsortUnlocked = _root.mapConsortUnlocked;
saveState.data.mapConsortRep = _root.mapConsortRep;
saveState.data.mapConsortHoles = _root.mapConsortHoles;
saveState.data.mapConsortHoleTapeUnlocked = _root.mapConsortHoleTapeUnlocked;
saveState.data.mapConsortHoleGelUnlocked = _root.mapConsortHoleGelUnlocked;
saveState.data.mapFluxUnlocked = _root.mapFluxUnlocked;
saveState.data.mapFluxRep = _root.mapFluxRep;
saveState.data.mapFluxHoles = _root.mapFluxHoles;
saveState.data.mapFluxHoleTapeUnlocked = _root.mapFluxHoleTapeUnlocked;
saveState.data.mapFluxHoleGelUnlocked = _root.mapFluxHoleGelUnlocked;
saveState.data.mapBloodUnlocked = _root.mapBloodUnlocked;
saveState.data.mapBloodRep = _root.mapBloodRep;
saveState.data.mapCerberusUnlocked = _root.mapCerberusUnlocked;
saveState.data.mapCerberusRep = _root.mapCerberusRep;
saveState.data.mapCouncilUnlocked = _root.mapCouncilUnlocked;
saveState.data.mapCouncilRep = _root.mapCouncilRep;
savefile.flush();
}
function loadSaved() {
_root.loadedvar = saveState.data.saved;
_root.savedate = saveState.data.savedate;
}
function loadCharacter() {
_root.character = saveState.data.character;
_root.costume = saveState.data.costume;
_root.checkCostume();
}
function loadGame() {
_root.loadedvar = saveState.data.varr;
_root.savedate = saveState.data.savedate;
_root.character = saveState.data.character;
_root.costume = saveState.data.costume;
_root.checkCostume();
_root.level = saveState.data.level;
_root.controlsScheme = saveState.data.controlsScheme;
_root._score = saveState.data._score;
_root.skillPoints = saveState.data.skillPoints;
_root.xpLevel = saveState.data.xpLevel;
_root.xp = saveState.data.xp;
_root.energySmax = saveState.data.energySmax;
_root.energyFmax = saveState.data.energyFmax;
_root.energyAmax = saveState.data.energyAmax;
_root.StatsServed = saveState.data.StatsServed;
_root.StatsExcellent = saveState.data.StatsExcellent;
_root.StatsMissed = saveState.data.StatsMissed;
_root.StatsCashEarned = saveState.data.StatsCashEarned;
_root.StatsPlayTime = saveState.data.StatsPlayTime;
_root.skillB1 = saveState.data.skillB1;
_root.skillB2 = saveState.data.skillB2;
_root.skillB3 = saveState.data.skillB3;
_root.skillB4 = saveState.data.skillB4;
_root.skillB5 = saveState.data.skillB5;
_root.skillS1 = saveState.data.skillS1;
_root.skillS2 = saveState.data.skillS2;
_root.skillS3 = saveState.data.skillS3;
_root.skillS4 = saveState.data.skillS4;
_root.skillS5 = saveState.data.skillS5;
_root.skillF1 = saveState.data.skillF1;
_root.skillF2 = saveState.data.skillF2;
_root.skillF3 = saveState.data.skillF3;
_root.skillF4 = saveState.data.skillF4;
_root.skillA1 = saveState.data.skillA1;
_root.skillA2 = saveState.data.skillA2;
_root.skillA3 = saveState.data.skillA3;
_root.skillA4 = saveState.data.skillA4;
_root.skillFin1 = saveState.data.skillFin1;
_root.skillFin2 = saveState.data.skillFin2;
_root.skillFin3 = saveState.data.skillFin3;
_root.skillSta1 = saveState.data.skillSta1;
_root.skillSta2 = saveState.data.skillSta2;
_root.skillSta3 = saveState.data.skillSta3;
_root.skillAll1 = saveState.data.skillAll1;
_root.skillAll2 = saveState.data.skillAll2;
_root.skillAll3 = saveState.data.skillAll3;
_root.skillLib1 = saveState.data.skillLib1;
_root.skillLib2 = saveState.data.skillLib2;
_root.skillLib3 = saveState.data.skillLib3;
_root.character01unlocked = saveState.data.character01unlocked;
_root.character02unlocked = saveState.data.character02unlocked;
_root.character03unlocked = saveState.data.character03unlocked;
_root.character04unlocked = saveState.data.character04unlocked;
_root.character05unlocked = saveState.data.character05unlocked;
_root.character06unlocked = saveState.data.character06unlocked;
_root.character07unlocked = saveState.data.character07unlocked;
_root.costume01unlocked = saveState.data.costume01unlocked;
_root.costume02unlocked = saveState.data.costume02unlocked;
_root.costume03unlocked = saveState.data.costume03unlocked;
_root.costume04unlocked = saveState.data.costume04unlocked;
_root.costume05unlocked = saveState.data.costume05unlocked;
_root.costume06unlocked = saveState.data.costume06unlocked;
_root.costume07unlocked = saveState.data.costume07unlocked;
_root.costume08unlocked = saveState.data.costume08unlocked;
_root.costume23unlocked = saveState.data.costume23unlocked;
_root.costume24unlocked = saveState.data.costume24unlocked;
_root.costume25unlocked = saveState.data.costume25unlocked;
_root.costume26unlocked = saveState.data.costume26unlocked;
_root.costume27unlocked = saveState.data.costume27unlocked;
_root.costume28unlocked = saveState.data.costume28unlocked;
_root.costume29unlocked = saveState.data.costume29unlocked;
_root.strippedHairUnlocked = saveState.data.strippedHairUnlocked;
_root.strippedFaceUnlocked = saveState.data.strippedFaceUnlocked;
_root.strippedMaskUnlocked = saveState.data.strippedMaskUnlocked;
_root.strippedTopUnlocked = saveState.data.strippedTopUnlocked;
_root.strippedBotUnlocked = saveState.data.strippedBotUnlocked;
_root.strippedFullUnlocked = saveState.data.strippedFullUnlocked;
_root.jutsu = saveState.data.jutsu;
_root.endless = saveState.data.endless;
_root.cheatRegular = saveState.data.cheatRegular;
_root.cheatEnergy = saveState.data.cheatEnergy;
_root.rainbow = saveState.data.rainbow;
_root.jutsuUnlocked = saveState.data.jutsuUnlocked;
_root.endlessUnlocked = saveState.data.endlessUnlocked;
_root.cheatRegularUnlocked = saveState.data.cheatRegularUnlocked;
_root.cheatEnergyUnlocked = saveState.data.cheatEnergyUnlocked;
_root.rainbowAllUnlocked = saveState.data.rainbowAllUnlocked;
_root.rainbowHeadUnlocked = saveState.data.rainbowHeadUnlocked;
_root.rainbowBodyUnlocked = saveState.data.rainbowBodyUnlocked;
_root.rainbowSquadUnlocked = saveState.data.rainbowSquadUnlocked;
_root.music01Unlocked = saveState.data.music01Unlocked;
_root.music02Unlocked = saveState.data.music02Unlocked;
_root.music03Unlocked = saveState.data.music03Unlocked;
_root.music04Unlocked = saveState.data.music04Unlocked;
_root.music05Unlocked = saveState.data.music05Unlocked;
_root.music06Unlocked = saveState.data.music06Unlocked;
_root.music07Unlocked = saveState.data.music07Unlocked;
_root.mapSlumsUnlocked = saveState.data.mapSlumsUnlocked;
_root.mapSlumsRep = saveState.data.mapSlumsRep;
_root.mapSlumsHoles = saveState.data.mapSlumsHoles;
_root.mapSlumsHoleTapeUnlocked = saveState.data.mapSlumsHoleTapeUnlocked;
_root.mapSlumsHoleGelUnlocked = saveState.data.mapSlumsHoleGelUnlocked;
_root.mapCsecUnlocked = saveState.data.mapCsecUnlocked;
_root.mapCsecRep = saveState.data.mapCsecRep;
_root.mapCsecHoles = saveState.data.mapCsecHoles;
_root.mapCsecHoleTapeUnlocked = saveState.data.mapCsecHoleTapeUnlocked;
_root.mapCsecHoleGelUnlocked = saveState.data.mapCsecHoleGelUnlocked;
_root.mapConsortUnlocked = saveState.data.mapConsortUnlocked;
_root.mapConsortRep = saveState.data.mapConsortRep;
_root.mapConsortHoles = saveState.data.mapConsortHoles;
_root.mapConsortHoleTapeUnlocked = saveState.data.mapConsortHoleTapeUnlocked;
_root.mapConsortHoleGelUnlocked = saveState.data.mapConsortHoleGelUnlocked;
_root.mapFluxUnlocked = saveState.data.mapFluxUnlocked;
_root.mapFluxRep = saveState.data.mapFluxRep;
_root.mapFluxHoles = saveState.data.mapFluxHoles;
_root.mapFluxHoleTapeUnlocked = saveState.data.mapFluxHoleTapeUnlocked;
_root.mapFluxHoleGelUnlocked = saveState.data.mapFluxHoleGelUnlocked;
_root.mapBloodUnlocked = saveState.data.mapBloodUnlocked;
_root.mapBloodRep = saveState.data.mapBloodRep;
_root.mapCerberusUnlocked = saveState.data.mapCerberusUnlocked;
_root.mapCerberusRep = saveState.data.mapCerberusRep;
_root.mapCouncilUnlocked = saveState.data.mapCouncilUnlocked;
_root.mapCouncilRep = saveState.data.mapCouncilRep;
_root.checkPlay();
}
function checkPlay() {
_root.level_pause = true;
_root.startup = true;
_root._scoreDisplay = _root._score;
_root.buyCost = 0;
_root._scoreDisplay = _root._score;
_root.xpNeeded = 2500 + 3500 * (_root.xpLevel * 0.75);
_root.canLevel = 0;
_root.StatsSessionServed = 0;
_root.StatsSessionExcellent = 0;
_root.StatsSessionMissed = 0;
_root.StatsSessionCashEarned = 0;
_root.StatsSessionPlayTime = 0;
_root.characterSaved = _root.character;
_root.costumeSaved = _root.costume;
_root.mapMaleHuman = false;
_root.mapMaleKrogan = false;
_root.mapMaleTurian = false;
_root.mapMaleVorcha = false;
_root.mapMaleVolus = false;
if (_root.cheatEnergy == true) {
_root.skillSta1 = true;
_root.skillSta2 = true;
_root.skillSta3 = true;
}
if (_root.clothesHack == true) {
if (_root.costume == 1) {
_root.hideNipples == true;
_root.hidePussy = false;
} else {
if (_root.costume == 2 or _root.costume == 5 or _root.costume == 6) {
_root.hideNipples = true;
_root.hidePussy = true;
} else {
if (_root.costume == 3 or _root.costume == 7) {
_root.hideNipples == false;
_root.hidePussy = true;
} else {
_root.hideNipples = false;
_root.hidePussy = false;
}
}
}
}
if (_root.clothesHack == true) {
_root.costume = _root.character;
}
}
function checkCostume() {
if (_root.costume == 2 or _root.costume == 5 or _root.costume == 6) {
_root.hideNipples = true;
_root.hidePussy = true;
} else {
if (_root.costume == 1) {
_root.hideNipples = true;
_root.hidePussy = false;
} else {
if (_root.costume == 3) {
_root.hideNipples = false;
_root.hidePussy = true;
} else {
_root.hideNipples = false;
_root.hidePussy = false;
}
}
}
}
saveState = SharedObject.getLocal('BHGHsave', '/');
loadSaved();
}
frame 2 {
function shuffle(src) {
res = new Array();
src_length = src.length;
q_order = new Array();
q_order = src;
i = 0;
while (i < src_length) {
r = random(q_order.length);
res.push(src[r]);
q_order.splice(r, 1);
++i;
}
return res;
}
}
movieClip 4878 af0 {
frame 1 {
if (_mode == undefined) {
_mode = 0;
new_frame = 1;
_direction = 1;
_delta = 1;
pleasure_meter._visible = true;
pleasure_meter.reset();
_root.held = true;
}
this.onEnterFrame = function () {
if (_root.level_pause == false) {
new_frame += _direction * _delta;
if (new_frame > 51) {
_direction *= -1;
new_frame = 51;
}
if (new_frame < 2) {
_direction *= -1;
new_frame = 2;
}
gotoAndStop(Math.ceil(new_frame));
} else {
stop();
}
if (_root.held == true) {
pleasure_meter.hold_up();
}
};
onPress = function () {
pleasure_meter.grade_up();
if (pleasure_meter.end != true) {
_root.held = true;
}
};
onRollOver = function () {
_root.held = false;
};
onRelease = function () {
_root.held = false;
};
onReleaseOutside = function () {
_root.held = false;
};
onRollOut = function () {
_root.held = false;
};
}
}
movieClip 4879 afb0 {
frame 1 {
if (_mode == undefined) {
_mode = 0;
new_frame = 1;
_direction = 1;
_delta = 1;
pleasure_meter._visible = true;
pleasure_meter.reset();
_root.held = true;
}
this.onEnterFrame = function () {
if (_root.level_pause == false) {
new_frame += _direction * _delta;
if (new_frame > 51) {
_direction *= -1;
new_frame = 51;
}
if (new_frame < 2) {
_direction *= -1;
new_frame = 2;
}
gotoAndStop(Math.ceil(new_frame));
} else {
stop();
}
if (_root.held == true) {
pleasure_meter.hold_up();
}
};
onPress = function () {
pleasure_meter.grade_up();
if (pleasure_meter.end != true) {
_root.held = true;
}
};
onRollOver = function () {
_root.held = false;
};
onRelease = function () {
_root.held = false;
};
onReleaseOutside = function () {
_root.held = false;
};
onRollOut = function () {
_root.held = false;
};
}
}
movieClip 4880 afb1 {
frame 1 {
if (_mode == undefined) {
_mode = 0;
new_frame = 1;
_direction = 1;
_delta = 1;
pleasure_meter._visible = true;
pleasure_meter.reset();
_root.held = true;
}
this.onEnterFrame = function () {
if (_root.level_pause == false) {
new_frame += _direction * _delta;
if (new_frame > 51) {
_direction *= -1;
new_frame = 51;
}
if (new_frame < 2) {
_direction *= -1;
new_frame = 2;
}
gotoAndStop(Math.ceil(new_frame));
} else {
stop();
}
if (_root.held == true) {
pleasure_meter.hold_up();
}
};
onPress = function () {
pleasure_meter.grade_up();
if (pleasure_meter.end != true) {
_root.held = true;
}
};
onRollOver = function () {
_root.held = false;
};
onRelease = function () {
_root.held = false;
};
onReleaseOutside = function () {
_root.held = false;
};
onRollOut = function () {
_root.held = false;
};
}
}
movieClip 4881 afb2 {
frame 1 {
if (_mode == undefined) {
_mode = 0;
new_frame = 1;
_direction = 1;
_delta = 1;
pleasure_meter._visible = true;
pleasure_meter.reset();
_root.held = true;
}
this.onEnterFrame = function () {
if (_root.level_pause == false) {
new_frame += _direction * _delta;
if (new_frame > 51) {
_direction *= -1;
new_frame = 51;
}
if (new_frame < 2) {
_direction *= -1;
new_frame = 2;
}
gotoAndStop(Math.ceil(new_frame));
} else {
stop();
}
if (_root.held == true) {
pleasure_meter.hold_up();
}
};
onPress = function () {
pleasure_meter.grade_up();
if (pleasure_meter.end != true) {
_root.held = true;
}
};
onRollOver = function () {
_root.held = false;
};
onRelease = function () {
_root.held = false;
};
onReleaseOutside = function () {
_root.held = false;
};
onRollOut = function () {
_root.held = false;
};
}
}
movieClip 4882 aab1 {
frame 1 {
if (_mode == undefined) {
_mode = 0;
new_frame = 1;
_direction = 1;
_delta = 1;
pleasure_meter._visible = true;
pleasure_meter.reset();
_root.held = true;
}
this.onEnterFrame = function () {
if (_root.level_pause == false) {
new_frame += _direction * _delta;
if (new_frame > 51) {
_direction *= -1;
new_frame = 51;
}
if (new_frame < 2) {
_direction *= -1;
new_frame = 2;
}
gotoAndStop(Math.ceil(new_frame));
} else {
stop();
}
if (_root.held == true) {
pleasure_meter.hold_up();
}
};
onPress = function () {
pleasure_meter.grade_up();
if (pleasure_meter.end != true) {
_root.held = true;
}
};
onRollOver = function () {
_root.held = false;
};
onRelease = function () {
_root.held = false;
};
onReleaseOutside = function () {
_root.held = false;
};
onRollOut = function () {
_root.held = false;
};
}
}
movieClip 4883 aab2 {
frame 1 {
if (_mode == undefined) {
_mode = 0;
new_frame = 1;
_direction = 1;
_delta = 1;
pleasure_meter._visible = true;
pleasure_meter.reset();
_root.held = true;
}
this.onEnterFrame = function () {
if (_root.level_pause == false) {
new_frame += _direction * _delta;
if (new_frame > 51) {
_direction *= -1;
new_frame = 51;
}
if (new_frame < 2) {
_direction *= -1;
new_frame = 2;
}
gotoAndStop(Math.ceil(new_frame));
} else {
stop();
}
if (_root.held == true) {
pleasure_meter.hold_up();
}
};
onPress = function () {
pleasure_meter.grade_up();
if (pleasure_meter.end != true) {
_root.held = true;
}
};
onRollOver = function () {
_root.held = false;
};
onRelease = function () {
_root.held = false;
};
onReleaseOutside = function () {
_root.held = false;
};
onRollOut = function () {
_root.held = false;
};
}
}
movieClip 4884 aft0 {
frame 1 {
if (_mode == undefined) {
_mode = 0;
new_frame = 1;
_direction = 1;
_delta = 1;
pleasure_meter._visible = true;
pleasure_meter.reset();
_root.held = true;
}
this.onEnterFrame = function () {
if (_root.level_pause == false) {
new_frame += _direction * _delta;
if (new_frame > 51) {
_direction *= -1;
new_frame = 51;
}
if (new_frame < 2) {
_direction *= -1;
new_frame = 2;
}
gotoAndStop(Math.ceil(new_frame));
} else {
stop();
}
if (_root.held == true) {
pleasure_meter.hold_up();
}
};
onPress = function () {
pleasure_meter.grade_up();
if (pleasure_meter.end != true) {
_root.held = true;
}
};
onRollOver = function () {
_root.held = false;
};
onRelease = function () {
_root.held = false;
};
onReleaseOutside = function () {
_root.held = false;
};
onRollOut = function () {
_root.held = false;
};
}
}
movieClip 4885 {
}
movieClip 4893 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 4894 {
}
movieClip 4895 {
}
movieClip 4896 a0 {
frame 1 {
}
}
movieClip 4899 {
frame 1 {
gotoAndStop(_parent._color);
}
}
movieClip 4902 {
frame 1 {
_visible = false;
}
}
movieClip 4904 {
frame 1 {
_alpha = 0;
}
}
movieClip 4913 {
frame 1 {
gotoAndPlay(2);
}
frame 16 {
stop();
}
}
movieClip 4979 {
}
movieClip 4980 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 11 {
stop();
}
frame 12 {
face.gotoAndStop(2);
}
frame 20 {
stop();
}
}
movieClip 4991 {
frame 1 {
gotoAndStop(_parent._color);
}
}
movieClip 4992 c0 {
frame 1 {
function released() {
_root.wheel = false;
if (!_parent.a0) {
_parent.rainbow();
}
_parent.attach_anim(_index, _xmode, _color, satisfaction, ejac);
_root.came = false;
_visible = false;
stop();
_parent.skills.orb.gotoAndPlay('go');
}
btn.onPress = function () {
pressed = true;
_parent.skills.pressed();
};
btn.onRelease = function () {
released();
};
btn.onReleaseOutside = function () {
released();
};
satMax = 0;
if (_root.skillAll1 == true && _root.skillAll2 == true && _root.skillAll3 == true) {
satMinus = 0.4;
satisfaction = 25;
} else {
if (_root.skillAll1 == true && _root.skillAll2 == true && _root.skillAll3 == false) {
satMinus = 0.6;
satisfaction = 20;
} else {
if (_root.skillAll1 == false && _root.skillAll2 == false && _root.skillAll3 == true) {
satMinus = 0.8;
satisfaction = 15;
} else {
satMinus = 1;
satisfaction = 10;
}
}
}
if (satisfaction > satMax) {
satMax = satisfaction;
}
timer = 'unset';
speech.gotoAndStop('hide');
speech.face.gotoAndStop(Math.floor((satisfaction / satMax) * 100) + 2);
ejac = 0;
}
instance speech of movieClip 4980 {
onClipEvent (enterFrame) {
if (_root.level_pause == false) {
_parent.satisfaction -= _parent.satMinus / 25;
if (_parent.satisfaction > _parent.satMax) {
_parent.satMax = _parent.satisfaction;
}
_parent.speech.face.gotoAndStop(Math.floor((_parent.satisfaction / _parent.satMax) * 100) + 2);
}
}
}
frame 2 {
speech.gotoAndPlay('come');
}
frame 11 {
}
frame 12 {
if (satisfaction >= 5) {
gotoAndPlay('return');
}
}
frame 36 {
}
frame 37 {
if (satisfaction >= 0) {
gotoAndPlay('a0');
} else {
speech.gotoAndPlay('go');
}
}
frame 38 {
if (pressed == true) {
_parent.skills.missed();
pressed = false;
}
}
frame 38 {
speech.face.gotoAndStop(2);
}
frame 45 {
stop();
_parent.free_hole(_index);
_parent.add_points(_index, satisfaction);
this.removeMovieClip();
if (pressed == true) {
_parent.skills.missed();
}
}
frame 46 {
speech.gotoAndStop('hide');
}
frame 55 {
stop();
_parent.free_hole(_index);
this.removeMovieClip();
}
frame 56 {
stop();
}
}
movieClip 5005 {
frame 1 {
gotoAndStop(_parent._color);
}
}
movieClip 5019 {
frame 1 {
gotoAndStop(_parent._color);
}
}
movieClip 5033 {
frame 1 {
gotoAndStop(_parent._color);
}
}
movieClip 5046 {
frame 1 {
gotoAndStop(_parent._color);
}
}
movieClip 5060 {
frame 1 {
gotoAndStop(_parent._color);
}
}
movieClip 5081 {
frame 1 {
gotoAndStop(_parent._color);
}
}
movieClip 5089 {
frame 1 {
gotoAndStop(_parent._color);
}
}
movieClip 5092 {
frame 1 {
_visible = false;
}
}
movieClip 5114 {
frame 1 {
gotoAndStop(_parent._color);
}
}
movieClip 5120 d0 {
frame 1 {
function released() {
_root.wheel = false;
if (!_parent.a0) {
_parent.rainbow();
}
_parent.attach_anim(_index, _xmode, _color, satisfaction, ejac);
_root.came = false;
_visible = false;
stop();
_parent.skills.orb.gotoAndPlay('go');
}
btn.onPress = function () {
pressed = true;
_parent.skills.pressed();
};
btn.onRelease = function () {
released();
};
btn.onReleaseOutside = function () {
released();
};
satMax = 0;
if (_root.skillAll1 == true && _root.skillAll2 == true && _root.skillAll3 == true) {
satMinus = 0.25;
satisfaction = 25;
} else {
if (_root.skillAll1 == true && _root.skillAll2 == true && _root.skillAll3 == false) {
satMinus = 0.5;
satisfaction = 20;
} else {
if (_root.skillAll1 == false && _root.skillAll2 == false && _root.skillAll3 == true) {
satMinus = 0.75;
satisfaction = 15;
} else {
satMinus = 1;
satisfaction = 10;
}
}
}
timer = 'unset';
speech.gotoAndStop('hide');
if (satisfaction > satMax) {
satMax = satisfaction;
}
speech.face.gotoAndStop(Math.floor((satisfaction / satMax) * 100) + 2);
ejac = 0;
}
instance speech of movieClip 4980 {
onClipEvent (enterFrame) {
if (_root.level_pause == false) {
_parent.satisfaction -= _parent.satMinus / 25;
if (_parent.satisfaction > _parent.satMax) {
_parent.satMax = _parent.satisfaction;
}
_parent.speech.face.gotoAndStop(Math.floor((_parent.satisfaction / _parent.satMax) * 100) + 2);
}
}
}
frame 2 {
speech.gotoAndPlay('come');
}
frame 10 {
}
frame 11 {
if (satisfaction >= 5) {
gotoAndPlay('return');
}
}
frame 36 {
}
frame 37 {
if (satisfaction >= 0) {
gotoAndPlay('a0');
} else {
speech.gotoAndPlay('go');
}
}
frame 38 {
if (pressed == true) {
_parent.skills.missed();
pressed = false;
}
}
frame 38 {
speech.face.gotoAndStop(2);
}
frame 45 {
stop();
_parent.free_hole(_index);
_parent.add_points(_index, satisfaction);
this.removeMovieClip();
if (pressed == true) {
_parent.skills.missed();
}
}
frame 46 {
speech.gotoAndStop('hide');
}
frame 55 {
stop();
_parent.free_hole(_index);
this.removeMovieClip();
}
frame 56 {
stop();
}
}
movieClip 5123 spark1 {
frame 1 {
stop();
speed = 1 + 0.2 * random(4);
frame = 1;
onEnterFrame = function () {
frame += speed;
gotoAndStop(int(frame));
if (frame >= 20) {
this.removeMovieClip();
}
};
}
}
movieClip 5134 h0 {
frame 1 {
gotoAndStop(_color);
}
}
movieClip 5136 {
}
movieClip 5138 {
}
movieClip 5140 {
}
movieClip 5142 {
}
movieClip 5143 {
frame 1 {
stop();
}
}
movieClip 5145 {
frame 1 {
_visible = false;
}
}
movieClip 5146 points {
frame 1 {
if (_root.satisfactionLast <= 0) {
title.gotoAndStop(4);
} else {
if (_root.satisfactionLast > 0 && _root.satisfactionLast <= 35) {
title.gotoAndStop(3);
} else {
if (_root.satisfactionLast > 35 && _root.satisfactionLast <= 65) {
title.gotoAndStop(3);
} else {
if (_root.satisfactionLast > 65 && _root.satisfactionLast <= 99) {
title.gotoAndStop(2);
} else {
if (_root.satisfactionLast >= 100) {
title.gotoAndStop(1);
} else {
title.gotoAndStop(5);
}
}
}
}
}
}
frame 22 {
stop();
this.removeMovieClip();
}
}
movieClip 5148 trans_screen {
frame 1 {
var next_screen;
}
frame 10 {
stop();
_root.setScreen(next_screen);
}
frame 20 {
removeMovieClip(this);
}
}
movieClip 5155 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
}
movieClip 5160 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
}
movieClip 5165 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
}
movieClip 5170 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
}
movieClip 5175 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
}
movieClip 5179 {
}
movieClip 5197 {
frame 1 {
_index = 4;
xtime = 1500;
timer = random(xtime);
this.onEnterFrame = function () {
if (_root.galleryViewing != true) {
if (_root.mapLocalRep >= 70) {
if (_root.clientsLeft > 0) {
if (timer > 0) {
--timer;
} else {
if (_currentframe == 2) {
gotoAndPlay('hello');
} else {
timer = random(xtime) + 500;
}
}
}
}
}
};
if (_root.skillAll1 == true && _root.skillAll2 == true && _root.skillAll3 == true) {
satisfaction = 25;
} else {
if (_root.skillAll1 == true && _root.skillAll2 == true && _root.skillAll3 == false) {
satisfaction = 20;
} else {
if (_root.skillAll1 == false && _root.skillAll2 == false && _root.skillAll3 == true) {
satisfaction = 15;
} else {
satisfaction = 10;
}
}
}
ejac = 0;
}
frame 1 {
gotoAndStop('closed');
}
frame 2 {
stop();
}
frame 3 {
khead.gotoAndStop(3);
}
frame 28 {
khead.gotoAndStop(2);
}
frame 40 {
btn.onRelease = function () {
if (!_parent._parent.a0) {
_parent._parent.rainbow();
}
_parent._parent.attach_walkanim(_index, _xmode, _color, satisfaction, ejac);
_root.came = false;
gotoAndStop('opened');
onEnterFrame = null;
};
btn.onRollOver = function () {
gotoAndStop('over');
};
btn.onRollOut = function () {
gotoAndPlay('wait');
};
btn.onReleaseOutside = function () {
gotoAndPlay('wait');
};
btn.onPress = function () {
gotoAndStop('click');
};
}
frame 40 {
khead.gotoAndStop(1);
}
frame 80 {
gotoAndPlay('wait');
}
frame 81 {
stop();
}
frame 82 {
stop();
}
frame 83 {
stop();
}
frame 84 {
}
frame 84 {
khead.gotoAndStop(3);
}
frame 105 {
gotoAndPlay(1);
}
}
movieClip 5224 {
frame 1 {
_index = 4;
xtime = 1500;
timer = random(xtime);
this.onEnterFrame = function () {
if (_root.galleryViewing != true) {
if (_root.mapLocalRep >= 70) {
if (_root.clientsLeft > 0) {
if (timer > 0) {
--timer;
} else {
if (_currentframe == 2) {
gotoAndPlay('hello');
} else {
timer = random(xtime) + 500;
}
}
}
}
}
};
if (_root.skillAll1 == true && _root.skillAll2 == true && _root.skillAll3 == true) {
satisfaction = 25;
} else {
if (_root.skillAll1 == true && _root.skillAll2 == true && _root.skillAll3 == false) {
satisfaction = 20;
} else {
if (_root.skillAll1 == false && _root.skillAll2 == false && _root.skillAll3 == true) {
satisfaction = 15;
} else {
satisfaction = 10;
}
}
}
ejac = 0;
}
frame 1 {
gotoAndStop('closed');
}
frame 2 {
stop();
}
frame 40 {
btn.onRelease = function () {
if (!_parent._parent.a0) {
_parent._parent.rainbow();
}
_parent._parent.attach_walkanim(_index, _xmode, _color, satisfaction, ejac);
_root.came = false;
gotoAndStop('opened');
onEnterFrame = null;
};
btn.onRollOver = function () {
gotoAndStop('over');
};
btn.onRollOut = function () {
gotoAndPlay('wait');
};
btn.onReleaseOutside = function () {
gotoAndPlay('wait');
};
btn.onPress = function () {
gotoAndStop('click');
};
}
frame 80 {
gotoAndPlay('wait');
}
frame 81 {
stop();
}
frame 82 {
stop();
}
frame 83 {
stop();
}
frame 105 {
gotoAndPlay(1);
}
}
movieClip 5227 {
}
movieClip 5253 {
}
movieClip 5265 {
frame 1 {
_index = 4;
xtime = 1500;
timer = random(xtime);
this.onEnterFrame = function () {
if (_root.galleryViewing != true) {
if (_root.mapLocalRep >= 70) {
if (_root.clientsLeft > 0) {
if (timer > 0) {
--timer;
} else {
if (_currentframe == 2) {
gotoAndPlay('hello');
} else {
timer = random(xtime) + 500;
}
}
}
}
}
};
if (_root.skillAll1 == true && _root.skillAll2 == true && _root.skillAll3 == true) {
satisfaction = 25;
} else {
if (_root.skillAll1 == true && _root.skillAll2 == true && _root.skillAll3 == false) {
satisfaction = 20;
} else {
if (_root.skillAll1 == false && _root.skillAll2 == false && _root.skillAll3 == true) {
satisfaction = 15;
} else {
satisfaction = 10;
}
}
}
ejac = 0;
}
frame 1 {
gotoAndStop('closed');
}
frame 2 {
stop();
}
frame 40 {
btn.onRelease = function () {
if (!_parent._parent.a0) {
_parent._parent.rainbow();
}
_parent._parent.attach_walkanim(_index, _xmode, _color, satisfaction, ejac);
_root.came = false;
gotoAndStop('opened');
onEnterFrame = null;
};
btn.onRollOver = function () {
gotoAndStop('over');
};
btn.onRollOut = function () {
gotoAndPlay('wait');
};
btn.onReleaseOutside = function () {
gotoAndPlay('wait');
};
btn.onPress = function () {
gotoAndStop('click');
};
}
frame 80 {
gotoAndPlay('wait');
}
frame 81 {
stop();
}
frame 82 {
stop();
}
frame 83 {
stop();
}
frame 105 {
gotoAndPlay(1);
}
}
movieClip 5268 {
}
movieClip 5273 {
}
movieClip 5277 {
}
movieClip 5282 {
frame 1 {
if (!_root.localMap) {
stop();
} else {
gotoAndStop(_root.localMap);
}
}
}
movieClip 5287 {
}
movieClip 5299 {
frame 1 {
gotoAndStop('stop');
}
frame 36 {
gotoAndStop('stop');
}
}
movieClip 5301 {
frame 1 {
_parent.skills.btnB.block.gotoAndStop(102);
if (_root.skillSta1 == true && _root.skillSta2 == true && _root.skillSta3 == true) {
energyMult = 2.25;
} else {
if (_root.skillSta1 == true && _root.skillSta2 == true && _root.skillSta3 == false) {
energyMult = 1.75;
} else {
if (_root.skillSta1 == true && _root.skillSta2 == false && _root.skillSta3 == false) {
energyMult = 1.35;
} else {
energyMult = 1;
}
}
}
onEnterFrame = function () {
if (_root.xp < _root.xpNeeded) {
if (_parent.LevelBar.currentFrame != Math.ceil((_root.xp / _root.xpNeeded) * 100 + 2)) {
_parent.LevelBar.gotoAndStop(Math.ceil((_root.xp / _root.xpNeeded) * 100 + 2));
}
} else {
_parent.LevelBar.ding();
}
if (_root.level_pause == false) {
if (_root.cheatEnergy != true) {
if (_root.energyS < 0) {
_root.energyS = 0;
} else {
if (_root.energyS > _root.energySmax) {
_root.energyS = _root.energySmax;
} else {
_root.energyS += 0.004 * energyMult;
}
}
if (_root.energyF < 0) {
_root.energyF = 0;
} else {
if (_root.energyF > _root.energyFmax) {
_root.energyF = _root.energyFmax;
} else {
_root.energyF += 0.004 * energyMult;
}
}
if (_root.energyA < 0) {
_root.energyA = 0;
} else {
if (_root.energyA > _root.energyAmax) {
_root.energyA = _root.energyAmax;
} else {
_root.energyA += 0.004 * energyMult;
}
}
} else {
if (_root.energyS < _root.energySmax) {
_root.energyS = _root.energySmax;
}
if (_root.energyF < _root.energyFmax) {
_root.energyF = _root.energyFmax;
}
if (_root.energyA < _root.energyAmax) {
_root.energyA = _root.energyAmax;
}
}
_parent.skills.btnS.block.gotoAndStop(Math.round((_root.energyS / _root.energySmax) * 100 + 2));
_parent.skills.btnF.block.gotoAndStop(Math.round((_root.energyF / _root.energyFmax) * 100 + 2));
_parent.skills.btnA.block.gotoAndStop(Math.round((_root.energyA / _root.energyAmax) * 100 + 2));
if (_root.skillS1 != false) {
_parent.skills.orb.pipS.gotoAndStop(Math.round((_root.energyS / _root.energySmax) * 100 + 2));
} else {
_parent.skills.orb.pipS.gotoAndStop('off');
}
if (_root.skillF1 != false) {
_parent.skills.orb.pipF.gotoAndStop(Math.round((_root.energyF / _root.energyFmax) * 100 + 2));
} else {
_parent.skills.orb.pipF.gotoAndStop('off');
}
if (_root.skillA1 != false) {
_parent.skills.orb.pipA.gotoAndStop(Math.round((_root.energyA / _root.energyAmax) * 100 + 2));
} else {
_parent.skills.orb.pipA.gotoAndStop('off');
}
}
};
}
}
movieClip 5311 {
frame 1 {
gotoAndStop(2);
}
frame 25 {
gotoAndStop(2);
}
}
movieClip 5323 {
frame 1 {
function ding() {
_root.xp -= _root.xpNeeded;
if (_root.xpLevel <= 5) {
_root.skillPoints += 3;
} else {
if (_root.xpLevel > 5 && _root.xpLevel <= 10) {
_root.skillPoints += 5;
} else {
if (_root.xpLevel > 10 && _root.xpLevel <= 15) {
_root.skillPoints += 10;
} else {
_root.skillPoints += 15;
}
}
}
++_root.xpLevel;
_root.xpNeeded = 2500 + 3500 * (_root.xpLevel * 0.75);
_parent.pauseMenu.ind.checkCanLevelSkills();
blink.gotoAndPlay('blink');
}
}
}
movieClip 5340 {
frame 1 {
gotoAndStop(2);
}
frame 14 {
gotoAndStop(2);
}
frame 24 {
gotoAndStop(2);
}
}
movieClip 5347 {
frame 1 {
stop();
}
}
movieClip 5352 {
frame 1 {
if (_root.skillA1 != true) {
gotoAndStop(5);
} else {
if (_root.controlsScheme == 'QWER') {
gotoAndStop(2);
} else {
if (_root.controlsScheme == 'AZER') {
gotoAndStop(3);
} else {
if (_root.controlsScheme == '1234') {
gotoAndStop(4);
} else {
gotoAndStop('no');
}
}
}
}
}
frame 5 {
stop();
}
}
movieClip 5358 {
frame 1 {
if (_root.skillF1 != true) {
gotoAndStop(5);
} else {
if (_root.controlsScheme == 'QWER') {
gotoAndStop(2);
} else {
if (_root.controlsScheme == 'AZER') {
gotoAndStop(3);
} else {
if (_root.controlsScheme == '1234') {
gotoAndStop(4);
} else {
gotoAndStop('no');
}
}
}
}
}
frame 5 {
stop();
}
}
movieClip 5366 {
frame 1 {
if (_root.skillS1 != true) {
gotoAndStop(5);
} else {
if (_root.controlsScheme == 'QWER') {
gotoAndStop(2);
} else {
if (_root.controlsScheme == 'AZER') {
gotoAndStop(3);
} else {
if (_root.controlsScheme == '1234') {
gotoAndStop(4);
} else {
gotoAndStop('no');
}
}
}
}
}
frame 5 {
stop();
}
}
movieClip 5374 {
frame 1 {
if (_root.skillB1 != true) {
gotoAndStop(5);
} else {
if (_root.controlsScheme == 'QWER') {
gotoAndStop(2);
} else {
if (_root.controlsScheme == 'AZER') {
gotoAndStop(3);
} else {
if (_root.controlsScheme == '1234') {
gotoAndStop(4);
} else {
gotoAndStop('no');
}
}
}
}
}
frame 5 {
stop();
}
}
movieClip 5379 {
}
movieClip 5383 {
}
movieClip 5387 {
}
movieClip 5389 {
}
movieClip 5390 {
frame 1 {
gotoAndStop('invis');
}
frame 6 {
if (_root.level == 1) {
gotoAndStop(7);
} else {
if (_root.level == 3) {
gotoAndStop(8);
} else {
if (_root.level == 8) {
gotoAndStop(9);
} else {
if (_root.level == 10) {
gotoAndStop(10);
}
}
}
}
}
frame 15 {
gotoAndStop('invis');
}
}
movieClip 5392 {
frame 1 {
stop();
}
}
movieClip 5393 {
frame 1 {
function setB() {
if (_root.level_pause != true) {
if (_root.skillB1 == true) {
if (Math.round((_root.energyB / _root.energyBmax) * 100) >= 20) {
_root.level = 1;
gotoAndStop(2);
setAnim();
} else {
btnB.block.blink.gotoAndPlay('blinkE');
}
} else {
btnB.block.blink.gotoAndPlay('blinkS');
}
}
}
function setS() {
if (_root.level_pause != true) {
if (_root.skillS1 == true) {
if (Math.round((_root.energyS / _root.energySmax) * 100) >= 20) {
_root.level = 3;
gotoAndStop(3);
setAnim();
} else {
btnS.block.blink.gotoAndPlay('blinkE');
}
} else {
btnS.block.blink.gotoAndPlay('blinkS');
}
}
}
function setF() {
if (_root.level_pause != true) {
if (_root.skillF1 == true) {
if (Math.round((_root.energyF / _root.energyFmax) * 100) >= 20) {
_root.level = 8;
gotoAndStop(4);
setAnim();
} else {
btnF.block.blink.gotoAndPlay('blinkE');
}
} else {
btnF.block.blink.gotoAndPlay('blinkS');
}
}
}
function setA() {
if (_root.level_pause != true) {
if (_root.skillA1 == true) {
if (Math.round((_root.energyA / _root.energyAmax) * 100) >= 20) {
_root.level = 10;
gotoAndStop(5);
setAnim();
} else {
btnA.block.blink.gotoAndPlay('blinkE');
}
} else {
btnA.block.blink.gotoAndPlay('blinkS');
}
}
}
function setAnim() {
_parent.remove_sex_anim();
}
if (_root.level == 1) {
setB();
} else {
if (_root.level > 1 && _root.level <= 5) {
setS();
} else {
if (_root.level < 10 && _root.level > 5) {
setF();
} else {
if (_root.level == 10) {
setA();
} else {
stop();
}
}
}
}
btnB.onPress = function () {
setB();
};
btnS.onPress = function () {
setS();
};
btnF.onPress = function () {
setF();
};
btnA.onPress = function () {
setA();
};
var key = {'onKeyDown': function () {
switch (Key.getCode()) {
case 81:
if (_root.controlsScheme == 'QWER') {
setB();
}
break;
case 87:
if (_root.controlsScheme == 'QWER') {
setS();
}
break;
case 69:
setF();
break;
case 82:
setA();
break;
case 65:
if (_root.controlsScheme == 'AZER') {
setB();
}
break;
case 90:
if (_root.controlsScheme == 'AZER') {
setS();
}
break;
case 49:
if (_root.controlsScheme == '1234') {
setB();
}
break;
case 50:
if (_root.controlsScheme == '1234') {
setS();
}
break;
case 51:
if (_root.controlsScheme == '1234') {
setF();
}
break;
case 52:
if (_root.controlsScheme == '1234') {
setA();
}
}
}};
Key.addListener(key);
}
frame 1 {
function pressed() {
_root.wheel = true;
_root.clickedx = _root._xmouse;
if (_root.clickedx > 500) {
_root.clickedx = 500;
} else {
if (_root.clickedx < 140) {
_root.clickedx = 140;
}
}
_root.clickedy = _root._ymouse;
if (_root.clickedy < 140) {
_root.clickedy = 140;
} else {
if (_root.clickedy > 350) {
_root.clickedy = 350;
}
}
orb._x = _root.clickedx;
orb._y = _root.clickedy;
orb.gotoAndPlay('come');
Middlebox._x = orb._x;
Middlebox._y = orb._y;
}
function missed() {
_root.wheel = false;
orb.gotoAndPlay('go');
}
}
instance orb of movieClip 5390 {
}
}
movieClip 5407 {
frame 1 {
stop();
if (_root.BGMmute != true) {
gotoAndStop('no');
} else {
gotoAndStop('yes');
}
}
frame 2 {
stop();
}
}
movieClip 5408 {
}
button 5413 {
on (release) {
if (_root.newDay != true) {
_root.canLevel = 0;
_root.gotoScreen('4');
_root.level_pause = false;
} else {
if (_root.newDay == true) {
_parent.gotoAndPlay('shopToMap');
if (_root.startup != false) {
_root.startup = 'map';
}
}
}
}
}
movieClip 5425 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
stop();
}
frame 6 {
stop();
}
frame 7 {
play();
}
frame 15 {
gotoAndStop('on');
}
}
movieClip 5440 {
}
movieClip 5460 {
}
movieClip 5471 {
frame 1 {
function resetControls() {
ctQ.gotoAndStop('off');
ctA.gotoAndStop('off');
ct1.gotoAndStop('off');
if (_root.controlsScheme == 'QWER') {
ctQ.gotoAndStop('on');
} else {
if (_root.controlsScheme == 'AZER') {
ctA.gotoAndStop('on');
} else {
if (_root.controlsScheme == '1234') {
ct1.gotoAndStop('on');
}
}
}
}
stop();
box.onPress = function () {
if (pressed == false) {
gotoAndStop('hold');
pressed = true;
} else {
gotoAndStop('hide');
pressed = false;
}
};
box.onRollOver = function () {
gotoAndStop('hold');
pressed = true;
};
}
frame 2 {
resetControls();
}
instance ctQ of movieClip 5460 {
onClipEvent (press) {
if (_root.controlsScheme == 'QWER') {
this.gotoAndStop('onDown');
} else {
this.gotoAndStop('down');
}
}
onClipEvent (release) {
if (_root.controlsScheme != 'QWER') {
_root.controlsScheme = 'QWER';
_parent.resetControls();
}
}
onClipEvent (rollOver) {
if (_root.controlsScheme == 'QWER') {
this.gotoAndStop('onOver');
} else {
this.gotoAndStop('over');
}
}
onClipEvent (rollOut) {
if (_root.controlsScheme == 'QWER') {
this.gotoAndStop('on');
} else {
this.gotoAndStop('off');
}
}
onClipEvent (releaseOutside) {
if (_root.controlsScheme == 'QWER') {
this.gotoAndStop('on');
} else {
this.gotoAndStop('off');
}
}
}
instance ct1 of movieClip 5460 {
onClipEvent (press) {
if (_root.controlsScheme == '1234') {
this.gotoAndStop('onDown');
} else {
this.gotoAndStop('down');
}
}
onClipEvent (release) {
if (_root.controlsScheme != '1234') {
_root.controlsScheme = '1234';
_parent.resetControls();
}
}
onClipEvent (rollOver) {
if (_root.controlsScheme == '1234') {
this.gotoAndStop('onOver');
} else {
this.gotoAndStop('over');
}
}
onClipEvent (rollOut) {
if (_root.controlsScheme == '1234') {
this.gotoAndStop('on');
} else {
this.gotoAndStop('off');
}
}
onClipEvent (releaseOutside) {
if (_root.controlsScheme == '1234') {
this.gotoAndStop('on');
} else {
this.gotoAndStop('off');
}
}
}
instance ctA of movieClip 5460 {
onClipEvent (press) {
if (_root.controlsScheme == 'AZER') {
this.gotoAndStop('onDown');
} else {
this.gotoAndStop('down');
}
}
onClipEvent (release) {
if (_root.controlsScheme != 'AZER') {
_root.controlsScheme = 'AZER';
_parent.resetControls();
}
}
onClipEvent (rollOver) {
if (_root.controlsScheme == 'AZER') {
this.gotoAndStop('onOver');
} else {
this.gotoAndStop('over');
}
}
onClipEvent (rollOut) {
if (_root.controlsScheme == 'AZER') {
this.gotoAndStop('on');
} else {
this.gotoAndStop('off');
}
}
onClipEvent (releaseOutside) {
if (_root.controlsScheme == 'AZER') {
this.gotoAndStop('on');
} else {
this.gotoAndStop('off');
}
}
}
frame 3 {
resetControls();
}
}
button 5475 {
on (release) {
selectHair();
}
on (rollOver) {
rollHair();
}
on (rollOut) {
iconReset();
}
on (releaseOutside) {
iconReset();
}
}
movieClip 5480 {
frame 11 {
stop();
}
}
button 5485 {
on (release) {
selectMask();
}
on (rollOver) {
rollMask();
}
on (rollOut) {
iconReset();
}
on (releaseOutside) {
iconReset();
}
}
movieClip 5493 {
frame 1 {
function galleryReset() {
_parent._parent.replaceGirl();
}
function iconReset() {
if (_root.character == 5 or _root.character == 6) {
resetMask();
} else {
resetHair();
}
}
function selectMask() {
if (_root.strippedMaskUnlocked == true) {
if (_root.strippedMask != true) {
_root.strippedMask = true;
_root.strippedHair = false;
galleryReset();
} else {
_root.strippedMask = false;
_root.strippedHair = false;
galleryReset();
}
_root.menuSelected = false;
_parent.setSelect();
rollMask();
} else {
if (_root.menuSelected == 'stripMask') {
if (_root._score >= _root.strippedMaskCost) {
_root.buyCost = '- ' + _root.strippedMaskCost;
_root._score -= _root.strippedMaskCost;
_root._scoreDisplay = Math.floor(_root._score);
_parent._parent._parent._parent.board.cost.gotoAndPlay('go');
_root.strippedMask = true;
_root.strippedHair = false;
lockMask.gotoAndPlay('buy');
_root.strippedMaskUnlocked = true;
_root.menuSelected = false;
_parent.setSelect();
rollMask();
}
} else {
_root.menuSelected = 'stripMask';
_parent.setSelect();
lockMask.gotoAndStop('over');
rollMask();
}
}
}
function selectHair() {
if (_root.strippedHairUnlocked == true) {
if (_root.strippedHair != true) {
_root.strippedHair = true;
_root.strippedMask = false;
galleryReset();
} else {
_root.strippedHair = false;
_root.strippedMask = false;
galleryReset();
}
_root.menuSelected = false;
_parent.setSelect();
rollHair();
} else {
if (_root.menuSelected == 'stripHair') {
if (_root._score >= _root.strippedHairCost) {
_root.buyCost = '- ' + _root.strippedHairCost;
_root._score -= _root.strippedHairCost;
_root._scoreDisplay = Math.floor(_root._score);
_parent._parent._parent._parent.board.cost.gotoAndPlay('go');
_root.strippedHair = true;
_root.strippedMask = false;
lockHair.gotoAndPlay('buy');
_root.strippedHairUnlocked = true;
_root.menuSelected = false;
_parent.setSelect();
rollHair();
}
} else {
_root.menuSelected = 'stripHair';
_parent.setSelect();
lockHair.gotoAndStop('over');
rollHair();
}
}
}
function rollMask() {
if (_root.menuSelected != 'stripMask') {
if (_root.strippedMask != true) {
gotoAndStop('maskOnSelect');
} else {
gotoAndStop('maskOffSelect');
}
if (_root.strippedMaskUnlocked != true) {
lockMask.gotoAndStop('over');
}
}
}
function rollHair() {
if (_root.menuSelected != 'stripHair') {
if (_root.strippedHair != true) {
gotoAndStop('hairOnSelect');
} else {
gotoAndStop('hairOffSelect');
}
}
}
function resetMask() {
if (_root.menuSelected != 'stripMask') {
if (_root.strippedMask != true) {
gotoAndStop('maskOn');
} else {
gotoAndStop('maskOff');
}
if (_root.strippedMaskUnlocked == true) {
lockMask.gotoAndStop('off');
} else {
lockMask.gotoAndStop('lock');
}
}
}
function resetHair() {
if (_root.menuSelected != 'stripHair') {
if (_root.strippedHair != true) {
gotoAndStop('hairOn');
} else {
gotoAndStop('hairOff');
}
if (_root.strippedHairUnlocked == true) {
lockHair.gotoAndStop('off');
} else {
lockHair.gotoAndStop('lock');
}
}
}
stop();
iconReset();
}
instance lockHair of movieClip 5480 {
}
instance lockMask of movieClip 5480 {
}
}
movieClip 5503 {
}
movieClip 5515 {
frame 1 {
function galleryReset() {
_parent._parent.replaceGirl();
}
function iconReset() {
if (_root.character == 5 or _root.character == 6) {
resetMask();
} else {
resetHair();
}
}
function selectMask() {
if (_root.strippedMaskUnlocked == true) {
if (_root.strippedMask != true) {
_root.strippedMask = true;
_root.strippedHair = false;
galleryReset();
} else {
_root.strippedMask = false;
_root.strippedHair = false;
galleryReset();
}
_root.menuSelected = false;
_parent.setSelect();
rollMask();
} else {
if (_root.menuSelected == 'stripMask') {
if (_root._score >= _root.strippedMaskCost) {
_root.buyCost = '- ' + _root.strippedMaskCost;
_root._score -= _root.strippedMaskCost;
_root._scoreDisplay = Math.floor(_root._score);
_parent._parent._parent._parent.board.cost.gotoAndPlay('go');
_root.strippedMask = true;
_root.strippedHair = false;
lockMask.gotoAndPlay('buy');
_root.strippedMaskUnlocked = true;
_root.menuSelected = false;
_parent.setSelect();
rollMask();
}
} else {
_root.menuSelected = 'stripMask';
_parent.setSelect();
lockMask.gotoAndStop('over');
rollMask();
}
}
}
function selectHair() {
if (_root.strippedHairUnlocked == true) {
if (_root.strippedHair != true) {
_root.strippedHair = true;
_root.strippedMask = false;
galleryReset();
} else {
_root.strippedHair = false;
_root.strippedMask = false;
galleryReset();
}
_root.menuSelected = false;
_parent.setSelect();
rollHair();
} else {
if (_root.menuSelected == 'stripHair') {
if (_root._score >= _root.strippedHairCost) {
_root.buyCost = '- ' + _root.strippedHairCost;
_root._score -= _root.strippedHairCost;
_root._scoreDisplay = Math.floor(_root._score);
_parent._parent._parent._parent.board.cost.gotoAndPlay('go');
_root.strippedHair = true;
_root.strippedMask = false;
lockHair.gotoAndPlay('buy');
_root.strippedHairUnlocked = true;
_root.menuSelected = false;
_parent.setSelect();
rollHair();
}
} else {
_root.menuSelected = 'stripHair';
_parent.setSelect();
lockHair.gotoAndStop('over');
rollHair();
}
}
}
function rollMask() {
if (_root.menuSelected != 'stripBot') {
if (_root.strippedMask != true) {
gotoAndStop('maskOnSelect');
} else {
gotoAndStop('maskOffSelect');
}
if (_root.strippedMaskUnlocked != true) {
lockMask.gotoAndStop('over');
}
}
}
function rollHair() {
if (_root.menuSelected != 'stripHair') {
if (_root.strippedHair != true) {
gotoAndStop('dressSelect');
} else {
gotoAndStop('nudeSelect');
}
}
}
function resetMask() {
if (_root.menuSelected != 'stripMask') {
if (_root.strippedMask != true) {
gotoAndStop('maskOn');
} else {
gotoAndStop('maskOff');
}
}
if (_root.menuSelected != 'stripmask') {
if (_root.strippedMaskUnlocked == true) {
lockMask.gotoAndStop('off');
} else {
lockMask.gotoAndStop('lock');
}
}
}
function resetHair() {
if (_root.menuSelected != 'stripHair') {
if (_root.strippedHair != true) {
gotoAndStop('dress');
} else {
gotoAndStop('nude');
}
if (_root.strippedHairUnlocked == true) {
lockHair.gotoAndStop('off');
} else {
lockHair.gotoAndStop('lock');
}
}
}
stop();
iconReset();
}
instance lock of movieClip 5480 {
}
}
movieClip 5522 {
frame 1 {
function noLock() {
icon.lockMask._visible = false;
icon.lockHair._visible = false;
}
orb.gotoAndStop(_root.characterSaved);
showing = 'off';
gotoAndStop('off');
noLock();
}
frame 2 {
showing = 'off';
noLock();
}
frame 3 {
showing = 'over';
noLock();
}
frame 6 {
stop();
noLock();
}
frame 7 {
showing = 'out';
noLock();
}
frame 10 {
gotoAndStop('off');
noLock();
}
}
button 5525 {
on (release) {
selectTop();
}
on (rollOver) {
rollTop();
}
on (rollOut) {
iconReset();
}
on (releaseOutside) {
iconReset();
}
}
button 5526 {
on (release) {
selectBot();
}
on (rollOver) {
rollBot();
}
on (rollOut) {
iconReset();
}
on (releaseOutside) {
iconReset();
}
}
button 5539 {
on (release) {
selectFull();
}
on (rollOver) {
rollFull();
}
on (rollOut) {
iconReset();
}
on (releaseOutside) {
iconReset();
}
}
movieClip 5543 {
frame 1 {
function galleryReset() {
_parent._parent.replaceGirl();
}
function iconReset() {
if (_root.costume >= 1 && _root.costume <= 6) {
resetFull();
} else {
resetBikini();
}
}
function selectTop() {
if (_root.strippedTopUnlocked == true) {
if (_root.strippedTop != true) {
_root.strippedTop = true;
_root.strippedFull = false;
galleryReset();
} else {
_root.strippedTop = false;
_root.strippedFull = false;
galleryReset();
}
_root.menuSelected = false;
_parent.setSelect();
rollTop();
} else {
if (_root.menuSelected == 'stripTop') {
if (_root._score >= _root.strippedTopCost) {
_root.buyCost = '- ' + _root.strippedTopCost;
_root._score -= _root.strippedTopCost;
_root._scoreDisplay = Math.floor(_root._score);
_parent._parent._parent._parent.board.cost.gotoAndPlay('go');
_root.strippedTop = true;
_root.strippedFull = false;
lockTop.gotoAndPlay('buy');
_root.strippedTopUnlocked = true;
_root.menuSelected = false;
_parent.setSelect();
rollTop();
}
} else {
_root.menuSelected = 'stripTop';
_parent.setSelect();
lockTop.gotoAndStop('over');
rollTop();
}
}
}
function selectBot() {
if (_root.strippedBotUnlocked == true) {
if (_root.strippedBot != true) {
_root.strippedBot = true;
_root.strippedFull = false;
galleryReset();
} else {
_root.strippedBot = false;
_root.strippedFull = false;
galleryReset();
}
_root.menuSelected = false;
_parent.setSelect();
rollBot();
} else {
if (_root.menuSelected == 'stripBot') {
if (_root._score >= _root.strippedBotCost) {
_root.buyCost = '- ' + _root.strippedBotCost;
_root._score -= _root.strippedBotCost;
_root._scoreDisplay = Math.floor(_root._score);
_parent._parent._parent._parent.board.cost.gotoAndPlay('go');
_root.strippedBot = true;
_root.strippedFull = false;
lockBot.gotoAndPlay('buy');
_root.strippedBotUnlocked = true;
_root.menuSelected = false;
_parent.setSelect();
rollBot();
}
} else {
_root.menuSelected = 'stripBot';
_parent.setSelect();
lockBot.gotoAndStop('over');
rollBot();
}
}
}
function selectFull() {
if (_root.strippedFullUnlocked == true) {
if (_root.strippedFull != true) {
_root.strippedFull = true;
_root.strippedTop = false;
_root.strippedBot = false;
galleryReset();
} else {
_root.strippedFull = false;
_root.strippedTop = false;
_root.strippedBot = false;
galleryReset();
}
_root.menuSelected = false;
_parent.setSelect();
rollFull();
} else {
if (_root.menuSelected == 'stripFull') {
if (_root._score >= _root.strippedFullCost) {
_root.buyCost = '- ' + _root.strippedFullCost;
_root._score -= _root.strippedFullCost;
_root._scoreDisplay = Math.floor(_root._score);
_parent._parent._parent._parent.board.cost.gotoAndPlay('go');
_root.strippedFull = true;
_root.strippedTop = false;
_root.strippedBot = false;
lockFull.gotoAndPlay('buy');
_root.strippedFullUnlocked = true;
_root.menuSelected = false;
_parent.setSelect();
rollFull();
}
} else {
_root.menuSelected = 'stripFull';
_parent.setSelect();
lockFull.gotoAndStop('over');
rollFull();
}
}
}
function rollTop() {
if (_root.menuSelected != 'stripBot') {
if (_root.strippedTop != true && _root.strippedBot != true) {
gotoAndStop('onTopSelect');
} else {
if (_root.strippedTop == true && _root.strippedBot != true) {
gotoAndStop('toplessTopSelect');
} else {
if (_root.strippedTop != true && _root.strippedBot == true) {
gotoAndStop('bottomlessTopSelect');
} else {
gotoAndStop('offTopSelect');
}
}
}
if (_root.strippedTopUnlocked != true) {
lockTop.gotoAndStop('over');
}
}
}
function rollBot() {
if (_root.menuSelected != 'stripTop') {
if (_root.strippedTop != true && _root.strippedBot != true) {
gotoAndStop('onBotSelect');
} else {
if (_root.strippedTop == true && _root.strippedBot != true) {
gotoAndStop('toplessBotSelect');
} else {
if (_root.strippedTop != true && _root.strippedBot == true) {
gotoAndStop('bottomlessBotSelect');
} else {
gotoAndStop('offBotSelect');
}
}
}
if (_root.strippedBotUnlocked != true) {
lockBot.gotoAndStop('over');
}
}
}
function rollFull() {
if (_root.menuSelected != 'stripFull') {
if (_root.strippedFull != true) {
gotoAndStop('dressSelect');
} else {
gotoAndStop('nudeSelect');
}
}
}
function resetBikini() {
if (_root.menuSelected != 'stripTop' && _root.menuSelected != 'stripBot') {
if (_root.strippedTop != true && _root.strippedBot != true) {
gotoAndStop('on');
} else {
if (_root.strippedTop == true && _root.strippedBot != true) {
gotoAndStop('topless');
} else {
if (_root.strippedTop != true && _root.strippedBot == true) {
gotoAndStop('bottomless');
} else {
gotoAndStop('off');
}
}
}
}
if (_root.menuSelected != 'stripTop') {
if (_root.strippedTopUnlocked == true) {
lockTop.gotoAndStop('off');
} else {
lockTop.gotoAndStop('lock');
}
}
if (_root.menuSelected != 'stripBot') {
if (_root.strippedBotUnlocked == true) {
lockBot.gotoAndStop('off');
} else {
lockBot.gotoAndStop('lock');
}
}
}
function resetFull() {
if (_root.menuSelected != 'stripFull') {
if (_root.strippedFull != true) {
gotoAndStop('dress');
} else {
gotoAndStop('nude');
}
if (_root.strippedFullUnlocked == true) {
lockFull.gotoAndStop('off');
} else {
lockFull.gotoAndStop('lock');
}
}
}
stop();
iconReset();
}
instance lockTop of movieClip 5480 {
}
instance lockBot of movieClip 5480 {
}
instance lockFull of movieClip 5480 {
}
}
movieClip 5548 {
}
movieClip 5551 {
frame 1 {
function noLock() {
icon.lockTop._visible = false;
icon.lockBot._visible = false;
icon.lockFull._visible = false;
}
orb.gotoAndStop(_root.costumeSaved);
showing = 'off';
gotoAndStop('off');
noLock();
}
frame 2 {
showing = 'off';
noLock();
}
frame 3 {
showing = 'over';
noLock();
}
frame 6 {
stop();
noLock();
}
frame 7 {
showing = 'out';
noLock();
}
frame 10 {
gotoAndStop('off');
noLock();
}
}
button 5559 {
on (release) {
_root.startup = 'map';
_root.gotoScreen('4');
}
}
movieClip 5568 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
play();
}
frame 15 {
gotoAndStop('on');
}
}
movieClip 5572 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
play();
}
frame 15 {
gotoAndStop('on');
}
}
movieClip 5576 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
play();
}
frame 15 {
gotoAndStop('on');
}
}
movieClip 5580 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
play();
}
frame 15 {
gotoAndStop('on');
}
}
movieClip 5584 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
play();
}
frame 15 {
gotoAndStop('on');
}
}
movieClip 5588 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
play();
}
frame 15 {
gotoAndStop('on');
}
}
movieClip 5592 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
play();
}
frame 15 {
gotoAndStop('on');
}
}
movieClip 5596 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
play();
}
frame 15 {
gotoAndStop('on');
}
}
movieClip 5600 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
play();
}
frame 15 {
gotoAndStop('on');
}
}
movieClip 5604 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
play();
}
frame 15 {
gotoAndStop('on');
}
}
movieClip 5608 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
play();
}
frame 15 {
gotoAndStop('on');
}
}
movieClip 5612 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
play();
}
frame 15 {
gotoAndStop('on');
}
}
movieClip 5616 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
play();
}
frame 15 {
gotoAndStop('on');
}
}
movieClip 5620 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
play();
}
frame 15 {
gotoAndStop('on');
}
}
button 5632 {
on (release) {
_parent.gotoAndPlay('lookGo');
}
}
movieClip 5641 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
play();
}
frame 15 {
gotoAndStop('on');
}
}
movieClip 5647 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
play();
}
frame 15 {
gotoAndStop('on');
}
}
movieClip 5653 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
play();
}
frame 15 {
gotoAndStop('on');
}
}
movieClip 5659 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
play();
}
frame 15 {
gotoAndStop('on');
}
}
movieClip 5665 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
play();
}
frame 15 {
gotoAndStop('on');
}
}
movieClip 5671 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
play();
}
frame 15 {
gotoAndStop('on');
}
}
movieClip 5677 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
play();
}
frame 15 {
gotoAndStop('on');
}
}
movieClip 5684 {
frame 1 {
function setNude() {
_root.checkCostume();
}
function setSelect() {
setNude();
gotoAndPlay('reset');
if (_root.menuSelected == false) {
textCostWord.text = '';
textCostPoor.text = '';
} else {
textCostWord.text = 'Price:';
textCostPoor.text = '';
}
switch (_root.menuSelected) {
case false:
textCost.text = '';
textName.text = '';
textLine1.text = '';
textLine2.text = '';
break;
case 'stripHair':
textCost.text = _root.strippedHairCost;
textName.text = 'Hair Colour';
textLine1.text = '[doesnt work]';
textLine2.text = '';
break;
case 'stripFace':
textCost.text = _root.strippedFaceCost;
textName.text = 'Strip Face';
textLine1.text = '[nothing here]';
textLine2.text = '';
break;
case 'stripMask':
textCost.text = _root.strippedMaskCost;
textName.text = 'Remove Mask';
textLine1.text = 'No need to be shy..';
textLine2.text = '';
break;
case 'stripTop':
textCost.text = _root.strippedTopCost;
textName.text = 'Strip Top';
textLine1.text = 'Yay, boobies!';
textLine2.text = '';
break;
case 'stripBot':
textCost.text = _root.strippedBotCost;
textName.text = 'Strip Panties';
textLine1.text = 'Who\'s a naughty girl?';
textLine2.text = '';
break;
case 'stripFull':
textCost.text = _root.strippedFullCost;
textName.text = 'Strip Costume';
textLine1.text = '[doesnt work yet. stretch goal!]';
textLine2.text = '';
break;
case 'cha01':
textCost.text = _root.character01cost;
textName.text = 'Oriental Shepard';
textLine1.text = 'Savior of the galaxy.. with dark hair!';
textLine2.text = '';
break;
case 'cha02':
textCost.text = _root.character02cost;
textName.text = 'Jane Shepard';
textLine1.text = 'Savior of the galaxy.. with canonical hair!';
textLine2.text = '';
break;
case 'cha03':
textCost.text = _root.character03cost;
textName.text = 'Bimbo Shepard';
textLine1.text = 'Savior of the galaxy.. with blonde hair!';
textLine2.text = '';
break;
case 'cha04':
textCost.text = _root.character04cost;
textName.text = 'Ebony Shepard';
textLine1.text = 'Savior of the galaxy.. with dark skin!';
textLine2.text = '';
break;
case 'cha05':
textCost.text = _root.character05cost;
textName.text = 'Tali\'Zorah';
textLine1.text = '\'emergency. induction. port.\'';
textLine2.text = '';
break;
case 'cha06':
textCost.text = _root.character04cost;
textName.text = 'Daro\'Xen';
textLine1.text = 'Admiral on deck.';
textLine2.text = '';
break;
case 'cha07':
textCost.text = _root.character07cost;
textName.text = 'Asari Dancer';
textLine1.text = '\'I\'m a dancer, not a hooker!\'';
textLine2.text = '';
break;
case 'cos01':
textCost.text = _root.costume01cost;
textName.text = 'N7 Cocktail Dress';
textLine1.text = 'Military issue';
textLine2.text = '';
break;
case 'cos02':
textCost.text = _root.costume02cost;
textName.text = 'N7 Combat Armor';
textLine1.text = 'Love is a battlefield';
textLine2.text = '';
break;
case 'cos03':
textCost.text = _root.costume03cost;
textName.text = 'N7 Jump-suit';
textLine1.text = 'For any occasion';
textLine2.text = '';
break;
case 'cos04':
textCost.text = _root.costume04cost;
textName.text = 'N7 Corset';
textLine1.text = 'Military issue?';
textLine2.text = '';
break;
case 'cos05':
textCost.text = _root.costume05cost;
textName.text = 'Enviro-suit';
textLine1.text = 'Integrity not garuanteed';
textLine2.text = '';
break;
case 'cos06':
textCost.text = _root.costume06cost;
textName.text = 'Admiral\'s suit';
textLine1.text = 'Integrity not garuanteed';
textLine2.text = '';
break;
case 'cos07':
textCost.text = _root.costume07cost;
textName.text = 'Dancer Costume';
textLine1.text = 'Citadel\'s finest';
textLine2.text = '';
break;
case 'cos23':
textCost.text = _root.costume23cost;
textName.text = 'Pink Bikini';
textLine1.text = 'Swimwear in orchid';
textLine2.text = '';
break;
case 'cos24':
textCost.text = _root.costume24cost;
textName.text = 'Blue Bikini';
textLine1.text = 'Swimwear in navy';
textLine2.text = '';
break;
case 'cos25':
textCost.text = _root.costume25cost;
textName.text = 'Purple Bikini';
textLine1.text = 'Swimwear in violet';
textLine2.text = '';
break;
case 'cos26':
textCost.text = _root.costume26cost;
textName.text = 'Black Bikini';
textLine1.text = 'Dark swimwear';
textLine2.text = '';
break;
case 'cos27':
textCost.text = _root.costume27cost;
textName.text = 'White Bikini';
textLine1.text = 'Light swimwear';
textLine2.text = '';
break;
case 'cos28':
textCost.text = _root.costume28cost;
textName.text = 'Black Lingerie';
textLine1.text = 'Dress for the occasion';
textLine2.text = '';
break;
case 'cos29':
textCost.text = _root.costume29cost;
textName.text = 'White Lingerie';
textLine1.text = '\'pure\' indeed..';
textLine2.text = '';
}
headStripping.iconReset();
bodyStripping.iconReset();
if (_root._score <= textCost.text) {
textCostPoor.text = textCost.text;
textCost.text = '';
}
}
function setButtons() {
if (_root.character01unlocked == true) {
if (_root.character == 1) {
btnCha01.gotoAndStop('on');
} else {
btnCha01.gotoAndStop('off');
}
} else {
btnCha01.gotoAndStop('offLocked');
}
if (_root.character02unlocked == true) {
if (_root.character == 2) {
btnCha02.gotoAndStop('on');
} else {
btnCha02.gotoAndStop('off');
}
} else {
btnCha02.gotoAndStop('offLocked');
}
if (_root.character03unlocked == true) {
if (_root.character == 3) {
btnCha03.gotoAndStop('on');
} else {
btnCha03.gotoAndStop('off');
}
} else {
btnCha03.gotoAndStop('offLocked');
}
if (_root.character04unlocked == true) {
if (_root.character == 4) {
btnCha04.gotoAndStop('on');
} else {
btnCha04.gotoAndStop('off');
}
} else {
btnCha04.gotoAndStop('offLocked');
}
if (_root.character05unlocked == true) {
if (_root.character == 5) {
btnCha05.gotoAndStop('on');
} else {
btnCha05.gotoAndStop('off');
}
} else {
btnCha05.gotoAndStop('offLocked');
}
if (_root.character06unlocked == true) {
if (_root.character == 6) {
btnCha06.gotoAndStop('on');
} else {
btnCha06.gotoAndStop('off');
}
} else {
btnCha06.gotoAndStop('offLocked');
}
if (_root.character07unlocked == true) {
if (_root.character == 7) {
btnCha07.gotoAndStop('on');
} else {
btnCha07.gotoAndStop('off');
}
} else {
btnCha07.gotoAndStop('offLocked');
}
if (_root.costume01unlocked == true) {
if (_root.costume == 1) {
btnCos01.gotoAndStop('on');
} else {
btnCos01.gotoAndStop('off');
}
} else {
btnCos01.gotoAndStop('offLocked');
}
if (_root.costume02unlocked == true) {
if (_root.costume == 2) {
btnCos02.gotoAndStop('on');
} else {
btnCos02.gotoAndStop('off');
}
} else {
btnCos02.gotoAndStop('offLocked');
}
if (_root.costume03unlocked == true) {
if (_root.costume == 3) {
btnCos03.gotoAndStop('on');
} else {
btnCos03.gotoAndStop('off');
}
} else {
btnCos03.gotoAndStop('offLocked');
}
if (_root.costume04unlocked == true) {
if (_root.costume == 4) {
btnCos04.gotoAndStop('on');
} else {
btnCos04.gotoAndStop('off');
}
} else {
btnCos04.gotoAndStop('offLocked');
}
if (_root.costume05unlocked == true) {
if (_root.costume == 5) {
btnCos05.gotoAndStop('on');
} else {
btnCos05.gotoAndStop('off');
}
} else {
btnCos05.gotoAndStop('offLocked');
}
if (_root.costume06unlocked == true) {
if (_root.costume == 6) {
btnCos06.gotoAndStop('on');
} else {
btnCos06.gotoAndStop('off');
}
} else {
btnCos06.gotoAndStop('offLocked');
}
if (_root.costume07unlocked == true) {
if (_root.costume == 7) {
btnCos07.gotoAndStop('on');
} else {
btnCos07.gotoAndStop('off');
}
} else {
btnCos07.gotoAndStop('offLocked');
}
if (_root.costume23unlocked == true) {
if (_root.costume == 23) {
btnCos23.gotoAndStop('on');
} else {
btnCos23.gotoAndStop('off');
}
} else {
btnCos23.gotoAndStop('offLocked');
}
if (_root.costume24unlocked == true) {
if (_root.costume == 24) {
btnCos24.gotoAndStop('on');
} else {
btnCos24.gotoAndStop('off');
}
} else {
btnCos24.gotoAndStop('offLocked');
}
if (_root.costume25unlocked == true) {
if (_root.costume == 25) {
btnCos25.gotoAndStop('on');
} else {
btnCos25.gotoAndStop('off');
}
} else {
btnCos25.gotoAndStop('offLocked');
}
if (_root.costume26unlocked == true) {
if (_root.costume == 26) {
btnCos26.gotoAndStop('on');
} else {
btnCos26.gotoAndStop('off');
}
} else {
btnCos26.gotoAndStop('offLocked');
}
if (_root.costume27unlocked == true) {
if (_root.costume == 27) {
btnCos27.gotoAndStop('on');
} else {
btnCos27.gotoAndStop('off');
}
} else {
btnCos27.gotoAndStop('offLocked');
}
if (_root.costume28unlocked == true) {
if (_root.costume == 28) {
btnCos28.gotoAndStop('on');
} else {
btnCos28.gotoAndStop('off');
}
} else {
btnCos28.gotoAndStop('offLocked');
}
if (_root.costume29unlocked == true) {
if (_root.costume == 29) {
btnCos29.gotoAndStop('on');
} else {
btnCos29.gotoAndStop('off');
}
} else {
btnCos29.gotoAndStop('offLocked');
}
}
gotoAndStop('reset');
_root.menuSelected = false;
setButtons();
setSelect();
}
instance btnCha02 of movieClip 5568 {
onClipEvent (release) {
if (_root.menuSelected != 'cha02') {
if (_root.character02unlocked == true) {
_root.character = 2;
_root.characterSaved = _root.character;
_root.strippedHair = false;
_root.strippedFace = false;
_root.strippedMask = false;
_parent.setButtons();
gotoAndStop('on');
_root.menuSelected = 'cha02';
_parent.setSelect();
} else {
_root.character = 2;
_parent.setButtons();
gotoAndStop('onLocked');
_root.menuSelected = 'cha02';
_parent.setSelect();
}
} else {
if (_root.character02unlocked != true) {
if (_root._score >= _root.character01cost) {
_root.buyCost = '- ' + _root.character02cost;
_root._score -= _root.character02cost;
_root._scoreDisplay = Math.floor(_root._score);
_parent._parent._parent._parent.board.cost.gotoAndPlay('go');
_root.character = 2;
_root.characterSaved = _root.character;
_root.strippedHair = false;
_root.strippedFace = false;
_root.strippedMask = false;
_parent.setButtons();
_parent.setSelect();
this.gotoAndPlay('buy');
_root.character02unlocked = true;
}
}
}
}
}
instance btnCha03 of movieClip 5572 {
onClipEvent (release) {
if (_root.menuSelected != 'cha03') {
if (_root.character03unlocked == true) {
_root.character = 3;
_root.characterSaved = _root.character;
_root.strippedHair = false;
_root.strippedFace = false;
_root.strippedMask = false;
_parent.setButtons();
gotoAndStop('on');
_root.menuSelected = 'cha03';
_parent.setSelect();
} else {
_root.character = 3;
_parent.setButtons();
gotoAndStop('onLocked');
_root.menuSelected = 'cha03';
_parent.setSelect();
}
} else {
if (_root.character03unlocked != true) {
if (_root._score >= _root.character01cost) {
_root.buyCost = '- ' + _root.character03cost;
_root._score -= _root.character03cost;
_root._scoreDisplay = Math.floor(_root._score);
_parent._parent._parent._parent.board.cost.gotoAndPlay('go');
_root.character = 3;
_root.characterSaved = _root.character;
_root.strippedHair = false;
_root.strippedFace = false;
_root.strippedMask = false;
_parent.setButtons();
_parent.setSelect();
this.gotoAndPlay('buy');
_root.character03unlocked = true;
}
}
}
}
}
instance btnCha04 of movieClip 5576 {
onClipEvent (release) {
if (_root.menuSelected != 'cha04') {
if (_root.character04unlocked == true) {
_root.character = 4;
_root.characterSaved = _root.character;
_root.strippedHair = false;
_root.strippedFace = false;
_root.strippedMask = false;
_parent.setButtons();
gotoAndStop('on');
_root.menuSelected = 'cha04';
_parent.setSelect();
} else {
_root.character = 4;
_parent.setButtons();
gotoAndStop('onLocked');
_root.menuSelected = 'cha04';
_parent.setSelect();
}
} else {
if (_root.character04unlocked != true) {
if (_root._score >= _root.character01cost) {
_root.buyCost = '- ' + _root.character04cost;
_root._score -= _root.character04cost;
_root._scoreDisplay = Math.floor(_root._score);
_parent._parent._parent._parent.board.cost.gotoAndPlay('go');
_root.character = 4;
_root.characterSaved = _root.character;
_root.strippedHair = false;
_root.strippedFace = false;
_root.strippedMask = false;
_parent.setButtons();
_parent.setSelect();
this.gotoAndPlay('buy');
_root.character04unlocked = true;
}
}
}
}
}
instance btnCha05 of movieClip 5580 {
onClipEvent (release) {
if (_root.menuSelected != 'cha05') {
if (_root.character05unlocked == true) {
_root.character = 5;
_root.characterSaved = _root.character;
_root.strippedHair = false;
_root.strippedFace = false;
_root.strippedMask = false;
_parent.setButtons();
gotoAndStop('on');
_root.menuSelected = 'cha05';
_parent.setSelect();
} else {
_root.character = 5;
_parent.setButtons();
gotoAndStop('onLocked');
_root.menuSelected = 'cha05';
_parent.setSelect();
}
} else {
if (_root.character05unlocked != true) {
if (_root._score >= _root.character01cost) {
_root.buyCost = '- ' + _root.character05cost;
_root._score -= _root.character05cost;
_root._scoreDisplay = Math.floor(_root._score);
_parent._parent._parent._parent.board.cost.gotoAndPlay('go');
_root.character = 5;
_root.characterSaved = _root.character;
_root.strippedHair = false;
_root.strippedFace = false;
_root.strippedMask = false;
_parent.setButtons();
_parent.setSelect();
this.gotoAndPlay('buy');
_root.character05unlocked = true;
}
}
}
}
}
instance btnCha06 of movieClip 5584 {
onClipEvent (release) {
if (_root.menuSelected != 'cha06') {
if (_root.character06unlocked == true) {
_root.character = 6;
_root.characterSaved = _root.character;
_root.strippedHair = false;
_root.strippedFace = false;
_root.strippedMask = false;
_parent.setButtons();
gotoAndStop('on');
_root.menuSelected = 'cha06';
_parent.setSelect();
} else {
_root.character = 6;
_parent.setButtons();
gotoAndStop('onLocked');
_root.menuSelected = 'cha06';
_parent.setSelect();
}
} else {
if (_root.character06unlocked != true) {
if (_root._score >= _root.character01cost) {
_root.buyCost = '- ' + _root.character06cost;
_root._score -= _root.character06cost;
_root._scoreDisplay = Math.floor(_root._score);
_parent._parent._parent._parent.board.cost.gotoAndPlay('go');
_root.character = 6;
_root.characterSaved = _root.character;
_root.strippedHair = false;
_root.strippedFace = false;
_root.strippedMask = false;
_parent.setButtons();
_parent.setSelect();
this.gotoAndPlay('buy');
_root.character06unlocked = true;
}
}
}
}
}
instance btnCha07 of movieClip 5588 {
onClipEvent (release) {
if (_root.menuSelected != 'cha07') {
if (_root.character07unlocked == true) {
_root.character = 7;
_root.characterSaved = _root.character;
_root.strippedHair = false;
_root.strippedFace = false;
_root.strippedMask = false;
_parent.setButtons();
gotoAndStop('on');
_root.menuSelected = 'cha07';
_parent.setSelect();
} else {
_root.character = 7;
_parent.setButtons();
gotoAndStop('onLocked');
_root.menuSelected = 'cha07';
_parent.setSelect();
}
} else {
if (_root.character07unlocked != true) {
if (_root._score >= _root.character01cost) {
_root.buyCost = '- ' + _root.character07cost;
_root._score -= _root.character07cost;
_root._scoreDisplay = Math.floor(_root._score);
_parent._parent._parent._parent.board.cost.gotoAndPlay('go');
_root.character = 7;
_root.characterSaved = _root.character;
_root.strippedHair = false;
_root.strippedFace = false;
_root.strippedMask = false;
_parent.setButtons();
_parent.setSelect();
this.gotoAndPlay('buy');
_root.character07unlocked = true;
}
}
}
}
}
instance btnCha01 of movieClip 5592 {
onClipEvent (release) {
if (_root.menuSelected != 'cha01') {
if (_root.character01unlocked == true) {
_root.character = 1;
_root.characterSaved = _root.character;
_root.strippedHair = false;
_root.strippedFace = false;
_root.strippedMask = false;
_parent.setButtons();
gotoAndStop('on');
_root.menuSelected = 'cha01';
_parent.setSelect();
} else {
_root.character = 1;
_parent.setButtons();
gotoAndStop('onLocked');
_root.menuSelected = 'cha01';
_parent.setSelect();
}
} else {
if (_root.character01unlocked != true) {
if (_root._score >= _root.character01cost) {
_root.buyCost = '- ' + _root.character01cost;
_root._score -= _root.character01cost;
_root._scoreDisplay = Math.floor(_root._score);
_parent._parent._parent._parent.board.cost.gotoAndPlay('go');
_root.character = 1;
_root.characterSaved = _root.character;
_root.strippedHair = false;
_root.strippedFace = false;
_root.strippedMask = false;
_parent.setButtons();
_parent.setSelect();
this.gotoAndPlay('buy');
_root.character01unlocked = true;
}
}
}
}
}
instance btnCos02 of movieClip 5568 {
onClipEvent (release) {
if (_root.menuSelected != 'cos02') {
if (_root.costume02unlocked == true) {
_root.costume = 2;
_root.checkCostume();
_root.costumeSaved = _root.costume;
_root.strippedTop = false;
_root.strippedBot = false;
_root.strippedFull = false;
_parent.setButtons();
gotoAndStop('on');
_root.menuSelected = 'cos02';
_parent.setSelect();
} else {
_root.costume = 2;
_root.checkCostume();
_root.strippedTop = false;
_root.strippedBot = false;
_root.strippedFull = false;
_parent.setButtons();
gotoAndStop('onLocked');
_root.menuSelected = 'cos02';
_parent.setSelect();
}
} else {
if (_root.costume02unlocked != true) {
if (_root._score >= _root.costume01cost) {
_root.buyCost = '- ' + _root.costume02cost;
_root._score -= _root.costume02cost;
_root._scoreDisplay = Math.floor(_root._score);
_parent._parent._parent._parent.board.cost.gotoAndPlay('go');
_root.costume = 2;
_root.checkCostume();
_root.costumeSaved = _root.costume;
_parent.setButtons();
_parent.setSelect();
this.gotoAndPlay('buy');
_root.costume02unlocked = true;
}
}
}
}
}
instance btnCos03 of movieClip 5572 {
onClipEvent (release) {
if (_root.menuSelected != 'cos03') {
if (_root.costume03unlocked == true) {
_root.costume = 3;
_root.checkCostume();
_root.costumeSaved = _root.costume;
_root.strippedTop = false;
_root.strippedBot = false;
_root.strippedFull = false;
_parent.setButtons();
gotoAndStop('on');
_root.menuSelected = 'cos03';
_parent.setSelect();
} else {
_root.costume = 3;
_root.checkCostume();
_root.strippedTop = false;
_root.strippedBot = false;
_root.strippedFull = false;
_parent.setButtons();
gotoAndStop('onLocked');
_root.menuSelected = 'cos03';
_parent.setSelect();
}
} else {
if (_root.costume03unlocked != true) {
if (_root._score >= _root.costume01cost) {
_root.buyCost = '- ' + _root.costume03cost;
_root._score -= _root.costume03cost;
_root._scoreDisplay = Math.floor(_root._score);
_parent._parent._parent._parent.board.cost.gotoAndPlay('go');
_root.costume = 3;
_root.checkCostume();
_root.costumeSaved = _root.costume;
_parent.setButtons();
_parent.setSelect();
this.gotoAndPlay('buy');
_root.costume03unlocked = true;
}
}
}
}
}
instance btnCos04 of movieClip 5576 {
onClipEvent (release) {
if (_root.menuSelected != 'cos04') {
if (_root.costume04unlocked == true) {
_root.costume = 4;
_root.checkCostume();
_root.costumeSaved = _root.costume;
_root.strippedTop = false;
_root.strippedBot = false;
_root.strippedFull = false;
_parent.setButtons();
gotoAndStop('on');
_root.menuSelected = 'cos04';
_parent.setSelect();
} else {
_root.costume = 4;
_root.checkCostume();
_root.strippedTop = false;
_root.strippedBot = false;
_root.strippedFull = false;
_parent.setButtons();
gotoAndStop('onLocked');
_root.menuSelected = 'cos04';
_parent.setSelect();
}
} else {
if (_root.costume04unlocked != true) {
if (_root._score >= _root.costume01cost) {
_root.buyCost = '- ' + _root.costume04cost;
_root._score -= _root.costume04cost;
_root._scoreDisplay = Math.floor(_root._score);
_parent._parent._parent._parent.board.cost.gotoAndPlay('go');
_root.costume = 4;
_root.checkCostume();
_root.costumeSaved = _root.costume;
_parent.setButtons();
_parent.setSelect();
this.gotoAndPlay('buy');
_root.costume04unlocked = true;
}
}
}
}
}
instance btnCos05 of movieClip 5580 {
onClipEvent (release) {
if (_root.menuSelected != 'cos05') {
if (_root.costume05unlocked == true) {
_root.costume = 5;
_root.checkCostume();
_root.costumeSaved = _root.costume;
_root.strippedTop = false;
_root.strippedBot = false;
_root.strippedFull = false;
_parent.setButtons();
gotoAndStop('on');
_root.menuSelected = 'cos05';
_parent.setSelect();
} else {
_root.costume = 5;
_root.checkCostume();
_root.strippedTop = false;
_root.strippedBot = false;
_root.strippedFull = false;
_parent.setButtons();
gotoAndStop('onLocked');
_root.menuSelected = 'cos05';
_parent.setSelect();
}
} else {
if (_root.costume05unlocked != true) {
if (_root._score >= _root.costume01cost) {
_root.buyCost = '- ' + _root.costume05cost;
_root._score -= _root.costume05cost;
_root._scoreDisplay = Math.floor(_root._score);
_parent._parent._parent._parent.board.cost.gotoAndPlay('go');
_root.costume = 5;
_root.checkCostume();
_root.costumeSaved = _root.costume;
_parent.setButtons();
_parent.setSelect();
this.gotoAndPlay('buy');
_root.costume05unlocked = true;
}
}
}
}
}
instance btnCos06 of movieClip 5584 {
onClipEvent (release) {
if (_root.menuSelected != 'cos06') {
if (_root.costume06unlocked == true) {
_root.costume = 6;
_root.checkCostume();
_root.costumeSaved = _root.costume;
_root.strippedTop = false;
_root.strippedBot = false;
_root.strippedFull = false;
_parent.setButtons();
gotoAndStop('on');
_root.menuSelected = 'cos06';
_parent.setSelect();
} else {
_root.costume = 6;
_root.checkCostume();
_root.strippedTop = false;
_root.strippedBot = false;
_root.strippedFull = false;
_parent.setButtons();
gotoAndStop('onLocked');
_root.menuSelected = 'cos06';
_parent.setSelect();
}
} else {
if (_root.costume06unlocked != true) {
if (_root._score >= _root.costume01cost) {
_root.buyCost = '- ' + _root.costume06cost;
_root._score -= _root.costume06cost;
_root._scoreDisplay = Math.floor(_root._score);
_parent._parent._parent._parent.board.cost.gotoAndPlay('go');
_root.costume = 6;
_root.checkCostume();
_root.costumeSaved = _root.costume;
_parent.setButtons();
_parent.setSelect();
this.gotoAndPlay('buy');
_root.costume06unlocked = true;
}
}
}
}
}
instance btnCos07 of movieClip 5588 {
onClipEvent (release) {
if (_root.menuSelected != 'cos07') {
if (_root.costume07unlocked == true) {
_root.costume = 7;
_root.checkCostume();
_root.costumeSaved = _root.costume;
_root.strippedTop = false;
_root.strippedBot = false;
_root.strippedFull = false;
_parent.setButtons();
gotoAndStop('on');
_root.menuSelected = 'cos07';
_parent.setSelect();
} else {
_root.costume = 7;
_root.checkCostume();
_root.strippedTop = false;
_root.strippedBot = false;
_root.strippedFull = false;
_parent.setButtons();
gotoAndStop('onLocked');
_root.menuSelected = 'cos07';
_parent.setSelect();
}
} else {
if (_root.costume07unlocked != true) {
if (_root._score >= _root.costume01cost) {
_root.buyCost = '- ' + _root.costume07cost;
_root._score -= _root.costume07cost;
_root._scoreDisplay = Math.floor(_root._score);
_parent._parent._parent._parent.board.cost.gotoAndPlay('go');
_root.costume = 7;
_root.checkCostume();
_root.costumeSaved = _root.costume;
_parent.setButtons();
_parent.setSelect();
this.gotoAndPlay('buy');
_root.costume07unlocked = true;
}
}
}
}
}
instance btnCos25 of movieClip 5596 {
onClipEvent (release) {
if (_root.menuSelected != 'cos25') {
if (_root.costume25unlocked == true) {
_root.costume = 25;
_root.checkCostume();
_root.costumeSaved = _root.costume;
_root.strippedTop = false;
_root.strippedBot = false;
_root.strippedFull = false;
_parent.setButtons();
gotoAndStop('on');
_root.menuSelected = 'cos25';
_parent.setSelect();
} else {
_root.costume = 25;
_root.checkCostume();
_root.strippedTop = false;
_root.strippedBot = false;
_root.strippedFull = false;
_parent.setButtons();
gotoAndStop('onLocked');
_root.menuSelected = 'cos25';
_parent.setSelect();
}
} else {
if (_root.costume25unlocked != true) {
if (_root._score >= _root.costume25cost) {
_root.buyCost = '- ' + _root.costume25cost;
_root._score -= _root.costume25cost;
_root._scoreDisplay = Math.floor(_root._score);
_parent._parent._parent._parent.board.cost.gotoAndPlay('go');
_root.costume = 25;
_root.checkCostume();
_root.costumeSaved = _root.costume;
_parent.setButtons();
_parent.setSelect();
this.gotoAndPlay('buy');
_root.costume25unlocked = true;
}
}
}
}
}
instance btnCos26 of movieClip 5600 {
onClipEvent (release) {
if (_root.menuSelected != 'cos26') {
if (_root.costume26unlocked == true) {
_root.costume = 26;
_root.checkCostume();
_root.costumeSaved = _root.costume;
_root.strippedTop = false;
_root.strippedBot = false;
_root.strippedFull = false;
_parent.setButtons();
gotoAndStop('on');
_root.menuSelected = 'cos26';
_parent.setSelect();
} else {
_root.costume = 26;
_root.checkCostume();
_root.strippedTop = false;
_root.strippedBot = false;
_root.strippedFull = false;
_parent.setButtons();
gotoAndStop('onLocked');
_root.menuSelected = 'cos26';
_parent.setSelect();
}
} else {
if (_root.costume26unlocked != true) {
if (_root._score >= _root.costume26cost) {
_root.buyCost = '- ' + _root.costume26cost;
_root._score -= _root.costume26cost;
_root._scoreDisplay = Math.floor(_root._score);
_parent._parent._parent._parent.board.cost.gotoAndPlay('go');
_root.costume = 26;
_root.checkCostume();
_root.costumeSaved = _root.costume;
_parent.setButtons();
_parent.setSelect();
this.gotoAndPlay('buy');
_root.costume26unlocked = true;
}
}
}
}
}
instance btnCos23 of movieClip 5604 {
onClipEvent (release) {
if (_root.menuSelected != 'cos23') {
if (_root.costume23unlocked == true) {
_root.costume = 23;
_root.checkCostume();
_root.costumeSaved = _root.costume;
_root.strippedTop = false;
_root.strippedBot = false;
_root.strippedFull = false;
_parent.setButtons();
gotoAndStop('on');
_root.menuSelected = 'cos23';
_parent.setSelect();
} else {
_root.costume = 23;
_root.checkCostume();
_root.strippedTop = false;
_root.strippedBot = false;
_root.strippedFull = false;
_parent.setButtons();
gotoAndStop('onLocked');
_root.menuSelected = 'cos23';
_parent.setSelect();
}
} else {
if (_root.costume23unlocked != true) {
if (_root._score >= _root.costume23cost) {
_root.buyCost = '- ' + _root.costume23cost;
_root._score -= _root.costume23cost;
_root._scoreDisplay = Math.floor(_root._score);
_parent._parent._parent._parent.board.cost.gotoAndPlay('go');
_root.costume = 23;
_root.checkCostume();
_root.costumeSaved = _root.costume;
_parent.setButtons();
_parent.setSelect();
this.gotoAndPlay('buy');
_root.costume23unlocked = true;
}
}
}
}
}
instance btnCos27 of movieClip 5608 {
onClipEvent (release) {
if (_root.menuSelected != 'cos27') {
if (_root.costume27unlocked == true) {
_root.costume = 27;
_root.checkCostume();
_root.costumeSaved = _root.costume;
_root.strippedTop = false;
_root.strippedBot = false;
_root.strippedFull = false;
_parent.setButtons();
gotoAndStop('on');
_root.menuSelected = 'cos27';
_parent.setSelect();
} else {
_root.costume = 27;
_root.checkCostume();
_root.strippedTop = false;
_root.strippedBot = false;
_root.strippedFull = false;
_parent.setButtons();
gotoAndStop('onLocked');
_root.menuSelected = 'cos27';
_parent.setSelect();
}
} else {
if (_root.costume27unlocked != true) {
if (_root._score >= _root.costume27cost) {
_root.buyCost = '- ' + _root.costume27cost;
_root._score -= _root.costume27cost;
_root._scoreDisplay = Math.floor(_root._score);
_parent._parent._parent._parent.board.cost.gotoAndPlay('go');
_root.costume = 27;
_root.checkCostume();
_root.costumeSaved = _root.costume;
_parent.setButtons();
_parent.setSelect();
this.gotoAndPlay('buy');
_root.costume27unlocked = true;
}
}
}
}
}
instance btnCos28 of movieClip 5612 {
onClipEvent (release) {
if (_root.menuSelected != 'cos28') {
if (_root.costume28unlocked == true) {
_root.costume = 28;
_root.checkCostume();
_root.costumeSaved = _root.costume;
_root.strippedTop = false;
_root.strippedBot = false;
_root.strippedFull = false;
_parent.setButtons();
gotoAndStop('on');
_root.menuSelected = 'cos28';
_parent.setSelect();
} else {
_root.costume = 28;
_root.checkCostume();
_root.strippedTop = false;
_root.strippedBot = false;
_root.strippedFull = false;
_parent.setButtons();
gotoAndStop('onLocked');
_root.menuSelected = 'cos28';
_parent.setSelect();
}
} else {
if (_root.costume28unlocked != true) {
if (_root._score >= _root.costume28cost) {
_root.buyCost = '- ' + _root.costume28cost;
_root._score -= _root.costume28cost;
_root._scoreDisplay = Math.floor(_root._score);
_parent._parent._parent._parent.board.cost.gotoAndPlay('go');
_root.costume = 28;
_root.checkCostume();
_root.costumeSaved = _root.costume;
_parent.setButtons();
_parent.setSelect();
this.gotoAndPlay('buy');
_root.costume28unlocked = true;
}
}
}
}
}
instance btnCos24 of movieClip 5616 {
onClipEvent (release) {
if (_root.menuSelected != 'cos24') {
if (_root.costume24unlocked == true) {
_root.costume = 24;
_root.checkCostume();
_root.costumeSaved = _root.costume;
_root.strippedTop = false;
_root.strippedBot = false;
_root.strippedFull = false;
_parent.setButtons();
gotoAndStop('on');
_root.menuSelected = 'cos24';
_parent.setSelect();
} else {
_root.costume = 24;
_root.checkCostume();
_root.strippedTop = false;
_root.strippedBot = false;
_root.strippedFull = false;
_parent.setButtons();
gotoAndStop('onLocked');
_root.menuSelected = 'cos24';
_parent.setSelect();
}
} else {
if (_root.costume24unlocked != true) {
if (_root._score >= _root.costume24cost) {
_root.buyCost = '- ' + _root.costume24cost;
_root._score -= _root.costume24cost;
_root._scoreDisplay = Math.floor(_root._score);
_parent._parent._parent._parent.board.cost.gotoAndPlay('go');
_root.costume = 24;
_root.checkCostume();
_root.costumeSaved = _root.costume;
_parent.setButtons();
_parent.setSelect();
this.gotoAndPlay('buy');
_root.costume24unlocked = true;
}
}
}
}
}
instance btnCos01 of movieClip 5592 {
onClipEvent (release) {
if (_root.menuSelected != 'cos01') {
if (_root.costume01unlocked == true) {
_root.costume = 1;
_root.checkCostume();
_root.costumeSaved = _root.costume;
_root.strippedTop = false;
_root.strippedBot = false;
_root.strippedFull = false;
_parent.setButtons();
gotoAndStop('on');
_root.menuSelected = 'cos01';
_parent.setSelect();
} else {
_root.costume = 1;
_root.checkCostume();
_root.strippedTop = false;
_root.strippedBot = false;
_root.strippedFull = false;
_parent.setButtons();
gotoAndStop('onLocked');
_root.menuSelected = 'cos01';
_parent.setSelect();
}
} else {
if (_root.costume01unlocked != true) {
if (_root._score >= _root.costume01cost) {
_root.buyCost = '- ' + _root.costume01cost;
_root._score -= _root.costume01cost;
_root._scoreDisplay = Math.floor(_root._score);
_parent._parent._parent._parent.board.cost.gotoAndPlay('go');
_root.costume = 1;
_root.checkCostume();
_root.costumeSaved = _root.costume;
_parent.setButtons();
_parent.setSelect();
this.gotoAndPlay('buy');
_root.costume01unlocked = true;
}
}
}
}
}
instance btnCos29 of movieClip 5620 {
onClipEvent (release) {
if (_root.menuSelected != 'cos29') {
if (_root.costume29unlocked == true) {
_root.costume = 29;
_root.checkCostume();
_root.costumeSaved = _root.costume;
_root.strippedTop = false;
_root.strippedBot = false;
_root.strippedFull = false;
_parent.setButtons();
gotoAndStop('on');
_root.menuSelected = 'cos29';
_parent.setSelect();
} else {
_root.costume = 29;
_root.checkCostume();
_root.strippedTop = false;
_root.strippedBot = false;
_root.strippedFull = false;
_parent.setButtons();
gotoAndStop('onLocked');
_root.menuSelected = 'cos29';
_parent.setSelect();
}
} else {
if (_root.costume29unlocked != true) {
if (_root._score >= _root.costume29cost) {
_root.buyCost = '- ' + _root.costume29cost;
_root._score -= _root.costume29cost;
_root._scoreDisplay = Math.floor(_root._score);
_parent._parent._parent._parent.board.cost.gotoAndPlay('go');
_root.costume = 29;
_root.checkCostume();
_root.costumeSaved = _root.costume;
_parent.setButtons();
_parent.setSelect();
this.gotoAndPlay('buy');
_root.costume29unlocked = true;
}
}
}
}
}
frame 3 {
gotoAndStop('menu');
}
instance btnCha02 of movieClip 5641 {
onClipEvent (release) {
if (_root.menuSelected != 'cha01') {
if (_root.character01unlocked == true) {
_root.character = 1;
_root.characterSaved = _root.character;
_root.strippedHair = false;
_root.strippedFace = false;
_root.strippedMask = false;
_parent.setButtons();
gotoAndStop('on');
_root.menuSelected = 'cha01';
_parent.setSelect();
} else {
_root.character = 1;
_parent.setButtons();
gotoAndStop('onLocked');
_root.menuSelected = 'cha01';
_parent.setSelect();
}
} else {
if (_root.character01unlocked != true) {
if (_root._score >= _root.character01cost) {
_root.buyCost = '- ' + _root.character01cost;
_root._score -= _root.character01cost;
_root._scoreDisplay = Math.floor(_root._score);
_parent._parent._parent._parent.board.cost.gotoAndPlay('go');
_root.character = 1;
_root.characterSaved = _root.character;
_root.strippedHair = false;
_root.strippedFace = false;
_root.strippedMask = false;
_parent.setButtons();
_parent.setSelect();
this.gotoAndPlay('buy');
_root.character01unlocked = true;
}
}
}
}
}
instance btnCha03 of movieClip 5647 {
onClipEvent (release) {
if (_root.menuSelected != 'cha03') {
if (_root.character03unlocked == true) {
_root.character = 3;
_root.characterSaved = _root.character;
_root.strippedHair = false;
_root.strippedFace = false;
_root.strippedMask = false;
_parent.setButtons();
gotoAndStop('on');
_root.menuSelected = 'cha03';
_parent.setSelect();
} else {
_root.character = 3;
_parent.setButtons();
gotoAndStop('onLocked');
_root.menuSelected = 'cha03';
_parent.setSelect();
}
} else {
if (_root.character03unlocked != true) {
if (_root._score >= _root.character01cost) {
_root.buyCost = '- ' + _root.character03cost;
_root._score -= _root.character03cost;
_root._scoreDisplay = Math.floor(_root._score);
_parent._parent._parent._parent.board.cost.gotoAndPlay('go');
_root.character = 3;
_root.characterSaved = _root.character;
_root.strippedHair = false;
_root.strippedFace = false;
_root.strippedMask = false;
_parent.setButtons();
_parent.setSelect();
this.gotoAndPlay('buy');
_root.character03unlocked = true;
}
}
}
}
}
instance btnCha04 of movieClip 5653 {
onClipEvent (release) {
if (_root.menuSelected != 'cha04') {
if (_root.character04unlocked == true) {
_root.character = 4;
_root.characterSaved = _root.character;
_root.strippedHair = false;
_root.strippedFace = false;
_root.strippedMask = false;
_parent.setButtons();
gotoAndStop('on');
_root.menuSelected = 'cha04';
_parent.setSelect();
} else {
_root.character = 4;
_parent.setButtons();
gotoAndStop('onLocked');
_root.menuSelected = 'cha04';
_parent.setSelect();
}
} else {
if (_root.character04unlocked != true) {
if (_root._score >= _root.character01cost) {
_root.buyCost = '- ' + _root.character04cost;
_root._score -= _root.character04cost;
_root._scoreDisplay = Math.floor(_root._score);
_parent._parent._parent._parent.board.cost.gotoAndPlay('go');
_root.character = 4;
_root.characterSaved = _root.character;
_root.strippedHair = false;
_root.strippedFace = false;
_root.strippedMask = false;
_parent.setButtons();
_parent.setSelect();
this.gotoAndPlay('buy');
_root.character04unlocked = true;
}
}
}
}
}
instance btnCha05 of movieClip 5659 {
onClipEvent (release) {
if (_root.menuSelected != 'cha05') {
if (_root.character05unlocked == true) {
_root.character = 5;
_root.characterSaved = _root.character;
_root.strippedHair = false;
_root.strippedFace = false;
_root.strippedMask = false;
_parent.setButtons();
gotoAndStop('on');
_root.menuSelected = 'cha05';
_parent.setSelect();
} else {
_root.character = 5;
_parent.setButtons();
gotoAndStop('onLocked');
_root.menuSelected = 'cha05';
_parent.setSelect();
}
} else {
if (_root.character05unlocked != true) {
if (_root._score >= _root.character01cost) {
_root.buyCost = '- ' + _root.character05cost;
_root._score -= _root.character05cost;
_root._scoreDisplay = Math.floor(_root._score);
_parent._parent._parent._parent.board.cost.gotoAndPlay('go');
_root.character = 5;
_root.characterSaved = _root.character;
_root.strippedHair = false;
_root.strippedFace = false;
_root.strippedMask = false;
_parent.setButtons();
_parent.setSelect();
this.gotoAndPlay('buy');
_root.character05unlocked = true;
}
}
}
}
}
instance btnCha06 of movieClip 5665 {
onClipEvent (release) {
if (_root.menuSelected != 'cha06') {
if (_root.character06unlocked == true) {
_root.character = 6;
_root.characterSaved = _root.character;
_root.strippedHair = false;
_root.strippedFace = false;
_root.strippedMask = false;
_parent.setButtons();
gotoAndStop('on');
_root.menuSelected = 'cha06';
_parent.setSelect();
} else {
_root.character = 6;
_parent.setButtons();
gotoAndStop('onLocked');
_root.menuSelected = 'cha06';
_parent.setSelect();
}
} else {
if (_root.character06unlocked != true) {
if (_root._score >= _root.character01cost) {
_root.buyCost = '- ' + _root.character06cost;
_root._score -= _root.character06cost;
_root._scoreDisplay = Math.floor(_root._score);
_parent._parent._parent._parent.board.cost.gotoAndPlay('go');
_root.character = 6;
_root.characterSaved = _root.character;
_root.strippedHair = false;
_root.strippedFace = false;
_root.strippedMask = false;
_parent.setButtons();
_parent.setSelect();
this.gotoAndPlay('buy');
_root.character06unlocked = true;
}
}
}
}
}
instance btnCha07 of movieClip 5671 {
onClipEvent (release) {
if (_root.menuSelected != 'cha07') {
if (_root.character07unlocked == true) {
_root.character = 7;
_root.characterSaved = _root.character;
_root.strippedHair = false;
_root.strippedFace = false;
_root.strippedMask = false;
_parent.setButtons();
gotoAndStop('on');
_root.menuSelected = 'cha07';
_parent.setSelect();
} else {
_root.character = 7;
_parent.setButtons();
gotoAndStop('onLocked');
_root.menuSelected = 'cha07';
_parent.setSelect();
}
} else {
if (_root.character07unlocked != true) {
if (_root._score >= _root.character01cost) {
_root.buyCost = '- ' + _root.character07cost;
_root._score -= _root.character07cost;
_root._scoreDisplay = Math.floor(_root._score);
_parent._parent._parent._parent.board.cost.gotoAndPlay('go');
_root.character = 7;
_root.characterSaved = _root.character;
_root.strippedHair = false;
_root.strippedFace = false;
_root.strippedMask = false;
_parent.setButtons();
_parent.setSelect();
this.gotoAndPlay('buy');
_root.character07unlocked = true;
}
}
}
}
}
instance btnCha01 of movieClip 5677 {
onClipEvent (release) {
if (_root.menuSelected != 'cha02') {
if (_root.character02unlocked == true) {
_root.character = 2;
_root.characterSaved = _root.character;
_root.strippedHair = false;
_root.strippedFace = false;
_root.strippedMask = false;
_parent.setButtons();
gotoAndStop('on');
_root.menuSelected = 'cha02';
_parent.setSelect();
} else {
_root.character = 2;
_parent.setButtons();
gotoAndStop('onLocked');
_root.menuSelected = 'cha02';
_parent.setSelect();
}
} else {
if (_root.character02unlocked != true) {
if (_root._score >= _root.character01cost) {
_root.buyCost = '- ' + _root.character02cost;
_root._score -= _root.character02cost;
_root._scoreDisplay = Math.floor(_root._score);
_parent._parent._parent._parent.board.cost.gotoAndPlay('go');
_root.character = 2;
_root.characterSaved = _root.character;
_root.strippedHair = false;
_root.strippedFace = false;
_root.strippedMask = false;
_parent.setButtons();
_parent.setSelect();
this.gotoAndPlay('buy');
_root.character02unlocked = true;
}
}
}
}
}
instance btnCos02 of movieClip 5568 {
onClipEvent (release) {
if (_root.menuSelected != 'cos02') {
if (_root.costume02unlocked == true) {
_root.costume = 2;
_root.costumeSaved = _root.costume;
_root.strippedTop = false;
_root.strippedBot = false;
_root.strippedFull = false;
_parent.setButtons();
gotoAndStop('on');
_root.menuSelected = 'cos02';
_parent.setSelect();
} else {
_root.costume = 2;
_root.strippedTop = false;
_root.strippedBot = false;
_root.strippedFull = false;
_parent.setButtons();
gotoAndStop('onLocked');
_root.menuSelected = 'cos02';
_parent.setSelect();
}
} else {
if (_root.costume02unlocked != true) {
if (_root._score >= _root.costume01cost) {
_root.buyCost = '- ' + _root.costume02cost;
_root._score -= _root.costume02cost;
_root._scoreDisplay = Math.floor(_root._score);
_parent._parent._parent._parent.board.cost.gotoAndPlay('go');
_root.costume = 2;
_root.costumeSaved = _root.costume;
_parent.setButtons();
_parent.setSelect();
this.gotoAndPlay('buy');
_root.costume02unlocked = true;
}
}
}
}
}
instance btnCos03 of movieClip 5572 {
onClipEvent (release) {
if (_root.menuSelected != 'cos03') {
if (_root.costume03unlocked == true) {
_root.costume = 3;
_root.costumeSaved = _root.costume;
_root.strippedTop = false;
_root.strippedBot = false;
_root.strippedFull = false;
_parent.setButtons();
gotoAndStop('on');
_root.menuSelected = 'cos03';
_parent.setSelect();
} else {
_root.costume = 3;
_root.strippedTop = false;
_root.strippedBot = false;
_root.strippedFull = false;
_parent.setButtons();
gotoAndStop('onLocked');
_root.menuSelected = 'cos03';
_parent.setSelect();
}
} else {
if (_root.costume03unlocked != true) {
if (_root._score >= _root.costume01cost) {
_root.buyCost = '- ' + _root.costume03cost;
_root._score -= _root.costume03cost;
_root._scoreDisplay = Math.floor(_root._score);
_parent._parent._parent._parent.board.cost.gotoAndPlay('go');
_root.costume = 3;
_root.costumeSaved = _root.costume;
_parent.setButtons();
_parent.setSelect();
this.gotoAndPlay('buy');
_root.costume03unlocked = true;
}
}
}
}
}
instance btnCos04 of movieClip 5576 {
onClipEvent (release) {
if (_root.menuSelected != 'cos04') {
if (_root.costume04unlocked == true) {
_root.costume = 4;
_root.costumeSaved = _root.costume;
_root.strippedTop = false;
_root.strippedBot = false;
_root.strippedFull = false;
_parent.setButtons();
gotoAndStop('on');
_root.menuSelected = 'cos04';
_parent.setSelect();
} else {
_root.costume = 4;
_root.strippedTop = false;
_root.strippedBot = false;
_root.strippedFull = false;
_parent.setButtons();
gotoAndStop('onLocked');
_root.menuSelected = 'cos04';
_parent.setSelect();
}
} else {
if (_root.costume04unlocked != true) {
if (_root._score >= _root.costume01cost) {
_root.buyCost = '- ' + _root.costume04cost;
_root._score -= _root.costume04cost;
_root._scoreDisplay = Math.floor(_root._score);
_parent._parent._parent._parent.board.cost.gotoAndPlay('go');
_root.costume = 4;
_root.costumeSaved = _root.costume;
_parent.setButtons();
_parent.setSelect();
this.gotoAndPlay('buy');
_root.costume04unlocked = true;
}
}
}
}
}
instance btnCos05 of movieClip 5580 {
onClipEvent (release) {
if (_root.menuSelected != 'cos05') {
if (_root.costume05unlocked == true) {
_root.costume = 5;
_root.costumeSaved = _root.costume;
_root.strippedTop = false;
_root.strippedBot = false;
_root.strippedFull = false;
_parent.setButtons();
gotoAndStop('on');
_root.menuSelected = 'cos05';
_parent.setSelect();
} else {
_root.costume = 5;
_root.strippedTop = false;
_root.strippedBot = false;
_root.strippedFull = false;
_parent.setButtons();
gotoAndStop('onLocked');
_root.menuSelected = 'cos05';
_parent.setSelect();
}
} else {
if (_root.costume05unlocked != true) {
if (_root._score >= _root.costume01cost) {
_root.buyCost = '- ' + _root.costume05cost;
_root._score -= _root.costume05cost;
_root._scoreDisplay = Math.floor(_root._score);
_parent._parent._parent._parent.board.cost.gotoAndPlay('go');
_root.costume = 5;
_root.costumeSaved = _root.costume;
_parent.setButtons();
_parent.setSelect();
this.gotoAndPlay('buy');
_root.costume05unlocked = true;
}
}
}
}
}
instance btnCos06 of movieClip 5584 {
onClipEvent (release) {
if (_root.menuSelected != 'cos06') {
if (_root.costume06unlocked == true) {
_root.costume = 6;
_root.costumeSaved = _root.costume;
_root.strippedTop = false;
_root.strippedBot = false;
_root.strippedFull = false;
_parent.setButtons();
gotoAndStop('on');
_root.menuSelected = 'cos06';
_parent.setSelect();
} else {
_root.costume = 6;
_root.strippedTop = false;
_root.strippedBot = false;
_root.strippedFull = false;
_parent.setButtons();
gotoAndStop('onLocked');
_root.menuSelected = 'cos06';
_parent.setSelect();
}
} else {
if (_root.costume06unlocked != true) {
if (_root._score >= _root.costume01cost) {
_root.buyCost = '- ' + _root.costume06cost;
_root._score -= _root.costume06cost;
_root._scoreDisplay = Math.floor(_root._score);
_parent._parent._parent._parent.board.cost.gotoAndPlay('go');
_root.costume = 6;
_root.costumeSaved = _root.costume;
_parent.setButtons();
_parent.setSelect();
this.gotoAndPlay('buy');
_root.costume06unlocked = true;
}
}
}
}
}
instance btnCos07 of movieClip 5588 {
onClipEvent (release) {
if (_root.menuSelected != 'cos07') {
if (_root.costume07unlocked == true) {
_root.costume = 7;
_root.costumeSaved = _root.costume;
_root.strippedTop = false;
_root.strippedBot = false;
_root.strippedFull = false;
_parent.setButtons();
gotoAndStop('on');
_root.menuSelected = 'cos07';
_parent.setSelect();
} else {
_root.costume = 7;
_root.strippedTop = false;
_root.strippedBot = false;
_root.strippedFull = false;
_parent.setButtons();
gotoAndStop('onLocked');
_root.menuSelected = 'cos07';
_parent.setSelect();
}
} else {
if (_root.costume07unlocked != true) {
if (_root._score >= _root.costume01cost) {
_root.buyCost = '- ' + _root.costume07cost;
_root._score -= _root.costume07cost;
_root._scoreDisplay = Math.floor(_root._score);
_parent._parent._parent._parent.board.cost.gotoAndPlay('go');
_root.costume = 7;
_root.costumeSaved = _root.costume;
_parent.setButtons();
_parent.setSelect();
this.gotoAndPlay('buy');
_root.costume07unlocked = true;
}
}
}
}
}
instance btnCos25 of movieClip 5596 {
onClipEvent (release) {
if (_root.menuSelected != 'cos25') {
if (_root.costume25unlocked == true) {
_root.costume = 25;
_root.costumeSaved = _root.costume;
_root.strippedTop = false;
_root.strippedBot = false;
_root.strippedFull = false;
_parent.setButtons();
gotoAndStop('on');
_root.menuSelected = 'cos25';
_parent.setSelect();
} else {
_root.costume = 25;
_root.strippedTop = false;
_root.strippedBot = false;
_root.strippedFull = false;
_parent.setButtons();
gotoAndStop('onLocked');
_root.menuSelected = 'cos25';
_parent.setSelect();
}
} else {
if (_root.costume25unlocked != true) {
if (_root._score >= _root.costume25cost) {
_root.buyCost = '- ' + _root.costume25cost;
_root._score -= _root.costume25cost;
_root._scoreDisplay = Math.floor(_root._score);
_parent._parent._parent._parent.board.cost.gotoAndPlay('go');
_root.costume = 25;
_root.costumeSaved = _root.costume;
_parent.setButtons();
_parent.setSelect();
this.gotoAndPlay('buy');
_root.costume25unlocked = true;
}
}
}
}
}
instance btnCos26 of movieClip 5600 {
onClipEvent (release) {
if (_root.menuSelected != 'cos26') {
if (_root.costume26unlocked == true) {
_root.costume = 26;
_root.costumeSaved = _root.costume;
_root.strippedTop = false;
_root.strippedBot = false;
_root.strippedFull = false;
_parent.setButtons();
gotoAndStop('on');
_root.menuSelected = 'cos26';
_parent.setSelect();
} else {
_root.costume = 26;
_root.strippedTop = false;
_root.strippedBot = false;
_root.strippedFull = false;
_parent.setButtons();
gotoAndStop('onLocked');
_root.menuSelected = 'cos26';
_parent.setSelect();
}
} else {
if (_root.costume26unlocked != true) {
if (_root._score >= _root.costume26cost) {
_root.buyCost = '- ' + _root.costume26cost;
_root._score -= _root.costume26cost;
_root._scoreDisplay = Math.floor(_root._score);
_parent._parent._parent._parent.board.cost.gotoAndPlay('go');
_root.costume = 26;
_root.costumeSaved = _root.costume;
_parent.setButtons();
_parent.setSelect();
this.gotoAndPlay('buy');
_root.costume26unlocked = true;
}
}
}
}
}
instance btnCos23 of movieClip 5604 {
onClipEvent (release) {
if (_root.menuSelected != 'cos23') {
if (_root.costume23unlocked == true) {
_root.costume = 23;
_root.costumeSaved = _root.costume;
_root.strippedTop = false;
_root.strippedBot = false;
_root.strippedFull = false;
_parent.setButtons();
gotoAndStop('on');
_root.menuSelected = 'cos23';
_parent.setSelect();
} else {
_root.costume = 23;
_root.strippedTop = false;
_root.strippedBot = false;
_root.strippedFull = false;
_parent.setButtons();
gotoAndStop('onLocked');
_root.menuSelected = 'cos23';
_parent.setSelect();
}
} else {
if (_root.costume23unlocked != true) {
if (_root._score >= _root.costume23cost) {
_root.buyCost = '- ' + _root.costume23cost;
_root._score -= _root.costume23cost;
_root._scoreDisplay = Math.floor(_root._score);
_parent._parent._parent._parent.board.cost.gotoAndPlay('go');
_root.costume = 23;
_root.costumeSaved = _root.costume;
_parent.setButtons();
_parent.setSelect();
this.gotoAndPlay('buy');
_root.costume23unlocked = true;
}
}
}
}
}
instance btnCos27 of movieClip 5608 {
onClipEvent (release) {
if (_root.menuSelected != 'cos27') {
if (_root.costume27unlocked == true) {
_root.costume = 27;
_root.costumeSaved = _root.costume;
_root.strippedTop = false;
_root.strippedBot = false;
_root.strippedFull = false;
_parent.setButtons();
gotoAndStop('on');
_root.menuSelected = 'cos27';
_parent.setSelect();
} else {
_root.costume = 27;
_root.strippedTop = false;
_root.strippedBot = false;
_root.strippedFull = false;
_parent.setButtons();
gotoAndStop('onLocked');
_root.menuSelected = 'cos27';
_parent.setSelect();
}
} else {
if (_root.costume27unlocked != true) {
if (_root._score >= _root.costume27cost) {
_root.buyCost = '- ' + _root.costume27cost;
_root._score -= _root.costume27cost;
_root._scoreDisplay = Math.floor(_root._score);
_parent._parent._parent._parent.board.cost.gotoAndPlay('go');
_root.costume = 27;
_root.costumeSaved = _root.costume;
_parent.setButtons();
_parent.setSelect();
this.gotoAndPlay('buy');
_root.costume27unlocked = true;
}
}
}
}
}
instance btnCos28 of movieClip 5612 {
onClipEvent (release) {
if (_root.menuSelected != 'cos28') {
if (_root.costume28unlocked == true) {
_root.costume = 28;
_root.costumeSaved = _root.costume;
_root.strippedTop = false;
_root.strippedBot = false;
_root.strippedFull = false;
_parent.setButtons();
gotoAndStop('on');
_root.menuSelected = 'cos28';
_parent.setSelect();
} else {
_root.costume = 28;
_root.strippedTop = false;
_root.strippedBot = false;
_root.strippedFull = false;
_parent.setButtons();
gotoAndStop('onLocked');
_root.menuSelected = 'cos28';
_parent.setSelect();
}
} else {
if (_root.costume28unlocked != true) {
if (_root._score >= _root.costume28cost) {
_root.buyCost = '- ' + _root.costume28cost;
_root._score -= _root.costume28cost;
_root._scoreDisplay = Math.floor(_root._score);
_parent._parent._parent._parent.board.cost.gotoAndPlay('go');
_root.costume = 28;
_root.costumeSaved = _root.costume;
_parent.setButtons();
_parent.setSelect();
this.gotoAndPlay('buy');
_root.costume28unlocked = true;
}
}
}
}
}
instance btnCos24 of movieClip 5616 {
onClipEvent (release) {
if (_root.menuSelected != 'cos24') {
if (_root.costume24unlocked == true) {
_root.costume = 24;
_root.costumeSaved = _root.costume;
_root.strippedTop = false;
_root.strippedBot = false;
_root.strippedFull = false;
_parent.setButtons();
gotoAndStop('on');
_root.menuSelected = 'cos24';
_parent.setSelect();
} else {
_root.costume = 24;
_root.strippedTop = false;
_root.strippedBot = false;
_root.strippedFull = false;
_parent.setButtons();
gotoAndStop('onLocked');
_root.menuSelected = 'cos24';
_parent.setSelect();
}
} else {
if (_root.costume24unlocked != true) {
if (_root._score >= _root.costume24cost) {
_root.buyCost = '- ' + _root.costume24cost;
_root._score -= _root.costume24cost;
_root._scoreDisplay = Math.floor(_root._score);
_parent._parent._parent._parent.board.cost.gotoAndPlay('go');
_root.costume = 24;
_root.costumeSaved = _root.costume;
_parent.setButtons();
_parent.setSelect();
this.gotoAndPlay('buy');
_root.costume24unlocked = true;
}
}
}
}
}
instance btnCos01 of movieClip 5592 {
onClipEvent (release) {
if (_root.menuSelected != 'cos01') {
if (_root.costume01unlocked == true) {
_root.costume = 1;
_root.costumeSaved = _root.costume;
_root.strippedTop = false;
_root.strippedBot = false;
_root.strippedFull = false;
_parent.setButtons();
gotoAndStop('on');
_root.menuSelected = 'cos01';
_parent.setSelect();
} else {
_root.costume = 1;
_root.strippedTop = false;
_root.strippedBot = false;
_root.strippedFull = false;
_parent.setButtons();
gotoAndStop('onLocked');
_root.menuSelected = 'cos01';
_parent.setSelect();
}
} else {
if (_root.costume01unlocked != true) {
if (_root._score >= _root.costume01cost) {
_root.buyCost = '- ' + _root.costume01cost;
_root._score -= _root.costume01cost;
_root._scoreDisplay = Math.floor(_root._score);
_parent._parent._parent._parent.board.cost.gotoAndPlay('go');
_root.costume = 1;
_root.costumeSaved = _root.costume;
_parent.setButtons();
_parent.setSelect();
this.gotoAndPlay('buy');
_root.costume01unlocked = true;
}
}
}
}
}
instance btnCos29 of movieClip 5620 {
onClipEvent (release) {
if (_root.menuSelected != 'cos29') {
if (_root.costume29unlocked == true) {
_root.costume = 29;
_root.costumeSaved = _root.costume;
_root.strippedTop = false;
_root.strippedBot = false;
_root.strippedFull = false;
_parent.setButtons();
gotoAndStop('on');
_root.menuSelected = 'cos29';
_parent.setSelect();
} else {
_root.costume = 29;
_root.strippedTop = false;
_root.strippedBot = false;
_root.strippedFull = false;
_parent.setButtons();
gotoAndStop('onLocked');
_root.menuSelected = 'cos29';
_parent.setSelect();
}
} else {
if (_root.costume29unlocked != true) {
if (_root._score >= _root.costume29cost) {
_root.buyCost = '- ' + _root.costume29cost;
_root._score -= _root.costume29cost;
_root._scoreDisplay = Math.floor(_root._score);
_parent._parent._parent._parent.board.cost.gotoAndPlay('go');
_root.costume = 29;
_root.costumeSaved = _root.costume;
_parent.setButtons();
_parent.setSelect();
this.gotoAndPlay('buy');
_root.costume29unlocked = true;
}
}
}
}
}
}
movieClip 5685 win {
frame 1 {
function setSelect() {
if (_root.menuSelected == false) {
textCostWord.text = '';
} else {
textCostWord.text = 'Cost:';
}
switch (_root.menuSelected) {
case false:
textCost.text = '';
textName.text = '';
textLine1.text = '';
textLine2.text = '';
break;
case 'b1':
textCost.text = _root.skillB1Cost;
textName.text = 'Foreplay #1';
textLine1.text = 'as safe as sex with strangers can be';
textLine2.text = '[new pose: handjob]';
break;
case 'b2':
textCost.text = _root.skillB2Cost;
textName.text = 'Foreplay #2';
textLine1.text = 'if you got the goods..';
textLine2.text = '[new pose: tittyfuck]';
break;
case 'b3':
textCost.text = _root.skillB3Cost;
textName.text = 'Foreplay #3';
textLine1.text = 'when an arm\'s reach isnt enough';
textLine2.text = '[new pose: footjob]';
break;
case 'b4':
textCost.text = _root.skillB4Cost;
textName.text = 'Foreplay #4';
textLine1.text = 'better living through technology';
textLine2.text = '[new pose: omnitool stimulation]';
break;
case 'b5':
textCost.text = _root.skillB5Cost;
textName.text = 'Foreplay #5';
textLine1.text = 'the future is NOW';
textLine2.text = '[new pose: biotic handjob]';
break;
case 's1':
textCost.text = _root.skillS1Cost;
textName.text = 'Fellatio #1';
textLine1.text = 'Sucking dick 101 - the basics';
textLine2.text = '[new pose: just the tip]';
break;
case 's2':
textCost.text = _root.skillS2Cost;
textName.text = 'Fellatio #2';
textLine1.text = 'Sucking dick 102 - workin\' it';
textLine2.text = '[new pose: blow]';
break;
case 's3':
textCost.text = _root.skillS3Cost;
textName.text = 'Fellatio #3';
textLine1.text = 'Sucking dick 103 - goin\' deep';
textLine2.text = '[new pose: hands-free]';
break;
case 's4':
textCost.text = _root.skillS4Cost;
textName.text = 'Fellatio #4';
textLine1.text = 'Sucking dick 104 - multi-tasking';
textLine2.text = '[new pose: the classic]';
break;
case 's5':
textCost.text = _root.skillS5Cost;
textName.text = 'Fellatio #5';
textLine1.text = 'Sucking dick 105 - not choking';
textLine2.text = '[new pose: deepthroat]';
break;
case 'f1':
textCost.text = _root.skillF1Cost;
textName.text = 'Intercourse #1';
textLine1.text = 'Because sex with strangers.';
textLine2.text = '[new pose: sex]';
break;
case 'f2':
textCost.text = _root.skillF2Cost;
textName.text = 'Intercourse #2';
textLine1.text = 'The naughtiest smile';
textLine2.text = '[new pose: spread-ass]';
break;
case 'f3':
textCost.text = _root.skillF3Cost;
textName.text = 'Intercourse #3';
textLine1.text = 'It\'s not all about them..';
textLine2.text = '[new pose: squeezing tits]';
break;
case 'f4':
textCost.text = _root.skillF4Cost;
textName.text = 'Intercourse #4';
textLine1.text = 'Introducing miss bendy-legs';
textLine2.text = '[new pose: leg-up]';
break;
case 'a1':
textCost.text = _root.skillA1Cost;
textName.text = 'Sodomy #1';
textLine1.text = 'Backdoor Basics';
textLine2.text = '[new pose: butt-sex]';
break;
case 'a2':
textCost.text = _root.skillA2Cost;
textName.text = 'Sodomy #2';
textLine1.text = 'Immoral Intermediacy';
textLine2.text = '[new pose: hold open';
break;
case 'a3':
textCost.text = _root.skillA3Cost;
textName.text = 'Sodomy #3';
textLine1.text = 'Anal Artistry';
textLine2.text = '[new pose: self-squeeze]';
break;
case 'a4':
textCost.text = _root.skillA4Cost;
textName.text = 'Sodomy #4';
textLine1.text = 'Sphincter Supremacy';
textLine2.text = '[new pose: multi-tasking]';
break;
case 'fin1':
textCost.text = _root.skillFin1Cost;
textName.text = 'Proficient';
textLine1.text = 'You\'ve seen a few of these before';
textLine2.text = '[+ partner satisfaction]';
break;
case 'fin2':
textCost.text = _root.skillFin2Cost;
textName.text = 'Talented';
textLine1.text = 'You know what you\'re doing';
textLine2.text = '[++ partner satisfaction]';
break;
case 'fin3':
textCost.text = _root.skillFin3Cost;
textName.text = 'Experienced';
textLine1.text = 'The best at what you do';
textLine2.text = '[+++ partner satisfaction]';
break;
case 'sta1':
textCost.text = _root.skillSta1Cost;
textName.text = 'You can do it!';
textLine1.text = 'Smoking after sex? ..Try lube!';
textLine2.text = '[+ max energy & regen]';
break;
case 'sta2':
textCost.text = _root.skillSta2Cost;
textName.text = 'Hang in there!';
textLine1.text = 'It puts the lotion on it\'s skin..';
textLine2.text = '[++ max energy & regen]';
break;
case 'sta3':
textCost.text = _root.skillSta3Cost;
textName.text = 'Gettin\' hot in here!';
textLine1.text = 'All day, lil\' buddy .. ALL day';
textLine2.text = '[+++ max energy & regen]';
break;
case 'all1':
textCost.text = _root.skillAll1Cost;
textName.text = '\'\'Hey there.\'\'';
textLine1.text = 'Customers will start more excited';
textLine2.text = 'And pay 15% more for your services';
break;
case 'all2':
textCost.text = _root.skillAll2Cost;
textName.text = '\'\'How you doin\'?\'\'';
textLine1.text = 'Males will be \'happier\' to meet you';
textLine2.text = 'And pay 30% more for your services';
break;
case 'all3':
textCost.text = _root.skillAll3Cost;
textName.text = '\'\'AYO GURL\'\'';
textLine1.text = 'Gents get even harder for you';
textLine2.text = 'And pay 50% more for your services';
break;
case 'lib1':
textCost.text = _root.skillLib1Cost;
textName.text = 'Lewd';
textLine1.text = 'Your libido starts showing';
textLine2.text = '[+ momentum & click-power]';
break;
case 'lib2':
textCost.text = _root.skillLib2Cost;
textName.text = 'Naughty';
textLine1.text = 'Your sex-drive is taking over';
textLine2.text = '[++ momentum & click-power]';
break;
case 'lib3':
textCost.text = _root.skillLib3Cost;
textName.text = 'Deviant';
textLine1.text = 'My hips are moving on their own!';
textLine2.text = '[+++ momentum & click-power]';
}
}
function buySkill() {
_root.buyCost = '';
_parent._parent.board.cost.gotoAndPlay('go');
switch (_root.menuSelected) {
case 'b1':
_root.skillPoints -= _root.skillB1Cost;
_root.skillB1 = true;
_root.menuSelected = false;
setSelect();
setButtons();
b1.gotoAndPlay('buy');
break;
case 'b2':
_root.skillPoints -= _root.skillB2Cost;
_root.skillB2 = true;
_root.menuSelected = false;
setSelect();
setButtons();
b2.gotoAndPlay('buy');
break;
case 'b3':
_root.skillPoints -= _root.skillB3Cost;
_root.skillB3 = true;
_root.menuSelected = false;
setSelect();
setButtons();
b3.gotoAndPlay('buy');
break;
case 'b4':
_root.skillPoints -= _root.skillB4Cost;
_root.skillB4 = true;
_root.menuSelected = false;
setSelect();
setButtons();
b4.gotoAndPlay('buy');
break;
case 'b5':
_root.skillPoints -= _root.skillB5Cost;
_root.skillB5 = true;
_root.menuSelected = false;
setSelect();
setButtons();
b5.gotoAndPlay('buy');
break;
case 's1':
_root.skillPoints -= _root.skillS1Cost;
_root.skillS1 = true;
_root.menuSelected = false;
setSelect();
setButtons();
s1.gotoAndPlay('buy');
break;
case 's2':
_root.skillPoints -= _root.skillS2Cost;
_root.skillS2 = true;
_root.menuSelected = false;
setSelect();
setButtons();
s2.gotoAndPlay('buy');
break;
case 's3':
_root.skillPoints -= _root.skillS3Cost;
_root.skillS3 = true;
_root.menuSelected = false;
setSelect();
setButtons();
s3.gotoAndPlay('buy');
break;
case 's4':
_root.skillPoints -= _root.skillS4Cost;
_root.skillS4 = true;
_root.menuSelected = false;
setSelect();
setButtons();
s4.gotoAndPlay('buy');
break;
case 's5':
_root.skillPoints -= _root.skillS5Cost;
_root.skillS5 = true;
_root.menuSelected = false;
setSelect();
setButtons();
s5.gotoAndPlay('buy');
break;
case 'f1':
_root.skillPoints -= _root.skillF1Cost;
_root.skillF1 = true;
_root.menuSelected = false;
setSelect();
setButtons();
f1.gotoAndPlay('buy');
break;
case 'f2':
_root.skillPoints -= _root.skillF2Cost;
_root.skillF2 = true;
_root.menuSelected = false;
setSelect();
setButtons();
f2.gotoAndPlay('buy');
break;
case 'f3':
_root.skillPoints -= _root.skillF3Cost;
_root.skillF3 = true;
_root.menuSelected = false;
setSelect();
setButtons();
f3.gotoAndPlay('buy');
break;
case 'f4':
_root.skillPoints -= _root.skillF4Cost;
_root.skillF4 = true;
_root.menuSelected = false;
setSelect();
setButtons();
f4.gotoAndPlay('buy');
break;
case 'a1':
_root.skillPoints -= _root.skillA1Cost;
_root.skillA1 = true;
_root.menuSelected = false;
setSelect();
setButtons();
a1.gotoAndPlay('buy');
break;
case 'a2':
_root.skillPoints -= _root.skillA2Cost;
_root.skillA2 = true;
_root.menuSelected = false;
setSelect();
setButtons();
a2.gotoAndPlay('buy');
break;
case 'a3':
_root.skillPoints -= _root.skillA3Cost;
_root.skillA3 = true;
_root.menuSelected = false;
setSelect();
setButtons();
a3.gotoAndPlay('buy');
break;
case 'a4':
_root.skillPoints -= _root.skillA4Cost;
_root.skillA4 = true;
_root.menuSelected = false;
setSelect();
setButtons();
a4.gotoAndPlay('buy');
break;
case 'fin1':
_root.skillPoints -= _root.skillFin1Cost;
_root.skillFin1 = true;
_root.menuSelected = false;
setSelect();
setButtons();
fin1.gotoAndPlay('buy');
break;
case 'fin2':
_root.skillPoints -= _root.skillFin2Cost;
_root.skillFin2 = true;
_root.menuSelected = false;
setSelect();
setButtons();
fin2.gotoAndPlay('buy');
break;
case 'fin3':
_root.skillPoints -= _root.skillFin3Cost;
_root.skillFin3 = true;
_root.menuSelected = false;
setSelect();
setButtons();
fin3.gotoAndPlay('buy');
break;
case 'sta1':
_root.skillPoints -= _root.skillSta1Cost;
_root.skillSta1 = true;
_root.energySmax = 25;
_root.energyFmax = 15;
_root.energyAmax = 10;
_root.menuSelected = false;
setSelect();
setButtons();
sta1.gotoAndPlay('buy');
break;
case 'sta2':
_root.skillPoints -= _root.skillSta2Cost;
_root.skillSta2 = true;
_root.energySmax = 30;
_root.energyFmax = 20;
_root.energyAmax = 15;
_root.menuSelected = false;
setSelect();
setButtons();
sta2.gotoAndPlay('buy');
break;
case 'sta3':
_root.skillPoints -= _root.skillSta3Cost;
_root.skillSta3 = true;
_root.energySmax = 35;
_root.energyFmax = 25;
_root.energyAmax = 20;
_root.menuSelected = false;
setSelect();
setButtons();
sta3.gotoAndPlay('buy');
break;
case 'all1':
_root.skillPoints -= _root.skillAll1Cost;
_root.skillAll1 = true;
_root.menuSelected = false;
setSelect();
setButtons();
all1.gotoAndPlay('buy');
break;
case 'all2':
_root.skillPoints -= _root.skillAll2Cost;
_root.skillAll2 = true;
_root.menuSelected = false;
setSelect();
setButtons();
all2.gotoAndPlay('buy');
break;
case 'all3':
_root.skillPoints -= _root.skillAll3Cost;
_root.skillAll3 = true;
_root.menuSelected = false;
setSelect();
setButtons();
all3.gotoAndPlay('buy');
break;
case 'lib1':
_root.skillPoints -= _root.skillLib1Cost;
_root.skillLib1 = true;
_root.menuSelected = false;
setSelect();
setButtons();
lib1.gotoAndPlay('buy');
break;
case 'lib2':
_root.skillPoints -= _root.skillLib2Cost;
_root.skillLib2 = true;
_root.menuSelected = false;
setSelect();
setButtons();
lib2.gotoAndPlay('buy');
break;
case 'lib3':
_root.skillPoints -= _root.skillLib3Cost;
_root.skillLib3 = true;
_root.menuSelected = false;
setSelect();
setButtons();
lib3.gotoAndPlay('buy');
}
}
function setButtons() {
if (_root.skillB1 == true) {
b1.gotoAndStop('on');
} else {
if (_root.skillPoints >= _root.skillB1Cost) {
b1.gotoAndStop('off');
} else {
b1.gotoAndStop('poor');
}
}
if (_root.skillB2 == true) {
b2.gotoAndStop('on');
} else {
if (_root.skillPoints >= _root.skillB2Cost && _root.skillB1 == true) {
b2.gotoAndStop('off');
} else {
b2.gotoAndStop('poor');
}
}
if (_root.skillB3 == true) {
b3.gotoAndStop('on');
} else {
if (_root.skillPoints >= _root.skillB3Cost && _root.skillB2 == true) {
b3.gotoAndStop('off');
} else {
b3.gotoAndStop('poor');
}
}
if (_root.skillB4 == true) {
b4.gotoAndStop('on');
} else {
if (_root.skillPoints >= _root.skillB4Cost && _root.skillB3 == true) {
b4.gotoAndStop('off');
} else {
b4.gotoAndStop('poor');
}
}
if (_root.skillB5 == true) {
b5.gotoAndStop('on');
} else {
if (_root.skillPoints >= _root.skillB5Cost && _root.skillB4 == true) {
b5.gotoAndStop('off');
} else {
b5.gotoAndStop('poor');
}
}
if (_root.skillS1 == true) {
s1.gotoAndStop('on');
} else {
if (_root.skillPoints >= _root.skillS1Cost) {
s1.gotoAndStop('off');
} else {
s1.gotoAndStop('poor');
}
}
if (_root.skillS2 == true) {
s2.gotoAndStop('on');
} else {
if (_root.skillPoints >= _root.skillS2Cost && _root.skillS1 == true) {
s2.gotoAndStop('off');
} else {
s2.gotoAndStop('poor');
}
}
if (_root.skillS3 == true) {
s3.gotoAndStop('on');
} else {
if (_root.skillPoints >= _root.skillS3Cost && _root.skillS2 == true) {
s3.gotoAndStop('off');
} else {
s3.gotoAndStop('poor');
}
}
if (_root.skillS4 == true) {
s4.gotoAndStop('on');
} else {
if (_root.skillPoints >= _root.skillS4Cost && _root.skillS3 == true) {
s4.gotoAndStop('off');
} else {
s4.gotoAndStop('poor');
}
}
if (_root.skillS5 == true) {
s5.gotoAndStop('on');
} else {
if (_root.skillPoints >= _root.skillS5Cost && _root.skillS4 == true) {
s5.gotoAndStop('off');
} else {
s5.gotoAndStop('poor');
}
}
if (_root.skillF1 == true) {
f1.gotoAndStop('on');
} else {
if (_root.skillPoints >= _root.skillF1Cost) {
f1.gotoAndStop('off');
} else {
f1.gotoAndStop('poor');
}
}
if (_root.skillF2 == true) {
f2.gotoAndStop('on');
} else {
if (_root.skillPoints >= _root.skillF2Cost && _root.skillF1 == true) {
f2.gotoAndStop('off');
} else {
f2.gotoAndStop('poor');
}
}
if (_root.skillF3 == true) {
f3.gotoAndStop('on');
} else {
if (_root.skillPoints >= _root.skillF3Cost && _root.skillF3 == true) {
f3.gotoAndStop('off');
} else {
f3.gotoAndStop('poor');
}
}
if (_root.skillF4 == true) {
f4.gotoAndStop('on');
} else {
if (_root.skillPoints >= _root.skillF4Cost && _root.skillF3 == true) {
f4.gotoAndStop('off');
} else {
f4.gotoAndStop('poor');
}
}
if (_root.skillA1 == true) {
a1.gotoAndStop('on');
} else {
if (_root.skillPoints >= _root.skillA1Cost) {
a1.gotoAndStop('off');
} else {
a1.gotoAndStop('poor');
}
}
if (_root.skillA2 == true) {
a2.gotoAndStop('on');
} else {
if (_root.skillPoints >= _root.skillA2Cost && _root.skillA1 == true) {
a2.gotoAndStop('off');
} else {
a2.gotoAndStop('poor');
}
}
if (_root.skillA3 == true) {
a3.gotoAndStop('on');
} else {
if (_root.skillPoints >= _root.skillA3Cost && _root.skillA2 == true) {
a3.gotoAndStop('off');
} else {
a3.gotoAndStop('poor');
}
}
if (_root.skillA4 == true) {
a4.gotoAndStop('on');
} else {
if (_root.skillPoints >= _root.skillA4Cost && _root.skillA3 == true) {
a4.gotoAndStop('off');
} else {
a4.gotoAndStop('poor');
}
}
if (_root.skillFin1 == true) {
fin1.gotoAndStop('on');
} else {
if (_root.skillPoints >= _root.skillFin1Cost) {
fin1.gotoAndStop('off');
} else {
fin1.gotoAndStop('poor');
}
}
if (_root.skillFin2 == true) {
fin2.gotoAndStop('on');
} else {
if (_root.skillPoints >= _root.skillFin2Cost && _root.skillFin1 == true) {
fin2.gotoAndStop('off');
} else {
fin2.gotoAndStop('poor');
}
}
if (_root.skillFin3 == true) {
fin3.gotoAndStop('on');
} else {
if (_root.skillPoints >= _root.skillFin3Cost && _root.skillFin2 == true) {
fin3.gotoAndStop('off');
} else {
fin3.gotoAndStop('poor');
}
}
if (_root.skillSta1 == true) {
sta1.gotoAndStop('on');
} else {
if (_root.skillPoints >= _root.skillSta1Cost) {
sta1.gotoAndStop('off');
} else {
sta1.gotoAndStop('poor');
}
}
if (_root.skillSta2 == true) {
sta2.gotoAndStop('on');
} else {
if (_root.skillPoints >= _root.skillSta2Cost && _root.skillSta1 == true) {
sta2.gotoAndStop('off');
} else {
sta2.gotoAndStop('poor');
}
}
if (_root.skillSta3 == true) {
sta3.gotoAndStop('on');
} else {
if (_root.skillPoints >= _root.skillSta3Cost && _root.skillSta2 == true) {
sta3.gotoAndStop('off');
} else {
sta3.gotoAndStop('poor');
}
}
if (_root.skillAll1 == true) {
all1.gotoAndStop('on');
} else {
if (_root.skillPoints >= _root.skillAll1Cost) {
all1.gotoAndStop('off');
} else {
all1.gotoAndStop('poor');
}
}
if (_root.skillAll2 == true) {
all2.gotoAndStop('on');
} else {
if (_root.skillPoints >= _root.skillAll2Cost && _root.skillAll1 == true) {
all2.gotoAndStop('off');
} else {
all2.gotoAndStop('poor');
}
}
if (_root.skillAll3 == true) {
all3.gotoAndStop('on');
} else {
if (_root.skillPoints >= _root.skillAll3Cost && _root.skillAll3 == true) {
all3.gotoAndStop('off');
} else {
all3.gotoAndStop('poor');
}
}
if (_root.skillLib1 == true) {
lib1.gotoAndStop('on');
} else {
if (_root.skillPoints >= _root.skillLib1Cost) {
lib1.gotoAndStop('off');
} else {
lib1.gotoAndStop('poor');
}
}
if (_root.skillLib2 == true) {
lib2.gotoAndStop('on');
} else {
if (_root.skillPoints >= _root.skillLib2Cost && _root.skillLib1 == true) {
lib2.gotoAndStop('off');
} else {
lib2.gotoAndStop('poor');
}
}
if (_root.skillLib3 == true) {
lib3.gotoAndStop('on');
} else {
if (_root.skillPoints >= _root.skillLib3Cost && _root.skillLib2 == true) {
lib3.gotoAndStop('off');
} else {
lib3.gotoAndStop('poor');
}
}
}
gotoAndStop('reset');
_root.menuSelected = false;
if (!_root.characterSaved) {
_root.characterSaved = _root.character;
}
if (!_root.costumeSaved) {
_root.costumeSaved = _root.costume;
}
}
instance fin3 of movieClip 5425 {
onClipEvent (release) {
if (_root.menuSelected != 'fin3') {
if (_root.skillFin3) {
_parent.setButtons();
gotoAndStop('overOn');
_root.menuSelected = 'fin3';
_parent.setSelect();
} else {
if (_root.skillPoints >= _root.skillFin3Cost && _root.skillFin2) {
_parent.setButtons();
gotoAndStop('overOff');
} else {
_parent.setButtons();
gotoAndStop('overPoor');
}
_root.menuSelected = 'fin3';
_parent.setSelect();
}
} else {
if (!_root.skillFin3) {
if (_root.skillPoints >= _root.skillFin3Cost && _root.skillFin2) {
_parent.buySkill();
}
}
}
}
}
instance fin1 of movieClip 5425 {
onClipEvent (release) {
if (_root.menuSelected != 'fin1') {
if (_root.skillFin1) {
_parent.setButtons();
gotoAndStop('overOn');
_root.menuSelected = 'fin1';
_parent.setSelect();
} else {
if (_root.skillPoints >= _root.skillFin1Cost) {
_parent.setButtons();
gotoAndStop('overOff');
} else {
_parent.setButtons();
gotoAndStop('overPoor');
}
_root.menuSelected = 'fin1';
_parent.setSelect();
}
} else {
if (!_root.skillFin1) {
if (_root.skillPoints >= _root.skillFin1Cost) {
_parent.buySkill();
}
}
}
}
}
instance fin2 of movieClip 5425 {
onClipEvent (release) {
if (_root.menuSelected != 'fin2') {
if (_root.skillFin2) {
_parent.setButtons();
gotoAndStop('overOn');
_root.menuSelected = 'fin2';
_parent.setSelect();
} else {
if (_root.skillPoints >= _root.skillFin2Cost && _root.skillFin1) {
_parent.setButtons();
gotoAndStop('overOff');
} else {
_parent.setButtons();
gotoAndStop('overPoor');
}
_root.menuSelected = 'fin2';
_parent.setSelect();
}
} else {
if (!_root.skillFin2) {
if (_root.skillPoints >= _root.skillFin2Cost && _root.skillFin1) {
_parent.buySkill();
}
}
}
}
}
instance b1 of movieClip 5425 {
onClipEvent (release) {
if (_root.menuSelected != 'b1') {
if (_root.skillB1) {
_parent.setButtons();
gotoAndStop('overOn');
_root.menuSelected = 'b1';
_parent.setSelect();
} else {
if (_root.skillPoints >= _root.skillB1Cost) {
_parent.setButtons();
gotoAndStop('overOff');
} else {
_parent.setButtons();
gotoAndStop('overPoor');
}
_root.menuSelected = 'b1';
_parent.setSelect();
}
} else {
if (!_root.skillB1) {
if (_root.skillPoints >= _root.skillB1Cost) {
_parent.buySkill();
}
}
}
}
}
instance b2 of movieClip 5425 {
onClipEvent (release) {
if (_root.menuSelected != 'b2') {
if (_root.skillB2) {
_parent.setButtons();
gotoAndStop('overOn');
_root.menuSelected = 'b2';
_parent.setSelect();
} else {
if (_root.skillPoints >= _root.skillB2Cost && _root.skillB1) {
_parent.setButtons();
gotoAndStop('overOff');
} else {
_parent.setButtons();
gotoAndStop('overPoor');
}
_root.menuSelected = 'b2';
_parent.setSelect();
}
} else {
if (!_root.skillB2) {
if (_root.skillPoints >= _root.skillB2Cost && _root.skillB1) {
_parent.buySkill();
}
}
}
}
}
instance b3 of movieClip 5425 {
onClipEvent (release) {
if (_root.menuSelected != 'b3') {
if (_root.skillB3) {
_parent.setButtons();
gotoAndStop('overOn');
_root.menuSelected = 'b3';
_parent.setSelect();
} else {
if (_root.skillPoints >= _root.skillB3Cost && _root.skillB2) {
_parent.setButtons();
gotoAndStop('overOff');
} else {
_parent.setButtons();
gotoAndStop('overPoor');
}
_root.menuSelected = 'b3';
_parent.setSelect();
}
} else {
if (!_root.skillB3) {
if (_root.skillPoints >= _root.skillB3Cost && _root.skillB2) {
_parent.buySkill();
}
}
}
}
}
instance s1 of movieClip 5425 {
onClipEvent (release) {
if (_root.menuSelected != 's1') {
if (_root.skillS1) {
_parent.setButtons();
gotoAndStop('overOn');
_root.menuSelected = 's1';
_parent.setSelect();
} else {
if (_root.skillPoints >= _root.skillS1Cost) {
_parent.setButtons();
gotoAndStop('overOff');
} else {
_parent.setButtons();
gotoAndStop('overPoor');
}
_root.menuSelected = 's1';
_parent.setSelect();
}
} else {
if (!_root.skillS1) {
if (_root.skillPoints >= _root.skillS1Cost) {
_parent.buySkill();
}
}
}
}
}
instance s2 of movieClip 5425 {
onClipEvent (release) {
if (_root.menuSelected != 's2') {
if (_root.skillS2) {
_parent.setButtons();
gotoAndStop('overOn');
_root.menuSelected = 's2';
_parent.setSelect();
} else {
if (_root.skillPoints >= _root.skillS2Cost && _root.skillS1) {
_parent.setButtons();
gotoAndStop('overOff');
} else {
_parent.setButtons();
gotoAndStop('overPoor');
}
_root.menuSelected = 's2';
_parent.setSelect();
}
} else {
if (!_root.skillS2) {
if (_root.skillPoints >= _root.skillS2Cost && _root.skillS1) {
_parent.buySkill();
}
}
}
}
}
instance s3 of movieClip 5425 {
onClipEvent (release) {
if (_root.menuSelected != 's3') {
if (_root.skillS3) {
_parent.setButtons();
gotoAndStop('overOn');
_root.menuSelected = 's3';
_parent.setSelect();
} else {
if (_root.skillPoints >= _root.skillS3Cost && _root.skillS2) {
_parent.setButtons();
gotoAndStop('overOff');
} else {
_parent.setButtons();
gotoAndStop('overPoor');
}
_root.menuSelected = 's3';
_parent.setSelect();
}
} else {
if (!_root.skillS3) {
if (_root.skillPoints >= _root.skillS3Cost && _root.skillS2) {
_parent.buySkill();
}
}
}
}
}
instance f2 of movieClip 5425 {
onClipEvent (release) {
if (_root.menuSelected != 'f2') {
if (_root.skillF2) {
_parent.setButtons();
gotoAndStop('overOn');
_root.menuSelected = 'f2';
_parent.setSelect();
} else {
if (_root.skillPoints >= _root.skillF2Cost && _root.skillF1) {
_parent.setButtons();
gotoAndStop('overOff');
} else {
_parent.setButtons();
gotoAndStop('overPoor');
}
_root.menuSelected = 'f2';
_parent.setSelect();
}
} else {
if (!_root.skillF2) {
if (_root.skillPoints >= _root.skillF2Cost && _root.skillF1) {
_parent.buySkill();
}
}
}
}
}
instance b4 of movieClip 5425 {
onClipEvent (release) {
if (_root.menuSelected != 'b4') {
if (_root.skillB4) {
_parent.setButtons();
gotoAndStop('overOn');
_root.menuSelected = 'b4';
_parent.setSelect();
} else {
if (_root.skillPoints >= _root.skillB4Cost && _root.skillB3) {
_parent.setButtons();
gotoAndStop('overOff');
} else {
_parent.setButtons();
gotoAndStop('overPoor');
}
_root.menuSelected = 'b4';
_parent.setSelect();
}
} else {
if (!_root.skillB4) {
if (_root.skillPoints >= _root.skillB4Cost && _root.skillB3) {
_parent.buySkill();
}
}
}
}
}
instance b5 of movieClip 5425 {
onClipEvent (release) {
if (_root.menuSelected != 'b5') {
if (_root.skillB5) {
_parent.setButtons();
gotoAndStop('overOn');
_root.menuSelected = 'b5';
_parent.setSelect();
} else {
if (_root.skillPoints >= _root.skillB5Cost && _root.skillB4) {
_parent.setButtons();
gotoAndStop('overOff');
} else {
_parent.setButtons();
gotoAndStop('overPoor');
}
_root.menuSelected = 'b5';
_parent.setSelect();
}
} else {
if (!_root.skillB5) {
if (_root.skillPoints >= _root.skillB5Cost && _root.skillB4) {
_parent.buySkill();
}
}
}
}
}
instance s4 of movieClip 5425 {
onClipEvent (release) {
if (_root.menuSelected != 's4') {
if (_root.skillS4) {
_parent.setButtons();
gotoAndStop('overOn');
_root.menuSelected = 's4';
_parent.setSelect();
} else {
if (_root.skillPoints >= _root.skillS4Cost && _root.skillS3) {
_parent.setButtons();
gotoAndStop('overOff');
} else {
_parent.setButtons();
gotoAndStop('overPoor');
}
_root.menuSelected = 's4';
_parent.setSelect();
}
} else {
if (!_root.skillS4) {
if (_root.skillPoints >= _root.skillS4Cost && _root.skillS3) {
_parent.buySkill();
}
}
}
}
}
instance s5 of movieClip 5425 {
onClipEvent (release) {
if (_root.menuSelected != 's5') {
if (_root.skillS5) {
_parent.setButtons();
gotoAndStop('overOn');
_root.menuSelected = 's5';
_parent.setSelect();
} else {
if (_root.skillPoints >= _root.skillS5Cost && _root.skillS4) {
_parent.setButtons();
gotoAndStop('overOff');
} else {
_parent.setButtons();
gotoAndStop('overPoor');
}
_root.menuSelected = 's5';
_parent.setSelect();
}
} else {
if (!_root.skillS5) {
if (_root.skillPoints >= _root.skillS5Cost && _root.skillS4) {
_parent.buySkill();
}
}
}
}
}
instance f3 of movieClip 5425 {
onClipEvent (release) {
if (_root.menuSelected != 'f3') {
if (_root.skillF3) {
_parent.setButtons();
gotoAndStop('overOn');
_root.menuSelected = 'f3';
_parent.setSelect();
} else {
if (_root.skillPoints >= _root.skillF3Cost && _root.skillF2) {
_parent.setButtons();
gotoAndStop('overOff');
} else {
_parent.setButtons();
gotoAndStop('overPoor');
}
_root.menuSelected = 'f3';
_parent.setSelect();
}
} else {
if (!_root.skillF3) {
if (_root.skillPoints >= _root.skillF3Cost && _root.skillF2) {
_parent.buySkill();
}
}
}
}
}
instance f4 of movieClip 5425 {
onClipEvent (release) {
if (_root.menuSelected != 'f4') {
if (_root.skillF4) {
_parent.setButtons();
gotoAndStop('overOn');
_root.menuSelected = 'f4';
_parent.setSelect();
} else {
if (_root.skillPoints >= _root.skillF4Cost && _root.skillF3) {
_parent.setButtons();
gotoAndStop('overOff');
} else {
_parent.setButtons();
gotoAndStop('overPoor');
}
_root.menuSelected = 'f4';
_parent.setSelect();
}
} else {
if (!_root.skillF4) {
if (_root.skillPoints >= _root.skillF4Cost && _root.skillF3) {
_parent.buySkill();
}
}
}
}
}
instance f1 of movieClip 5425 {
onClipEvent (release) {
if (_root.menuSelected != 'f1') {
if (_root.skillF1) {
_parent.setButtons();
gotoAndStop('overOn');
_root.menuSelected = 'f1';
_parent.setSelect();
} else {
if (_root.skillPoints >= _root.skillF1Cost) {
_parent.setButtons();
gotoAndStop('overOff');
} else {
_parent.setButtons();
gotoAndStop('overPoor');
}
_root.menuSelected = 'f1';
_parent.setSelect();
}
} else {
if (!_root.skillF1) {
if (_root.skillPoints >= _root.skillF1Cost) {
_parent.buySkill();
}
}
}
}
}
instance a2 of movieClip 5425 {
onClipEvent (release) {
if (_root.menuSelected != 'a2') {
if (_root.skillA2) {
_parent.setButtons();
gotoAndStop('overOn');
_root.menuSelected = 'a2';
_parent.setSelect();
} else {
if (_root.skillPoints >= _root.skillA2Cost && _root.skillA1) {
_parent.setButtons();
gotoAndStop('overOff');
} else {
_parent.setButtons();
gotoAndStop('overPoor');
}
_root.menuSelected = 'a2';
_parent.setSelect();
}
} else {
if (!_root.skillA2) {
if (_root.skillPoints >= _root.skillA2Cost && _root.skillA1) {
_parent.buySkill();
}
}
}
}
}
instance a3 of movieClip 5425 {
onClipEvent (release) {
if (_root.menuSelected != 'a3') {
if (_root.skillA3) {
_parent.setButtons();
gotoAndStop('overOn');
_root.menuSelected = 'a3';
_parent.setSelect();
} else {
if (_root.skillPoints >= _root.skillA3Cost && _root.skillA2) {
_parent.setButtons();
gotoAndStop('overOff');
} else {
_parent.setButtons();
gotoAndStop('overPoor');
}
_root.menuSelected = 'a3';
_parent.setSelect();
}
} else {
if (!_root.skillA3) {
if (_root.skillPoints >= _root.skillA3Cost && _root.skillA2) {
_parent.buySkill();
}
}
}
}
}
instance a1 of movieClip 5425 {
onClipEvent (release) {
if (_root.menuSelected != 'a1') {
if (_root.skillA1) {
_parent.setButtons();
gotoAndStop('overOn');
_root.menuSelected = 'a1';
_parent.setSelect();
} else {
if (_root.skillPoints >= _root.skillA1Cost) {
_parent.setButtons();
gotoAndStop('overOff');
} else {
_parent.setButtons();
gotoAndStop('overPoor');
}
_root.menuSelected = 'a1';
_parent.setSelect();
}
} else {
if (!_root.skillA1) {
if (_root.skillPoints >= _root.skillA1Cost) {
_parent.buySkill();
}
}
}
}
}
instance a4 of movieClip 5425 {
onClipEvent (release) {
if (_root.menuSelected != 'a4') {
if (_root.skillA4) {
_parent.setButtons();
gotoAndStop('overOn');
_root.menuSelected = 'a4';
_parent.setSelect();
} else {
if (_root.skillPoints >= _root.skillA4Cost && _root.skillA3) {
_parent.setButtons();
gotoAndStop('overOff');
} else {
_parent.setButtons();
gotoAndStop('overPoor');
}
_root.menuSelected = 'a4';
_parent.setSelect();
}
} else {
if (!_root.skillA4) {
if (_root.skillPoints >= _root.skillA4Cost && _root.skillA3) {
_parent.buySkill();
}
}
}
}
}
instance sta3 of movieClip 5425 {
onClipEvent (release) {
if (_root.menuSelected != 'sta3') {
if (_root.skillSta3) {
_parent.setButtons();
gotoAndStop('overOn');
_root.menuSelected = 'sta3';
_parent.setSelect();
} else {
if (_root.skillPoints >= _root.skillSta3Cost && _root.skillSta2) {
_parent.setButtons();
gotoAndStop('overOff');
} else {
_parent.setButtons();
gotoAndStop('overPoor');
}
_root.menuSelected = 'sta3';
_parent.setSelect();
}
} else {
if (!_root.skillSta3) {
if (_root.skillPoints >= _root.skillSta3Cost && _root.skillSta2) {
_parent.buySkill();
}
}
}
}
}
instance all3 of movieClip 5425 {
onClipEvent (release) {
if (_root.menuSelected != 'all3') {
if (_root.skillAll3) {
_parent.setButtons();
gotoAndStop('overOn');
_root.menuSelected = 'all3';
_parent.setSelect();
} else {
if (_root.skillPoints >= _root.skillAll3Cost && _root.skillAll2) {
_parent.setButtons();
gotoAndStop('overOff');
} else {
_parent.setButtons();
gotoAndStop('overPoor');
}
_root.menuSelected = 'all3';
_parent.setSelect();
}
} else {
if (!_root.skillAll3) {
if (_root.skillPoints >= _root.skillAll3Cost && _root.skillAll2) {
_parent.buySkill();
}
}
}
}
}
instance sta1 of movieClip 5425 {
onClipEvent (release) {
if (_root.menuSelected != 'sta1') {
if (_root.skillSta1) {
_parent.setButtons();
gotoAndStop('overOn');
_root.menuSelected = 'sta1';
_parent.setSelect();
} else {
if (_root.skillPoints >= _root.skillSta1Cost) {
_parent.setButtons();
gotoAndStop('overOff');
} else {
_parent.setButtons();
gotoAndStop('overPoor');
}
_root.menuSelected = 'sta1';
_parent.setSelect();
}
} else {
if (!_root.skillSta1) {
if (_root.skillPoints >= _root.skillSta1Cost) {
_parent.buySkill();
}
}
}
}
}
instance sta2 of movieClip 5425 {
onClipEvent (release) {
if (_root.menuSelected != 'sta2') {
if (_root.skillSta2) {
_parent.setButtons();
gotoAndStop('overOn');
_root.menuSelected = 'sta2';
_parent.setSelect();
} else {
if (_root.skillPoints >= _root.skillSta2Cost && _root.skillSta1) {
_parent.setButtons();
gotoAndStop('overOff');
} else {
_parent.setButtons();
gotoAndStop('overPoor');
}
_root.menuSelected = 'sta2';
_parent.setSelect();
}
} else {
if (!_root.skillSta2) {
if (_root.skillPoints >= _root.skillSta2Cost && _root.skillSta1) {
_parent.buySkill();
}
}
}
}
}
instance all1 of movieClip 5425 {
onClipEvent (release) {
if (_root.menuSelected != 'all1') {
if (_root.skillAll1) {
_parent.setButtons();
gotoAndStop('overOn');
_root.menuSelected = 'all1';
_parent.setSelect();
} else {
if (_root.skillPoints >= _root.skillAll1Cost) {
_parent.setButtons();
gotoAndStop('overOff');
} else {
_parent.setButtons();
gotoAndStop('overPoor');
}
_root.menuSelected = 'all1';
_parent.setSelect();
}
} else {
if (!_root.skillAll1) {
if (_root.skillPoints >= _root.skillAll1Cost) {
_parent.buySkill();
}
}
}
}
}
instance all2 of movieClip 5425 {
onClipEvent (release) {
if (_root.menuSelected != 'all2') {
if (_root.skillAll2) {
_parent.setButtons();
gotoAndStop('overOn');
_root.menuSelected = 'all2';
_parent.setSelect();
} else {
if (_root.skillPoints >= _root.skillAll2Cost && _root.skillAll1) {
_parent.setButtons();
gotoAndStop('overOff');
} else {
_parent.setButtons();
gotoAndStop('overPoor');
}
_root.menuSelected = 'all2';
_parent.setSelect();
}
} else {
if (!_root.skillAll2) {
if (_root.skillPoints >= _root.skillAll2Cost && _root.skillAll1) {
_parent.buySkill();
}
}
}
}
}
instance lib3 of movieClip 5425 {
onClipEvent (release) {
if (_root.menuSelected != 'lib3') {
if (_root.skillLib3) {
_parent.setButtons();
gotoAndStop('overOn');
_root.menuSelected = 'lib3';
_parent.setSelect();
} else {
if (_root.skillPoints >= _root.skillLib3Cost && _root.skillLib2) {
_parent.setButtons();
gotoAndStop('overOff');
} else {
_parent.setButtons();
gotoAndStop('overPoor');
}
_root.menuSelected = 'lib3';
_parent.setSelect();
}
} else {
if (!_root.skillLib3) {
if (_root.skillPoints >= _root.skillLib3Cost && _root.skillLib2) {
_parent.buySkill();
}
}
}
}
}
instance lib1 of movieClip 5425 {
onClipEvent (release) {
if (_root.menuSelected != 'lib1') {
if (_root.skillLib1) {
_parent.setButtons();
gotoAndStop('overOn');
_root.menuSelected = 'lib1';
_parent.setSelect();
} else {
if (_root.skillPoints >= _root.skillLib1Cost) {
_parent.setButtons();
gotoAndStop('overOff');
} else {
_parent.setButtons();
gotoAndStop('overPoor');
}
_root.menuSelected = 'lib1';
_parent.setSelect();
}
} else {
if (!_root.skillLib1) {
if (_root.skillPoints >= _root.skillLib1Cost) {
_parent.buySkill();
}
}
}
}
}
instance lib2 of movieClip 5425 {
onClipEvent (release) {
if (_root.menuSelected != 'lib2') {
if (_root.skillLib2) {
_parent.setButtons();
gotoAndStop('overOn');
_root.menuSelected = 'lib2';
_parent.setSelect();
} else {
if (_root.skillPoints >= _root.skillLib2Cost && _root.skillLib1) {
_parent.setButtons();
gotoAndStop('overOff');
} else {
_parent.setButtons();
gotoAndStop('overPoor');
}
_root.menuSelected = 'lib2';
_parent.setSelect();
}
} else {
if (!_root.skillLib2) {
if (_root.skillPoints >= _root.skillLib2Cost && _root.skillLib1) {
_parent.buySkill();
}
}
}
}
}
frame 2 {
setButtons();
setSelect();
if (_root.startup != false) {
this.gotoAndStop('startup');
if (help.pressed == undefined) {
help.gotoAndStop('hold');
}
} else {
help.pressed = false;
gotoAndStop('menu');
}
}
instance lookHitboxTop of movieClip 5408 {
onClipEvent (press) {
_parent.gotoAndPlay('menuToLook');
}
onClipEvent (rollOver) {
if (_parent.iconChar.showing != 'over') {
_parent.iconChar.gotoAndPlay('over');
}
}
onClipEvent (rollOut) {
if (_parent.iconChar.showing == 'over') {
_parent.iconChar.gotoAndPlay('out');
}
}
}
instance lookHitboxBot of movieClip 5408 {
onClipEvent (press) {
_parent.gotoAndPlay('menuToLook');
}
onClipEvent (rollOver) {
if (_parent.iconCost.showing != 'over') {
_parent.iconCost.gotoAndPlay('over');
}
}
onClipEvent (rollOut) {
if (_parent.iconCost.showing == 'over') {
_parent.iconCost.gotoAndPlay('out');
}
}
}
frame 6 {
gotoAndPlay('lookCome');
}
frame 9 {
gotoAndStop('menu');
}
instance lookHitboxTop of movieClip 5408 {
onClipEvent (press) {
_parent.gotoAndPlay('startupToLook');
}
onClipEvent (rollOver) {
if (_parent.iconChar.showing != 'over') {
_parent.iconChar.gotoAndPlay('over');
}
}
onClipEvent (rollOut) {
if (_parent.iconChar.showing == 'over') {
_parent.iconChar.gotoAndPlay('out');
}
}
}
instance lookHitboxBot of movieClip 5408 {
onClipEvent (press) {
_parent.gotoAndPlay('startupToLook');
}
onClipEvent (rollOver) {
if (_parent.iconCost.showing != 'over') {
_parent.iconCost.gotoAndPlay('over');
}
}
onClipEvent (rollOut) {
if (_parent.iconCost.showing == 'over') {
_parent.iconCost.gotoAndPlay('out');
}
}
}
frame 13 {
gotoAndPlay('lookCome');
}
frame 16 {
gotoAndStop('startup');
}
frame 18 {
_root.characterSaved = _root.character;
_root.costumeSaved = _root.costume;
}
frame 20 {
stop();
}
frame 23 {
if (_root.characterSaved != _root.character) {
_root.character = _root.characterSaved;
}
if (_root.costumeSaved != _root.costume) {
_root.costume = _root.costumeSaved;
}
clothesMenu.setNude();
if (_root.startup != false) {
this.gotoAndPlay('startupFromLook');
} else {
this.gotoAndPlay('menuFromLook');
}
_root.menuSelected = false;
setButtons();
setSelect();
}
}
movieClip 5686 {
}
movieClip 5697 {
}
movieClip 5700 {
frame 1 {
stop();
}
}
movieClip 5710 {
}
movieClip 5720 {
}
movieClip 5723 {
frame 1 {
stop();
}
}
movieClip 5731 {
}
movieClip 5741 {
}
movieClip 5742 {
frame 1 {
stop();
}
}
movieClip 5750 {
}
movieClip 5760 {
}
movieClip 5761 {
frame 1 {
stop();
}
}
button 5764 {
on (release) {
selectCheat();
}
on (rollOver) {
rollCheat();
}
on (rollOut) {
iconReset();
if (_root.mapTooltipShowing == 'rep') {
_parent.tip.gotoAndStop('gone');
} else {
if (_root.mapTooltipShowing != false) {
_parent.tip.gotoAndPlay('go');
_parent.tip.block.gotoAndStop('words');
_root.mapTooltipShowing = false;
}
}
}
on (releaseOutside) {
iconReset();
if (_root.mapTooltipShowing == 'rep') {
_parent.tip.gotoAndStop('gone');
} else {
if (_root.mapTooltipShowing != false) {
_parent.tip.gotoAndPlay('go');
_parent.tip.block.gotoAndStop('words');
_root.mapTooltipShowing = false;
}
}
}
}
button 5765 {
on (release) {
selectMusic();
}
on (rollOver) {
rollMusic();
}
on (rollOut) {
iconReset();
if (_root.mapTooltipShowing == 'rep') {
_parent.tip.gotoAndStop('gone');
} else {
if (_root.mapTooltipShowing != false) {
_parent.tip.gotoAndPlay('go');
_parent.tip.block.gotoAndStop('words');
_root.mapTooltipShowing = false;
}
}
}
on (releaseOutside) {
iconReset();
if (_root.mapTooltipShowing == 'rep') {
_parent.tip.gotoAndStop('gone');
} else {
if (_root.mapTooltipShowing != false) {
_parent.tip.gotoAndPlay('go');
_parent.tip.block.gotoAndStop('words');
_root.mapTooltipShowing = false;
}
}
}
}
button 5766 {
on (release) {
selectMap();
}
on (rollOver) {
rollMap();
}
on (rollOut) {
iconReset();
if (_root.mapTooltipShowing == 'rep') {
_parent.tip.gotoAndStop('gone');
} else {
if (_root.mapTooltipShowing != false) {
_parent.tip.gotoAndPlay('go');
_parent.tip.block.gotoAndStop('words');
_root.mapTooltipShowing = false;
}
}
}
on (releaseOutside) {
iconReset();
if (_root.mapTooltipShowing == 'rep') {
_parent.tip.gotoAndStop('gone');
} else {
if (_root.mapTooltipShowing != false) {
_parent.tip.gotoAndPlay('go');
_parent.tip.block.gotoAndStop('words');
_root.mapTooltipShowing = false;
}
}
}
}
movieClip 5776 {
frame 1 {
function iconReset() {
if (_root.menuSelected == 'music') {
_parent.board.gotoAndStop('music');
} else {
if (_root.menuSelected == 'cheat') {
_parent.board.gotoAndStop('cheat');
} else {
_parent.board.gotoAndStop('map');
}
}
}
function selectMap() {
if (_root.menuSelected != 'map' && _root.menuSelected != 'mapHold') {
_root.menuSelected = 'map';
_parent._parent.setSelect();
_parent.board.gotoAndStop('map');
_parent.tip.gotoAndStop('gone');
_root.mapTooltipShowing = false;
}
}
function selectMusic() {
if (_root.menuSelected != 'music') {
_root.menuSelected = 'music';
_parent.gotoAndStop('music');
_parent.board.gotoAndStop('music');
if (_root.menuSelected == 'map' or _root.menuSelected == 'mapHold') {
_parent.tip.gotoAndStop('gone');
} else {
_parent.tip.gotoAndPlay('go');
}
_parent.tip.block.gotoAndStop('words');
_root.mapTooltipShowing = false;
}
}
function selectCheat() {
if (_root.menuSelected != 'cheat') {
_root.menuSelected = 'cheat';
_parent.gotoAndStop('cheat');
_parent.board.gotoAndStop('cheat');
if (_root.menuSelected == 'map' or _root.menuSelected == 'mapHold') {
_parent.tip.gotoAndStop('gone');
} else {
_parent.tip.gotoAndPlay('go');
}
_parent.tip.block.gotoAndStop('words');
_root.mapTooltipShowing = false;
}
}
function rollMap() {
if (_root.menuSelected != 'map' && _root.menuSelected != 'mapHold') {
if (_root.menuSelected == 'music') {
_parent.board.gotoAndStop('musicMap');
} else {
if (_root.menuSelected == 'cheat') {
_parent.board.gotoAndStop('cheatMap');
}
}
if (_root.mapTooltipShowing != 'boardMap') {
_parent.tip.gotoAndPlay('come');
_parent.tip.block.gotoAndStop('words');
_root.mapTooltip = 'Map';
_root.mapTooltipShowing = 'boardMap';
}
}
}
function rollMusic() {
if (_root.menuSelected != 'music') {
if (_root.menuSelected == 'map' or _root.menuSelected == 'mapHold') {
_parent.board.gotoAndStop('mapMusic');
} else {
if (_root.menuSelected == 'cheat') {
_parent.board.gotoAndStop('cheatMusic');
}
}
if (_root.mapTooltipShowing != 'boardMusic') {
_parent.tip.gotoAndPlay('come');
_parent.tip.block.gotoAndStop('words');
_root.mapTooltip = 'Music';
_root.mapTooltipShowing = 'boardMusic';
}
}
}
function rollCheat() {
if (_root.menuSelected != 'cheat') {
if (_root.menuSelected == 'map' or _root.menuSelected == 'mapHold') {
_parent.board.gotoAndStop('mapCheat');
} else {
if (_root.menuSelected == 'music') {
_parent.board.gotoAndStop('musicCheat');
}
}
if (_root.mapTooltipShowing != 'boardCheat') {
_parent.tip.gotoAndPlay('come');
_parent.tip.block.gotoAndStop('words');
_root.mapTooltip = 'Cheats';
_root.mapTooltipShowing = 'boardCheat';
}
}
}
iconReset();
}
}
movieClip 5780 {
frame 1 {
stop();
}
frame 2 {
stop();
}
}
movieClip 5789 {
frame 1 {
stop();
}
}
movieClip 5792 {
frame 1 {
stop();
}
}
movieClip 5795 {
frame 1 {
stop();
}
}
movieClip 5798 {
frame 1 {
stop();
}
}
movieClip 5802 {
frame 1 {
stop();
}
frame 2 {
stop();
}
}
movieClip 5824 {
}
movieClip 5827 {
frame 1 {
stop();
}
frame 2 {
stop();
}
}
movieClip 5828 {
}
movieClip 5831 {
frame 1 {
stop();
}
}
movieClip 5834 {
frame 1 {
stop();
}
}
movieClip 5838 {
frame 1 {
stop();
}
}
movieClip 5841 {
frame 1 {
stop();
}
}
movieClip 5844 {
frame 1 {
stop();
}
}
movieClip 5850 {
}
movieClip 5881 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
}
movieClip 5882 {
frame 1 {
gotoAndStop('gone');
_root.mapTooltipShowing = false;
}
frame 2 {
_root.mapTooltipShowing = false;
}
frame 7 {
stop();
}
frame 13 {
gotoAndStop('gone');
_root.mapTooltipShowing = false;
}
}
movieClip 5894 {
frame 1 {
function iconReset() {
if (_root.menuSelected == 'music') {
_parent.board.gotoAndStop('music');
} else {
if (_root.menuSelected == 'cheat') {
_parent.board.gotoAndStop('cheat');
} else {
_parent.board.gotoAndStop('map');
}
}
}
function selectMap() {
if (_root.menuSelected != 'map' && _root.menuSelected != 'mapHold') {
_root.menuSelected = 'map';
_parent._parent.setSelect();
_parent.board.gotoAndStop('map');
_parent.tip.gotoAndStop('gone');
_root.mapTooltipShowing = false;
}
}
function selectMusic() {
if (_root.menuSelected != 'music') {
_root.menuSelected = 'music';
_parent.gotoAndStop('music');
_parent.board.gotoAndStop('music');
if (_root.menuSelected == 'map' or _root.menuSelected == 'mapHold') {
_parent.tip.gotoAndStop('gone');
} else {
_parent.tip.gotoAndPlay('go');
}
_parent.tip.block.gotoAndStop('words');
_root.mapTooltipShowing = false;
}
}
function selectCheat() {
if (_root.menuSelected != 'cheat') {
_root.menuSelected = 'cheat';
_parent.gotoAndStop('cheat');
_parent.board.gotoAndStop('cheat');
if (_root.menuSelected == 'map' or _root.menuSelected == 'mapHold') {
_parent.tip.gotoAndStop('gone');
} else {
_parent.tip.gotoAndPlay('go');
}
_parent.tip.block.gotoAndStop('words');
_root.mapTooltipShowing = false;
}
}
function rollMap() {
if (_root.menuSelected != 'map' && _root.menuSelected != 'mapHold') {
if (_root.menuSelected == 'music') {
_parent.board.gotoAndStop('musicMap');
} else {
if (_root.menuSelected == 'cheat') {
_parent.board.gotoAndStop('cheatMap');
}
}
if (_root.mapTooltipShowing != 'boardMap') {
_parent.tip.gotoAndPlay('come');
_parent.tip.block.gotoAndStop('words');
_root.mapTooltip = 'Map';
_root.mapTooltipShowing = 'boardMap';
}
}
}
function rollMusic() {
if (_root.menuSelected != 'music') {
if (_root.menuSelected == 'map' or _root.menuSelected == 'mapHold') {
_parent.board.gotoAndStop('mapMusic');
} else {
if (_root.menuSelected == 'cheat') {
_parent.board.gotoAndStop('cheatMusic');
}
}
if (_root.mapTooltipShowing != 'boardMusic') {
_parent.tip.gotoAndPlay('come');
_parent.tip.block.gotoAndStop('words');
_root.mapTooltip = 'Music';
_root.mapTooltipShowing = 'boardMusic';
}
}
}
function rollCheat() {
if (_root.menuSelected != 'cheat') {
if (_root.menuSelected == 'map' or _root.menuSelected == 'mapHold') {
_parent.board.gotoAndStop('mapCheat');
} else {
if (_root.menuSelected == 'music') {
_parent.board.gotoAndStop('musicCheat');
}
}
if (_root.mapTooltipShowing != 'boardCheat') {
_parent.tip.gotoAndPlay('come');
_parent.tip.block.gotoAndStop('words');
_root.mapTooltip = 'Cheats';
_root.mapTooltipShowing = 'boardCheat';
}
}
}
iconReset();
}
}
movieClip 5899 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
play();
}
frame 15 {
gotoAndStop('on');
}
}
movieClip 5904 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
play();
}
frame 15 {
gotoAndStop('on');
}
}
movieClip 5911 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
play();
}
frame 15 {
gotoAndStop('on');
}
}
movieClip 5916 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
play();
}
frame 15 {
gotoAndStop('on');
}
}
movieClip 5921 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
play();
}
frame 15 {
gotoAndStop('on');
}
}
movieClip 5926 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
play();
}
frame 15 {
gotoAndStop('on');
}
}
movieClip 5931 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
play();
}
frame 15 {
gotoAndStop('on');
}
}
movieClip 5936 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
play();
}
frame 15 {
gotoAndStop('on');
}
}
movieClip 5941 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
play();
}
frame 15 {
gotoAndStop('on');
}
}
movieClip 5946 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
play();
}
frame 15 {
gotoAndStop('on');
}
}
movieClip 5947 {
frame 1 {
stop();
dayNumber.text = _root.dayNumber;
}
instance of movieClip 5780 {
onClipEvent (rollOver) {
if (_root.mapTooltipShowing != 'holes') {
_parent.tip.gotoAndPlay('come');
_parent.tip.block.gotoAndStop('words');
this.gotoAndStop(2);
if (_root.mapLocalHoles == 1) {
_root.mapTooltip = '1 Gloryhole installed';
} else {
if (_root.mapLocalHoles == 2) {
_root.mapTooltip = '2 Gloryholes installed';
} else {
if (_root.mapLocalHoles == 3) {
_root.mapTooltip = '3 Gloryholes installed';
} else {
if (_root.mapLocalHoles == 4) {
_root.mapTooltip = '4 Gloryholes installed';
} else {
if (_root.mapLocalHoles == 5) {
_root.mapTooltip = '5 Gloryholes installed';
} else {
_root.mapTooltip = 'Gloryholes';
}
}
}
}
}
_root.mapTooltipShowing = 'population';
}
}
onClipEvent (rollOut) {
if (_root.mapTooltipShowing != false) {
_parent.tip.gotoAndPlay('go');
_parent.tip.block.gotoAndStop('words');
this.gotoAndStop(1);
_root.mapTooltipShowing = false;
}
}
}
instance uHoleNone of movieClip 5789 {
onClipEvent (release) {
_parent._parent.setHoleUpgradeNone();
}
onClipEvent (rollOver) {
if (_root.mapTooltipShowing != 'uHoleNone') {
_parent.tip.gotoAndPlay('come');
if (_root.mapLocalHoleSelected == 'none') {
this.gotoAndStop('yesSelect');
_parent.tip.block.gotoAndStop('words');
_root.mapTooltip = 'No hole upgrade';
} else {
if (_root.mapLocalHoleSelected == 'tape') {
this.gotoAndStop('noSelect');
_root.mapTooltip = 'Remove tape';
_parent.population.gotoAndStop(_root.mapLocalPop + 21);
_parent.wealth.gotoAndStop(_root.mapLocalWealth + 1);
}
if (_root.mapLocalHoleSelected == 'gel') {
this.gotoAndStop('noSelect');
_root.mapTooltip = 'Remove gel';
_parent.population.gotoAndStop(_root.mapLocalPop + 1);
_parent.wealth.gotoAndStop(_root.mapLocalWealth + 21);
}
}
_root.mapTooltipShowing = 'uHoles';
}
}
onClipEvent (rollOut) {
if (_root.mapTooltipShowing != false) {
if (_root.mapLocalHoleSelected == 'none') {
this.gotoAndStop('yes');
} else {
this.gotoAndStop('no');
}
_parent.tip.gotoAndPlay('go');
_root.mapTooltipShowing = false;
_parent.population.gotoAndStop(_root.mapLocalPop + 1);
_parent.wealth.gotoAndStop(_root.mapLocalWealth + 1);
}
}
onClipEvent (releaseOutside) {
if (_root.mapTooltipShowing != false) {
if (_root.mapLocalHoleSelected == 'none') {
this.gotoAndStop('yes');
} else {
this.gotoAndStop('no');
}
_parent.tip.gotoAndPlay('go');
_root.mapTooltipShowing = false;
_parent.population.gotoAndStop(_root.mapLocalPop + 1);
_parent.wealth.gotoAndStop(_root.mapLocalWealth + 1);
}
}
}
instance uHoleTape of movieClip 5792 {
onClipEvent (release) {
if (_root.mapLocalHoleTapeUnlocked == true) {
_parent._parent.setHoleUpgradeTape();
} else {
if (_root._score >= _root.mapLocalHoleTapePrice) {
_parent._parent.buyHoleUpgradeTape();
} else {
_parent.tip.gotoAndStop('hold');
_parent.tip.block.gotoAndStop('poor');
_root.mapTooltip = 'Insufficient funds';
_parent.population.gotoAndStop(_root.mapLocalPop + 1);
_parent.wealth.gotoAndStop(_root.mapLocalWealth + 1);
}
}
}
onClipEvent (rollOver) {
if (_root.mapTooltipShowing != 'uHoleNone') {
_parent.tip.gotoAndPlay('come');
if (_root.mapLocalHoleSelected == 'tape') {
this.gotoAndStop('yesSelect');
_parent.tip.block.gotoAndStop('words');
_root.mapTooltip = 'Taped holes installed';
} else {
if (_root.mapLocalHoleSelected == 'none') {
if (_root.mapLocalHoleTapeUnlocked == true) {
this.gotoAndStop('noSelect');
_parent.tip.block.gotoAndStop('words');
_root.mapTooltip = 'Tape holes';
} else {
this.gotoAndStop('lockSelect');
_root.mapTooltip = 'Unlock taped holes?';
_root.mapTooltipCost = _root.mapLocalHoleTapePrice;
if (_root._score >= _root.mapTooltipCost) {
_parent.tip.block.gotoAndStop('buy');
} else {
_parent.tip.block.gotoAndStop('buyPoor');
}
}
_parent.population.gotoAndStop(_root.mapLocalPop + 11);
_parent.wealth.gotoAndStop(_root.mapLocalWealth + 1);
}
if (_root.mapLocalHoleSelected == 'gel') {
if (_root.mapLocalHoleTapeUnlocked == true) {
this.gotoAndStop('noSelect');
_parent.tip.block.gotoAndStop('words');
_root.mapTooltip = 'Gel -> Tape';
} else {
this.gotoAndStop('lockSelect');
_root.mapTooltip = 'Unlock taped holes?';
_root.mapTooltipCost = _root.mapLocalHoleTapePrice;
if (_root._score >= _root.mapTooltipCost) {
_parent.tip.block.gotoAndStop('buy');
} else {
_parent.tip.block.gotoAndStop('buyPoor');
}
}
_parent.population.gotoAndStop(_root.mapLocalPop + 11);
_parent.wealth.gotoAndStop(_root.mapLocalWealth + 21);
}
}
_root.mapTooltipShowing = 'uHoles';
}
}
onClipEvent (rollOut) {
if (_root.mapTooltipShowing != false) {
if (_root.mapLocalHoleSelected == 'tape') {
this.gotoAndStop('yes');
} else {
if (_root.mapLocalHoleTapeUnlocked == true) {
this.gotoAndStop('no');
} else {
this.gotoAndStop('lock');
}
}
_parent.tip.gotoAndPlay('go');
_root.mapTooltipShowing = false;
_parent.population.gotoAndStop(_root.mapLocalPop + 1);
_parent.wealth.gotoAndStop(_root.mapLocalWealth + 1);
}
}
onClipEvent (releaseOutside) {
if (_root.mapTooltipShowing != false) {
if (_root.mapLocalHoleSelected == 'tape') {
this.gotoAndStop('yes');
} else {
if (_root.mapLocalHoleTapeUnlocked == true) {
this.gotoAndStop('no');
} else {
this.gotoAndStop('lock');
}
}
_parent.tip.gotoAndPlay('go');
_root.mapTooltipShowing = false;
_parent.population.gotoAndStop(_root.mapLocalPop + 1);
_parent.wealth.gotoAndStop(_root.mapLocalWealth + 1);
}
}
}
instance uHoleGel of movieClip 5795 {
onClipEvent (release) {
if (_root.mapLocalHoleGelUnlocked == true) {
_parent._parent.setHoleUpgradeGel();
} else {
if (_root._score >= _root.mapLocalHoleGelPrice) {
_parent._parent.buyHoleUpgradeGel();
} else {
_parent.tip.gotoAndStop('hold');
_parent.tip.block.gotoAndStop('poor');
_root.mapTooltip = 'Insufficient funds';
_parent.population.gotoAndStop(_root.mapLocalPop + 1);
_parent.wealth.gotoAndStop(_root.mapLocalWealth + 1);
}
}
}
onClipEvent (rollOver) {
if (_root.mapTooltipShowing != 'uHoleNone') {
_parent.tip.gotoAndPlay('come');
if (_root.mapLocalHoleSelected == 'gel') {
this.gotoAndStop('yesSelect');
_parent.tip.block.gotoAndStop('words');
_root.mapTooltip = 'Gelled holes installed';
} else {
if (_root.mapLocalHoleSelected == 'none') {
if (_root.mapLocalHoleGelUnlocked == true) {
this.gotoAndStop('noSelect');
_parent.tip.block.gotoAndStop('words');
_root.mapTooltip = 'Gel holes';
} else {
this.gotoAndStop('lockSelect');
_root.mapTooltip = 'Unlock gel holes?';
_root.mapTooltipCost = _root.mapLocalHoleGelPrice;
if (_root._score >= _root.mapTooltipCost) {
_parent.tip.block.gotoAndStop('buy');
} else {
_parent.tip.block.gotoAndStop('buyPoor');
}
}
_parent.population.gotoAndStop(_root.mapLocalPop + 1);
_parent.wealth.gotoAndStop(_root.mapLocalWealth + 11);
}
if (_root.mapLocalHoleSelected == 'tape') {
if (_root.mapLocalHoleGelUnlocked == true) {
this.gotoAndStop('noSelect');
_parent.tip.block.gotoAndStop('words');
_root.mapTooltip = 'Tape -> Gel';
} else {
this.gotoAndStop('lockSelect');
_root.mapTooltip = 'Unlock gel holes?';
_root.mapTooltipCost = _root.mapLocalHoleGelPrice;
if (_root._score >= _root.mapTooltipCost) {
_parent.tip.block.gotoAndStop('buy');
} else {
_parent.tip.block.gotoAndStop('buyPoor');
}
}
_parent.population.gotoAndStop(_root.mapLocalPop + 21);
_parent.wealth.gotoAndStop(_root.mapLocalWealth + 11);
}
}
_root.mapTooltipShowing = 'uHoles';
}
}
onClipEvent (rollOut) {
if (_root.mapTooltipShowing != false) {
if (_root.mapLocalHoleSelected == 'gel') {
this.gotoAndStop('yes');
} else {
if (_root.mapLocalHoleGelUnlocked == true) {
this.gotoAndStop('no');
} else {
this.gotoAndStop('lock');
}
}
_parent.tip.gotoAndPlay('go');
_root.mapTooltipShowing = false;
_parent.population.gotoAndStop(_root.mapLocalPop + 1);
_parent.wealth.gotoAndStop(_root.mapLocalWealth + 1);
}
}
onClipEvent (releaseOutside) {
if (_root.mapTooltipShowing != false) {
if (_root.mapLocalHoleSelected == 'gel') {
this.gotoAndStop('yes');
} else {
if (_root.mapLocalHoleGelUnlocked == true) {
this.gotoAndStop('no');
} else {
this.gotoAndStop('lock');
}
}
_parent.tip.gotoAndPlay('go');
_root.mapTooltipShowing = false;
_parent.population.gotoAndStop(_root.mapLocalPop + 1);
_parent.wealth.gotoAndStop(_root.mapLocalWealth + 1);
}
}
}
instance uHole of movieClip 5798 {
onClipEvent (release) {
if (_root.mapLocalHoles < 5) {
if (_root._score >= _root.mapTooltipCost) {
_root.buyCost = '- ' + _root.mapTooltipCost;
_root._score -= _root.mapTooltipCost;
_root._scoreDisplay = Math.floor(_root._score);
_parent._parent._parent._parent.board.cost.gotoAndPlay('go');
_parent._parent.setHolesUpgrade();
this.gotoAndStop('yesSelect');
_parent.tip.gotoAndStop('hold');
_parent.tip.block.gotoAndStop('words');
_root.mapTooltip = 'Installed extra hole!';
} else {
_parent.tip.gotoAndStop('hold');
_parent.tip.block.gotoAndStop('poor');
_root.mapTooltip = 'Insufficient funds';
}
} else {
_parent.tip.gotoAndStop('hold');
_parent.tip.block.gotoAndStop('words');
_root.mapTooltip = '-Maximum holes-';
}
}
onClipEvent (rollOver) {
if (_root.mapTooltipShowing != 'uHoles') {
_parent.tip.gotoAndPlay('come');
if (_root.mapLocalHoles != 5) {
this.gotoAndStop('yesSelect');
_root.mapTooltip = 'Unlock extra hole?';
if (_root.mapSelected == 'flux') {
_root.mapTooltipCost = (_root.mapLocalHoles + 1) * (_root.mapLocalHoles * 2.5) * 100 * 2;
} else {
_root.mapTooltipCost = (_root.mapLocalHoles + 1) * (_root.mapLocalHoles * 2.5) * 100;
}
if (_root._score >= _root.mapTooltipCost) {
_parent.tip.block.gotoAndStop('buy');
} else {
_parent.tip.block.gotoAndStop('buyPoor');
}
} else {
this.gotoAndStop('noSelect');
_parent.tip.block.gotoAndStop('words');
_root.mapTooltip = '-Maximum holes-';
}
_root.mapTooltipShowing = 'uHoles';
}
}
onClipEvent (rollOut) {
if (_root.mapTooltipShowing != false) {
if (_root.mapLocalHoles != 5) {
this.gotoAndStop('yes');
} else {
this.gotoAndStop('no');
}
_parent.tip.gotoAndPlay('go');
_parent.tip.block.gotoAndStop('words');
_root.mapTooltipShowing = false;
}
}
onClipEvent (releaseOutside) {
if (_root.mapTooltipShowing != false) {
if (_root.mapLocalHoles != 5) {
this.gotoAndStop('yes');
} else {
this.gotoAndStop('no');
}
_parent.tip.gotoAndPlay('go');
_parent.tip.block.gotoAndStop('words');
_root.mapTooltipShowing = false;
}
}
}
instance population of movieClip 5824 {
onClipEvent (rollOver) {
if (_root.mapTooltipShowing != 'population') {
_parent.tip.gotoAndPlay('come');
_parent.tip.block.gotoAndStop('words');
this.icon.gotoAndStop(2);
_root.mapTooltip = 'Local Population';
_root.mapTooltipShowing = 'population';
}
}
onClipEvent (rollOut) {
if (_root.mapTooltipShowing != false) {
_parent.tip.gotoAndPlay('go');
_parent.tip.block.gotoAndStop('words');
this.icon.gotoAndStop(1);
_root.mapTooltipShowing = false;
}
}
onClipEvent (releaseOutside) {
if (_root.mapTooltipShowing != false) {
_parent.tip.gotoAndPlay('go');
_parent.tip.block.gotoAndStop('words');
this.icon.gotoAndStop(1);
_root.mapTooltipShowing = false;
}
}
}
instance wealth of movieClip 5828 {
onClipEvent (rollOver) {
if (_root.mapTooltipShowing != 'wealth') {
_parent.tip.gotoAndPlay('come');
_parent.tip.block.gotoAndStop('words');
this.icon.gotoAndStop(2);
_root.mapTooltip = 'Local Wealth';
_root.mapTooltipShowing = 'population';
}
}
onClipEvent (rollOut) {
if (_root.mapTooltipShowing != false) {
_parent.tip.gotoAndPlay('go');
_parent.tip.block.gotoAndStop('words');
this.icon.gotoAndStop(1);
_root.mapTooltipShowing = false;
}
}
onClipEvent (releaseOutside) {
if (_root.mapTooltipShowing != false) {
_parent.tip.gotoAndPlay('go');
_parent.tip.block.gotoAndStop('words');
this.icon.gotoAndStop(1);
_root.mapTooltipShowing = false;
}
}
}
instance rHuman of movieClip 5831 {
onClipEvent (rollOver) {
if (_root.mapTooltipShowing != 'rHuman') {
_parent.tip.gotoAndPlay('come');
_parent.tip.block.gotoAndStop('words');
if (_root.mapMaleHuman == false) {
this.gotoAndStop('noOver');
_root.mapTooltip = 'No Humans';
} else {
this.gotoAndStop('yesOver');
_root.mapTooltip = 'Humans';
}
_root.mapTooltipShowing = 'rHuman';
}
}
onClipEvent (rollOut) {
if (_root.mapTooltipShowing != false) {
if (_root.mapMaleHuman == false) {
this.gotoAndStop('no');
} else {
this.gotoAndStop('yes');
}
_parent.tip.gotoAndPlay('go');
_parent.tip.block.gotoAndStop('words');
_root.mapTooltipShowing = false;
}
}
onClipEvent (releaseOutside) {
if (_root.mapTooltipShowing != false) {
if (_root.mapMaleHuman == false) {
this.gotoAndStop('no');
} else {
this.gotoAndStop('yes');
}
_parent.tip.gotoAndPlay('go');
_parent.tip.block.gotoAndStop('words');
_root.mapTooltipShowing = false;
}
}
}
instance rKrogan of movieClip 5834 {
onClipEvent (rollOver) {
if (_root.mapTooltipShowing != 'rKrogan') {
_parent.tip.gotoAndPlay('come');
_parent.tip.block.gotoAndStop('words');
if (_root.mapMaleKrogan == false) {
this.gotoAndStop('noOver');
_root.mapTooltip = 'No Krogans';
} else {
this.gotoAndStop('yesOver');
_root.mapTooltip = 'Krogans';
}
_root.mapTooltipShowing = 'rKrogan';
}
}
onClipEvent (rollOut) {
if (_root.mapTooltipShowing != false) {
if (_root.mapMaleKrogan == false) {
this.gotoAndStop('no');
} else {
this.gotoAndStop('yes');
}
_parent.tip.gotoAndPlay('go');
_parent.tip.block.gotoAndStop('words');
_root.mapTooltipShowing = false;
}
}
onClipEvent (releaseOutside) {
if (_root.mapTooltipShowing != false) {
if (_root.mapMaleHuman == false) {
this.gotoAndStop('no');
} else {
this.gotoAndStop('yes');
}
_parent.tip.gotoAndPlay('go');
_parent.tip.block.gotoAndStop('words');
_root.mapTooltipShowing = false;
}
}
}
instance rTurian of movieClip 5838 {
onClipEvent (rollOver) {
if (_root.mapTooltipShowing != 'rTurian') {
_parent.tip.gotoAndPlay('come');
_parent.tip.block.gotoAndStop('words');
if (_root.mapMaleTurian == false) {
this.gotoAndStop('noOver');
_root.mapTooltip = 'No Turians';
} else {
this.gotoAndStop('yesOver');
_root.mapTooltip = 'Turians';
}
_root.mapTooltipShowing = 'rTurian';
}
}
onClipEvent (rollOut) {
if (_root.mapTooltipShowing != false) {
if (_root.mapMaleTurian == false) {
this.gotoAndStop('no');
} else {
this.gotoAndStop('yes');
}
_parent.tip.gotoAndPlay('go');
_parent.tip.block.gotoAndStop('words');
_root.mapTooltipShowing = false;
}
}
onClipEvent (releaseOutside) {
if (_root.mapTooltipShowing != false) {
if (_root.mapMaleHuman == false) {
this.gotoAndStop('no');
} else {
this.gotoAndStop('yes');
}
_parent.tip.gotoAndPlay('go');
_parent.tip.block.gotoAndStop('words');
_root.mapTooltipShowing = false;
}
}
}
instance rVorcha of movieClip 5841 {
onClipEvent (rollOver) {
if (_root.mapTooltipShowing != 'rVorcha') {
_parent.tip.gotoAndPlay('come');
_parent.tip.block.gotoAndStop('words');
if (_root.mapMaleVorcha == false) {
this.gotoAndStop('noOver');
_root.mapTooltip = 'No Vorcha';
} else {
this.gotoAndStop('yesOver');
_root.mapTooltip = 'Vorcha';
}
_root.mapTooltipShowing = 'rVorcha';
}
}
onClipEvent (rollOut) {
if (_root.mapTooltipShowing != false) {
if (_root.mapMaleVorcha == false) {
this.gotoAndStop('no');
} else {
this.gotoAndStop('yes');
}
_parent.tip.gotoAndPlay('go');
_parent.tip.block.gotoAndStop('words');
_root.mapTooltipShowing = false;
}
}
onClipEvent (releaseOutside) {
if (_root.mapTooltipShowing != false) {
if (_root.mapMaleHuman == false) {
this.gotoAndStop('no');
} else {
this.gotoAndStop('yes');
}
_parent.tip.gotoAndPlay('go');
_parent.tip.block.gotoAndStop('words');
_root.mapTooltipShowing = false;
}
}
}
instance rVolus of movieClip 5844 {
onClipEvent (rollOver) {
if (_root.mapTooltipShowing != 'rVolus') {
_parent.tip.gotoAndPlay('come');
_parent.tip.block.gotoAndStop('words');
if (_root.mapMaleVolus == false) {
this.gotoAndStop('noOver');
_root.mapTooltip = 'No Volus';
} else {
this.gotoAndStop('yesOver');
_root.mapTooltip = 'Volus';
}
_root.mapTooltipShowing = 'rVolus';
}
}
onClipEvent (rollOut) {
if (_root.mapTooltipShowing != false) {
if (_root.mapMaleVolus == false) {
this.gotoAndStop('no');
} else {
this.gotoAndStop('yes');
}
_parent.tip.gotoAndPlay('go');
_parent.tip.block.gotoAndStop('words');
_root.mapTooltipShowing = false;
}
}
onClipEvent (releaseOutside) {
if (_root.mapTooltipShowing != false) {
if (_root.mapMaleHuman == false) {
this.gotoAndStop('no');
} else {
this.gotoAndStop('yes');
}
_parent.tip.gotoAndPlay('go');
_parent.tip.block.gotoAndStop('words');
_root.mapTooltipShowing = false;
}
}
}
instance reputation of movieClip 35 {
onClipEvent (rollOver) {
_parent._parent.showRep();
}
onClipEvent (rollOut) {
_parent._parent.hideRep();
}
onClipEvent (releaseOutside) {
_parent._parent.hideRep();
}
}
frame 3 {
function resetMusic() {
btnMusAuto.gotoAndStop('off');
btnMusMute.gotoAndStop('off');
if (_root.music01Unlocked == true) {
btnMus1.gotoAndStop('off');
} else {
btnMus1.gotoAndStop('offLocked');
}
if (_root.music02Unlocked == true) {
btnMus2.gotoAndStop('off');
} else {
btnMus2.gotoAndStop('offLocked');
}
if (_root.music03Unlocked == true) {
btnMus3.gotoAndStop('off');
} else {
btnMus3.gotoAndStop('offLocked');
}
if (_root.music04Unlocked == true) {
btnMus4.gotoAndStop('off');
} else {
btnMus4.gotoAndStop('offLocked');
}
if (_root.music05Unlocked == true) {
btnMus5.gotoAndStop('off');
} else {
btnMus5.gotoAndStop('offLocked');
}
if (_root.music06Unlocked == true) {
btnMus6.gotoAndStop('off');
} else {
btnMus6.gotoAndStop('offLocked');
}
if (_root.music07Unlocked == true) {
btnMus7.gotoAndStop('off');
} else {
btnMus7.gotoAndStop('offLocked');
}
if (_root.musicForced == false) {
btnMusAuto.gotoAndStop('on');
} else {
if (_root.musicForced == 'mute') {
btnMusMute.gotoAndStop('on');
} else {
if (_root.musicForced == 1) {
btnMus1.gotoAndStop('on');
} else {
if (_root.musicForced == 2) {
btnMus2.gotoAndStop('on');
} else {
if (_root.musicForced == 3) {
btnMus3.gotoAndStop('on');
} else {
if (_root.musicForced == 4) {
btnMus4.gotoAndStop('on');
} else {
if (_root.musicForced == 5) {
btnMus5.gotoAndStop('on');
} else {
if (_root.musicForced == 6) {
btnMus6.gotoAndStop('on');
} else {
if (_root.musicForced == 7) {
btnMus7.gotoAndStop('on');
}
}
}
}
}
}
}
}
}
}
resetMusic();
}
instance btnMusAuto of movieClip 5899 {
onClipEvent (release) {
if (_root.musicForced != false) {
_root.musicForced = false;
_parent.resetMusic();
_root.Music();
_parent.resetMusic();
}
}
onClipEvent (rollOver) {
if (_root.mapTooltipShowing != 'musicAuto') {
_parent.tip.gotoAndPlay('come');
_parent.tip.block.gotoAndStop('words');
_root.mapTooltip = 'BGM: Auto';
_root.mapTooltipShowing = 'musicAuto';
}
}
onClipEvent (rollOut) {
if (_root.mapTooltipShowing != false) {
_parent.tip.gotoAndPlay('go');
_root.mapTooltipShowing = false;
}
}
onClipEvent (releaseOutside) {
if (_root.mapTooltipShowing != false) {
_parent.tip.gotoAndPlay('go');
_root.mapTooltipShowing = false;
}
}
}
instance btnMusMute of movieClip 5904 {
onClipEvent (release) {
if (_root.musicForced != 'mute') {
_root.musicForced = 'mute';
_parent.resetMusic();
_root.Music();
_parent.resetMusic();
}
}
onClipEvent (rollOver) {
if (_root.mapTooltipShowing != 'musicMute') {
_parent.tip.gotoAndPlay('come');
_parent.tip.block.gotoAndStop('words');
_root.mapTooltip = 'BGM: Mute';
_root.mapTooltipShowing = 'musicMute';
}
}
onClipEvent (rollOut) {
if (_root.mapTooltipShowing != false) {
_parent.tip.gotoAndPlay('go');
_root.mapTooltipShowing = false;
}
}
onClipEvent (releaseOutside) {
if (_root.mapTooltipShowing != false) {
_parent.tip.gotoAndPlay('go');
_root.mapTooltipShowing = false;
}
}
}
instance btnMus1 of movieClip 5641 {
onClipEvent (release) {
if (_root.musicForced != 1) {
if (_root.music01Unlocked == true) {
_root.musicForced = 1;
_parent.resetMusic();
_root.Music();
} else {
if (_root._score >= 500) {
_root.buyCost = '- 500';
_root._score -= 500;
_root._scoreDisplay = Math.floor(_root._score);
_parent._parent._parent._parent.board.cost.gotoAndPlay('go');
_parent._parent.mapPlate.tip.gotoAndStop('hold');
_parent._parent.mapPlate.tip.block.gotoAndStop('words');
_root.mapTooltip = 'Music Unlocked!';
_root.musicForced = 1;
_root.music01Unlocked = true;
_parent.resetMusic();
_root.Music();
} else {
_parent.tip.gotoAndStop('hold');
_parent.tip.block.gotoAndStop('poor');
_root.mapTooltip = 'Insufficient funds';
}
}
}
}
onClipEvent (rollOver) {
if (_root.mapTooltipShowing != 'music1') {
_parent.tip.gotoAndPlay('come');
if (_root.music01Unlocked == true) {
_parent.tip.block.gotoAndStop('words');
_root.mapTooltip = 'BGM: Consort';
} else {
_root.mapTooltip = 'BGM: Consort';
_root.mapTooltipCost = 500;
if (_root._score >= _root.mapTooltipCost) {
_parent.tip.block.gotoAndStop('buy');
} else {
_parent.tip.block.gotoAndStop('buyPoor');
}
}
_root.mapTooltipShowing = 'music1';
}
}
onClipEvent (rollOut) {
if (_root.mapTooltipShowing != false) {
_parent.tip.gotoAndPlay('go');
_root.mapTooltipShowing = false;
}
}
onClipEvent (releaseOutside) {
if (_root.mapTooltipShowing != false) {
_parent.tip.gotoAndPlay('go');
_root.mapTooltipShowing = false;
}
}
}
instance btnMus3 of movieClip 5647 {
onClipEvent (release) {
if (_root.musicForced != 3) {
if (_root.music03Unlocked == true) {
_root.musicForced = 3;
_parent.resetMusic();
_root.Music();
} else {
if (_root._score >= 500) {
_root.buyCost = '- 500';
_root._score -= 500;
_root._scoreDisplay = Math.floor(_root._score);
_parent._parent._parent._parent.board.cost.gotoAndPlay('go');
_parent._parent.mapPlate.tip.gotoAndStop('hold');
_parent._parent.mapPlate.tip.block.gotoAndStop('words');
_root.mapTooltip = 'Music Unlocked!';
_root.musicForced = 3;
_root.music03Unlocked = true;
_parent.resetMusic();
_root.Music();
} else {
_parent.tip.gotoAndStop('hold');
_parent.tip.block.gotoAndStop('poor');
_root.mapTooltip = 'Insufficient funds';
}
}
}
}
onClipEvent (rollOver) {
if (_root.mapTooltipShowing != 'music3') {
_parent.tip.gotoAndPlay('come');
if (_root.music03Unlocked == true) {
_parent.tip.block.gotoAndStop('words');
_root.mapTooltip = 'BGM: Flux';
} else {
_root.mapTooltip = 'BGM: Flux';
_root.mapTooltipCost = 500;
if (_root._score >= _root.mapTooltipCost) {
_parent.tip.block.gotoAndStop('buy');
} else {
_parent.tip.block.gotoAndStop('buyPoor');
}
}
_root.mapTooltipShowing = 'music3';
}
}
onClipEvent (rollOut) {
if (_root.mapTooltipShowing != false) {
_parent.tip.gotoAndPlay('go');
_root.mapTooltipShowing = false;
}
}
onClipEvent (releaseOutside) {
if (_root.mapTooltipShowing != false) {
_parent.tip.gotoAndPlay('go');
_root.mapTooltipShowing = false;
}
}
}
instance btnMus4 of movieClip 5653 {
onClipEvent (release) {
if (_root.musicForced != 4) {
if (_root.music04Unlocked == true) {
_root.musicForced = 4;
_parent.resetMusic();
_root.Music();
} else {
if (_root._score >= 250) {
_root.buyCost = '- 250';
_root._score -= 250;
_root._scoreDisplay = Math.floor(_root._score);
_parent._parent._parent._parent.board.cost.gotoAndPlay('go');
_parent._parent.mapPlate.tip.gotoAndStop('hold');
_parent._parent.mapPlate.tip.block.gotoAndStop('words');
_root.mapTooltip = 'Music Unlocked!';
_root.musicForced = 4;
_root.music04Unlocked = true;
_parent.resetMusic();
_root.Music();
} else {
_parent.tip.gotoAndStop('hold');
_parent.tip.block.gotoAndStop('poor');
_root.mapTooltip = 'Insufficient funds';
}
}
}
}
onClipEvent (rollOver) {
if (_root.mapTooltipShowing != 'music4') {
_parent.tip.gotoAndPlay('come');
if (_root.music04Unlocked == true) {
_parent.tip.block.gotoAndStop('words');
_root.mapTooltip = 'BGM: Slums';
} else {
_root.mapTooltip = 'BGM: Slums';
_root.mapTooltipCost = 250;
if (_root._score >= _root.mapTooltipCost) {
_parent.tip.block.gotoAndStop('buy');
} else {
_parent.tip.block.gotoAndStop('buyPoor');
}
}
_root.mapTooltipShowing = 'music4';
}
}
onClipEvent (rollOut) {
if (_root.mapTooltipShowing != false) {
_parent.tip.gotoAndPlay('go');
_root.mapTooltipShowing = false;
}
}
onClipEvent (releaseOutside) {
if (_root.mapTooltipShowing != false) {
_parent.tip.gotoAndPlay('go');
_root.mapTooltipShowing = false;
}
}
}
instance btnMus5 of movieClip 5659 {
onClipEvent (release) {
if (_root.musicForced != 5) {
if (_root.music05Unlocked == true) {
_root.musicForced = 5;
_parent.resetMusic();
_root.Music();
} else {
if (_root._score >= 250) {
_root.buyCost = '- 250';
_root._score -= 250;
_root._scoreDisplay = Math.floor(_root._score);
_parent._parent._parent._parent.board.cost.gotoAndPlay('go');
_parent._parent.mapPlate.tip.gotoAndStop('hold');
_parent._parent.mapPlate.tip.block.gotoAndStop('words');
_root.mapTooltip = 'Music Unlocked!';
_root.musicForced = 5;
_root.music05Unlocked = true;
_parent.resetMusic();
_root.Music();
} else {
_parent.tip.gotoAndStop('hold');
_parent.tip.block.gotoAndStop('poor');
_root.mapTooltip = 'Insufficient funds';
}
}
}
}
onClipEvent (rollOver) {
if (_root.mapTooltipShowing != 'music5') {
_parent.tip.gotoAndPlay('come');
if (_root.music05Unlocked == true) {
_parent.tip.block.gotoAndStop('words');
_root.mapTooltip = 'BGM: Council';
} else {
_root.mapTooltip = 'BGM: Council';
_root.mapTooltipCost = 250;
if (_root._score >= _root.mapTooltipCost) {
_parent.tip.block.gotoAndStop('buy');
} else {
_parent.tip.block.gotoAndStop('buyPoor');
}
}
_root.mapTooltipShowing = 'music5';
}
}
onClipEvent (rollOut) {
if (_root.mapTooltipShowing != false) {
_parent.tip.gotoAndPlay('go');
_root.mapTooltipShowing = false;
}
}
onClipEvent (releaseOutside) {
if (_root.mapTooltipShowing != false) {
_parent.tip.gotoAndPlay('go');
_root.mapTooltipShowing = false;
}
}
}
instance btnMus6 of movieClip 5665 {
onClipEvent (release) {
if (_root.musicForced != 6) {
if (_root.music06Unlocked == true) {
_root.musicForced = 6;
_parent.resetMusic();
_root.Music();
} else {
if (_root._score >= 200) {
_root.buyCost = '- 200';
_root._score -= 200;
_root._scoreDisplay = Math.floor(_root._score);
_parent._parent._parent._parent.board.cost.gotoAndPlay('go');
_parent._parent.mapPlate.tip.gotoAndStop('hold');
_parent._parent.mapPlate.tip.block.gotoAndStop('words');
_root.mapTooltip = 'Music Unlocked!';
_root.musicForced = 6;
_root.music06Unlocked = true;
_parent.resetMusic();
_root.Music();
} else {
_parent.tip.gotoAndStop('hold');
_parent.tip.block.gotoAndStop('poor');
_root.mapTooltip = 'Insufficient funds';
}
}
}
}
onClipEvent (rollOver) {
if (_root.mapTooltipShowing != 'music6') {
_parent.tip.gotoAndPlay('come');
if (_root.music06Unlocked == true) {
_parent.tip.block.gotoAndStop('words');
_root.mapTooltip = 'BGM: Blood Pack';
} else {
_root.mapTooltip = 'BGM: Blood Pack';
_root.mapTooltipCost = 200;
if (_root._score >= _root.mapTooltipCost) {
_parent.tip.block.gotoAndStop('buy');
} else {
_parent.tip.block.gotoAndStop('buyPoor');
}
}
_root.mapTooltipShowing = 'music6';
}
}
onClipEvent (rollOut) {
if (_root.mapTooltipShowing != false) {
_parent.tip.gotoAndPlay('go');
_root.mapTooltipShowing = false;
}
}
onClipEvent (releaseOutside) {
if (_root.mapTooltipShowing != false) {
_parent.tip.gotoAndPlay('go');
_root.mapTooltipShowing = false;
}
}
}
instance btnMus7 of movieClip 5671 {
onClipEvent (release) {
if (_root.musicForced != 7) {
if (_root.music07Unlocked == true) {
_root.musicForced = 7;
_parent.resetMusic();
_root.Music();
} else {
if (_root._score >= 100) {
_root.buyCost = '- 100';
_root._score -= 100;
_root._scoreDisplay = Math.floor(_root._score);
_parent._parent._parent._parent.board.cost.gotoAndPlay('go');
_parent._parent.mapPlate.tip.gotoAndStop('hold');
_parent._parent.mapPlate.tip.block.gotoAndStop('words');
_root.mapTooltip = 'Music Unlocked!';
_root.musicForced = 7;
_root.music07Unlocked = true;
_parent.resetMusic();
_root.Music();
} else {
_parent.tip.gotoAndStop('hold');
_parent.tip.block.gotoAndStop('poor');
_root.mapTooltip = 'Insufficient funds';
}
}
}
}
onClipEvent (rollOver) {
if (_root.mapTooltipShowing != 'music7') {
_parent.tip.gotoAndPlay('come');
if (_root.music07Unlocked == true) {
_parent.tip.block.gotoAndStop('words');
_root.mapTooltip = 'BGM: Cerberus';
} else {
_root.mapTooltip = 'BGM: Cerberus';
_root.mapTooltipCost = 100;
if (_root._score >= _root.mapTooltipCost) {
_parent.tip.block.gotoAndStop('buy');
} else {
_parent.tip.block.gotoAndStop('buyPoor');
}
}
_root.mapTooltipShowing = 'music7';
}
}
onClipEvent (rollOut) {
if (_root.mapTooltipShowing != false) {
_parent.tip.gotoAndPlay('go');
_root.mapTooltipShowing = false;
}
}
onClipEvent (releaseOutside) {
if (_root.mapTooltipShowing != false) {
_parent.tip.gotoAndPlay('go');
_root.mapTooltipShowing = false;
}
}
}
instance btnMus2 of movieClip 5677 {
onClipEvent (release) {
if (_root.musicForced != 2) {
if (_root.music02Unlocked == true) {
_root.musicForced = 2;
_parent.resetMusic();
_root.Music();
} else {
if (_root._score >= 500) {
_root.buyCost = '- 500';
_root._score -= 500;
_root._scoreDisplay = Math.floor(_root._score);
_parent._parent._parent._parent.board.cost.gotoAndPlay('go');
_parent._parent.mapPlate.tip.gotoAndStop('hold');
_parent._parent.mapPlate.tip.block.gotoAndStop('words');
_root.mapTooltip = 'Music Unlocked!';
_root.musicForced = 2;
_root.music02Unlocked = true;
_parent.resetMusic();
_root.Music();
} else {
_parent.tip.gotoAndStop('hold');
_parent.tip.block.gotoAndStop('poor');
_root.mapTooltip = 'Insufficient funds';
}
}
}
}
onClipEvent (rollOver) {
if (_root.mapTooltipShowing != 'music2') {
_parent.tip.gotoAndPlay('come');
if (_root.music02Unlocked == true) {
_parent.tip.block.gotoAndStop('words');
_root.mapTooltip = 'BGM: C-sec';
} else {
_root.mapTooltip = 'BGM: C-sec';
_root.mapTooltipCost = 500;
if (_root._score >= _root.mapTooltipCost) {
_parent.tip.block.gotoAndStop('buy');
} else {
_parent.tip.block.gotoAndStop('buyPoor');
}
}
_root.mapTooltipShowing = 'music2';
}
}
onClipEvent (rollOut) {
if (_root.mapTooltipShowing != false) {
_parent.tip.gotoAndPlay('go');
_root.mapTooltipShowing = false;
}
}
onClipEvent (releaseOutside) {
if (_root.mapTooltipShowing != false) {
_parent.tip.gotoAndPlay('go');
_root.mapTooltipShowing = false;
}
}
}
frame 4 {
function resetCheats() {
if (_root.endlessUnlocked == true) {
btnCheEnd.gotoAndStop('off');
} else {
btnCheEnd.gotoAndStop('offLocked');
}
if (_root.cheatEnergyUnlocked == true) {
btnCheEng.gotoAndStop('off');
} else {
btnCheEng.gotoAndStop('offLocked');
}
if (_root.cheatRegularUnlocked == true) {
btnCheDay.gotoAndStop('off');
} else {
btnCheDay.gotoAndStop('offLocked');
}
if (_root.jutsuUnlocked == true) {
btnCheJut.gotoAndStop('off');
} else {
btnCheJut.gotoAndStop('offLocked');
}
if (_root.rainbowAllUnlocked == true) {
btnCheRain.gotoAndStop('off');
} else {
btnCheRain.gotoAndStop('offLocked');
}
if (_root.rainbowHeadUnlocked == true) {
btnCheShp.gotoAndStop('off');
} else {
btnCheShp.gotoAndStop('offLocked');
}
if (_root.rainbowBodyUnlocked == true) {
btnCheDrm.gotoAndStop('off');
} else {
btnCheDrm.gotoAndStop('offLocked');
}
if (_root.rainbowSquadUnlocked == true) {
btnCheSqd.gotoAndStop('off');
} else {
btnCheSqd.gotoAndStop('offLocked');
}
if (_root.endless != false) {
btnCheEnd.gotoAndStop('on');
}
if (_root.cheatEnergy != false) {
btnCheEng.gotoAndStop('on');
}
if (_root.cheatRegular != false) {
btnCheDay.gotoAndStop('on');
}
if (_root.jutsu != 0) {
btnCheJut.gotoAndStop('on');
}
if (_root.rainbow == true) {
btnCheRain.gotoAndStop('on');
} else {
if (_root.rainbow == 'head') {
btnCheShp.gotoAndStop('on');
} else {
if (_root.rainbow == 'body') {
btnCheDrm.gotoAndStop('on');
} else {
if (_root.rainbow == 'squad') {
btnCheSqd.gotoAndStop('on');
}
}
}
}
}
resetCheats();
}
instance btnCheDay of movieClip 5911 {
onClipEvent (release) {
if (_root.cheatRegular != true) {
if (_root.cheatRegularUnlocked == true) {
_root.cheatRegular = true;
_parent.resetCheats();
} else {
if (_root._score >= 1000) {
_root.buyCost = '- 1000';
_root._score -= 1000;
_root._scoreDisplay = Math.floor(_root._score);
_parent._parent._parent._parent.board.cost.gotoAndPlay('go');
_parent._parent.mapPlate.tip.gotoAndStop('hold');
_parent._parent.mapPlate.tip.block.gotoAndStop('words');
_root.mapTooltip = 'Cheat Unlocked!';
_root.cheatRegular = true;
_root.cheatRegularUnlocked = true;
_parent.resetCheats();
} else {
_parent.tip.gotoAndStop('hold');
_parent.tip.block.gotoAndStop('poor');
_root.mapTooltip = 'Insufficient funds';
}
}
} else {
_root.cheatRegular = false;
_parent.resetCheats();
}
}
onClipEvent (rollOver) {
if (_root.mapTooltipShowing != 'cheatDay') {
_parent.tip.gotoAndPlay('come');
if (_root.cheatRegularUnlocked == true) {
_parent.tip.block.gotoAndStop('words');
_root.mapTooltip = 'Faction Ships Always';
} else {
_root.mapTooltip = 'Faction Ships Always';
_root.mapTooltipCost = 1000;
if (_root._score >= _root.mapTooltipCost) {
_parent.tip.block.gotoAndStop('buy');
} else {
_parent.tip.block.gotoAndStop('buyPoor');
}
}
_root.mapTooltipShowing = 'cheatDay';
}
}
onClipEvent (rollOut) {
if (_root.mapTooltipShowing != false) {
_parent.tip.gotoAndPlay('go');
_root.mapTooltipShowing = false;
}
}
onClipEvent (releaseOutside) {
if (_root.mapTooltipShowing != false) {
_parent.tip.gotoAndPlay('go');
_root.mapTooltipShowing = false;
}
}
}
instance btnCheRain of movieClip 5916 {
onClipEvent (release) {
if (_root.rainbow != true) {
if (_root.rainbowAllUnlocked == true) {
_root.rainbow = true;
_parent.resetCheats();
} else {
if (_root._score >= 750) {
_root.buyCost = '- 750';
_root._score -= 750;
_root._scoreDisplay = Math.floor(_root._score);
_parent._parent._parent._parent.board.cost.gotoAndPlay('go');
_parent._parent.mapPlate.tip.gotoAndStop('hold');
_parent._parent.mapPlate.tip.block.gotoAndStop('words');
_root.mapTooltip = 'Cheat Unlocked!';
_root.rainbow = true;
_root.rainbowAllUnlocked = true;
_parent.resetCheats();
} else {
_parent.tip.gotoAndStop('hold');
_parent.tip.block.gotoAndStop('poor');
_root.mapTooltip = 'Insufficient funds';
}
}
} else {
_root.rainbow = false;
_parent.resetCheats();
}
}
onClipEvent (rollOver) {
if (_root.mapTooltipShowing != 'rainAll') {
_parent.tip.gotoAndPlay('come');
if (_root.rainbowAllUnlocked == true) {
_parent.tip.block.gotoAndStop('words');
_root.mapTooltip = 'Rainbow Mode';
} else {
_root.mapTooltip = 'Rainbow Mode';
_root.mapTooltipCost = 750;
if (_root._score >= _root.mapTooltipCost) {
_parent.tip.block.gotoAndStop('buy');
} else {
_parent.tip.block.gotoAndStop('buyPoor');
}
}
_root.mapTooltipShowing = 'rainAll';
}
}
onClipEvent (rollOut) {
if (_root.mapTooltipShowing != false) {
_parent.tip.gotoAndPlay('go');
_root.mapTooltipShowing = false;
}
}
onClipEvent (releaseOutside) {
if (_root.mapTooltipShowing != false) {
_parent.tip.gotoAndPlay('go');
_root.mapTooltipShowing = false;
}
}
}
instance btnCheShp of movieClip 5921 {
onClipEvent (release) {
if (_root.rainbow != 'head') {
if (_root.rainbowHeadUnlocked == true) {
_root.rainbow = 'head';
_parent.resetCheats();
} else {
if (_root._score >= 750) {
_root.buyCost = '- 750';
_root._score -= 750;
_root._scoreDisplay = Math.floor(_root._score);
_parent._parent._parent._parent.board.cost.gotoAndPlay('go');
_parent._parent.mapPlate.tip.gotoAndStop('hold');
_parent._parent.mapPlate.tip.block.gotoAndStop('words');
_root.mapTooltip = 'Cheat Unlocked!';
_root.rainbow = 'head';
_root.rainbowHeadUnlocked = true;
_parent.resetCheats();
} else {
_parent.tip.gotoAndStop('hold');
_parent.tip.block.gotoAndStop('poor');
_root.mapTooltip = 'Insufficient funds';
}
}
} else {
_root.rainbow = false;
_parent.resetCheats();
}
}
onClipEvent (rollOver) {
if (_root.mapTooltipShowing != 'rainHead') {
_parent.tip.gotoAndPlay('come');
if (_root.rainbowHeadUnlocked == true) {
_parent.tip.block.gotoAndStop('words');
_root.mapTooltip = 'Rainbow Head';
} else {
_root.mapTooltip = 'Rainbow Head';
_root.mapTooltipCost = 750;
if (_root._score >= _root.mapTooltipCost) {
_parent.tip.block.gotoAndStop('buy');
} else {
_parent.tip.block.gotoAndStop('buyPoor');
}
}
_root.mapTooltipShowing = 'rainHead';
}
}
onClipEvent (rollOut) {
if (_root.mapTooltipShowing != false) {
_parent.tip.gotoAndPlay('go');
_root.mapTooltipShowing = false;
}
}
onClipEvent (releaseOutside) {
if (_root.mapTooltipShowing != false) {
_parent.tip.gotoAndPlay('go');
_root.mapTooltipShowing = false;
}
}
}
instance btnCheDrm of movieClip 5926 {
onClipEvent (release) {
if (_root.rainbow != 'body') {
if (_root.rainbowBodyUnlocked == true) {
_root.rainbow = 'body';
_parent.resetCheats();
} else {
if (_root._score >= 750) {
_root.buyCost = '- 750';
_root._score -= 750;
_root._scoreDisplay = Math.floor(_root._score);
_parent._parent._parent._parent.board.cost.gotoAndPlay('go');
_parent._parent.mapPlate.tip.gotoAndStop('hold');
_parent._parent.mapPlate.tip.block.gotoAndStop('words');
_root.mapTooltip = 'Cheat Unlocked!';
_root.rainbow = 'body';
_root.rainbowBodyUnlocked = true;
_parent.resetCheats();
} else {
_parent.tip.gotoAndStop('hold');
_parent.tip.block.gotoAndStop('poor');
_root.mapTooltip = 'Insufficient funds';
}
}
} else {
_root.rainbow = false;
_parent.resetCheats();
}
}
onClipEvent (rollOver) {
if (_root.mapTooltipShowing != 'rainBody') {
_parent.tip.gotoAndPlay('come');
if (_root.rainbowBodyUnlocked == true) {
_parent.tip.block.gotoAndStop('words');
_root.mapTooltip = 'Rainbow Clothes';
} else {
_root.mapTooltip = 'Rainbow Clothes';
_root.mapTooltipCost = 750;
if (_root._score >= _root.mapTooltipCost) {
_parent.tip.block.gotoAndStop('buy');
} else {
_parent.tip.block.gotoAndStop('buyPoor');
}
}
_root.mapTooltipShowing = 'rainBody';
}
}
onClipEvent (rollOut) {
if (_root.mapTooltipShowing != false) {
_parent.tip.gotoAndPlay('go');
_root.mapTooltipShowing = false;
}
}
onClipEvent (releaseOutside) {
if (_root.mapTooltipShowing != false) {
_parent.tip.gotoAndPlay('go');
_root.mapTooltipShowing = false;
}
}
}
instance btnCheJut of movieClip 5931 {
onClipEvent (release) {
if (_root.jutsu != 5) {
if (_root.jutsuUnlocked == true) {
_root.jutsu = 5;
_parent.resetCheats();
} else {
if (_root._score >= 2500) {
_root.buyCost = '- 2500';
_root._score -= 2500;
_root._scoreDisplay = Math.floor(_root._score);
_parent._parent._parent._parent.board.cost.gotoAndPlay('go');
_parent._parent.mapPlate.tip.gotoAndStop('hold');
_parent._parent.mapPlate.tip.block.gotoAndStop('words');
_root.mapTooltip = 'Cheat Unlocked!';
_root.jutsu = 5;
_root.jutsuUnlocked = true;
_parent.resetCheats();
} else {
_parent.tip.gotoAndStop('hold');
_parent.tip.block.gotoAndStop('poor');
_root.mapTooltip = 'Insufficient funds';
}
}
} else {
_root.jutsu = 0;
_parent.resetCheats();
}
}
onClipEvent (rollOver) {
if (_root.mapTooltipShowing != 'cheatJutsu') {
_parent.tip.gotoAndPlay('come');
if (_root.jutsuUnlocked == true) {
_parent.tip.block.gotoAndStop('words');
_root.mapTooltip = 'Shadow-clone Mode';
} else {
_root.mapTooltip = 'Shadow-clone Mode';
_root.mapTooltipCost = 2500;
if (_root._score >= _root.mapTooltipCost) {
_parent.tip.block.gotoAndStop('buy');
} else {
_parent.tip.block.gotoAndStop('buyPoor');
}
}
_root.mapTooltipShowing = 'cheatJutsu';
}
}
onClipEvent (rollOut) {
if (_root.mapTooltipShowing != false) {
_parent.tip.gotoAndPlay('go');
_root.mapTooltipShowing = false;
}
}
onClipEvent (releaseOutside) {
if (_root.mapTooltipShowing != false) {
_parent.tip.gotoAndPlay('go');
_root.mapTooltipShowing = false;
}
}
}
instance btnCheEnd of movieClip 5936 {
onClipEvent (release) {
if (_root.endless != true) {
if (_root.endlessUnlocked == true) {
_root.endless = true;
_parent.resetCheats();
} else {
if (_root._score >= 500) {
_root.buyCost = '- 500';
_root._score -= 500;
_root._scoreDisplay = Math.floor(_root._score);
_parent._parent._parent._parent.board.cost.gotoAndPlay('go');
_parent._parent.mapPlate.tip.gotoAndStop('hold');
_parent._parent.mapPlate.tip.block.gotoAndStop('words');
_root.mapTooltip = 'Cheat Unlocked!';
_root.endless = true;
_root.endlessUnlocked = true;
_parent.resetCheats();
} else {
_parent.tip.gotoAndStop('hold');
_parent.tip.block.gotoAndStop('poor');
_root.mapTooltip = 'Insufficient funds';
}
}
} else {
_root.endless = false;
_parent.resetCheats();
}
}
onClipEvent (rollOver) {
if (_root.mapTooltipShowing != 'cheatEndless') {
_parent.tip.gotoAndPlay('come');
if (_root.endlessUnlocked == true) {
_parent.tip.block.gotoAndStop('words');
_root.mapTooltip = 'Endless Mode';
} else {
_root.mapTooltip = 'Endless Mode';
_root.mapTooltipCost = 500;
if (_root._score >= _root.mapTooltipCost) {
_parent.tip.block.gotoAndStop('buy');
} else {
_parent.tip.block.gotoAndStop('buyPoor');
}
}
_root.mapTooltipShowing = 'cheatEndless';
}
}
onClipEvent (rollOut) {
if (_root.mapTooltipShowing != false) {
_parent.tip.gotoAndPlay('go');
_root.mapTooltipShowing = false;
}
}
onClipEvent (releaseOutside) {
if (_root.mapTooltipShowing != false) {
_parent.tip.gotoAndPlay('go');
_root.mapTooltipShowing = false;
}
}
}
instance btnCheEng of movieClip 5941 {
onClipEvent (release) {
if (_root.cheatEnergy != true) {
if (_root.cheatEnergyUnlocked == true) {
_root.cheatEnergy = true;
_parent.resetCheats();
} else {
if (_root._score >= 10000) {
_root.buyCost = '- 10000';
_root._score -= 10000;
_root._scoreDisplay = Math.floor(_root._score);
_parent._parent._parent._parent.board.cost.gotoAndPlay('go');
_parent._parent.mapPlate.tip.gotoAndStop('hold');
_parent._parent.mapPlate.tip.block.gotoAndStop('words');
_root.mapTooltip = 'Cheat Unlocked!';
_root.cheatEnergy = true;
_root.cheatEnergyUnlocked = true;
_parent.resetCheats();
} else {
_parent.tip.gotoAndStop('hold');
_parent.tip.block.gotoAndStop('poor');
_root.mapTooltip = 'Insufficient funds';
}
}
} else {
_root.cheatEnergy = false;
_parent.resetCheats();
}
}
onClipEvent (rollOver) {
if (_root.mapTooltipShowing != 'cheatEnergy') {
_parent.tip.gotoAndPlay('come');
if (_root.cheatEnergyUnlocked == true) {
_parent.tip.block.gotoAndStop('words');
_root.mapTooltip = 'Unlimited Energy';
} else {
_root.mapTooltip = 'Unlimited Energy';
_root.mapTooltipCost = 10000;
if (_root._score >= _root.mapTooltipCost) {
_parent.tip.block.gotoAndStop('buy');
} else {
_parent.tip.block.gotoAndStop('buyPoor');
}
}
_root.mapTooltipShowing = 'cheatEnergy';
}
}
onClipEvent (rollOut) {
if (_root.mapTooltipShowing != false) {
_parent.tip.gotoAndPlay('go');
_root.mapTooltipShowing = false;
}
}
onClipEvent (releaseOutside) {
if (_root.mapTooltipShowing != false) {
_parent.tip.gotoAndPlay('go');
_root.mapTooltipShowing = false;
}
}
}
instance btnCheSqd of movieClip 5946 {
onClipEvent (release) {
if (_root.rainbow != 'squad') {
if (_root.rainbowSquadUnlocked == true) {
_root.rainbow = 'squad';
_parent.resetCheats();
} else {
if (_root._score >= 1500) {
_root.buyCost = '- 1500';
_root._score -= 1500;
_root._scoreDisplay = Math.floor(_root._score);
_parent._parent._parent._parent.board.cost.gotoAndPlay('go');
_parent._parent.mapPlate.tip.gotoAndStop('hold');
_parent._parent.mapPlate.tip.block.gotoAndStop('words');
_root.mapTooltip = 'Cheat Unlocked!';
_root.rainbow = 'squad';
_root.rainbowSquadUnlocked = true;
_parent.resetCheats();
} else {
_parent.tip.gotoAndStop('hold');
_parent.tip.block.gotoAndStop('poor');
_root.mapTooltip = 'Insufficient funds';
}
}
} else {
_root.rainbow = false;
_parent.resetCheats();
}
}
onClipEvent (rollOver) {
if (_root.mapTooltipShowing != 'rainSquad') {
_parent.tip.gotoAndPlay('come');
if (_root.rainbowSquadUnlocked == true) {
_parent.tip.block.gotoAndStop('words');
_root.mapTooltip = 'Rainbow \'squad\'';
} else {
_root.mapTooltip = 'Rainbow \'squad\'';
_root.mapTooltipCost = 1500;
if (_root._score >= _root.mapTooltipCost) {
_parent.tip.block.gotoAndStop('buy');
} else {
_parent.tip.block.gotoAndStop('buyPoor');
}
}
_root.mapTooltipShowing = 'rainSquad';
}
}
onClipEvent (rollOut) {
if (_root.mapTooltipShowing != false) {
_parent.tip.gotoAndPlay('go');
_root.mapTooltipShowing = false;
}
}
onClipEvent (releaseOutside) {
if (_root.mapTooltipShowing != false) {
_parent.tip.gotoAndPlay('go');
_root.mapTooltipShowing = false;
}
}
}
}
movieClip 5955 {
}
movieClip 5965 {
}
movieClip 5966 {
frame 1 {
stop();
}
}
button 5973 {
on (release) {
if (_root.canWork == true) {
if (_root.startup != false) {
_root.startup = false;
_root.canLevel = 0;
}
_root.newDay = false;
_root.localMap = _root.mapSelected;
_root.mapSelectedLast = _root.mapSelected;
++_root.dayNumber;
_root.gotoScreen('4');
_root.level_pause = false;
_root.menuSelected = false;
_root.clientsMax = 0;
_root.energyB = _root.energyBmax;
_root.energyS = _root.energySmax;
_root.energyF = _root.energyFmax;
_root.energyA = _root.energyAmax;
if (_root.musicForced == false) {
if (_root.localMap == 'slums') {
if (_root.BGMplaying != 4) {
_root.BGMplaying = 4;
_root.Music();
_root.BGMmax = 100;
}
} else {
if (_root.localMap == 'c-sec') {
if (_root.BGMplaying != 2) {
_root.BGMplaying = 2;
_root.Music();
_root.BGMmax = 100;
}
} else {
if (_root.localMap == 'consort') {
if (_root.BGMplaying != 1) {
_root.BGMplaying = 1;
_root.Music();
_root.BGMmax = 100;
}
} else {
if (_root.localMap == 'flux') {
if (_root.BGMplaying != 3) {
_root.BGMplaying = 3;
_root.Music();
_root.BGMmax = 100;
}
} else {
if (_root.localMap == 'blood') {
if (_root.BGMplaying != 6) {
_root.BGMplaying = 6;
_root.Music();
_root.BGMmax = 100;
}
} else {
if (_root.localMap == 'cerberus') {
if (_root.BGMplaying != 7) {
_root.BGMplaying = 7;
_root.Music();
_root.BGMmax = 100;
}
} else {
if (_root.localMap == 'council') {
if (_root.BGMplaying != 5) {
_root.BGMplaying = 5;
_root.Music();
_root.BGMmax = 100;
}
} else {
if (_root.BGMplaying != 2) {
_root.BGMplaying = 2;
_root.Music();
_root.BGMmax = 100;
}
}
}
}
}
}
}
}
}
_root.BGMmax = 100;
}
}
}
movieClip 5974 {
}
button 5979 {
on (release) {
_parent.gotoAndPlay('mapToShop');
if (_root.startup != false) {
_root.startup = true;
}
}
}
movieClip 5982 {
frame 1 {
function checkCanLevelSkills() {
_root.canLevel = 0;
if (_root.skillB1 == true) {
} else {
if (_root.skillPoints >= _root.skillB1Cost) {
++_root.canLevel;
}
}
if (_root.skillB2 == true) {
} else {
if (_root.skillPoints >= _root.skillB2Cost && _root.skillB1 == true) {
++_root.canLevel;
}
}
if (_root.skillB3 == true) {
} else {
if (_root.skillPoints >= _root.skillB3Cost && _root.skillB2 == true) {
++_root.canLevel;
}
}
if (_root.skillB4 == true) {
} else {
if (_root.skillPoints >= _root.skillB4Cost && _root.skillB3 == true) {
++_root.canLevel;
}
}
if (_root.skillB5 == true) {
} else {
if (_root.skillPoints >= _root.skillB5Cost && _root.skillB4 == true) {
++_root.canLevel;
}
}
if (_root.skillS1 == true) {
} else {
if (_root.skillPoints >= _root.skillS1Cost) {
++_root.canLevel;
}
}
if (_root.skillS2 == true) {
} else {
if (_root.skillPoints >= _root.skillS2Cost && _root.skillS1 == true) {
++_root.canLevel;
}
}
if (_root.skillS3 == true) {
} else {
if (_root.skillPoints >= _root.skillS3Cost && _root.skillS2 == true) {
++_root.canLevel;
}
}
if (_root.skillS4 == true) {
} else {
if (_root.skillPoints >= _root.skillS4Cost && _root.skillS3 == true) {
++_root.canLevel;
}
}
if (_root.skillS5 == true) {
} else {
if (_root.skillPoints >= _root.skillS5Cost && _root.skillS4 == true) {
++_root.canLevel;
}
}
if (_root.skillF1 == true) {
} else {
if (_root.skillPoints >= _root.skillF1Cost) {
++_root.canLevel;
}
}
if (_root.skillF2 == true) {
} else {
if (_root.skillPoints >= _root.skillF2Cost && _root.skillF1 == true) {
++_root.canLevel;
}
}
if (_root.skillF3 == true) {
} else {
if (_root.skillPoints >= _root.skillF3Cost && _root.skillF3 == true) {
++_root.canLevel;
}
}
if (_root.skillF4 == true) {
} else {
if (_root.skillPoints >= _root.skillF4Cost && _root.skillF3 == true) {
++_root.canLevel;
}
}
if (_root.skillA1 == true) {
} else {
if (_root.skillPoints >= _root.skillA1Cost) {
++_root.canLevel;
}
}
if (_root.skillA2 == true) {
} else {
if (_root.skillPoints >= _root.skillA2Cost && _root.skillA1 == true) {
++_root.canLevel;
}
}
if (_root.skillA3 == true) {
} else {
if (_root.skillPoints >= _root.skillA3Cost && _root.skillA2 == true) {
++_root.canLevel;
}
}
if (_root.skillA4 == true) {
} else {
if (_root.skillPoints >= _root.skillA4Cost && _root.skillA3 == true) {
++_root.canLevel;
}
}
if (_root.skillFin1 == true) {
} else {
if (_root.skillPoints >= _root.skillFin1Cost) {
++_root.canLevel;
}
}
if (_root.skillFin2 == true) {
} else {
if (_root.skillPoints >= _root.skillFin2Cost && _root.skillFin1 == true) {
++_root.canLevel;
}
}
if (_root.skillFin3 == true) {
} else {
if (_root.skillPoints >= _root.skillFin3Cost && _root.skillFin2 == true) {
++_root.canLevel;
}
}
if (_root.skillSta1 == true) {
} else {
if (_root.skillPoints >= _root.skillSta1Cost) {
++_root.canLevel;
}
}
if (_root.skillSta2 == true) {
} else {
if (_root.skillPoints >= _root.skillSta2Cost && _root.skillSta1 == true) {
++_root.canLevel;
}
}
if (_root.skillSta3 == true) {
} else {
if (_root.skillPoints >= _root.skillSta3Cost && _root.skillSta2 == true) {
++_root.canLevel;
}
}
if (_root.skillAll1 == true) {
} else {
if (_root.skillPoints >= _root.skillAll1Cost) {
++_root.canLevel;
}
}
if (_root.skillAll2 == true) {
} else {
if (_root.skillPoints >= _root.skillAll2Cost && _root.skillAll1 == true) {
++_root.canLevel;
}
}
if (_root.skillAll3 == true) {
} else {
if (_root.skillPoints >= _root.skillAll3Cost && _root.skillAll3 == true) {
++_root.canLevel;
}
}
if (_root.skillLib1 == true) {
} else {
if (_root.skillPoints >= _root.skillLib1Cost) {
++_root.canLevel;
}
}
if (_root.skillLib2 == true) {
} else {
if (_root.skillPoints >= _root.skillLib2Cost && _root.skillLib1 == true) {
++_root.canLevel;
}
}
if (_root.skillLib3 == true) {
} else {
if (_root.skillPoints >= _root.skillLib3Cost && _root.skillLib2 == true) {
++_root.canLevel;
}
}
gotoAndStop(1);
}
checkCanLevelSkills();
if (_root.canLevel == 0) {
gotoAndStop(2);
} else {
stop();
}
}
frame 2 {
stop();
}
}
button 5986 {
on (rollOver) {
saveText.word.gotoAndStop(1);
saveText.gotoAndPlay('come');
}
on (rollOut) {
if (saveText.word._currentframe == 1) {
saveText.gotoAndPlay('go');
}
}
on (releaseOutside) {
if (saveText.word._currentframe == 1) {
saveText.gotoAndPlay('go');
}
}
on (release) {
saveText.word.gotoAndStop(2);
saveText.gotoAndPlay('save');
_root.saveGame();
}
}
movieClip 5993 {
}
movieClip 5994 {
frame 1 {
gotoAndStop('no');
}
frame 15 {
stop();
}
frame 65 {
gotoAndStop('no');
}
}
movieClip 5996 loose {
frame 1 {
function getOpen() {
_root.timeWeek = Math.floor(_root.dayNumber / 7);
_root.timeDay = _root.dayNumber - _root.timeWeek * 7;
if (_root.cheatRegular != true) {
BG.hider.gotoAndStop(_root.timeDay + 1);
} else {
BG.hider.gotoAndStop('cheat');
}
if (_root.mapSlumsUnlocked != true) {
nodeSlums.gotoAndStop('invis');
}
if (_root.mapCsecUnlocked != true) {
if (_root.mapSlumsRep >= 30) {
_root.mapCsecUnlocked = true;
}
nodeCsec.gotoAndStop('invis');
}
if (_root.mapConsortUnlocked != true) {
if (_root.mapCsecRep >= 30) {
_root.mapConsortUnlocked = true;
}
nodeConsort.gotoAndStop('invis');
}
if (_root.mapFluxUnlocked != true) {
if (_root.mapConsortRep >= 30) {
_root.mapFluxUnlocked = true;
}
nodeFlux.gotoAndStop('invis');
}
if (_root.mapBloodUnlocked != true) {
if (_root.mapSlumsRep >= 70) {
_root.mapBloodUnlocked = true;
}
nodeBlood.gotoAndStop('invis');
}
if (_root.mapCerberusUnlocked != true) {
if (_root.mapConsortRep >= 70) {
_root.mapCerberusUnlocked = true;
}
nodeCerberus.gotoAndStop('invis');
}
if (_root.mapCouncilUnlocked != true) {
if (_root.mapCsecRep >= 70) {
_root.mapCouncilUnlocked = true;
}
nodeCouncil.gotoAndStop('invis');
}
if (_root.cheatRegular != true) {
if (_root.timeDay == 3 or _root.timeDay == 5) {
_root.mapBloodOrbit = true;
} else {
_root.mapBloodOrbit = false;
if (_root.mapSlumsRep >= 70) {
nodeBlood.gotoAndStop('fade');
} else {
nodeBlood.gotoAndStop('invis');
}
}
if (_root.timeDay == 1 or _root.timeDay == 4) {
_root.mapCerberusOrbit = true;
} else {
_root.mapCerberusOrbit = false;
if (_root.mapConsortRep >= 70) {
nodeCerberus.gotoAndStop('fade');
} else {
nodeCerberus.gotoAndStop('invis');
}
}
if (_root.timeDay == 2 or _root.timeDay == 6) {
_root.mapCouncilOrbit = true;
} else {
_root.mapCouncilOrbit = false;
if (_root.mapCsecRep >= 70) {
nodeCouncil.gotoAndStop('fade');
} else {
nodeCouncil.gotoAndStop('invis');
}
}
} else {
_root.mapBloodOrbit = true;
_root.mapCerberusOrbit = true;
_root.mapCouncilOrbit = true;
}
}
function resetPlate() {
if (_root.menuSelected == 'map') {
_root.menuSelected = 'mapHold';
} else {
_root.menuSelected = false;
}
mapPlate.board.iconReset();
if (_root.mapMaleHuman == false) {
mapPlate.rHuman.gotoAndStop('no');
} else {
mapPlate.rHuman.gotoAndStop('yes');
}
if (_root.mapMaleKrogan == false) {
mapPlate.rKrogan.gotoAndStop('no');
} else {
mapPlate.rKrogan.gotoAndStop('yes');
}
if (_root.mapMaleTurian == false) {
mapPlate.rTurian.gotoAndStop('no');
} else {
mapPlate.rTurian.gotoAndStop('yes');
}
if (_root.mapMaleVorcha == false) {
mapPlate.rVorcha.gotoAndStop('no');
} else {
mapPlate.rVorcha.gotoAndStop('yes');
}
if (_root.mapMaleVolus == false) {
mapPlate.rVolus.gotoAndStop('no');
} else {
mapPlate.rVolus.gotoAndStop('yes');
}
nodeSlums.gotoAndStop('open');
nodeCsec.gotoAndStop('open');
nodeConsort.gotoAndStop('open');
nodeFlux.gotoAndStop('open');
nodeBlood.gotoAndStop('open');
nodeCerberus.gotoAndStop('open');
nodeCouncil.gotoAndStop('open');
if (_root.mapSelected == false) {
} else {
if (_root.mapSelected == 'slums') {
nodeSlums.gotoAndStop('select');
} else {
if (_root.mapSelected == 'c-sec') {
nodeCsec.gotoAndStop('select');
} else {
if (_root.mapSelected == 'consort') {
nodeConsort.gotoAndStop('select');
} else {
if (_root.mapSelected == 'flux') {
nodeFlux.gotoAndStop('select');
} else {
if (_root.mapSelected == 'blood') {
nodeBlood.gotoAndStop('select');
} else {
if (_root.mapSelected == 'cerberus') {
nodeCerberus.gotoAndStop('select');
} else {
if (_root.mapSelected == 'council') {
nodeCouncil.gotoAndStop('select');
}
}
}
}
}
}
}
}
getOpen();
mapPlate.reputation.gotoAndStop(_root.mapLocalRep + 2);
mapPlate.reputation.orb.gotoAndStop(_root.mapLocalRep + 2);
mapPlate.population.gotoAndStop(_root.mapLocalPop + 1);
mapPlate.wealth.gotoAndStop(_root.mapLocalWealth + 1);
mapPlate.holesCount.text = _root.mapLocalHoles;
if (_root.mapLocalHoleSelected == 'none') {
mapPlate.uHoleNone.gotoAndStop('yes');
} else {
mapPlate.uHoleNone.gotoAndStop('no');
}
if (_root.mapLocalHoleTapeUnlocked == true) {
if (_root.mapLocalHoleSelected == 'tape') {
mapPlate.uHoleTape.gotoAndStop('yes');
} else {
mapPlate.uHoleTape.gotoAndStop('no');
}
} else {
mapPlate.uHoleTape.gotoAndStop('lock');
}
if (_root.mapLocalHoleGelUnlocked == true) {
if (_root.mapLocalHoleSelected == 'gel') {
mapPlate.uHoleGel.gotoAndStop('yes');
} else {
mapPlate.uHoleGel.gotoAndStop('no');
}
} else {
mapPlate.uHoleGel.gotoAndStop('lock');
}
}
function setHolesUpgrade() {
if (_root.mapSelected == 'slums') {
_root.mapSlumsHoles += 1;
_root.mapLocalHoles = _root.mapSlumsHoles;
} else {
if (_root.mapSelected == 'c-sec') {
_root.mapCsecHoles += 1;
_root.mapLocalHoles = _root.mapCsecHoles;
} else {
if (_root.mapSelected == 'consort') {
_root.mapConsortHoles += 1;
_root.mapLocalHoles = _root.mapConsortHoles;
} else {
if (_root.mapSelected == 'flux') {
_root.mapFluxHoles += 1;
_root.mapLocalHoles = _root.mapFluxHoles;
}
}
}
}
resetPlate();
}
function setHoleUpgradeNone() {
if (_root.mapSelected == 'slums') {
_root.mapSlumsHoleSelected = 'none';
_root.mapSlumsPop = 4;
_root.mapSlumsWealth = 1;
_root.mapLocalPop = _root.mapSlumsPop;
_root.mapLocalWealth = _root.mapSlumsWealth;
} else {
if (_root.mapSelected == 'c-sec') {
_root.mapCsecHoleSelected = 'none';
_root.mapCsecPop = 1;
_root.mapCsecWealth = 4;
_root.mapLocalPop = _root.mapCsecPop;
_root.mapLocalWealth = _root.mapCsecWealth;
} else {
if (_root.mapSelected == 'consort') {
_root.mapConsortHoleSelected = 'none';
_root.mapConsortPop = 2;
_root.mapConsortWealth = 3;
_root.mapLocalPop = _root.mapConsortPop;
_root.mapLocalWealth = _root.mapConsortWealth;
} else {
if (_root.mapSelected == 'flux') {
_root.mapFluxHoleSelected = 'none';
_root.mapFluxPop = 3;
_root.mapFluxWealth = 2;
_root.mapLocalPop = _root.mapFluxPop;
_root.mapLocalWealth = _root.mapFluxWealth;
}
}
}
}
_root.mapLocalHoleSelected = 'none';
resetPlate();
}
function buyHoleUpgradeTape() {
_root.buyCost = '- ' + _root.mapLocalHoleTapePrice;
_root._score -= _root.mapLocalHoleTapePrice;
_root._scoreDisplay = Math.floor(_root._score);
_parent._parent.board.cost.gotoAndPlay('go');
setHoleUpgradeTape();
mapPlate.uHoleTape.gotoAndStop('yesSelect');
mapPlate.tip.gotoAndStop('hold');
mapPlate.tip.block.gotoAndStop('words');
_root.mapTooltip = 'Taped holes installed!';
_root.mapLocalHoleTapeUnlocked = true;
}
function setHoleUpgradeTape() {
if (_root.mapSelected == 'slums') {
_root.mapSlumsHoleSelected = 'tape';
_root.mapSlumsPop = 6;
_root.mapSlumsWealth = 1;
_root.mapSlumsHoleTapeUnlocked = true;
_root.mapLocalPop = _root.mapSlumsPop;
_root.mapLocalWealth = _root.mapSlumsWealth;
} else {
if (_root.mapSelected == 'c-sec') {
_root.mapCsecHoleSelected = 'tape';
_root.mapCsecPop = 3;
_root.mapCsecWealth = 4;
_root.mapCsecHoleTapeUnlocked = true;
_root.mapLocalPop = _root.mapCsecPop;
_root.mapLocalWealth = _root.mapCsecWealth;
} else {
if (_root.mapSelected == 'consort') {
_root.mapConsortHoleSelected = 'tape';
_root.mapConsortPop = 4;
_root.mapConsortWealth = 3;
_root.mapConsortHoleTapeUnlocked = true;
_root.mapLocalPop = _root.mapConsortPop + _root.mapConsortPopUpgrade;
_root.mapLocalWealth = _root.mapConsortWealth + _root.mapConsortWealthUpgrade;
} else {
if (_root.mapSelected == 'flux') {
_root.mapFluxHoleSelected = 'tape';
_root.mapFluxPop = 5;
_root.mapFluxWealth = 2;
_root.mapFluxHoleTapeUnlocked = true;
_root.mapLocalPop = _root.mapFluxPop;
_root.mapLocalWealth = _root.mapFluxWealth;
}
}
}
}
_root.mapLocalHoleSelected = 'tape';
resetPlate();
}
function buyHoleUpgradeGel() {
_root.buyCost = '- ' + _root.mapLocalHoleGelPrice;
_root._score -= _root.mapLocalHoleGelPrice;
_root._scoreDisplay = Math.floor(_root._score);
_parent._parent.board.cost.gotoAndPlay('go');
setHoleUpgradeGel();
mapPlate.uHoleGel.gotoAndStop('yesSelect');
mapPlate.tip.gotoAndStop('hold');
mapPlate.tip.block.gotoAndStop('words');
_root.mapTooltip = 'Gelled holes installed!';
_root.mapLocalHoleGelUnlocked = true;
}
function setHoleUpgradeGel() {
if (_root.mapSelected == 'slums') {
_root.mapSlumsHoleSelected = 'gel';
_root.mapSlumsPop = 4;
_root.mapSlumsWealth = 3;
_root.mapSlumsHoleGelUnlocked = true;
_root.mapLocalPop = _root.mapSlumsPop;
_root.mapLocalWealth = _root.mapSlumsWealth;
} else {
if (_root.mapSelected == 'c-sec') {
_root.mapCsecHoleSelected = 'gel';
_root.mapCsecPop = 1;
_root.mapCsecWealth = 6;
_root.mapCsecHoleGelUnlocked = true;
_root.mapLocalPop = _root.mapCsecPop;
_root.mapLocalWealth = _root.mapCsecWealth;
} else {
if (_root.mapSelected == 'consort') {
_root.mapConsortHoleSelected = 'gel';
_root.mapConsortPop = 2;
_root.mapConsortWealth = 5;
_root.mapConsortHoleGelUnlocked = true;
_root.mapLocalPop = _root.mapConsortPop;
_root.mapLocalWealth = _root.mapConsortWealth;
} else {
if (_root.mapSelected == 'flux') {
_root.mapFluxHoleSelected = 'gel';
_root.mapFluxPop = 3;
_root.mapFluxWealth = 4;
_root.mapFluxHoleGelUnlocked = true;
_root.mapLocalPop = _root.mapFluxPop;
_root.mapLocalWealth = _root.mapFluxWealth;
}
}
}
}
_root.mapLocalHoleSelected = 'gel';
resetPlate();
}
function hideReason() {
if (_root.mapTooltipShowing == 'reason') {
mapPlate.tip.gotoAndPlay('go');
_root.mapTooltipShowing = false;
}
}
function showReason() {
if (_root.mapTooltipShowing != 'reason') {
mapPlate.tip.block.gotoAndStop('words');
if (_root.mapSelected == 'slums') {
_root.mapTooltip = '-Need Slums Work Pass-';
} else {
if (_root.mapSelected == 'c-sec') {
_root.mapTooltip = '-Need C-Sec Work Pass-';
} else {
if (_root.mapSelected == 'consort') {
_root.mapTooltip = '-Need Consort Work Pass-';
} else {
if (_root.mapSelected == 'flux') {
_root.mapTooltip = '-Need Flux Work Pass-';
} else {
if (_root.mapSelected == 'blood') {
if (_root.mapBloodOrbit != true) {
if (_root.mapBloodUnlocked != true) {
_root.mapTooltip = '- Ship Not in Orbit -';
} else {
_root.mapTooltip = '- No Response -';
}
} else {
if (_root.mapBloodUnlocked != true) {
_root.mapTooltip = '-\'\'Private Vessel. Go Away.\'\'-';
}
}
} else {
if (_root.mapSelected == 'cerberus') {
if (_root.mapCerberusOrbit != true) {
if (_root.mapCerberusUnlocked != true) {
_root.mapTooltip = '- Ship Not in Orbit -';
} else {
_root.mapTooltip = '-\'\'Location Confidential\'\'-';
}
} else {
if (_root.mapCerberusUnlocked != true) {
_root.mapTooltip = '-\'\'Access Not Granted.\'\'-';
}
}
} else {
if (_root.mapSelected == 'council') {
if (_root.mapCouncilOrbit != true) {
if (_root.mapCouncilUnlocked != true) {
_root.mapTooltip = '- Ship Not in Orbit -';
} else {
_root.mapTooltip = '-\'\'Not In Session Today\'\'-';
}
} else {
if (_root.mapCouncilUnlocked != true) {
_root.mapTooltip = '-\'\'No Solicitors, Please.\'\'-';
}
}
}
}
}
}
}
}
}
_root.mapTooltipShowing = 'reason';
}
}
function hideRep() {
if (_root.mapTooltipShowing == 'rep') {
mapPlate.tip.gotoAndPlay('go');
_root.mapTooltipShowing = false;
}
}
function showRep() {
if (_root.mapTooltipShowing != 'rep') {
mapPlate.tip.gotoAndPlay('come');
if (_root.mapLocalRep < 30) {
mapPlate.tip.block.gotoAndStop('repNone');
_root.mapTooltipRep = 'unknown';
} else {
if (_root.mapLocalRep < 70) {
mapPlate.tip.block.gotoAndStop('rep1');
_root.mapTooltipRep = 'familiar';
} else {
if (_root.mapLocalRep < 99) {
mapPlate.tip.block.gotoAndStop('rep2');
_root.mapTooltipRep = 'popular';
} else {
if (_root.mapLocalRep >= 100) {
mapPlate.tip.block.gotoAndStop('rep3');
_root.mapTooltipRep = 'famous';
}
}
}
}
if (_root.mapSelected == 'slums') {
_root.mapTooltip = 'Renown:';
if (_root.mapSlumsUnlocked != false) {
_root.mapTooltip2 = '- C-Sec Work-pass';
_root.mapTooltip3 = '- Blood Pack Invitation';
_root.mapTooltip4 = '- ';
} else {
_root.mapTooltip2 = '- ?';
_root.mapTooltip3 = '- ?';
_root.mapTooltip4 = '- ?';
}
} else {
if (_root.mapSelected == 'c-sec') {
_root.mapTooltip = 'Renown:';
if (_root.mapCsecUnlocked != false) {
_root.mapTooltip2 = '- Consort Work-pass';
_root.mapTooltip3 = '- Emissary Invitation';
_root.mapTooltip4 = '- ';
} else {
_root.mapTooltip2 = '- ?';
_root.mapTooltip3 = '- ?';
_root.mapTooltip4 = '- ?';
}
} else {
if (_root.mapSelected == 'consort') {
_root.mapTooltip = 'Renown:';
if (_root.mapConsortUnlocked != false) {
_root.mapTooltip2 = '- Flux Work-pass';
_root.mapTooltip3 = '- Cerberus Invitation';
_root.mapTooltip4 = '- ';
} else {
_root.mapTooltip2 = '- ?';
_root.mapTooltip3 = '- ?';
_root.mapTooltip4 = '- ?';
}
} else {
if (_root.mapSelected == 'flux') {
_root.mapTooltip = 'Renown:';
if (_root.mapFluxUnlocked != false) {
_root.mapTooltip2 = '- ';
_root.mapTooltip3 = '- ';
_root.mapTooltip4 = '- ';
} else {
_root.mapTooltip2 = '- ?';
_root.mapTooltip3 = '- ?';
_root.mapTooltip4 = '- ?';
}
} else {
if (_root.mapSelected == 'blood') {
_root.mapTooltip = 'Renown:';
if (_root.mapBloodUnlocked != false) {
_root.mapTooltip2 = '- 5 Holes';
_root.mapTooltip3 = '- Walk-ins';
_root.mapTooltip4 = '- ';
} else {
_root.mapTooltip2 = '- ?';
_root.mapTooltip3 = '- ?';
_root.mapTooltip4 = '- ?';
}
} else {
if (_root.mapSelected == 'cerberus') {
_root.mapTooltip = 'Renown:';
if (_root.mapCerberusUnlocked != false) {
_root.mapTooltip2 = '- 4 Holes';
_root.mapTooltip3 = '- Walk-ins';
_root.mapTooltip4 = '- ';
} else {
_root.mapTooltip2 = '- ?';
_root.mapTooltip3 = '- ?';
_root.mapTooltip4 = '- ?';
}
} else {
if (_root.mapSelected == 'council') {
_root.mapTooltip = 'Renown:';
if (_root.mapCouncilUnlocked != false) {
_root.mapTooltip2 = '- 3 Holes';
_root.mapTooltip3 = '- Walk-ins';
_root.mapTooltip4 = '- ';
} else {
_root.mapTooltip2 = '- ?';
_root.mapTooltip3 = '- ?';
_root.mapTooltip4 = '- ?';
}
}
}
}
}
}
}
}
_root.mapTooltipShowing = 'rep';
}
}
function setSelect() {
if (_root.mapSelected == false) {
mapPlate.mapName.text = '';
} else {
_root.mapTooltipShowing = false;
switch (_root.mapSelected) {
case 'slums':
if (_root.mapSlumsUnlocked != false) {
mapPlate.gotoAndStop('full');
mapPlate.mapName.text = 'Citadel Slums';
showRep();
noWork._visible = false;
_root.canWork = true;
} else {
mapPlate.gotoAndStop('mini');
mapPlate.mapName.text = 'Citadel Slums';
showReason();
noWork._visible = true;
_root.canWork = false;
}
_root.mapLocalRep = Math.floor(_root.mapSlumsRep);
_root.mapMaleHuman = false;
_root.mapMaleKrogan = false;
_root.mapMaleTurian = false;
_root.mapMaleVorcha = true;
_root.mapMaleVolus = false;
_root.mapLocalPop = _root.mapSlumsPop;
_root.mapLocalWealth = _root.mapSlumsWealth;
_root.mapLocalHoles = _root.mapSlumsHoles;
_root.mapLocalHoleSelected = _root.mapSlumsHoleSelected;
_root.mapLocalHoleTapeUnlocked = _root.mapSlumsHoleTapeUnlocked;
_root.mapLocalHoleGelUnlocked = _root.mapSlumsHoleGelUnlocked;
_root.mapLocalHoleTapePrice = _root.mapSlumsHoleTapePrice;
_root.mapLocalHoleGelPrice = _root.mapSlumsHoleGelPrice;
resetPlate();
if (_root.startup == false) {
if (_root.musicForced == false) {
if (_root.BGMplaying != 4) {
_root.BGMplaying = 4;
_root.Music();
}
}
}
break;
case 'c-sec':
if (_root.mapCsecUnlocked != false) {
mapPlate.gotoAndStop('full');
mapPlate.mapName.text = 'C-Sec Office';
showRep();
noWork._visible = false;
_root.canWork = true;
} else {
mapPlate.gotoAndStop('mini');
mapPlate.mapName.text = 'C-Sec Office';
showReason();
noWork._visible = true;
_root.canWork = false;
}
_root.mapLocalRep = Math.floor(_root.mapCsecRep);
_root.mapMaleHuman = true;
_root.mapMaleKrogan = false;
_root.mapMaleTurian = true;
_root.mapMaleVorcha = false;
_root.mapMaleVolus = false;
_root.mapLocalPop = _root.mapCsecPop;
_root.mapLocalWealth = _root.mapCsecWealth;
_root.mapLocalHoles = _root.mapCsecHoles;
_root.mapLocalHoleSelected = _root.mapCsecHoleSelected;
_root.mapLocalHoleTapeUnlocked = _root.mapCsecHoleTapeUnlocked;
_root.mapLocalHoleGelUnlocked = _root.mapCsecHoleGelUnlocked;
_root.mapLocalHoleTapePrice = _root.mapCsecHoleTapePrice;
_root.mapLocalHoleGelPrice = _root.mapCsecHoleGelPrice;
resetPlate();
if (_root.startup == false) {
if (_root.musicForced == false) {
if (_root.BGMplaying != 2) {
_root.BGMplaying = 2;
_root.Music();
}
}
}
break;
case 'consort':
if (_root.mapConsortUnlocked != false) {
mapPlate.gotoAndStop('full');
mapPlate.mapName.text = 'Consort Chambers';
showRep();
noWork._visible = false;
_root.canWork = true;
} else {
mapPlate.gotoAndStop('mini');
mapPlate.mapName.text = 'Consort Chambers';
showReason();
noWork._visible = true;
_root.canWork = false;
}
_root.mapLocalRep = Math.floor(_root.mapConsortRep);
_root.mapMaleHuman = false;
_root.mapMaleKrogan = true;
_root.mapMaleTurian = false;
_root.mapMaleVorcha = false;
_root.mapMaleVolus = true;
_root.mapLocalPop = _root.mapConsortPop;
_root.mapLocalWealth = _root.mapConsortWealth;
_root.mapLocalHoles = _root.mapConsortHoles;
_root.mapLocalHoleSelected = _root.mapConsortHoleSelected;
_root.mapLocalHoleTapeUnlocked = _root.mapConsortHoleTapeUnlocked;
_root.mapLocalHoleGelUnlocked = _root.mapConsortHoleGelUnlocked;
_root.mapLocalHoleTapePrice = _root.mapConsortHoleTapePrice;
_root.mapLocalHoleGelPrice = _root.mapConsortHoleGelPrice;
resetPlate();
if (_root.startup == false) {
if (_root.musicForced == false) {
if (_root.BGMplaying != 1) {
_root.BGMplaying = 1;
_root.Music();
}
}
}
break;
case 'flux':
if (_root.mapFluxUnlocked != false) {
mapPlate.gotoAndStop('full');
mapPlate.mapName.text = 'Flux Nightclub';
showRep();
noWork._visible = false;
_root.canWork = true;
} else {
mapPlate.gotoAndStop('mini');
mapPlate.mapName.text = 'Flux Nightclub';
showReason();
noWork._visible = true;
_root.canWork = false;
}
_root.mapLocalRep = Math.floor(_root.mapFluxRep);
_root.mapMaleHuman = true;
_root.mapMaleKrogan = true;
_root.mapMaleTurian = true;
_root.mapMaleVorcha = true;
_root.mapMaleVolus = true;
_root.mapLocalPop = _root.mapFluxPop;
_root.mapLocalWealth = _root.mapFluxWealth;
_root.mapLocalHoles = _root.mapFluxHoles;
_root.mapLocalHoleSelected = _root.mapFluxHoleSelected;
_root.mapLocalHoleTapeUnlocked = _root.mapFluxHoleTapeUnlocked;
_root.mapLocalHoleGelUnlocked = _root.mapFluxHoleGelUnlocked;
_root.mapLocalHoleTapePrice = _root.mapFluxHoleTapePrice;
_root.mapLocalHoleGelPrice = _root.mapFluxHoleGelPrice;
resetPlate();
if (_root.startup == false) {
if (_root.musicForced == false) {
if (_root.BGMplaying != 3) {
_root.BGMplaying = 3;
_root.Music();
}
}
}
break;
case 'blood':
if (_root.mapBloodUnlocked != false) {
if (_root.mapBloodOrbit != true) {
mapPlate.gotoAndStop('mini');
mapPlate.mapName.text = 'Blood Pack Cruiser';
_root.mapLocalRep = Math.floor(_root.mapBloodRep);
showReason();
noWork._visible = true;
_root.canWork = false;
} else {
mapPlate.gotoAndStop('mini');
mapPlate.mapName.text = 'Blood Pack Cruiser';
_root.mapLocalRep = Math.floor(_root.mapBloodRep);
showRep();
noWork._visible = false;
_root.canWork = true;
}
} else {
mapPlate.gotoAndStop('mini');
mapPlate.mapName.text = '???';
_root.mapLocalRep = 0;
showReason();
noWork._visible = true;
_root.canWork = false;
}
_root.mapMaleHuman = false;
_root.mapMaleKrogan = true;
_root.mapMaleTurian = false;
_root.mapMaleVorcha = true;
_root.mapMaleVolus = false;
_root.mapLocalPop = _root.mapBloodPop;
_root.mapLocalWealth = _root.mapBloodWealth;
_root.mapLocalHoles = _root.mapBloodHoles;
_root.mapLocalHoleSelected = _root.mapBloodHoleSelected;
resetPlate();
if (_root.startup == false) {
if (_root.musicForced == false) {
if (_root.BGMplaying != 6) {
_root.BGMplaying = 6;
_root.Music();
}
}
}
break;
case 'cerberus':
if (_root.mapCerberusUnlocked != false) {
if (_root.mapCerberusOrbit != true) {
mapPlate.gotoAndStop('mini');
mapPlate.mapName.text = 'Cerberus Gunship';
_root.mapLocalRep = Math.floor(_root.mapCerberusRep);
showReason();
noWork._visible = true;
_root.canWork = false;
} else {
mapPlate.gotoAndStop('mini');
mapPlate.mapName.text = 'Cerberus Gunship';
_root.mapLocalRep = Math.floor(_root.mapCerberusRep);
showRep();
noWork._visible = false;
_root.canWork = true;
}
} else {
mapPlate.gotoAndStop('mini');
mapPlate.mapName.text = '???';
_root.mapLocalRep = 0;
showReason();
noWork._visible = true;
_root.canWork = false;
}
_root.mapMaleHuman = true;
_root.mapMaleKrogan = false;
_root.mapMaleTurian = false;
_root.mapMaleVorcha = false;
_root.mapMaleVolus = false;
_root.mapLocalPop = _root.mapCerberusPop;
_root.mapLocalWealth = _root.mapCerberusWealth;
_root.mapLocalHoles = _root.mapCerberusHoles;
_root.mapLocalHoleSelected = _root.mapCerberusHoleSelected;
resetPlate();
if (_root.startup == false) {
if (_root.musicForced == false) {
if (_root.BGMplaying != 7) {
_root.BGMplaying = 7;
_root.Music();
}
}
}
break;
case 'council':
if (_root.mapCouncilUnlocked != false) {
if (_root.mapCouncilOrbit != true) {
mapPlate.gotoAndStop('mini');
mapPlate.mapName.text = 'Emissary Vessel';
_root.mapLocalRep = Math.floor(_root.mapCouncilRep);
showReason();
noWork._visible = true;
_root.canWork = false;
} else {
mapPlate.gotoAndStop('mini');
mapPlate.mapName.text = 'Emissary Vessel';
_root.mapLocalRep = Math.floor(_root.mapCouncilRep);
showRep();
noWork._visible = false;
_root.canWork = true;
}
} else {
mapPlate.gotoAndStop('mini');
mapPlate.mapName.text = '???';
_root.mapLocalRep = 0;
showReason();
noWork._visible = true;
_root.canWork = false;
}
_root.mapMaleHuman = false;
_root.mapMaleKrogan = false;
_root.mapMaleTurian = true;
_root.mapMaleVorcha = false;
_root.mapMaleVolus = true;
_root.mapLocalPop = _root.mapCouncilPop;
_root.mapLocalWealth = _root.mapCouncilWealth;
_root.mapLocalHoles = _root.mapCouncilHoles;
_root.mapLocalHoleSelected = _root.mapCouncilHoleSelected;
resetPlate();
if (_root.startup == false) {
if (_root.musicForced == false) {
if (_root.BGMplaying != 5) {
_root.BGMplaying = 5;
_root.Music();
}
}
}
}
}
}
stop();
_root.mapSelected = _root.mapSelectedLast;
setSelect();
_root.BGMmax = 12;
noWork.gotoAndStop(1);
_root.menuSelected = 'map';
btn.onPress = function () {};
btn.useHandCursor = false;
next_btn.onPress = function () {
_root.gotoScreen('4');
};
nodeSlums.onPress = function () {
_root.mapSelected = 'slums';
setSelect();
};
nodeSlums.onRollOut = function () {
if (_root.mapSlumsUnlocked != true) {
hideReason();
} else {
hideRep();
}
};
nodeSlums.onReleaseOutside = function () {
if (_root.mapSlumsUnlocked != true) {
hideReason();
} else {
hideRep();
}
};
nodeCsec.onPress = function () {
_root.mapSelected = 'c-sec';
setSelect();
};
nodeCsec.onRollOut = function () {
if (_root.mapCsecUnlocked != true) {
hideReason();
} else {
hideRep();
}
};
nodeCsec.onReleaseOutside = function () {
if (_root.mapCsecUnlocked != true) {
hideReason();
} else {
hideRep();
}
};
nodeConsort.onPress = function () {
_root.mapSelected = 'consort';
setSelect();
};
nodeConsort.onRollOut = function () {
if (_root.mapConsortUnlocked != true) {
hideReason();
} else {
hideRep();
}
};
nodeConsort.onReleaseOutside = function () {
if (_root.mapConsortUnlocked != true) {
hideReason();
} else {
hideRep();
}
};
nodeFlux.onPress = function () {
_root.mapSelected = 'flux';
setSelect();
};
nodeFlux.onRollOut = function () {
if (_root.mapFluxUnlocked != true) {
hideReason();
} else {
hideRep();
}
};
nodeFlux.onReleaseOutside = function () {
if (_root.mapFluxUnlocked != true) {
hideReason();
} else {
hideRep();
}
};
nodeBlood.onPress = function () {
_root.mapSelected = 'blood';
setSelect();
};
nodeBlood.onRollOut = function () {
if (_root.mapBloodUnlocked != true) {
hideReason();
} else {
if (_root.mapBloodOrbit != true) {
hideReason();
} else {
hideRep();
}
}
};
nodeBlood.onReleaseOutside = function () {
if (_root.mapBloodUnlocked != true) {
hideReason();
} else {
if (_root.mapBloodOrbit != true) {
hideReason();
} else {
hideRep();
}
}
};
nodeCerberus.onPress = function () {
_root.mapSelected = 'cerberus';
setSelect();
};
nodeCerberus.onRollOut = function () {
if (_root.mapCerberusUnlocked != true) {
hideReason();
} else {
if (_root.mapCerberusOrbit != true) {
hideReason();
} else {
hideRep();
}
}
};
nodeCerberus.onReleaseOutside = function () {
if (_root.mapCerberusUnlocked != true) {
hideReason();
} else {
if (_root.mapCerberusOrbit != true) {
hideReason();
} else {
hideRep();
}
}
};
nodeCouncil.onPress = function () {
_root.mapSelected = 'council';
setSelect();
};
nodeCouncil.onRollOut = function () {
if (_root.mapCouncilUnlocked != true) {
hideReason();
} else {
if (_root.mapCouncilOrbit != true) {
hideReason();
} else {
hideRep();
}
}
};
nodeCouncil.onReleaseOutside = function () {
if (_root.mapCouncilUnlocked != true) {
hideReason();
} else {
if (_root.mapCouncilOrbit != true) {
hideReason();
} else {
hideRep();
}
}
};
noWork.onRollOver = function () {
showReason();
};
noWork.onRollOut = function () {
hideReason();
};
noWork.onReleaseOutside = function () {
hideReason();
};
}
}
movieClip 5997 {
frame 1 {
if (_root.startup == false) {
if (_root.newDay != true) {
if (_root.level_pause == true) {
gotoAndStop('paused');
showing = 'pause';
busy = false;
} else {
stop();
showing = 'game';
busy = false;
}
} else {
if (_root.newDay == true) {
gotoAndStop('map');
showing = 'map';
_root.level_pause = true;
busy = false;
}
}
} else {
if (_root.startup == true) {
gotoAndStop('level');
showing = 'level';
_root.level_pause = true;
busy = false;
} else {
if (_root.startup == 'map') {
gotoAndStop('map');
showing = 'map';
_root.level_pause = true;
busy = false;
}
}
}
btnPause.onPress = function () {
_root.level_pause = true;
gotoAndPlay('come');
};
}
frame 2 {
stop();
showing = 'pause';
busy = false;
btnPause.onPress = function () {
if (busy == false) {
if (showing == 'game') {
gotoAndPlay('come');
} else {
gotoAndPlay('go');
}
}
};
btnExit.onPress = function () {
if (busy == false) {
gotoAndPlay('go');
_root.gotoScreen('1');
_root.level_pause = true;
}
};
btnShop.onPress = function () {
if (busy == false) {
gotoAndPlay('levelIn');
}
};
btnMap.onPress = function () {
if (busy == false) {
gotoAndPlay('mapIn');
}
};
}
instance volSetting of movieClip 5407 {
onClipEvent (press) {
if (_root.BGMmute != true) {
this.gotoAndStop('yes');
_root.BGMmute = true;
} else {
this.gotoAndStop('no');
_root.BGMmute = false;
}
}
}
frame 5 {
busy = true;
}
frame 20 {
gotoAndStop('paused');
}
frame 21 {
busy = true;
}
frame 28 {
stop();
showing = 'level';
busy = false;
}
frame 29 {
busy = true;
}
instance volSetting of movieClip 5407 {
onClipEvent (press) {
if (_root.BGMmute != true) {
this.gotoAndStop('yes');
_root.BGMmute = true;
} else {
this.gotoAndStop('no');
_root.BGMmute = false;
}
}
}
frame 36 {
gotoAndStop('paused');
}
frame 37 {
busy = true;
}
frame 44 {
stop();
showing = 'map';
busy = false;
}
frame 45 {
busy = true;
}
instance volSetting of movieClip 5407 {
onClipEvent (press) {
if (_root.BGMmute != true) {
this.gotoAndStop('yes');
_root.BGMmute = true;
} else {
this.gotoAndStop('no');
_root.BGMmute = false;
}
}
}
frame 52 {
gotoAndStop('paused');
}
frame 53 {
busy = true;
}
frame 57 {
_root.level_pause = false;
}
frame 62 {
gotoAndStop('playing');
}
frame 64 {
busy = true;
}
frame 76 {
gotoAndStop('map');
}
frame 77 {
busy = true;
}
frame 89 {
gotoAndStop('level');
}
}
movieClip 5998 2f6147db {
frame 1 {
function rainbow() {
if (_root.level_pause == false) {
if (_root.rainbow != false) {
if (_root.rainbow == 'head') {
_root.rainbowHeadList = [1, 2, 3, 4, 5, 6, 7];
_root.character = _root.rainbowHeadList[Math.floor(Math.random() * _root.rainbowHeadList.length)];
} else {
if (_root.rainbow == 'body') {
_root.rainbowBodyList = [1, 2, 3, 4, 5, 6, 7, 23, 24, 25, 26, 27, 28, 29];
_root.costume = _root.rainbowBodyList[Math.floor(Math.random() * _root.rainbowBodyList.length)];
} else {
if (_root.rainbow == 'squad') {
_root.rainbowSquadList = [1, 2, 3, 4, 5, 6, 7];
_root.character = _root.rainbowSquadList[Math.floor(Math.random() * _root.rainbowSquadList.length)];
_root.costume = _root.character;
} else {
_root.rainbowHeadList = [1, 2, 3, 4, 5, 6, 7];
_root.character = _root.rainbowHeadList[Math.floor(Math.random() * _root.rainbowHeadList.length)];
_root.rainbowBodyList = [1, 2, 3, 4, 5, 6, 7, 23, 24, 25, 26, 27, 28, 29];
_root.costume = _root.rainbowBodyList[Math.floor(Math.random() * _root.rainbowBodyList.length)];
}
}
}
if (_root.costume == 1) {
_root.hideNipples = true;
_root.hidePussy = false;
} else {
if (_root.costume == 2) {
_root.hideNipples = true;
_root.hidePussy = true;
} else {
if (_root.costume == 3) {
_root.hideNipples = false;
_root.hidePussy = true;
} else {
if (_root.costume == 5) {
_root.hideNipples = true;
_root.hidePussy = true;
} else {
if (_root.costume == 6) {
_root.hideNipples = true;
_root.hidePussy = true;
} else {
_root.hideNipples = false;
_root.hidePussy = false;
}
}
}
}
}
}
}
}
function spark(x, y) {
i = 1;
while (i <= 15) {
clip = attachMovie('spark1', 'spark1_' + i, 1000 + i);
angle = random(360);
clip._xscale = random(50) + 70;
clip._yscale = random(50) + 70;
if (random(2) == 0) {
clip._xscale = -clip._xscale;
}
clip._x = x;
clip._y = y;
clip._rotation = angle;
++i;
}
}
function free_hole(_index) {
timer = 25 + random(holes_timer_random);
hole_timer[_index] = timer;
}
function add_points(_index, satisfaction) {
switch (_index) {
case 0:
x = 65;
y = 55;
break;
case 1:
x = 462;
y = 55;
break;
case 2:
x = 518;
y = 205;
break;
case 3:
x = 5;
y = 205;
break;
case 4:
x = 262;
y = 405;
}
if (_root.skillAll3 == true && _root.skillAll2 == true && _root.skillAll1 == true) {
skillmod = 1.5;
} else {
if (_root.skillAll3 == false && _root.skillAll2 == true && _root.skillAll1 == true) {
skillmod = 1.3;
} else {
if (_root.skillAll3 == false && _root.skillAll2 == false && _root.skillAll1 == true) {
skillmod = 1.15;
} else {
skillmod = 1;
}
}
}
if (_root.mapLocalWealth == 1) {
wealthmod = 0.35;
} else {
if (_root.mapLocalWealth == 2) {
wealthmod = 0.75;
} else {
if (_root.mapLocalWealth == 3) {
wealthmod = 1;
} else {
if (_root.mapLocalWealth == 4) {
wealthmod = 1.35;
} else {
if (_root.mapLocalWealth == 5) {
wealthmod = 1.75;
} else {
if (_root.mapLocalWealth == 6) {
wealthmod = 2.15;
} else {
if (_root.mapLocalWealth == 7) {
wealthmod = 2.5;
}
}
}
}
}
}
}
if (!_root.level_pause == true) {
_root.satisfactionLast = satisfaction;
clip = attachMovie('points', 'points' + _index, 900 + _index);
clip._x = x;
clip._y = y;
}
if (satisfaction <= 0) {
if (_root.level_pause == false) {
add_pnts = -10 * wealthmod * (1 - (1 - skillmod));
_root.StatsMissed += 1;
_root.StatsSessionMissed += 1;
if (_root.mapLocalRep < 100 && _root.mapLocalRep > 0) {
_root.mapLocalRep -= 1 * wealthmod;
}
}
} else {
if (satisfaction > 0 && satisfaction <= 35) {
add_pnts = 25 * wealthmod * skillmod;
_root.xp += 250;
_root.StatsServed += 1;
_root.StatsSessionServed += 1;
if (_root.mapLocalRep < 30) {
_root.mapLocalRep += 1 * wealthmod;
}
} else {
if (satisfaction > 35 && satisfaction <= 65) {
add_pnts = 50 * wealthmod * skillmod;
_root.xp += 500;
_root.StatsServed += 1;
_root.StatsSessionServed += 1;
if (_root.mapLocalRep < 70) {
_root.mapLocalRep += 1 * wealthmod;
}
} else {
if (satisfaction > 65 && satisfaction <= 99) {
add_pnts = 100 * wealthmod * skillmod;
_root.xp += 1000;
_root.StatsServed += 1;
_root.StatsSessionServed += 1;
_root.StatsSessionExcellent += 1;
if (_root.mapLocalRep < 100) {
_root.mapLocalRep += 2 * wealthmod;
}
} else {
if (satisfaction > 100) {
add_pnts = 250 * wealthmod * skillmod;
_root.xp += 2500;
_root.StatsServed += 1;
_root.StatsExcellent += 1;
_root.StatsSessionServed += 1;
_root.StatsSessionExcellent += 1;
if (_root.mapLocalRep < 100) {
_root.mapLocalRep += 3 * wealthmod;
}
}
}
}
}
}
_root._score += add_pnts;
_root.StatsCashEarned += add_pnts;
_root.StatsSessionCashEarned += add_pnts;
if (_root._score < 0 or !_root._score or _root._score == undefined) {
_root.StatsCashEarned += _root._score;
_root.StatsSessionCashEarned += _root._score;
_root._score = 0;
}
_root._scoreDisplay = Math.floor(_root._score);
if (_root.mapSelected == 'slums') {
_root.mapSlumsRep = _root.mapLocalRep;
} else {
if (_root.mapSelected == 'c-sec') {
_root.mapCsecRep = _root.mapLocalRep;
} else {
if (_root.mapSelected == 'consort') {
_root.mapConsortRep = _root.mapLocalRep;
} else {
if (_root.mapSelected == 'flux') {
_root.mapFluxRep = _root.mapLocalRep;
} else {
if (_root.mapSelected == 'blood') {
_root.mapBloodRep = _root.mapLocalRep;
} else {
if (_root.mapSelected == 'cerberus') {
_root.mapCerberusRep = _root.mapLocalRep;
} else {
if (_root.mapSelected == 'council') {
_root.mapCouncilRep = _root.mapLocalRep;
}
}
}
}
}
}
}
}
function setStage() {
if (_root.mapLocalHoleSelected == 'none') {
BG.hole0.gotoAndStop('open');
BG.hole1.gotoAndStop('open');
BG.hole2.gotoAndStop('open');
BG.hole3.gotoAndStop('open');
BG.hole4.gotoAndStop('open');
BG.hole5.gotoAndStop('open');
} else {
if (_root.mapLocalHoleSelected == 'tape') {
BG.hole0.gotoAndStop('tape');
BG.hole1.gotoAndStop('tape');
BG.hole2.gotoAndStop('tape');
BG.hole3.gotoAndStop('tape');
BG.hole4.gotoAndStop('tape');
BG.hole5.gotoAndStop('tape');
} else {
if (_root.mapLocalHoleSelected == 'gel') {
BG.hole0.gotoAndStop('gel');
BG.hole1.gotoAndStop('gel');
BG.hole2.gotoAndStop('gel');
BG.hole3.gotoAndStop('gel');
BG.hole4.gotoAndStop('gel');
BG.hole5.gotoAndStop('gel');
}
}
}
if (_root.hole0hidden == true) {
BG.hole0.gotoAndStop('closed');
}
if (_root.hole1hidden == true) {
BG.hole1.gotoAndStop('closed');
}
if (_root.hole2hidden == true) {
BG.hole2.gotoAndStop('closed');
}
if (_root.hole3hidden == true) {
BG.hole3.gotoAndStop('closed');
}
if (_root.hole4hidden == true) {
BG.hole4.gotoAndStop('closed');
}
if (_root.hole5hidden == true) {
BG.hole5.gotoAndStop('closed');
}
}
if (_root.level == undefined) {
_root.level = 1;
}
bonus_timer = 0;
dicks_count = holes[0] + holes[1] + holes[2] + holes[3] + holes[4];
_root.session_start_score = _root._score;
_root.session_start_rep = _root.mapLocalRep;
_root.StatsSessionServed = 0;
_root.StatsSessionExcellent = 0;
_root.StatsSessionMissed = 0;
_root.StatsSessionCashEarned = 0;
_root.StatsSessionPlayTime = 0;
lvl = 'LEVEL ' + _root.level;
remove_all_anim = function () {
remove_sex_anim();
if (a0) {
a0._remove();
}
return 0;
};
remove_sex_anim = function () {
j = 0;
while (j < 5 - _root.jutsu) {
i = 0;
while (i < 5 - _root.jutsu) {
if (eval('asb' + j + '' + i)) {
(eval('asb' + j + '' + i))._remove();
}
++i;
}
++j;
}
j = 0;
while (j < 5 - _root.jutsu) {
i = 0;
while (i < 5 - _root.jutsu) {
if (eval('ast' + j + '' + i)) {
(eval('ast' + j + '' + i))._remove();
}
++i;
}
++j;
}
j = 0;
while (j < 5 - _root.jutsu) {
i = 0;
while (i < 5 - _root.jutsu) {
if (eval('afb' + j + '' + i)) {
(eval('afb' + j + '' + i))._remove();
}
++i;
}
++j;
}
j = 0;
while (j < 5 - _root.jutsu) {
i = 0;
while (i < 5 - _root.jutsu) {
if (eval('aft' + j + '' + i)) {
(eval('aft' + j + '' + i))._remove();
}
++i;
}
++j;
}
j = 0;
while (j < 5 - _root.jutsu) {
i = 0;
while (i < 5 - _root.jutsu) {
if (eval('aat' + j + '' + i)) {
(eval('aat' + j + '' + i))._remove();
}
++i;
}
++j;
}
j = 0;
while (j < 5 - _root.jutsu) {
i = 0;
while (i < 5 - _root.jutsu) {
if (eval('aab' + j + '' + i)) {
(eval('aab' + j + '' + i))._remove();
}
++i;
}
++j;
}
j = 0;
while (j < 5 - _root.jutsu) {
i = 0;
while (i < 5 - _root.jutsu) {
if (eval('abt' + j + '' + i)) {
(eval('abt' + j + '' + i))._remove();
}
++i;
}
++j;
}
j = 0;
while (j < 5 - _root.jutsu) {
i = 0;
while (i < 5 - _root.jutsu) {
if (eval('abb' + j + '' + i)) {
(eval('abb' + j + '' + i))._remove();
}
++i;
}
++j;
}
if (ab0) {
if (_root.jutsu != 5) {
ab0._remove();
}
}
if (ab1) {
if (_root.jutsu != 5) {
ab1._remove();
}
}
if (as0) {
if (_root.jutsu != 5) {
as0._remove();
}
}
if (as1) {
if (_root.jutsu != 5) {
as1._remove();
}
}
if (af0) {
if (_root.jutsu != 5) {
af0._remove();
}
}
if (af1) {
if (_root.jutsu != 5) {
af1._remove();
}
}
if (aa0) {
if (_root.jutsu != 5) {
aa0._remove();
}
}
if (aa1) {
if (_root.jutsu != 5) {
aa1._remove();
}
}
if (ak0) {
if (_root.jutsu != 5) {
ak0._remove();
}
}
if (ah0) {
if (_root.jutsu != 5) {
ah0._remove();
}
}
if (ai0) {
if (_root.jutsu != 5) {
ai0._remove();
}
}
if (av0) {
if (_root.jutsu != 5) {
av0._remove();
}
}
return 0;
};
stop_all_anim = function () {
j = 0;
while (j < 5) {
i = 0;
while (i < 5) {
if (eval('asb' + j + '' + i)) {
(eval('asb' + j + '' + i)).stop();
}
++i;
}
++j;
}
j = 0;
while (j < 5) {
i = 0;
while (i < 5) {
if (eval('ast' + j + '' + i)) {
(eval('ast' + j + '' + i)).stop();
}
++i;
}
++j;
}
j = 0;
while (j < 5) {
i = 0;
while (i < 5) {
if (eval('afb' + j + '' + i)) {
(eval('afb' + j + '' + i)).stop();
}
++i;
}
++j;
}
j = 0;
while (j < 5) {
i = 0;
while (i < 5) {
if (eval('aft' + j + '' + i)) {
(eval('aft' + j + '' + i)).stop();
}
++i;
}
++j;
}
j = 0;
while (j < 5) {
i = 0;
while (i < 5) {
if (eval('aat' + j + '' + i)) {
(eval('aat' + j + '' + i)).stop();
}
++i;
}
++j;
}
j = 0;
while (j < 5) {
i = 0;
while (i < 5) {
if (eval('aab' + j + '' + i)) {
(eval('aab' + j + '' + i)).stop();
}
++i;
}
++j;
}
j = 0;
while (j < 5) {
i = 0;
while (i < 5) {
if (eval('abt' + j + '' + i)) {
(eval('abt' + j + '' + i)).stop();
}
++i;
}
++j;
}
j = 0;
while (j < 5) {
i = 0;
while (i < 5) {
if (eval('abb' + j + '' + i)) {
(eval('abb' + j + '' + i)).stop();
}
++i;
}
++j;
}
if (af0) {
af0.stop();
}
if (ab0) {
ab0.stop();
}
if (as0) {
as0.stop();
}
if (aa0) {
aa0.stop();
}
if (a0) {
a0.stop();
}
return 0;
};
start_all_anim = function () {
j = 0;
while (j < 5) {
i = 0;
while (i < 5) {
if (eval('asb' + j + '' + i)) {
(eval('asb' + j + '' + i)).play();
}
++i;
}
++j;
}
j = 0;
while (j < 5) {
i = 0;
while (i < 5) {
if (eval('ast' + j + '' + i)) {
(eval('ast' + j + '' + i)).play();
}
++i;
}
++j;
}
j = 0;
while (j < 5) {
i = 0;
while (i < 5) {
if (eval('afb' + j + '' + i)) {
(eval('afb' + j + '' + i)).play();
}
++i;
}
++j;
}
j = 0;
while (j < 5) {
i = 0;
while (i < 5) {
if (eval('aft' + j + '' + i)) {
(eval('aft' + j + '' + i)).play();
}
++i;
}
++j;
}
j = 0;
while (j < 5) {
i = 0;
while (i < 5) {
if (eval('aat' + j + '' + i)) {
(eval('aat' + j + '' + i)).play();
}
++i;
}
++j;
}
j = 0;
while (j < 5) {
i = 0;
while (i < 5) {
if (eval('aab' + j + '' + i)) {
(eval('aab' + j + '' + i)).play();
}
++i;
}
++j;
}
j = 0;
while (j < 5) {
i = 0;
while (i < 5) {
if (eval('abt' + j + '' + i)) {
(eval('abt' + j + '' + i)).play();
}
++i;
}
++j;
}
j = 0;
while (j < 5) {
i = 0;
while (i < 5) {
if (eval('abb' + j + '' + i)) {
(eval('abb' + j + '' + i)).play();
}
++i;
}
++j;
}
if (af0) {
af0.play();
}
if (ab0) {
ab0.play();
}
if (as0) {
as0.play();
}
if (aa0) {
aa0.play();
}
if (a0) {
a0.play();
}
return 0;
};
get_free_holes = function (holes) {
hole = 0;
current_free_positions = new Array();
j = 0;
i = 0;
while (i < 5) {
if (holes[i] == 0) {
current_free_positions[j] = i;
++j;
}
++i;
}
free_holes_count = current_free_positions.length;
if (free_holes_count == 0) {
return -1;
}
hole_index = random(free_holes_count);
hole = current_free_positions[hole_index];
return hole;
};
get_dick_data = function (index) {
dick = new Object();
switch (index) {
dick._index = index;
return dick;
case 0:
dick.z_index = 100;
dick.x = 104;
dick.y = 115;
dick.xscale = 100;
dick._index = index;
return dick;
case 1:
dick.z_index = 200;
dick.x = 535;
dick.y = 115;
dick.xscale = -100;
dick._index = index;
return dick;
case 2:
dick.z_index = 300;
dick.x = 599;
dick.y = 263;
dick.xscale = -100;
dick._index = index;
return dick;
case 3:
dick.z_index = 400;
dick.x = 41;
dick.y = 263;
dick.xscale = 100;
dick._index = index;
return dick;
case 4:
dick.z_index = 600;
dick.x = 280;
dick.y = 360;
dick.xscale = 100;
dick._index = index;
return dick;
}
dick._index = index;
return dick;
};
attach_anim = function (_index, _xmode, _color, satisfaction, ejac) {
remove_all_anim();
if (_root.level == 1) {
symbol = 'b';
if (_root.skillB2 == true && _root.skillB3 == true && _root.skillB4 == true && _root.skillB5 == true) {
_type = random(5);
} else {
if (_root.skillB2 == true && _root.skillB3 == true && _root.skillB4 == true && _root.skillB5 == false) {
_type = random(4);
} else {
if (_root.skillB2 == true && _root.skillB3 == true && _root.skillB4 == false && _root.skillB5 == false) {
_type = random(3);
} else {
if (_root.skillB2 == true && _root.skillB3 == false && _root.skillB4 == false && _root.skillB5 == false) {
_type = random(2);
} else {
_type = 0;
}
}
}
}
} else {
if (_root.level > 1 && _root.level <= 5) {
symbol = 's';
if (_root.skillS1 == true && _root.skillS2 == true && _root.skillS3 == true && _root.skillS4 == true && _root.skillS5 == true) {
_type = random(5);
} else {
if (_root.skillS1 == true && _root.skillS2 == true && _root.skillS3 == true && _root.skillS4 == true && _root.skillS5 == false) {
_type = random(4);
} else {
if (_root.skillS1 == true && _root.skillS2 == true && _root.skillS3 == true && _root.skillS4 == false && _root.skillS5 == false) {
_type = random(3);
} else {
if (_root.skillS1 == true && _root.skillS2 == true && _root.skillS3 == false && _root.skillS4 == false && _root.skillS5 == false) {
_type = random(2);
} else {
_type = 0;
}
}
}
}
} else {
if (_root.level < 10 && _root.level > 5) {
symbol = 'f';
if (_root.skillF1 == true && _root.skillF2 == true && _root.skillF3 == true && _root.skillF4 == true) {
_type = random(4);
} else {
if (_root.skillF1 == true && _root.skillF2 == true && _root.skillF3 == true && _root.skillF4 == false) {
_type = random(3);
} else {
if (_root.skillF1 == true && _root.skillF2 == true && _root.skillF3 == false && _root.skillF4 == false) {
_type = random(2);
} else {
_type = 0;
}
}
}
} else {
if (_root.level == 10) {
symbol = 'a';
if (_root.skillA1 == true && _root.skillA2 == true && _root.skillA3 == true && _root.skillA4 == true) {
_type = random(4);
} else {
if (_root.skillA1 == true && _root.skillA2 == true && _root.skillA3 == true && _root.skillA4 == false) {
_type = random(3);
} else {
if (_root.skillA1 == true && _root.skillA2 == true && _root.skillA3 == false && _root.skillA4 == false) {
_type = random(2);
} else {
_type = 0;
}
}
}
}
}
}
}
switch (_index) {
case 0:
girl_name = 'a' + symbol + 't' + _type;
break;
case 1:
girl_name = 'a' + symbol + 't' + _type;
break;
case 2:
girl_name = 'a' + symbol + 'b' + _type;
break;
case 3:
girl_name = 'a' + symbol + 'b' + _type;
break;
case 4:
if (_type < 3) {
girl_name = 'a' + symbol + '0';
} else {
girl_name = 'a' + symbol + '1';
}
}
girl = get_girl_data(_index);
if (_index < 4) {
clip = attachMovie(girl_name, girl_name + _index, girl.z_index);
} else {
clip = attachMovie(girl_name, girl_name, girl.z_index);
}
clip._x = girl.x;
clip._y = girl.y;
clip._xscale = girl.xscale;
if (_index == 4) {
clip._yscale = girl.yscale;
}
clip._index = girl._index;
clip._remove = function () {
this.removeMovieClip();
if (eval('h0' + _index)) {
(eval('h0' + _index)).removeMovieClip();
}
(eval('d0' + _index))._visible = true;
(eval('d0' + _index)).ejac = ejac;
(eval('d0' + _index)).satisfaction = satisfaction;
if (_root.came == true) {
(eval('d0' + _index)).gotoAndPlay('a1');
} else {
(eval('d0' + _index)).gotoAndPlay('return');
}
_root.came = false;
};
clip._xmode = _xmode;
clip._color = _color;
clip.satisfaction = satisfaction;
clip.ejac = ejac;
spark(girl.xspark, girl.yspark);
hole = get_dick_data(_index);
if (_index < 4) {
(eval('d0' + _index))._visible = false;
} else {
c0._visible = false;
c0.ejac = ejac;
c0.satisfaction = satisfaction;
if (_root.came == true) {
c0.gotoAndPlay('a1');
} else {
c0.gotoAndPlay('return');
}
}
if (_index < 4) {
clip = attachMovie('h0', 'h0' + girl._index, girl.z_index - 1);
clip._x = hole.x;
clip._y = hole.y;
clip._xscale = hole.xscale;
clip._color = _color;
}
};
attach_walkanim = function (_index, _xmode, _color, satisfaction, ejac) {
remove_all_anim();
_type = 0;
if (_root.localMap == 'blood') {
symbol = 'k';
} else {
if (_root.localMap == 'cerberus') {
symbol = 'i';
} else {
if (_root.localMap == 'council') {
symbol = 'h';
} else {
if (_root.localMap == 'flux') {
symbol = 'v';
}
}
}
}
girl_name = 'a' + symbol + _type;
girl = get_girl_data(_index);
clip = attachMovie(girl_name, girl_name, 100);
clip._x = girl.x;
clip._y = girl.y;
clip._xscale = girl.xscale;
clip._yscale = girl.yscale;
clip._index = girl._index;
clip._remove = function () {
this.removeMovieClip();
if (eval('h0' + _index)) {
(eval('h0' + _index)).removeMovieClip();
}
(eval('d0' + _index))._visible = true;
(eval('d0' + _index)).ejac = ejac;
(eval('d0' + _index)).satisfaction = satisfaction;
if (_root.came == true) {
(eval('d0' + _index)).gotoAndPlay('a1');
} else {
(eval('d0' + _index)).gotoAndPlay('return');
}
BG.door.gotoAndPlay('bye');
_root.came = false;
};
clip._xmode = _xmode;
clip._color = _color;
clip.satisfaction = satisfaction;
clip.ejac = ejac;
spark(girl.xspark, girl.yspark);
hole = get_dick_data(_index);
};
get_girl_data = function (index) {
girl = new Object();
if (_root.level <= 5) {
switch (index) {
case 0:
girl.z_index = 102;
girl.x = 92;
girl.y = 66;
girl.xscale = 100;
girl.xspark = 130;
girl.yspark = 150;
break;
case 1:
girl.z_index = 202;
girl.x = 547;
girl.y = 66;
girl.xscale = -100;
girl.xspark = 520;
girl.yspark = 180;
break;
case 2:
girl.z_index = 302;
girl.x = 603;
girl.y = 180;
girl.xscale = -100;
girl.xspark = 570;
girl.yspark = 320;
break;
case 3:
girl.z_index = 402;
girl.x = 37;
girl.y = 180;
girl.xscale = 100;
girl.xspark = 70;
girl.yspark = 310;
break;
case 4:
girl.z_index = 700;
girl.x = 176;
girl.y = 143;
girl.xscale = 108;
girl.yscale = 108;
girl.xspark = 320;
girl.yspark = 420;
}
}
if (_root.level > 5) {
switch (index) {
girl._index = index;
return girl;
case 0:
girl.z_index = 102;
girl.x = 1602;
girl.y = 13;
girl.xscale = -100;
girl.xspark = 130;
girl.yspark = 170;
girl._index = index;
return girl;
case 1:
girl.z_index = 202;
girl.x = -963;
girl.y = 13;
girl.xscale = 100;
girl.xspark = 520;
girl.yspark = 180;
girl._index = index;
return girl;
case 2:
girl.z_index = 302;
girl.x = 337;
girl.y = 305;
girl.xscale = 100;
girl.xspark = 580;
girl.yspark = 330;
girl._index = index;
return girl;
case 3:
girl.z_index = 402;
girl.x = 303;
girl.y = 305;
girl.xscale = -100;
girl.xspark = 60;
girl.yspark = 310;
girl._index = index;
return girl;
case 4:
girl.z_index = 700;
girl.x = 176;
girl.y = 143;
girl.xscale = 108;
girl.yscale = 108;
girl.xspark = 320;
girl.yspark = 420;
girl._index = index;
return girl;
}
}
girl._index = index;
return girl;
};
_root.wheel = false;
_root.hole0hidden = false;
_root.hole1hidden = false;
_root.hole2hidden = false;
_root.hole3hidden = false;
_root.hole4hidden = false;
_root.hole5hidden = false;
if (_root.mapLocalHoles <= 4) {
busy_holeONE = Math.floor(random(3));
if (busy_holeONE == 0) {
_root.hole0hidden = true;
} else {
if (busy_holeONE == 1) {
_root.hole1hidden = true;
} else {
if (busy_holeONE == 2) {
_root.hole2hidden = true;
} else {
if (busy_holeONE == 3) {
_root.hole3hidden = true;
} else {
if (busy_holeONE == 4) {
_root.hole4hidden = true;
}
}
}
}
}
blockONE = get_dick_data(busy_holeONE);
}
if (_root.mapLocalHoles <= 3) {
busy_holeTWO = Math.floor(random(3));
if (busy_holeTWO == busy_holeONE) {
++busy_holeTWO;
}
if (busy_holeTWO >= 4) {
busy_holeTWO = 0;
}
if (busy_holeTWO == 0) {
_root.hole0hidden = true;
} else {
if (busy_holeTWO == 1) {
_root.hole1hidden = true;
} else {
if (busy_holeTWO == 2) {
_root.hole2hidden = true;
} else {
if (busy_holeTWO == 3) {
_root.hole3hidden = true;
} else {
if (busy_holeTWO == 4) {
_root.hole4hidden = true;
}
}
}
}
}
blockTWO = get_dick_data(busy_holeTWO);
}
_root.hole4hidden = true;
holes = new Array(1, 1, 1, 1, 1);
holes_timer_random = (130 - _root.mapLocalPop * 10) * _root.mapLocalHoles;
if (_root.mapLocalHoles <= 2) {
hole_timer = new Array(random(holes_timer_random), random(holes_timer_random), random(holes_timer_random), random(holes_timer_random), 0);
_root.hole4hidden = true;
} else {
hole_timer = new Array(random(holes_timer_random), random(holes_timer_random), random(holes_timer_random), random(holes_timer_random), random(holes_timer_random));
_root.hole4hidden = false;
}
if (_root.mapLocalHoles <= 4) {
hole_timer[busy_holeONE] = 0;
}
if (_root.mapLocalHoles <= 3) {
hole_timer[busy_holeTWO] = 0;
}
_root.endTimeout = 100;
_root.clientsLeft = Math.floor(5 + 3 * _root.mapLocalPop);
_root.clientsMax = _root.clientsLeft;
if (_root.endless == true) {
TimeBar.gotoAndStop('endless');
TimeBar.clock.gotoAndStop(2);
} else {
TimeBar.gotoAndStop('normal');
TimeBar.clock.gotoAndStop(34);
}
setStage();
onEnterFrame = function () {
if (_root.level_pause != true) {
if (_root.wheel != false) {
if (!skills.Middlebox.hitTest(_root._xmouse, _root._ymouse, true)) {
radian = Math.atan2(_root._ymouse - _root.clickedy, _root._xmouse - _root.clickedx);
angle = radian * 180 / Math.PI;
if (angle >= -135 && angle < -45) {
_root.wheel = 'u';
} else {
if (angle >= -45 && angle < 45) {
_root.wheel = 'r';
} else {
if (angle >= 45 && angle < 135) {
_root.wheel = 'd';
} else {
_root.wheel = 'l';
}
}
}
if (_root.wheel == 'u' && _root.level != 1) {
skills.setB();
skills.orb.gotoAndStop(7);
} else {
if (_root.wheel == 'r' && _root.level != 3) {
if (_root.skillS1 != false) {
skills.setS();
skills.orb.gotoAndStop(8);
}
} else {
if (_root.wheel == 'd' && _root.level != 8) {
if (_root.skillF1 != false) {
skills.setF();
skills.orb.gotoAndStop(9);
}
} else {
if (_root.wheel == 'l' && _root.level != 10) {
if (_root.skillA1 != false) {
skills.setA();
skills.orb.gotoAndStop(10);
}
}
}
}
}
}
}
_root.StatsPlayTime += 0.04;
_root.StatsSessionPlayTime += 0.04;
}
need_a0 = true;
j = 0;
while (j < 5) {
i = 0;
while (i < 5) {
if (eval('abb' + j + '' + i)) {
need_a0 = false;
}
++i;
}
++j;
}
j = 0;
while (j < 5) {
i = 0;
while (i < 5) {
if (eval('abt' + j + '' + i)) {
need_a0 = false;
}
++i;
}
++j;
}
j = 0;
while (j < 5) {
i = 0;
while (i < 5) {
if (eval('asb' + j + '' + i)) {
need_a0 = false;
}
++i;
}
++j;
}
j = 0;
while (j < 5) {
i = 0;
while (i < 5) {
if (eval('ast' + j + '' + i)) {
need_a0 = false;
}
++i;
}
++j;
}
j = 0;
while (j < 5) {
i = 0;
while (i < 5) {
if (eval('afb' + j + '' + i)) {
need_a0 = false;
}
++i;
}
++j;
}
j = 0;
while (j < 5) {
i = 0;
while (i < 5) {
if (eval('aft' + j + '' + i)) {
need_a0 = false;
}
++i;
}
++j;
}
j = 0;
while (j < 5) {
i = 0;
while (i < 5) {
if (eval('aab' + j + '' + i)) {
need_a0 = false;
}
++i;
}
++j;
}
j = 0;
while (j < 5) {
i = 0;
while (i < 5) {
if (eval('aat' + j + '' + i)) {
need_a0 = false;
}
++i;
}
++j;
}
if (ab0) {
need_a0 = false;
}
if (ab1) {
need_a0 = false;
}
if (as0) {
need_a0 = false;
}
if (as1) {
need_a0 = false;
}
if (af0) {
need_a0 = false;
}
if (af1) {
need_a0 = false;
}
if (aa0) {
need_a0 = false;
}
if (aa1) {
need_a0 = false;
}
if (ak0) {
need_a0 = false;
}
if (ah0) {
need_a0 = false;
}
if (ai0) {
need_a0 = false;
}
if (av0) {
need_a0 = false;
}
if (a0) {
need_a0 = false;
}
if (need_a0 == true) {
rainbow();
clip = attachMovie('a0', 'a0', 500);
clip._x = 175;
clip._y = 115;
clip._xscale = 110;
clip._yscale = 110;
clip._remove = function () {
this.removeMovieClip();
};
}
if (_root.clientsLeft > 0) {
i = 0;
while (i < 5) {
if (hole_timer[i] > 1) {
if (_root.level_pause != true) {
--hole_timer[i];
}
} else {
if (hole_timer[i] == 1) {
hole_timer[i] = 0;
holes[i] = 0;
}
}
++i;
}
_index = get_free_holes(holes);
if (_index < 0) {
return undefined;
}
dick = get_dick_data(_index);
if (_index < 4) {
clip = attachMovie('d0', 'd0' + dick._index, dick.z_index);
} else {
clip = attachMovie('c0', 'd0' + dick._index, dick.z_index);
}
clip._x = dick.x;
clip._y = dick.y;
clip._xscale = dick.xscale;
clip._index = dick._index;
if (_root.endless != true) {
_root.clientsLeft -= 1;
TimeBar.clock.gotoAndStop(Math.round((_root.clientsLeft / _root.clientsMax) * 32 + 2));
if (_root.clientsLeft == 50) {
TimeBar.clock.icon.gotoAndStop('tick');
} else {
if (_root.clientsLeft == 40) {
TimeBar.clock.icon.gotoAndStop('tick');
} else {
if (_root.clientsLeft == 30) {
TimeBar.clock.icon.gotoAndStop('tick');
} else {
if (_root.clientsLeft == 20) {
TimeBar.clock.icon.gotoAndStop('tick');
} else {
if (_root.clientsLeft == 10) {
TimeBar.clock.icon.gotoAndStop('tickBig');
} else {
if (_root.clientsLeft == 5) {
TimeBar.clock.icon.gotoAndStop('tickBig');
} else {
if (_root.clientsLeft == 0) {
TimeBar.clock.icon.gotoAndStop('ring');
}
}
}
}
}
}
}
}
if (_root.localMap == 'slums') {
_root.maleRaceList = [9, 10];
} else {
if (_root.localMap == 'c-sec') {
_root.maleRaceList = [1, 2, 3, 4, 7, 8, 7, 8];
} else {
if (_root.localMap == 'consort') {
_root.maleRaceList = [5, 6, 11, 12];
} else {
if (_root.localMap == 'flux') {
_root.maleRaceList = [1, 2, 3, 4, 5, 6, 5, 6, 7, 8, 7, 8, 11, 12, 11, 12];
} else {
if (_root.localMap == 'blood') {
_root.maleRaceList = [5, 6, 9, 10];
} else {
if (_root.localMap == 'cerberus') {
_root.maleRaceList = [1, 2, 3, 4];
} else {
if (_root.localMap == 'council') {
_root.maleRaceList = [7, 8, 11, 12];
} else {
_root.maleRaceList = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12];
}
}
}
}
}
}
}
clip._color = _root.maleRaceList[Math.floor(Math.random() * _root.maleRaceList.length)];
holes[_index] = 1;
}
};
}
instance TimeBar of movieClip 5287 {
onClipEvent (load) {
this.swapDepths(99996);
}
}
instance board of movieClip 5301 {
onClipEvent (load) {
this.swapDepths(99999);
}
}
instance LevelBar of movieClip 5323 {
onClipEvent (load) {
this.swapDepths(100000);
}
}
instance skills of movieClip 5393 {
onClipEvent (load) {
this.swapDepths(99997);
}
}
instance pauseMenu of movieClip 5997 {
onClipEvent (load) {
this.swapDepths(99998);
}
}
}
movieClip 6002 {
}
movieClip 6019 {
}
movieClip 6021 {
}
movieClip 6033 {
frame 1 {
_alpha = 0;
}
}
movieClip 6053 {
frame 1 {
ready = true;
gotoAndStop(2);
btn.onPress = function () {
if (ready == true) {
gotoAndStop('down');
}
};
keyListener = new Object();
keyListener.onKeyDown = function () {
if (Key.isDown(13)) {
if (ready == true) {
gotoAndPlay('send');
ready = false;
}
}
};
Key.addListener(keyListener);
btn.onRelease = function () {
if (ready == true) {
gotoAndPlay('send');
ready = false;
}
};
btn.onRelease = function () {
if (ready == true) {
gotoAndPlay('send');
ready = false;
}
};
btn.onRollOver = function () {
if (ready == true) {
gotoAndStop('over');
}
};
btn.onRollOut = function () {
if (ready == true) {
gotoAndStop('off');
}
};
}
frame 35 {
_parent.codeLine.text = '';
gotoAndPlay('fadeOut');
}
frame 53 {
_parent.codeLine.text = '';
}
frame 61 {
gotoAndStop(1);
}
frame 66 {
if (_parent.codeLine.text == 'patreon.com/corta' or _parent.codeLine.text == 'Patreon.com/corta' or _parent.codeLine.text == 'https://www.patreon.com/corta' or _parent.codeLine.text == 'www.patreon.com/corta' or _parent.codeLine.text == 'https://www.patreon.com/corta?ty=h' or _parent.codeLine.text == 'www.patreon.com/corta?ty=h' or _parent.codeLine.text == 'patreon.com/corta?ty=h') {
if (_parent.cheat != true) {
gotoAndPlay('correct');
_parent.codeLine.text = 'Way to cheat -- a winner is you !';
_parent.cheat = true;
} else {
gotoAndPlay('wrong');
_parent.codeLine.text = 'code active';
}
} else {
if (_parent.codeLine.text == 'jutsu' or _parent.codeLine.text == 'Jutsu' or _parent.codeLine.text == 'naruto' or _parent.codeLine.text == 'Naruto') {
if (_root.jutsu != 5) {
gotoAndPlay('correct');
_parent.codeLine.text = '-SHADOW CLONE MODE-';
_root.jutsu = 5;
_root.jutsuUnlocked = true;
} else {
gotoAndPlay('wrong');
_parent.codeLine.text = 'code active';
}
} else {
if (_parent.codeLine.text == 'test' or _parent.codeLine.text == 't' or _parent.codeLine.text == 'gallery' or _parent.codeLine.text == 'Gallery') {
_root.galleryViewing = true;
_root.strippedHairUnlocked = true;
_root.strippedMaskUnlocked = true;
_root.strippedTopUnlocked = true;
_root.strippedBotUnlocked = true;
_root.strippedFullUnlocked = true;
_root.BGMmute = true;
_root.gotoAndStop(5);
_root.screen.removeMovieClip();
gotoAndPlay('correct');
_parent.codeLine.text = 'test anim mode';
} else {
if (_parent.codeLine.text == 'endless' or _parent.codeLine.text == 'Endless') {
if (_root.endless != true) {
gotoAndPlay('correct');
_parent.codeLine.text = '-ENDLESS MODE-';
_root.endless = true;
_root.endlessUnlocked = true;
} else {
gotoAndPlay('wrong');
_parent.codeLine.text = 'code active';
}
} else {
if (_parent.codeLine.text == 'on the reg' or _parent.codeLine.text == 'On The Reg' or _parent.codeLine.text == 'onthereg' or _parent.codeLine.text == 'OnTheReg' or _parent.codeLine.text == 'Onthereg' or _parent.codeLine.text == 'On the reg') {
if (_root.cheatRegular != true) {
gotoAndPlay('correct');
_parent.codeLine.text = '-EASY FACTION SCHEDULE-';
_root.cheatRegular = true;
_root.cheatRegularUnlocked = true;
} else {
gotoAndPlay('wrong');
_parent.codeLine.text = 'code active';
}
} else {
if (_parent.codeLine.text == 'guarana' or _parent.codeLine.text == 'Guarana' or _parent.codeLine.text == 'caffeine' or _parent.codeLine.text == 'Caffeine') {
if (_root.cheatEnergy != true) {
gotoAndPlay('correct');
_parent.codeLine.text = '-WIIIINGS-';
_root.cheatEnergy = true;
_root.cheatEnergyUnlocked = true;
} else {
gotoAndPlay('wrong');
_parent.codeLine.text = 'code active';
}
} else {
if (_parent.codeLine.text == 'rainbow' or _parent.codeLine.text == 'Rainbow') {
if (_root.rainbow != true) {
gotoAndPlay('correct');
_parent.codeLine.text = '-RAINBOW MODE-';
_root.rainbow = true;
_root.rainbowAllUnlocked = true;
} else {
gotoAndPlay('wrong');
_parent.codeLine.text = 'code active';
}
} else {
if (_parent.codeLine.text == 'shifter' or _parent.codeLine.text == 'Shifter') {
if (_root.rainbow != 'head') {
gotoAndPlay('correct');
_parent.codeLine.text = '-RAINBOW HEAD MODE-';
_root.rainbow = 'head';
_root.rainbowHeadUnlocked = true;
} else {
gotoAndPlay('wrong');
_parent.codeLine.text = 'code active';
}
} else {
if (_parent.codeLine.text == 'dreamcoat' or _parent.codeLine.text == 'Dreamcoat') {
if (_root.rainbow != 'body') {
gotoAndPlay('correct');
_parent.codeLine.text = '-RAINBOW CLOTHES MODE-';
_root.rainbow = 'body';
_root.rainbowBodyUnlocked = true;
} else {
gotoAndPlay('wrong');
_parent.codeLine.text = 'code active';
}
} else {
if (_parent.codeLine.text == 'normandy' or _parent.codeLine.text == 'Normandy') {
if (_root.rainbow != 'squad') {
gotoAndPlay('correct');
_parent.codeLine.text = '-RAINBOW CREW MODE-';
_root.rainbow = 'squad';
_root.rainbowSquadUnlocked = true;
} else {
gotoAndPlay('wrong');
_parent.codeLine.text = 'code active';
}
} else {
if (_parent.codeLine.text == 'Startup cheat on -- have fun !') {
_parent.codeLine.text = '';
gotoAndStop(1);
} else {
gotoAndPlay('wrong');
_parent.codeLine.text = ' -- Bad Code --';
}
}
}
}
}
}
}
}
}
}
}
}
}
// unknown tag 88 length 94
movieClip 6060 {
frame 1 {
if (this.over == true) {
gotoAndStop('show');
} else {
gotoAndStop('hide');
}
}
frame 4 {
if (this.over == false) {
gotoAndPlay(23);
}
}
frame 6 {
if (this.over == false) {
gotoAndPlay(20);
}
}
frame 9 {
if (this.over == false) {
gotoAndPlay(17);
}
}
frame 14 {
if (this.over == false) {
gotoAndPlay('go');
} else {
stop();
}
}
frame 17 {
if (this.over == true) {
gotoAndPlay(9);
}
}
frame 20 {
if (this.over == true) {
gotoAndPlay(6);
}
}
frame 23 {
if (this.over == true) {
gotoAndPlay(4);
}
}
frame 28 {
if (this.over == true) {
gotoAndPlay('come');
} else {
stop();
}
}
}
button 6066 {
on (release) {
getURL('http://www.patreon.com/corta', '_blank');
if (_parent.cheat != true) {
_parent.codeLine.text = 'Startup cheat on -- have fun !';
_parent.cheat = true;
} else {
_parent.submit.gotoAndPlay('wrong');
_parent.codeLine.text = 'code active';
}
}
on (rollOver) {
this.words.over = true;
if (this.words._currentframe == 28) {
this.words.gotoAndPlay('come');
}
}
on (rollOut) {
this.words.over = false;
if (this.words._currentframe == 14) {
this.words.gotoAndPlay('go');
}
}
on (releaseOutside) {
this.words.over = false;
if (this.words._currentframe == 14) {
this.words.gotoAndPlay('go');
}
}
}
movieClip 6068 {
frame 1 {
stop();
}
}
movieClip 6071 {
frame 1 {
stop();
if (_root.BGMmute != true) {
gotoAndStop('no');
} else {
gotoAndStop('yes');
}
}
frame 2 {
stop();
}
}
button 6089 {
on (release) {
gotoAndStop('hide');
}
}
button 6090 {
on (release) {
_root.gotoScreen('4');
}
}
button 6091 {
on (release) {
_root.loadGame();
_root.gotoScreen('4');
}
}
movieClip 6093 {
frame 1 {
gotoAndStop('hide');
}
}
movieClip 6095 193f56ce {
frame 1 {
function cheatRun() {
if (_root.devHack == true) {
_root._score = 100000;
_root.cheatRegular = true;
} else {
_root._score = 5000;
}
_root._scoreDisplay = _root._score;
_root.skillPoints = 25;
_root.skillB1 = true;
_root.skillB2 = true;
_root.skillB3 = true;
_root.skillB4 = true;
_root.skillB5 = true;
_root.skillS1 = true;
_root.skillS2 = true;
_root.skillS3 = true;
_root.skillS4 = true;
_root.skillS5 = true;
_root.skillF1 = true;
_root.skillF2 = true;
_root.skillF3 = true;
_root.skillF4 = true;
_root.skillA1 = true;
_root.skillA2 = true;
_root.skillA3 = true;
_root.skillA4 = true;
_root.character01unlocked = true;
_root.character02unlocked = true;
_root.character03unlocked = true;
_root.character04unlocked = true;
_root.character05unlocked = true;
_root.character06unlocked = true;
_root.character07unlocked = true;
_root.costume01unlocked = true;
_root.costume02unlocked = true;
_root.costume03unlocked = true;
_root.costume04unlocked = true;
_root.costume05unlocked = true;
_root.costume06unlocked = true;
_root.costume07unlocked = true;
_root.costume08unlocked = true;
_root.costume23unlocked = true;
_root.costume24unlocked = true;
_root.costume25unlocked = true;
_root.costume26unlocked = true;
_root.costume27unlocked = true;
_root.costume28unlocked = true;
_root.costume29unlocked = true;
_root.strippedHairUnlocked = true;
_root.strippedFaceUnlocked = true;
_root.strippedMaskUnlocked = true;
_root.strippedTopUnlocked = true;
_root.strippedBotUnlocked = true;
_root.strippedFullUnlocked = true;
_root.mapSlumsUnlocked = true;
_root.mapSlumsRep = 30;
_root.mapSlumsHoles = 5;
_root.mapSlumsHoleTapeUnlocked = true;
_root.mapSlumsHoleGelUnlocked = true;
_root.mapCsecUnlocked = true;
_root.mapCsecRep = 30;
_root.mapCsecHoles = 5;
_root.mapCsecHoleTapeUnlocked = true;
_root.mapCsecHoleGelUnlocked = true;
_root.mapConsortUnlocked = true;
_root.mapConsortRep = 30;
_root.mapConsortHoles = 5;
_root.mapConsortHoleTapeUnlocked = true;
_root.mapConsortHoleGelUnlocked = true;
_root.mapFluxUnlocked = true;
_root.mapFluxRep = 30;
_root.mapFluxHoles = 5;
_root.mapFluxHoleTapeUnlocked = true;
_root.mapFluxHoleGelUnlocked = true;
_root.mapBloodUnlocked = true;
_root.mapBloodRep = 100;
_root.mapCerberusUnlocked = true;
_root.mapCerberusRep = 100;
_root.mapCouncilUnlocked = true;
_root.mapCouncilRep = 100;
}
_root.character = Math.ceil(Math.random() * 7);
_root.character01unlocked = false;
_root.character02unlocked = false;
_root.character03unlocked = false;
_root.character04unlocked = false;
_root.character05unlocked = false;
_root.character06unlocked = false;
_root.character07unlocked = false;
_root.costume01unlocked = false;
_root.costume02unlocked = false;
_root.costume03unlocked = false;
_root.costume04unlocked = false;
_root.costume05unlocked = false;
_root.costume06unlocked = false;
_root.costume07unlocked = false;
_root.costume08unlocked = false;
_root.costume23unlocked = false;
_root.costume24unlocked = false;
_root.costume25unlocked = false;
_root.costume26unlocked = false;
_root.costume27unlocked = false;
_root.costume28unlocked = false;
_root.costume29unlocked = false;
if (_root.devHack == true) {
galleryBtn._visible = true;
} else {
galleryBtn._visible = false;
}
if (_root.clothesHack == true) {
_root.costume = _root.character;
} else {
if (_root.character == 1) {
_root.costume = 23;
_root.character01unlocked = true;
_root.costume23unlocked = true;
} else {
if (_root.character == 2) {
_root.costume = 23;
_root.character02unlocked = true;
_root.costume23unlocked = true;
} else {
if (_root.character == 3) {
_root.costume = 23;
_root.character03unlocked = true;
_root.costume23unlocked = true;
} else {
if (_root.character == 4) {
_root.costume = 24;
_root.character04unlocked = true;
_root.costume24unlocked = true;
} else {
if (_root.character == 5) {
_root.costume = 25;
_root.character05unlocked = true;
_root.costume25unlocked = true;
} else {
if (_root.character == 6) {
_root.costume = 24;
_root.character06unlocked = true;
_root.costume24unlocked = true;
} else {
if (_root.character == 7) {
_root.costume = 25;
_root.character07unlocked = true;
_root.costume25unlocked = true;
}
}
}
}
}
}
}
}
_root.hideNipples = false;
_root.strippedHair = false;
_root.strippedFace = false;
_root.strippedMask = false;
_root.strippedTop = false;
_root.strippedBot = false;
_root.strippedFull = false;
codeLine.text = '';
gotoAndStop(3);
_root.BGMplaying = 2;
_root.BGMmax = 15;
_root.setMusic();
_root.musicForced = false;
_root.jutsu = 0;
_root.endless = false;
_root.cheatRegular = false;
_root.cheatEnergy = false;
_root.rainbow = false;
_root.jutsuUnlocked = false;
_root.endlessUnlocked = false;
_root.cheatRegularUnlocked = false;
_root.cheatEnergyUnlocked = false;
_root.rainbowAllUnlocked = false;
_root.rainbowHeadUnlocked = false;
_root.rainbowBodyUnlocked = false;
_root.rainbowSquadUnlocked = false;
MNF_btn.onPress = function () {
getURL('http://www.meetandfuckgames.com/', '_blank');
};
galleryBtn.onRelease = function () {
_root.galleryViewing = true;
_root.strippedHairUnlocked = true;
_root.strippedMaskUnlocked = true;
_root.strippedTopUnlocked = true;
_root.strippedBotUnlocked = true;
_root.strippedFullUnlocked = true;
_root.BGMmute = true;
_root.gotoAndStop(5);
};
play_btn.onRelease = function () {
play_btn.onPress = null;
_root.level_pause = true;
_root.galleryViewing = false;
if (_root.loadedvar == true) {
newGameMenu.gotoAndStop('yes');
} else {
newGameMenu.gotoAndStop('no');
}
_root.level = undefined;
_root.controlsScheme = 'QWER';
_root.startup = true;
_root._score = 0;
_root._scoreDisplay = _root._score;
_root.buyCost = 0;
_root._scoreDisplay = _root._score;
_root.skillPoints = 5;
_root.total_points = 0;
_root.xpLevel = 1;
_root.xp = 0;
_root.xpNeeded = 2500 + 3500 * (_root.xpLevel * 0.75);
_root.canLevel = 0;
_root.StatsServed = 0;
_root.StatsExcellent = 0;
_root.StatsMissed = 0;
_root.StatsCashEarned = 0;
_root.StatsPlayTime = 0;
_root.StatsSessionServed = 0;
_root.StatsSessionExcellent = 0;
_root.StatsSessionMissed = 0;
_root.StatsSessionCashEarned = 0;
_root.StatsSessionPlayTime = 0;
_root.energyS = 15;
_root.energySmax = 15;
_root.energyF = 10;
_root.energyFmax = 10;
_root.energyA = 5;
_root.energyAmax = 5;
_root.characterSaved = _root.character;
_root.costumeSaved = _root.costume;
_root.character01cost = 3000;
_root.character02cost = 3000;
_root.character03cost = 3000;
_root.character04cost = 3000;
_root.character05cost = 5000;
_root.character06cost = 5000;
_root.character07cost = 4000;
_root.costume01cost = 2500;
_root.costume02cost = 2500;
_root.costume03cost = 2500;
_root.costume04cost = 2500;
_root.costume05cost = 2500;
_root.costume06cost = 2500;
_root.costume07cost = 2500;
_root.costume08cost = 2500;
_root.costume23cost = 500;
_root.costume24cost = 500;
_root.costume25cost = 500;
_root.costume26cost = 500;
_root.costume27cost = 500;
_root.costume28cost = 1000;
_root.costume29cost = 1000;
_root.strippedHairUnlocked = false;
_root.strippedFaceUnlocked = false;
_root.strippedMaskUnlocked = false;
_root.strippedTopUnlocked = false;
_root.strippedBotUnlocked = false;
_root.strippedFullUnlocked = false;
_root.strippedHairCost = 0;
_root.strippedFaceCost = 0;
_root.strippedMaskCost = 1000;
_root.strippedTopCost = 2000;
_root.strippedBotCost = 5000;
_root.strippedFullCost = 0;
_root.music01Unlocked = false;
_root.music02Unlocked = false;
_root.music03Unlocked = false;
_root.music04Unlocked = false;
_root.music05Unlocked = false;
_root.music06Unlocked = false;
_root.music07Unlocked = false;
_root.dayNumber = 1;
_root.mapSelected = 'slums';
_root.mapSelectedLast = _root.mapSelected;
_root.canWork = true;
_root.mapSlumsUnlocked = true;
_root.mapSlumsRep = 0;
_root.mapSlumsPop = 4;
_root.mapSlumsWealth = 1;
_root.mapSlumsHoles = 2;
_root.mapSlumsHoleTapeUnlocked = false;
_root.mapSlumsHoleGelUnlocked = false;
_root.mapSlumsHoleTapePrice = 500;
_root.mapSlumsHoleGelPrice = 1500;
_root.mapSlumsHoleSelected = 'none';
_root.mapCsecUnlocked = false;
_root.mapCsecRep = 0;
_root.mapCsecPop = 1;
_root.mapCsecWealth = 4;
_root.mapCsecHoles = 2;
_root.mapCsecHoleTapeUnlocked = false;
_root.mapCsecHoleGelUnlocked = false;
_root.mapCsecHoleTapePrice = 2000;
_root.mapCsecHoleGelPrice = 5000;
_root.mapCsecHoleSelected = 'none';
_root.mapConsortUnlocked = false;
_root.mapConsortRep = 0;
_root.mapConsortPop = 2;
_root.mapConsortWealth = 3;
_root.mapConsortHoles = 2;
_root.mapConsortHoleTapeUnlocked = false;
_root.mapConsortHoleGelUnlocked = false;
_root.mapConsortHoleTapePrice = 1000;
_root.mapConsortHoleGelPrice = 2500;
_root.mapConsortHoleSelected = 'none';
_root.mapFluxUnlocked = false;
_root.mapFluxRep = 0;
_root.mapFluxPop = 4;
_root.mapFluxWealth = 3;
_root.mapFluxHoles = 2;
_root.mapFluxHoleTapeUnlocked = false;
_root.mapFluxHoleGelUnlocked = false;
_root.mapFluxHoleTapePrice = 3000;
_root.mapFluxHoleGelPrice = 7000;
_root.mapFluxHoleSelected = 'none';
_root.mapBloodUnlocked = false;
_root.mapBloodOrbit = false;
_root.mapBloodRep = 30;
_root.mapBloodPop = 7;
_root.mapBloodWealth = 2;
_root.mapBloodHoles = 5;
_root.mapBloodHoleSelected = 'tape';
_root.mapCerberusUnlocked = false;
_root.mapCerberusOrbit = false;
_root.mapCerberusRep = 30;
_root.mapCerberusPop = 4;
_root.mapCerberusWealth = 5;
_root.mapCerberusHoles = 4;
_root.mapCerberusHoleSelected = 'none';
_root.mapCouncilUnlocked = false;
_root.mapCouncilOrbit = false;
_root.mapCouncilRep = 30;
_root.mapCouncilPop = 2;
_root.mapCouncilWealth = 7;
_root.mapCouncilHoles = 3;
_root.mapCouncilHoleSelected = 'gel';
_root.mapMaleHuman = false;
_root.mapMaleKrogan = false;
_root.mapMaleTurian = false;
_root.mapMaleVorcha = false;
_root.mapMaleVolus = false;
_root.skillB1 = true;
_root.skillB2 = false;
_root.skillB3 = false;
_root.skillB4 = false;
_root.skillB5 = false;
_root.skillB1Cost = 1;
_root.skillB2Cost = 2;
_root.skillB3Cost = 3;
_root.skillB4Cost = 4;
_root.skillB5Cost = 5;
_root.skillS1 = false;
_root.skillS2 = false;
_root.skillS3 = false;
_root.skillS4 = false;
_root.skillS5 = false;
_root.skillS1Cost = 1;
_root.skillS2Cost = 2;
_root.skillS3Cost = 3;
_root.skillS4Cost = 4;
_root.skillS5Cost = 5;
_root.skillF1 = false;
_root.skillF2 = false;
_root.skillF3 = false;
_root.skillF4 = false;
_root.skillF1Cost = 4;
_root.skillF2Cost = 6;
_root.skillF3Cost = 8;
_root.skillF4Cost = 10;
_root.skillA1 = false;
_root.skillA2 = false;
_root.skillA3 = false;
_root.skillA4 = false;
_root.skillA1Cost = 5;
_root.skillA2Cost = 10;
_root.skillA3Cost = 15;
_root.skillA4Cost = 20;
_root.skillFin1 = false;
_root.skillFin2 = false;
_root.skillFin3 = false;
_root.skillFin1Cost = 2;
_root.skillFin2Cost = 2;
_root.skillFin3Cost = 2;
_root.skillSta1 = false;
_root.skillSta2 = false;
_root.skillSta3 = false;
_root.skillSta1Cost = 5;
_root.skillSta2Cost = 5;
_root.skillSta3Cost = 5;
_root.skillAll1 = false;
_root.skillAll2 = false;
_root.skillAll3 = false;
_root.skillAll1Cost = 2;
_root.skillAll2Cost = 2;
_root.skillAll3Cost = 2;
_root.skillLib1 = false;
_root.skillLib2 = false;
_root.skillLib3 = false;
_root.skillLib1Cost = 2;
_root.skillLib2Cost = 2;
_root.skillLib3Cost = 2;
if (cheat == true or _root.devHack == true) {
cheatRun();
}
if (_root.cheatEnergy == true) {
_root.skillSta1 = true;
_root.skillSta2 = true;
_root.skillSta3 = true;
}
if (_root.clothesHack == true) {
if (_root.costume == 1) {
_root.hideNipples == true;
_root.hidePussy = false;
} else {
if (_root.costume == 2 or _root.costume == 5 or _root.costume == 6) {
_root.hideNipples = true;
_root.hidePussy = true;
} else {
if (_root.costume == 3 or _root.costume == 7) {
_root.hideNipples == false;
_root.hidePussy = true;
} else {
_root.hideNipples = false;
_root.hidePussy = false;
}
}
}
}
};
}
instance volSetting of movieClip 6071 {
onClipEvent (press) {
if (_root.BGMmute != true) {
this.gotoAndStop('yes');
_root.BGMmute = true;
} else {
this.gotoAndStop('no');
_root.BGMmute = false;
}
}
}
frame 2 {
gotoAndStop(3);
}
frame 3 {
girl.onPress = function () {
_root.character += 1;
if (_root.character > 7) {
_root.character = 1;
}
_root.character01unlocked = false;
_root.character02unlocked = false;
_root.character03unlocked = false;
_root.character04unlocked = false;
_root.character05unlocked = false;
_root.character06unlocked = false;
_root.character07unlocked = false;
_root.costume01unlocked = false;
_root.costume02unlocked = false;
_root.costume03unlocked = false;
_root.costume04unlocked = false;
_root.costume05unlocked = false;
_root.costume06unlocked = false;
_root.costume07unlocked = false;
_root.costume08unlocked = false;
_root.costume23unlocked = false;
_root.costume24unlocked = false;
_root.costume25unlocked = false;
_root.costume26unlocked = false;
_root.costume27unlocked = false;
_root.costume28unlocked = false;
_root.costume29unlocked = false;
if (_root.clothesHack == true) {
_root.costume = _root.character;
} else {
if (_root.character == 1) {
_root.costume = 23;
_root.character01unlocked = true;
_root.costume23unlocked = true;
} else {
if (_root.character == 2) {
_root.costume = 23;
_root.character02unlocked = true;
_root.costume23unlocked = true;
} else {
if (_root.character == 3) {
_root.costume = 23;
_root.character03unlocked = true;
_root.costume23unlocked = true;
} else {
if (_root.character == 4) {
_root.costume = 24;
_root.character04unlocked = true;
_root.costume24unlocked = true;
} else {
if (_root.character == 5) {
_root.costume = 25;
_root.character05unlocked = true;
_root.costume25unlocked = true;
} else {
if (_root.character == 6) {
_root.costume = 24;
_root.character06unlocked = true;
_root.costume24unlocked = true;
} else {
if (_root.character == 7) {
_root.costume = 25;
_root.character07unlocked = true;
_root.costume25unlocked = true;
}
}
}
}
}
}
}
}
gotoAndPlay(2);
};
stop();
}
}
movieClip 6096 {
}
frame 3 {
function setMusic() {
_root.BGM.stop();
_root.BGMvol = 0;
_root.Music();
}
function Music() {
_root.BGM.stop();
if (_root.musicForced == false) {
if (_root.BGMplaying == 1) {
_root.BGM.attachSound('afterlife');
_root.BGM.start(0, 99);
} else {
if (_root.BGMplaying == 2) {
_root.BGM.attachSound('darkstar');
_root.BGM.start(0, 99);
} else {
if (_root.BGMplaying == 3) {
_root.BGM.attachSound('purgatory');
_root.BGM.start(0, 99);
} else {
if (_root.BGMplaying == 4) {
_root.BGM.attachSound('slums');
_root.BGM.start(0, 99);
} else {
if (_root.BGMplaying == 5) {
_root.BGM.attachSound('council');
_root.BGM.start(0, 99);
} else {
if (_root.BGMplaying == 6) {
_root.BGM.attachSound('bloodPack');
_root.BGM.start(0, 99);
} else {
if (_root.BGMplaying == 7) {
_root.BGM.attachSound('cerberus');
_root.BGM.start(0, 99);
} else {
_root.BGM.stop();
_root.BGMvol = 0;
}
}
}
}
}
}
}
} else {
if (_root.musicForced != 'mute') {
if (_root.musicForced == 1) {
_root.BGM.attachSound('afterlife');
_root.BGM.start(0, 99);
} else {
if (_root.musicForced == 2) {
_root.BGM.attachSound('darkstar');
_root.BGM.start(0, 99);
} else {
if (_root.musicForced == 3) {
_root.BGM.attachSound('purgatory');
_root.BGM.start(0, 99);
} else {
if (_root.musicForced == 4) {
_root.BGM.attachSound('slums');
_root.BGM.start(0, 99);
} else {
if (_root.musicForced == 5) {
_root.BGM.attachSound('council');
_root.BGM.start(0, 99);
} else {
if (_root.musicForced == 6) {
_root.BGM.attachSound('bloodPack');
_root.BGM.start(0, 99);
} else {
if (_root.musicForced == 7) {
_root.BGM.attachSound('cerberus');
_root.BGM.start(0, 99);
} else {
_root.BGM.stop();
_root.BGMvol = 0;
}
}
}
}
}
}
}
} else {
_root.BGM.stop();
_root.BGMvol = 0;
}
}
}
}
frame 3 {
function playSound(src) {
snd = new Sound();
snd.attachSound(src);
snd.start();
delete snd;
}
function shuffle(src) {
res = new Array();
src_length = src.length;
q_order = new Array();
q_order = src;
i = 0;
while (i < src_length) {
r = random(q_order.length);
res.push(src[r]);
q_order.splice(r, 1);
++i;
}
return res;
}
function gotoScreen(x) {
if (trans != undefined) {
removeMovieClip(trans);
}
(attachMovie('trans_screen', 'trans', 1)).next_screen = x;
}
function setScreen(x) {
fscommand('bar', x);
if (screen != undefined) {
removeMovieClip(screen);
}
attachMovie(Qvar[x - 1], 'screen', 0);
if (trans != undefined) {
trans.play();
}
}
stop();
Mouse.show();
if (Qscr == undefined) {
Qstr = '610b3745,193f56ce,193f56ce,2f6147db';
Qvar = Qstr.split(',');
Qfrm = Qvar.length;
fscommand('mnf', Qfrm);
Qscr = 3;
}
setScreen(Qscr);
}
frame 4 {
gotoAndStop(3);
}
frame 5 {
function replaceGirl() {
girl.removeMovieClip();
if (_root.replaceName == 'aft0' or _root.replaceName == 'aft1' or _root.replaceName == 'aft2' or _root.replaceName == 'aft3' or _root.replaceName == 'aft4') {
_root.attachMovie(_root.replaceName, 'girl', 0);
girl._x = nodeTopV._x;
girl._y = nodeTopV._y;
} else {
if (_root.replaceName == 'aat0' or _root.replaceName == 'aat1' or _root.replaceName == 'aat2' or _root.replaceName == 'aat3' or _root.replaceName == 'aat4') {
_root.attachMovie(_root.replaceName, 'girl', 0);
girl._x = nodeTopA._x;
girl._y = nodeTopA._y;
} else {
if (_root.replaceName == 'afb0' or _root.replaceName == 'afb1' or _root.replaceName == 'afb2' or _root.replaceName == 'afb3' or _root.replaceName == 'afb4' or _root.replaceName == 'aab0' or _root.replaceName == 'aab1' or _root.replaceName == 'aab2' or _root.replaceName == 'aab3' or _root.replaceName == 'aab4') {
_root.attachMovie(_root.replaceName, 'girl', 0);
girl._x = nodeBot._x;
girl._y = nodeBot._y;
} else {
if (_root.replaceName == 'ast0' or _root.replaceName == 'ast1' or _root.replaceName == 'ast2' or _root.replaceName == 'ast3' or _root.replaceName == 'ast4' or _root.replaceName == 'abt0' or _root.replaceName == 'abt1' or _root.replaceName == 'abt2' or _root.replaceName == 'abt3' or _root.replaceName == 'abt4') {
_root.attachMovie(_root.replaceName, 'girl', 0);
girl._x = nodeUpper._x;
girl._y = nodeUpper._y;
} else {
if (_root.replaceName == 'asb0' or _root.replaceName == 'asb1' or _root.replaceName == 'asb2' or _root.replaceName == 'asb3' or _root.replaceName == 'asb4' or _root.replaceName == 'abb0' or _root.replaceName == 'abb1' or _root.replaceName == 'abb2' or _root.replaceName == 'abb3' or _root.replaceName == 'abb4') {
_root.attachMovie(_root.replaceName, 'girl', 0);
girl._x = nodeLower._x;
girl._y = nodeLower._y;
} else {
if (_root.replaceName == 'ab1' or _root.replaceName == 'as1') {
_root.attachMovie(_root.replaceName, 'girl', 0);
girl._x = nodeRight._x;
girl._y = nodeRight._y;
} else {
if (_root.replaceName == 'af1' or _root.replaceName == 'aa1') {
_root.attachMovie(_root.replaceName, 'girl', 0);
girl._x = nodeNudge._x;
girl._y = nodeNudge._y;
} else {
_root.attachMovie(_root.replaceName, 'girl', 0);
girl._x = node._x;
girl._y = node._y;
}
}
}
}
}
}
}
if (_root.replaceName != 'ak0' && _root.replaceName != 'ah0' && _root.replaceName != 'ai0') {
_root.level = 3;
}
_root.UI.swapDepths(1000);
girl.ejac = 0;
girl.satisfaction = 0;
girl.pleasure_meter.intensity = 25;
_root.girl._color = Math.ceil(Math.random() * 12);
_root.girl.pleasure_meter._alpha = 0;
_root.girl.pleasure_meter._visible = false;
UI.headStripping.iconReset();
UI.bodyStripping.iconReset();
}
_root.level_pause = false;
_root.replaceName = 'a0';
_root.level = 3;
_root.playSpeed = 10;
_root.UI.swapDepths(1000);
replaceGirl();
nodeTop._alpha = 0;
nodeBot._alpha = 0;
nodeUpper._alpha = 0;
nodeRight._alpha = 0;
nodeLower._alpha = 0;
nodeNudge._alpha = 0;
node._alpha = 0;
_root.backgroundList = [2, 6, 8, 7, 9, 3, 4, 5];
_root.backgroundSelected = 0;
}
movieClip 6100 {
frame 1 {
stop();
}
}
movieClip 6101 {
frame 1 {
gotoAndStop(2);
}
frame 2 {
mask.cacheAsBitmap = true;
BG.cacheAsBitmap = true;
BG.setMask(mask);
}
}
button 6105 {
on (release) {
_root.replaceName = 'af1';
skillSelect._x = 512.75;
skillSelect._y = 162.35;
skillSelect._rotation = 90;
_parent.replaceGirl();
}
}
button 6106 {
on (release) {
_root.replaceName = 'aft0';
skillSelect._x = 542.15;
skillSelect._y = 147.45;
skillSelect._rotation = 90;
_parent.replaceGirl();
}
}
button 6107 {
on (release) {
_root.replaceName = 'aft1';
skillSelect._x = 571.4500000000001;
skillSelect._y = 147.45;
skillSelect._rotation = 90;
_parent.replaceGirl();
}
}
button 6108 {
on (release) {
_root.replaceName = 'aft2';
skillSelect._x = 600.8;
skillSelect._y = 147.45;
skillSelect._rotation = 90;
_parent.replaceGirl();
}
}
button 6109 {
on (release) {
_root.replaceName = 'aft3';
skillSelect._x = 630.15;
skillSelect._y = 147.45;
skillSelect._rotation = 90;
_parent.replaceGirl();
}
}
button 6110 {
on (release) {
_root.replaceName = 'afb0';
skillSelect._x = 542.15;
skillSelect._y = 177.3;
skillSelect._rotation = 90;
_parent.replaceGirl();
}
}
button 6111 {
on (release) {
_root.replaceName = 'afb1';
skillSelect._x = 571.4500000000001;
skillSelect._y = 177.3;
skillSelect._rotation = 90;
_parent.replaceGirl();
}
}
button 6112 {
on (release) {
_root.replaceName = 'afb2';
skillSelect._x = 600.8;
skillSelect._y = 177.3;
skillSelect._rotation = 90;
_parent.replaceGirl();
}
}
button 6113 {
on (release) {
_root.replaceName = 'afb3';
skillSelect._x = 630.15;
skillSelect._y = 177.3;
skillSelect._rotation = 90;
_parent.replaceGirl();
}
}
button 6114 {
on (release) {
_root.replaceName = 'aa1';
skillSelect._x = 512.75;
skillSelect._y = 256.75;
skillSelect._rotation = 180;
_parent.replaceGirl();
}
}
button 6115 {
on (release) {
_root.replaceName = 'aat0';
skillSelect._x = 542.15;
skillSelect._y = 241.8;
skillSelect._rotation = 180;
_parent.replaceGirl();
}
}
button 6116 {
on (release) {
_root.replaceName = 'aat1';
skillSelect._x = 571.4500000000001;
skillSelect._y = 241.8;
skillSelect._rotation = 180;
_parent.replaceGirl();
}
}
button 6117 {
on (release) {
_root.replaceName = 'aat2';
skillSelect._x = 600.8;
skillSelect._y = 241.8;
skillSelect._rotation = 180;
_parent.replaceGirl();
}
}
button 6118 {
on (release) {
_root.replaceName = 'aat3';
skillSelect._x = 630.15;
skillSelect._y = 241.8;
skillSelect._rotation = 180;
_parent.replaceGirl();
}
}
button 6119 {
on (release) {
_root.replaceName = 'aab0';
skillSelect._x = 542.15;
skillSelect._y = 271.65;
skillSelect._rotation = 180;
_parent.replaceGirl();
}
}
button 6120 {
on (release) {
_root.replaceName = 'aab1';
skillSelect._x = 571.4500000000001;
skillSelect._y = 271.65;
skillSelect._rotation = 180;
_parent.replaceGirl();
}
}
button 6121 {
on (release) {
_root.replaceName = 'aab2';
skillSelect._x = 600.8;
skillSelect._y = 271.65;
skillSelect._rotation = 180;
_parent.replaceGirl();
}
}
button 6122 {
on (release) {
_root.replaceName = 'aab3';
skillSelect._x = 630.15;
skillSelect._y = 271.65;
skillSelect._rotation = 180;
_parent.replaceGirl();
}
}
button 6123 {
on (release) {
_root.replaceName = 'as1';
skillSelect._x = 454.75;
skillSelect._y = 90.5;
skillSelect._rotation = 0;
_parent.replaceGirl();
}
}
button 6124 {
on (release) {
_root.replaceName = 'ast0';
skillSelect._x = 484.15;
skillSelect._y = 75.59999999999999;
skillSelect._rotation = 0;
_parent.replaceGirl();
}
}
button 6125 {
on (release) {
_root.replaceName = 'ast1';
skillSelect._x = 513.4500000000001;
skillSelect._y = 75.59999999999999;
skillSelect._rotation = 0;
_parent.replaceGirl();
}
}
button 6126 {
on (release) {
_root.replaceName = 'ast2';
skillSelect._x = 542.8;
skillSelect._y = 75.59999999999999;
skillSelect._rotation = 0;
_parent.replaceGirl();
}
}
button 6127 {
on (release) {
_root.replaceName = 'ast3';
skillSelect._x = 572.15;
skillSelect._y = 75.59999999999999;
skillSelect._rotation = 0;
_parent.replaceGirl();
}
}
button 6128 {
on (release) {
_root.replaceName = 'ast4';
skillSelect._x = 601.4500000000001;
skillSelect._y = 75.59999999999999;
skillSelect._rotation = 0;
_parent.replaceGirl();
}
}
button 6129 {
on (release) {
_root.replaceName = 'asb0';
skillSelect._x = 484.15;
skillSelect._y = 105.45;
skillSelect._rotation = 0;
_parent.replaceGirl();
}
}
button 6130 {
on (release) {
_root.replaceName = 'asb1';
skillSelect._x = 513.4500000000001;
skillSelect._y = 105.45;
skillSelect._rotation = 0;
_parent.replaceGirl();
}
}
button 6131 {
on (release) {
_root.replaceName = 'asb2';
skillSelect._x = 542.8;
skillSelect._y = 105.45;
skillSelect._rotation = 0;
_parent.replaceGirl();
}
}
button 6132 {
on (release) {
_root.replaceName = 'asb3';
skillSelect._x = 572.15;
skillSelect._y = 105.45;
skillSelect._rotation = 0;
_parent.replaceGirl();
}
}
button 6133 {
on (release) {
_root.replaceName = 'asb4';
skillSelect._x = 601.4500000000001;
skillSelect._y = 105.45;
skillSelect._rotation = 0;
_parent.replaceGirl();
}
}
button 6134 {
on (release) {
_root.replaceName = 'ab1';
skillSelect._x = 454.7;
skillSelect._y = 51.15;
skillSelect._rotation = -90;
_parent.replaceGirl();
}
}
button 6135 {
on (release) {
_root.replaceName = 'abt0';
skillSelect._x = 484.15;
skillSelect._y = 36.25;
skillSelect._rotation = -90;
_parent.replaceGirl();
}
}
button 6136 {
on (release) {
_root.replaceName = 'abt1';
skillSelect._x = 513.4500000000001;
skillSelect._y = 36.25;
skillSelect._rotation = -90;
_parent.replaceGirl();
}
}
button 6137 {
on (release) {
_root.replaceName = 'abt2';
skillSelect._x = 542.8;
skillSelect._y = 36.25;
skillSelect._rotation = -90;
_parent.replaceGirl();
}
}
button 6138 {
on (release) {
_root.replaceName = 'abt3';
skillSelect._x = 572.15;
skillSelect._y = 36.25;
skillSelect._rotation = -90;
_parent.replaceGirl();
}
}
button 6139 {
on (release) {
_root.replaceName = 'abt4';
skillSelect._x = 601.4500000000001;
skillSelect._y = 36.25;
skillSelect._rotation = -90;
_parent.replaceGirl();
}
}
button 6140 {
on (release) {
_root.replaceName = 'abb0';
skillSelect._x = 484.15;
skillSelect._y = 66.09999999999999;
skillSelect._rotation = -90;
_parent.replaceGirl();
}
}
button 6141 {
on (release) {
_root.replaceName = 'abb1';
skillSelect._x = 513.4500000000001;
skillSelect._y = 66.09999999999999;
skillSelect._rotation = -90;
_parent.replaceGirl();
}
}
button 6142 {
on (release) {
_root.replaceName = 'abb2';
skillSelect._x = 542.8;
skillSelect._y = 66.09999999999999;
skillSelect._rotation = -90;
_parent.replaceGirl();
}
}
button 6143 {
on (release) {
_root.replaceName = 'abb3';
skillSelect._x = 572.15;
skillSelect._y = 66.09999999999999;
skillSelect._rotation = -90;
_parent.replaceGirl();
}
}
button 6144 {
on (release) {
_root.replaceName = 'abb4';
skillSelect._x = 601.4500000000001;
skillSelect._y = 66.09999999999999;
skillSelect._rotation = -90;
_parent.replaceGirl();
}
}
button 6145 {
on (release) {
_root.replaceName = 'ak0';
_root.level = 1;
skillSelect._x = 489.45;
skillSelect._y = 287.15;
skillSelect._rotation = 0;
_parent.replaceGirl();
}
}
button 6146 {
on (release) {
_root.replaceName = 'ak0';
_root.level = 3;
skillSelect._x = 518.7000000000001;
skillSelect._y = 287.15;
skillSelect._rotation = 0;
_parent.replaceGirl();
}
}
button 6147 {
on (release) {
_root.replaceName = 'ak0';
_root.level = 8;
skillSelect._x = 548.1;
skillSelect._y = 287.15;
skillSelect._rotation = 0;
_parent.replaceGirl();
}
}
button 6148 {
on (release) {
_root.replaceName = 'ak0';
_root.level = 10;
skillSelect._x = 577.4500000000001;
skillSelect._y = 287.15;
skillSelect._rotation = 0;
_parent.replaceGirl();
}
}
button 6149 {
on (release) {
_root.replaceName = 'af0';
skillSelect._x = 483.35;
skillSelect._y = 162.35;
skillSelect._rotation = 90;
_parent.replaceGirl();
}
}
button 6150 {
on (release) {
_root.replaceName = 'aa0';
skillSelect._x = 483.35;
skillSelect._y = 256.75;
skillSelect._rotation = 180;
_parent.replaceGirl();
}
}
button 6151 {
on (release) {
_root.replaceName = 'as0';
skillSelect._x = 425.35;
skillSelect._y = 90.5;
skillSelect._rotation = 0;
_parent.replaceGirl();
}
}
button 6152 {
on (release) {
_root.replaceName = 'ab0';
skillSelect._x = 425.3;
skillSelect._y = 51.15;
skillSelect._rotation = -90;
_parent.replaceGirl();
}
}
button 6153 {
on (release) {
_root.replaceName = 'ah0';
_root.level = 1;
skillSelect._x = 489.45;
skillSelect._y = 336.5;
skillSelect._rotation = 0;
_parent.replaceGirl();
}
}
button 6154 {
on (release) {
_root.replaceName = 'ah0';
_root.level = 3;
skillSelect._x = 518.7000000000001;
skillSelect._y = 336.5;
skillSelect._rotation = 0;
_parent.replaceGirl();
}
}
button 6155 {
on (release) {
_root.replaceName = 'ah0';
_root.level = 8;
skillSelect._x = 548.1;
skillSelect._y = 336.5;
skillSelect._rotation = 0;
_parent.replaceGirl();
}
}
button 6156 {
on (release) {
_root.replaceName = 'ah0';
_root.level = 10;
skillSelect._x = 577.4500000000001;
skillSelect._y = 336.5;
skillSelect._rotation = 0;
_parent.replaceGirl();
}
}
button 6157 {
on (release) {
_root.replaceName = 'a0';
skillSelect._x = 319.75;
skillSelect._y = 51.15;
skillSelect._rotation = -90;
_parent.replaceGirl();
}
}
movieClip 6168 {
frame 1 {
gotoAndStop(2);
}
frame 14 {
gotoAndStop(2);
}
frame 24 {
gotoAndStop(2);
}
}
movieClip 6172 {
frame 1 {
stop();
}
}
button 6174 {
on (release) {
_root.replaceName = 'ai0';
_root.level = 1;
skillSelect._x = 489.45;
skillSelect._y = 385.85;
skillSelect._rotation = 0;
_parent.replaceGirl();
}
}
button 6175 {
on (release) {
_root.replaceName = 'ai0';
_root.level = 3;
skillSelect._x = 518.7000000000001;
skillSelect._y = 385.85;
skillSelect._rotation = 0;
_parent.replaceGirl();
}
}
button 6176 {
on (release) {
_root.replaceName = 'ai0';
_root.level = 8;
skillSelect._x = 548.1;
skillSelect._y = 385.85;
skillSelect._rotation = 0;
_parent.replaceGirl();
}
}
button 6177 {
on (release) {
_root.replaceName = 'ai0';
_root.level = 10;
skillSelect._x = 577.4500000000001;
skillSelect._y = 385.85;
skillSelect._rotation = 0;
_parent.replaceGirl();
}
}
button 6178 {
on (release) {
_root.playSpeed = 50;
speedSelect._x = 31.85;
speedSelect._y = 407.95;
}
}
button 6183 {
on (release) {
_root.playSpeed = 0;
speedSelect._x = 17.45;
speedSelect._y = 379.85;
}
}
button 6187 {
on (release) {
_root.playSpeed = 25;
speedSelect._x = 3.05;
speedSelect._y = 407.95;
}
}
button 6191 {
on (release) {
_root.playSpeed = 100;
speedSelect._x = 60.45;
speedSelect._y = 407.95;
}
}
movieClip 6192 {
}
movieClip 6199 {
}
movieClip 6201 {
}
button 6202 {
on (release) {
_root.playSpeed = 0;
cumSelect.gotoAndPlay('yes');
_root.girl.sperm.gotoAndPlay(2);
_root.girl.sperm.play();
_root.girl.ejac = 100;
_root.girl.end = true;
speedSelect._visible = false;
speedSelect._x = 17.45;
speedSelect._y = 379.85;
}
}
button 6207 {
on (release) {
++_root.backgroundSelected;
if (_root.backgroundSelected > _root.backgroundList.length - 1) {
_root.backgroundSelected = 0;
}
_root.galleryBack.BG.gotoAndStop(_root.backgroundList[_root.backgroundSelected]);
_root.galleryBack.BG.door.gotoAndStop('closed');
}
}
movieClip 6209 {
}
movieClip 6211 {
frame 1 {
gotoAndStop('no');
}
frame 30 {
_parent.speedSelect._visible = true;
gotoAndStop('no');
}
}
movieClip 6212 {
instance of movieClip 5592 {
onClipEvent (release) {
_root.character = 1;
_parent._parent.replaceGirl();
}
}
instance of movieClip 5568 {
onClipEvent (release) {
_root.character = 2;
_parent._parent.replaceGirl();
}
}
instance of movieClip 5572 {
onClipEvent (release) {
_root.character = 3;
_parent._parent.replaceGirl();
}
}
instance of movieClip 5576 {
onClipEvent (release) {
_root.character = 4;
_parent._parent.replaceGirl();
}
}
instance of movieClip 5580 {
onClipEvent (release) {
_root.character = 5;
_parent._parent.replaceGirl();
}
}
instance of movieClip 5584 {
onClipEvent (release) {
_root.character = 6;
_parent._parent.replaceGirl();
}
}
instance of movieClip 5588 {
onClipEvent (release) {
_root.character = 7;
_parent._parent.replaceGirl();
}
}
instance of movieClip 5592 {
onClipEvent (release) {
_root.costume = 1;
_root.checkCostume();
_parent._parent.replaceGirl();
}
}
instance of movieClip 5568 {
onClipEvent (release) {
_root.costume = 2;
_root.checkCostume();
_parent._parent.replaceGirl();
}
}
instance of movieClip 5572 {
onClipEvent (release) {
_root.costume = 3;
_root.checkCostume();
_parent._parent.replaceGirl();
}
}
instance of movieClip 5576 {
onClipEvent (release) {
_root.costume = 4;
_root.checkCostume();
_parent._parent.replaceGirl();
}
}
instance of movieClip 5580 {
onClipEvent (release) {
_root.costume = 5;
_root.checkCostume();
_parent._parent.replaceGirl();
}
}
instance of movieClip 5584 {
onClipEvent (release) {
_root.costume = 6;
_root.checkCostume();
_parent._parent.replaceGirl();
}
}
instance of movieClip 5588 {
onClipEvent (release) {
_root.costume = 7;
_root.checkCostume();
_parent._parent.replaceGirl();
}
}
instance of movieClip 5596 {
onClipEvent (release) {
_root.costume = 25;
_root.checkCostume();
_parent._parent.replaceGirl();
}
}
instance of movieClip 5600 {
onClipEvent (release) {
_root.costume = 26;
_root.checkCostume();
_parent._parent.replaceGirl();
}
}
instance of movieClip 5604 {
onClipEvent (release) {
_root.costume = 23;
_root.checkCostume();
_parent._parent.replaceGirl();
}
}
instance of movieClip 5608 {
onClipEvent (release) {
_root.costume = 27;
_root.checkCostume();
_parent._parent.replaceGirl();
}
}
instance of movieClip 5612 {
onClipEvent (release) {
_root.costume = 28;
_root.checkCostume();
_parent._parent.replaceGirl();
}
}
instance of movieClip 5620 {
onClipEvent (release) {
_root.costume = 29;
_root.checkCostume();
_parent._parent.replaceGirl();
}
}
instance of movieClip 5616 {
onClipEvent (release) {
_root.costume = 24;
_root.checkCostume();
_parent._parent.replaceGirl();
}
}
instance of movieClip 6192 {
onClipEvent (load) {
this._visible = false;
_root.playSpeedCurrent = 0;
}
onClipEvent (enterFrame) {
if (_root.playSpeedCurrent != _root.playSpeed) {
if (_root.playSpeedCurrent < _root.playSpeed) {
++_root.playSpeedCurrent;
} else {
if (_root.playSpeedCurrent > _root.playSpeed) {
--_root.playSpeedCurrent;
}
}
}
_root.girl.pleasure_meter.intensity = _root.playSpeedCurrent;
_root.girl.ejac = 0;
_root.girl.satisfaction = 0;
}
}
}
frame 6 {
gotoAndStop(5);
}