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 53 {
frame 20 {
stop();
}
}
movieClip 54 {
frame 20 {
stop();
}
}
movieClip 55 {
frame 14 {
gotoAndPlay(loop);
}
}
movieClip 56 {
frame 1 {
stop();
}
}
movieClip 289 {
frame 231 {
stop();
}
}
// unknown tag 88 length 68
movieClip 295 {
frame 1 {
stop();
}
}
movieClip 296 {
frame 1 {
_visible = false;
}
}
movieClip 297 {
}
movieClip 298 610b3745 {
frame 1 {
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 = _root._score - _root.session_start_score;
_root.cashCurrent = 0;
cashEarned.text = '';
_root.session_rep = _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(_root.session_start_rep + 2);
reputation.orb.gotoAndStop(_root.session_start_rep + 2);
_root.statTimeMinNeeded = Math.floor(_root.StatsSessionPlayTime / 60);
_root.statTimeSecNeeded = _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.floor(_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.floor(_root.cashCurrent);
}
if (_root.cashCurrent > _root.session_cash) {
_root.cashCurrent -= 1;
}
cashEarned.text = '- ' + _root.cashCurrent;
}
}
}
if (_root.repDiff < _root.session_rep) {
_root.repDiff += 1;
repEarned.text = '+ ' + _root.repDiff;
reputation.gotoAndStop(_root.repDiff + _root.session_start_rep + 2);
reputation.orb.gotoAndStop(_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.round(_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.round(_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.round(_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;
}
}
}
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 {
cashEarned.text = 0;
repEarned.text = 0;
statTimeMin.text = 0;
statTimeSec.text = 0;
statServed.text = 0;
statExcellent.text = 0;
statMissed.text = 0;
}
instance of movieClip 297 {
onClipEvent (enterFrame) {
_parent.tick();
}
}
frame 62 {
if (_root.done == true) {
gotoAndPlay('end');
} else {
gotoAndPlay('loop');
}
}
frame 75 {
stop();
}
}
movieClip 301 {
}
// unknown tag 88 length 63
movieClip 304 {
}
movieClip 306 {
}
movieClip 307 {
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 308 time_bonus {
frame 18 {
stop();
}
}
movieClip 320 {
frame 1 {
gotoAndStop(_parent._color);
}
}
movieClip 335 {
frame 1 {
gotoAndStop(_parent._color);
}
}
movieClip 338 {
}
movieClip 343 {
frame 1 {
gotoAndStop(_root.costume + 1);
}
}
movieClip 349 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 358 {
frame 1 {
gotoAndStop(_root.costume + 1);
}
}
movieClip 364 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 373 {
frame 1 {
if (_root.character == 5 or _root.character == 6) {
gotoAndStop(_root.costume + 31);
} else {
gotoAndStop(_root.costume + 1);
}
}
}
movieClip 386 {
frame 1 {
if (_root.character == 5 or _root.character == 6) {
gotoAndStop(_root.character + 31);
} else {
gotoAndStop(_root.character + 1);
}
}
}
movieClip 393 {
frame 1 {
gotoAndStop(_root.costume + 1);
}
}
movieClip 400 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 407 {
frame 1 {
gotoAndStop(_root.costume + 1);
}
}
movieClip 413 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 425 {
frame 1 {
if (_root.character == 5 or _root.character == 6) {
gotoAndStop(_root.costume + 31);
} else {
gotoAndStop(_root.costume + 1);
}
}
}
movieClip 439 {
frame 1 {
if (_root.character == 5 or _root.character == 6) {
gotoAndStop(_root.character + 31);
} else {
gotoAndStop(_root.character + 1);
}
}
}
movieClip 453 {
frame 1 {
if (_root.character == 5 or _root.character == 6) {
gotoAndStop(_root.costume + 31);
} else {
gotoAndStop(_root.costume + 1);
}
}
}
movieClip 508 {
frame 1 {
if (_root.character == 5 or _root.character == 6) {
gotoAndStop(_root.character + 31);
} else {
gotoAndStop(_root.character + 1);
}
}
}
movieClip 516 {
frame 1 {
gotoAndStop(_root.costume + 1);
}
}
movieClip 544 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 547 {
frame 1 {
if (_root.strippedTop != true) {
gotoAndStop(_root.costume + 1);
} else {
gotoAndStop(_root.costume + 31);
}
}
}
movieClip 553 {
frame 1 {
gotoAndStop(_root.costume + 1);
}
}
movieClip 560 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 574 {
frame 1 {
if (_root.strippedBot != true) {
gotoAndStop(_root.costume + 1);
} else {
gotoAndStop(_root.costume + 31);
}
}
}
movieClip 578 {
frame 1 {
gotoAndStop(_root.costume + 1);
}
}
movieClip 585 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 603 {
frame 1 {
if (_root.strippedTop != true) {
gotoAndStop(_root.costume + 1);
} else {
gotoAndStop(_root.costume + 31);
}
}
}
movieClip 608 {
frame 1 {
gotoAndStop(_root.costume + 1);
}
}
movieClip 636 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 643 {
frame 1 {
gotoAndStop(_root.costume + 1);
}
}
movieClip 650 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 655 {
frame 1 {
gotoAndStop(_root.costume + 1);
}
}
movieClip 662 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 671 {
frame 1 {
gotoAndStop(_root.costume + 1);
}
}
movieClip 699 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 704 {
frame 1 {
if (_root.strippedTop != true) {
gotoAndStop(_root.costume + 1);
} else {
gotoAndStop(_root.costume + 31);
}
}
}
movieClip 720 {
frame 1 {
if (_root.strippedTop != true) {
gotoAndStop(_root.costume + 1);
} else {
gotoAndStop(_root.costume + 31);
}
}
}
movieClip 730 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 733 {
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 742 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 770 {
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 776 {
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 777 {
frame 1 {
gotoAndPlay(random(100) + 1);
}
frame 105 {
gotoAndStop(1);
}
}
movieClip 784 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 788 {
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 796 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 798 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 800 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 802 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 804 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 811 {
frame 1 {
gotoAndStop(_root.costume + 1);
}
}
movieClip 818 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 820 {
frame 1 {
_alpha = 0;
}
}
movieClip 824 {
}
movieClip 826 {
frame 1 {
function reset() {
end = false;
grade_0 = 420;
grade_y = 360;
switch (_root.level) {
case 1:
if (_root.skillB1 == true && _root.skillB2 == true && _root.skillB3 == true && _root.skillB4 == true && _root.skillB5 == true) {
grade_increase = 25;
} else {
if (_root.skillB1 == true && _root.skillB2 == true && _root.skillB3 == true && _root.skillB4 == true && _root.skillB5 == false) {
grade_increase = 22;
} else {
if (_root.skillB1 == true && _root.skillB2 == true && _root.skillB3 == true && _root.skillB4 == false && _root.skillB5 == false) {
grade_increase = 20;
} else {
if (_root.skillB1 == true && _root.skillB2 == true && _root.skillB3 == false && _root.skillB4 == false && _root.skillB5 == false) {
grade_increase = 17;
} else {
grade_increase = 15;
}
}
}
}
if (_root.skillLib3 == true && _root.skillLib2 == true && _root.skillLib1 == true) {
grade_decrease = -3;
} else {
if (_root.skillLib3 == false && _root.skillLib2 == true && _root.skillLib1 == true) {
grade_decrease = -1;
} else {
if (_root.skillLib3 == false && _root.skillLib2 == false && _root.skillLib1 == true) {
grade_decrease = 1;
} else {
grade_decrease = 3;
}
}
}
break;
case 3:
if (_root.skillS1 == true && _root.skillS2 == true && _root.skillS3 == true && _root.skillS4 == true && _root.skillS5 == true) {
grade_increase = 35;
} else {
if (_root.skillS1 == true && _root.skillS2 == true && _root.skillS3 == true && _root.skillS4 == true && _root.skillS5 == false) {
grade_increase = 31;
} else {
if (_root.skillS1 == true && _root.skillS2 == true && _root.skillS3 == true && _root.skillS4 == false && _root.skillS5 == false) {
grade_increase = 27;
} else {
if (_root.skillS1 == true && _root.skillS2 == true && _root.skillS3 == false && _root.skillS4 == false && _root.skillS5 == false) {
grade_increase = 23;
} else {
grade_increase = 20;
}
}
}
}
if (_root.skillLib3 == true && _root.skillLib2 == true && _root.skillLib1 == true) {
grade_decrease = -3;
} else {
if (_root.skillLib3 == false && _root.skillLib2 == true && _root.skillLib1 == true) {
grade_decrease = -1;
} else {
if (_root.skillLib3 == false && _root.skillLib2 == false && _root.skillLib1 == true) {
grade_decrease = 1;
} else {
grade_decrease = 3;
}
}
}
break;
case 8:
if (_root.skillF1 == true && _root.skillF2 == true && _root.skillF3 == true && _root.skillF4 == true) {
grade_increase = 45;
} else {
if (_root.skillF1 == true && _root.skillF2 == true && _root.skillF3 == true && _root.skillF4 == false) {
grade_increase = 38;
} else {
if (_root.skillF1 == true && _root.skillF2 == true && _root.skillF3 == false && _root.skillF4 == false) {
grade_increase = 32;
} else {
grade_increase = 25;
}
}
}
if (_root.skillLib3 == true && _root.skillLib2 == true && _root.skillLib1 == true) {
grade_decrease = -3;
} else {
if (_root.skillLib3 == false && _root.skillLib2 == true && _root.skillLib1 == true) {
grade_decrease = -1;
} else {
if (_root.skillLib3 == false && _root.skillLib2 == false && _root.skillLib1 == true) {
grade_decrease = 1;
} else {
grade_decrease = 3;
}
}
}
break;
case 10:
if (_root.skillA1 == true && _root.skillA2 == true && _root.skillA3 == true && _root.skillA4 == true) {
grade_increase = 55;
} else {
if (_root.skillA1 == true && _root.skillA2 == true && _root.skillA3 == true && _root.skillA4 == false) {
grade_increase = 48;
} else {
if (_root.skillA1 == true && _root.skillA2 == true && _root.skillA3 == false && _root.skillA4 == false) {
grade_increase = 42;
} else {
grade_increase = 35;
}
}
}
if (_root.skillLib3 == true && _root.skillLib2 == true && _root.skillLib1 == true) {
grade_decrease = -3;
} else {
if (_root.skillLib3 == false && _root.skillLib2 == true && _root.skillLib1 == true) {
grade_decrease = -1;
} else {
if (_root.skillLib3 == false && _root.skillLib2 == false && _root.skillLib1 == true) {
grade_decrease = 1;
} else {
grade_decrease = 3;
}
}
}
}
grade_decreaseSet = grade_decrease;
grade_up_start = 420;
grade_max_down = 420;
grade._y = grade_0;
fade = 100;
if (_root.skillFin1 == true && _root.skillFin2 == true && _root.skillFin3 == true) {
powerMod = 1.75;
powerHoldMod = 2;
} else {
if (_root.skillFin1 == true && _root.skillFin2 == true && _root.skillFin3 == false) {
powerMod = 1.5;
powerHoldMod = 3;
} else {
if (_root.skillFin1 == true && _root.skillFin2 == false && _root.skillFin3 == false) {
powerMod = 1.25;
powerHoldMod = 4;
} else {
powerMod = 1;
powerHoldMod = 5;
}
}
}
if (_root.skillLib1 == true && _root.skillLib2 == true && _root.skillLib3 == true) {
_deltaMod = 4;
} else {
if (_root.skillLib1 == true && _root.skillLib2 == true && _root.skillLib3 == false) {
_deltaMod = 3;
} else {
if (_root.skillLib1 == true && _root.skillLib2 == false && _root.skillLib3 == false) {
_deltaMod = 2;
} else {
_deltaMod = 1;
}
}
}
}
function cum() {
switch (_root.level) {
case 1:
break;
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);
}
}
break;
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);
}
}
break;
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);
}
}
}
}
function endCheck() {
if (end == false) {
if (grade_y <= 0) {
grade_y = 0;
_parent.sperm.gotoAndPlay(2);
_parent.sperm.play();
_parent.btn._visible = false;
_parent.eye.gotoAndStop(100);
_parent._parent.add_points(_parent._index, _parent._xmode);
cum();
end = true;
return undefined;
}
}
}
function grade_up() {
if (end == false) {
if (grade_y <= 0) {
grade_y = 0;
_parent.sperm.gotoAndPlay(2);
_parent.sperm.play();
_parent.btn._visible = false;
_parent.eye.gotoAndStop(100);
_parent._parent.add_points(_parent._index, _parent._xmode);
cum();
end = true;
return undefined;
}
grade_up_start = grade_y;
grade_y -= grade_increase * powerMod;
}
}
function hold_up() {
if (end == false) {
if (grade_y <= 0) {
grade_y = 0;
_parent.sperm.gotoAndPlay(2);
_parent.sperm.play();
_parent.btn._visible = false;
_parent.eye.gotoAndStop(100);
_parent._parent.add_points(_parent._index, _parent._xmode);
cum();
end = true;
return undefined;
}
grade_up_start = grade_y;
grade_y -= grade_increase / powerHoldMod;
}
}
var grade_0;
var grade_y;
var grade_increase;
var grade_decrease;
var grade_up_start;
var grade_max_down;
onEnterFrame = function () {
if (_root.level_pause == false) {
if (_visible == false) {
return undefined;
}
ratio = (420 - grade_y) / 420;
switch (_root.level) {
case 1:
_parent._delta = 1 * _deltaMod + 10 * ratio;
break;
case 3:
_parent._delta = 1 * _deltaMod + 15 * ratio;
if (end == false) {
_root.energyS -= 0.04;
}
break;
case 8:
_parent._delta = 1 * _deltaMod + 15 * ratio;
if (end == false) {
_root.energyF -= 0.04;
}
break;
case 10:
_parent._delta = 1 * _deltaMod + 15 * ratio;
if (end == false) {
_root.energyA -= 0.04;
}
}
grade_decrease = grade_decreaseSet - (2.5 + 3 * (ratio * -1));
grade._y = grade_y;
if (end == false) {
if (grade_y < 420) {
grade_y += grade_decrease;
} else {
grade_y = 420;
_parent._remove();
_visible = false;
}
} else {
fade -= 5;
_alpha = fade;
}
endCheck();
}
};
reset();
}
}
movieClip 828 {
frame 1 {
_alpha = 0;
}
}
movieClip 844 {
}
movieClip 869 {
frame 1 {
stop();
}
frame 38 {
_parent.leg1.sperm.gotoAndPlay(2);
}
frame 57 {
stop();
_parent._remove();
}
}
movieClip 870 aft3BACKUP {
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 881 {
frame 1 {
if (_root.character == 5 or _root.character == 6) {
gotoAndStop(_root.costume + 31);
} else {
gotoAndStop(_root.costume + 1);
}
}
}
movieClip 895 {
frame 1 {
if (_root.character == 5 or _root.character == 6) {
gotoAndStop(_root.character + 31);
} else {
gotoAndStop(_root.character + 1);
}
}
}
movieClip 902 {
frame 1 {
gotoAndStop(_root.costume + 1);
}
}
movieClip 909 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 918 {
frame 1 {
gotoAndStop(_root.costume + 1);
}
}
movieClip 924 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 929 {
frame 1 {
if (_root.character == 5 or _root.character == 6) {
gotoAndStop(_root.costume + 31);
} else {
gotoAndStop(_root.costume + 1);
}
}
}
movieClip 935 {
frame 1 {
if (_root.character == 5 or _root.character == 6) {
gotoAndStop(_root.character + 31);
} else {
gotoAndStop(_root.character + 1);
}
}
}
movieClip 951 {
frame 1 {
if (_root.strippedBot != true) {
gotoAndStop(_root.costume + 1);
} else {
gotoAndStop(_root.costume + 31);
}
}
}
movieClip 979 {
frame 1 {
if (_root.hideNipples != true) {
gotoAndStop(_root.character + 1);
} else {
gotoAndStop('hide');
}
}
}
movieClip 1007 {
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 {
gotoAndStop(_root.costume + 1);
}
}
movieClip 1017 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 1024 {
frame 1 {
gotoAndStop(_root.costume + 1);
}
}
movieClip 1052 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 1059 {
frame 1 {
gotoAndStop(_root.costume + 1);
}
}
movieClip 1066 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 1080 {
frame 1 {
if (_root.character == 5 or _root.character == 6) {
gotoAndStop(_root.costume + 31);
} else {
gotoAndStop(_root.costume + 1);
}
}
}
movieClip 1136 {
frame 1 {
if (_root.character == 5 or _root.character == 6) {
gotoAndStop(_root.character + 31);
} else {
gotoAndStop(_root.character + 1);
}
}
}
movieClip 1143 {
frame 1 {
gotoAndStop(_root.costume + 1);
}
}
movieClip 1149 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 1160 {
frame 1 {
if (_root.character == 5 or _root.character == 6) {
gotoAndStop(_root.costume + 31);
} else {
gotoAndStop(_root.costume + 1);
}
}
}
movieClip 1216 {
frame 1 {
if (_root.character == 5 or _root.character == 6) {
gotoAndStop(_root.character + 31);
} else {
gotoAndStop(_root.character + 1);
}
}
}
movieClip 1225 {
frame 1 {
gotoAndStop(_root.costume + 1);
}
}
movieClip 1232 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 1246 {
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 1247 {
frame 1 {
gotoAndPlay(random(100) + 1);
}
frame 105 {
gotoAndStop(1);
}
}
movieClip 1264 {
frame 1 {
if (_root.strippedTop != true) {
gotoAndStop(_root.costume + 1);
} else {
gotoAndStop(_root.costume + 31);
}
}
}
movieClip 1265 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 1275 {
frame 1 {
if (_root.character == 5 or _root.character == 6) {
gotoAndStop(_root.costume + 31);
} else {
gotoAndStop(_root.costume + 1);
}
}
}
movieClip 1288 {
frame 1 {
if (_root.character == 5 or _root.character == 6) {
gotoAndStop(_root.character + 31);
} else {
gotoAndStop(_root.character + 1);
}
}
}
movieClip 1311 {
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 1312 {
frame 1 {
gotoAndPlay(random(100) + 1);
}
frame 105 {
gotoAndStop(1);
}
}
movieClip 1313 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 1327 {
frame 1 {
if (_root.character == 5 or _root.character == 6) {
gotoAndStop(_root.costume + 31);
} else {
gotoAndStop(_root.costume + 1);
}
}
}
movieClip 1362 {
frame 1 {
if (_root.character == 5 or _root.character == 6) {
gotoAndStop(_root.character + 31);
} else {
gotoAndStop(_root.character + 1);
}
}
}
movieClip 1375 {
frame 1 {
if (_root.character == 5 or _root.character == 6) {
gotoAndStop(_root.costume + 31);
} else {
gotoAndStop(_root.costume + 1);
}
}
}
movieClip 1409 {
frame 1 {
if (_root.character == 5 or _root.character == 6) {
gotoAndStop(_root.character + 31);
} else {
gotoAndStop(_root.character + 1);
}
}
}
movieClip 1416 {
frame 1 {
gotoAndStop(_root.costume + 1);
}
}
movieClip 1423 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 1430 {
frame 1 {
gotoAndStop(_root.costume + 1);
}
}
movieClip 1457 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 1464 {
frame 1 {
gotoAndStop(_root.costume + 1);
}
}
movieClip 1471 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 1479 {
frame 1 {
gotoAndStop(_root.costume + 1);
}
}
movieClip 1486 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 1490 {
frame 1 {
if (_root.strippedTop != true) {
gotoAndStop(_root.costume + 1);
} else {
gotoAndStop(_root.costume + 31);
}
}
}
movieClip 1506 {
frame 1 {
if (_root.strippedBot != true) {
gotoAndStop(_root.costume + 1);
} else {
gotoAndStop(_root.costume + 31);
}
}
}
movieClip 1510 {
frame 1 {
gotoAndStop(_root.costume + 1);
}
}
movieClip 1517 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 1522 {
frame 1 {
gotoAndStop(_root.costume + 1);
}
}
movieClip 1529 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 1536 {
frame 1 {
if (_root.hideNipples != true) {
gotoAndStop(_root.character + 1);
} else {
gotoAndStop('hide');
}
}
}
movieClip 1564 {
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 1571 {
frame 1 {
gotoAndStop(_root.costume + 1);
}
}
movieClip 1577 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 1588 {
frame 1 {
if (_root.character == 5 or _root.character == 6) {
gotoAndStop(_root.costume + 31);
} else {
gotoAndStop(_root.costume + 1);
}
}
}
movieClip 1644 {
frame 1 {
if (_root.character == 5 or _root.character == 6) {
gotoAndStop(_root.character + 31);
} else {
gotoAndStop(_root.character + 1);
}
}
}
movieClip 1653 {
frame 1 {
gotoAndStop(_root.costume + 1);
}
}
movieClip 1659 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 1674 {
frame 1 {
if (_root.strippedTop != true) {
gotoAndStop(_root.costume + 1);
} else {
gotoAndStop(_root.costume + 31);
}
}
}
movieClip 1684 {
frame 1 {
if (_root.strippedTop != true) {
gotoAndStop(_root.costume + 1);
} else {
gotoAndStop(_root.costume + 31);
}
}
}
movieClip 1691 {
frame 1 {
if (_root.hideNipples != true) {
gotoAndStop(_root.character + 1);
} else {
gotoAndStop('hide');
}
}
}
movieClip 1698 {
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 1708 {
frame 1 {
if (_root.strippedTop != true) {
gotoAndStop(_root.costume + 1);
} else {
gotoAndStop(_root.costume + 31);
}
}
}
movieClip 1712 {
frame 1 {
gotoAndStop(_root.costume + 1);
}
}
movieClip 1718 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 1722 {
frame 1 {
if (_root.strippedTop != true) {
gotoAndStop(_root.costume + 1);
} else {
gotoAndStop(_root.costume + 31);
}
}
}
movieClip 1729 {
frame 1 {
if (_root.strippedBot != true) {
gotoAndStop(_root.costume + 1);
} else {
gotoAndStop(_root.costume + 31);
}
}
}
movieClip 1737 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 1738 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 1747 {
frame 1 {
if (_root.character == 5 or _root.character == 6) {
gotoAndStop(_root.costume + 31);
} else {
gotoAndStop(_root.costume + 1);
}
}
}
movieClip 1781 {
frame 1 {
if (_root.character == 5 or _root.character == 6) {
gotoAndStop(_root.character + 31);
} else {
gotoAndStop(_root.character + 1);
}
}
}
movieClip 1789 {
frame 1 {
gotoAndStop(_root.costume + 1);
}
}
movieClip 1796 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 1803 {
frame 1 {
if (_root.hideNipples != true) {
gotoAndStop(_root.character + 1);
} else {
gotoAndStop('hide');
}
}
}
movieClip 1831 {
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 1838 {
frame 1 {
gotoAndStop(_root.costume + 1);
}
}
movieClip 1844 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 1848 {
frame 1 {
gotoAndStop(_root.costume + 1);
}
}
movieClip 1853 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 1861 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 1862 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 1876 {
frame 1 {
if (_root.character == 5 or _root.character == 6) {
gotoAndStop(_root.costume + 31);
} else {
gotoAndStop(_root.costume + 1);
}
}
}
movieClip 1910 {
frame 1 {
if (_root.character == 5 or _root.character == 6) {
gotoAndStop(_root.character + 31);
} else {
gotoAndStop(_root.character + 1);
}
}
}
movieClip 1923 {
frame 1 {
if (_root.character == 5 or _root.character == 6) {
gotoAndStop(_root.costume + 31);
} else {
gotoAndStop(_root.costume + 1);
}
}
}
movieClip 1957 {
frame 1 {
if (_root.character == 5 or _root.character == 6) {
gotoAndStop(_root.character + 31);
} else {
gotoAndStop(_root.character + 1);
}
}
}
movieClip 1965 {
frame 1 {
gotoAndStop(_root.costume + 1);
}
}
movieClip 1972 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 1979 {
frame 1 {
gotoAndStop(_root.costume + 1);
}
}
movieClip 2007 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 2009 {
}
movieClip 2018 {
frame 1 {
if (_root.character == 5 or _root.character == 6) {
gotoAndStop(_root.costume + 31);
} else {
gotoAndStop(_root.costume + 1);
}
}
}
movieClip 2053 {
frame 1 {
if (_root.character == 5 or _root.character == 6) {
gotoAndStop(_root.character + 31);
} else {
gotoAndStop(_root.character + 1);
}
}
}
movieClip 2062 {
frame 1 {
if (_root.character == 5 or _root.character == 6) {
gotoAndStop(_root.costume + 31);
} else {
gotoAndStop(_root.costume + 1);
}
}
}
movieClip 2075 {
frame 1 {
if (_root.character == 5 or _root.character == 6) {
gotoAndStop(_root.character + 31);
} else {
gotoAndStop(_root.character + 1);
}
}
}
movieClip 2082 {
frame 1 {
gotoAndStop(_root.costume + 1);
}
}
movieClip 2107 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 2109 {
frame 1 {
_alpha = 0;
}
}
movieClip 2149 {
frame 1 {
gotoAndStop(2);
}
frame 2 {
stop();
}
frame 32 {
stop();
_parent._remove();
}
}
movieClip 2150 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 2152 {
}
movieClip 2159 {
frame 1 {
gotoAndStop(_root.costume + 1);
}
}
movieClip 2166 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 2177 {
frame 1 {
if (_root.character == 5 or _root.character == 6) {
gotoAndStop(_root.costume + 31);
} else {
gotoAndStop(_root.costume + 1);
}
}
}
movieClip 2210 {
frame 1 {
if (_root.character == 5 or _root.character == 6) {
gotoAndStop(_root.character + 31);
} else {
gotoAndStop(_root.character + 1);
}
}
}
movieClip 2212 {
}
movieClip 2213 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 2217 {
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 2222 {
frame 1 {
gotoAndStop(_root.costume + 1);
}
}
movieClip 2230 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 2235 {
frame 1 {
gotoAndStop(_root.costume + 1);
}
}
movieClip 2241 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 2248 {
frame 1 {
gotoAndStop(_root.costume + 1);
}
}
movieClip 2271 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 2276 {
frame 1 {
gotoAndStop(_root.costume + 1);
}
}
movieClip 2282 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 2286 {
frame 1 {
gotoAndStop(_root.costume + 1);
}
}
movieClip 2293 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 2297 {
frame 1 {
if (_root.strippedTop != true) {
gotoAndStop(_root.costume + 1);
} else {
gotoAndStop(_root.costume + 31);
}
}
}
movieClip 2325 {
frame 1 {
if (_root.hideNipples != true) {
gotoAndStop(_root.character + 1);
} else {
gotoAndStop('hide');
}
}
}
movieClip 2331 {
frame 1 {
gotoAndStop(_root.costume + 1);
}
}
movieClip 2338 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 2345 {
frame 1 {
if (_root.strippedBot != true) {
gotoAndStop(_root.costume + 1);
} else {
gotoAndStop(_root.costume + 31);
}
}
}
movieClip 2355 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 2362 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 2372 {
frame 1 {
if (_root.character == 5 or _root.character == 6) {
gotoAndStop(_root.costume + 31);
} else {
gotoAndStop(_root.costume + 1);
}
}
}
movieClip 2428 {
frame 1 {
if (_root.character == 5 or _root.character == 6) {
gotoAndStop(_root.character + 31);
} else {
gotoAndStop(_root.character + 1);
}
}
}
movieClip 2432 {
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 2439 {
frame 1 {
gotoAndStop(_root.costume + 1);
}
}
movieClip 2445 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 2446 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 2447 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 2453 {
frame 1 {
gotoAndStop(_root.costume + 1);
}
}
movieClip 2460 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 2471 {
frame 1 {
if (_root.character == 5 or _root.character == 6) {
gotoAndStop(_root.costume + 31);
} else {
gotoAndStop(_root.costume + 1);
}
}
}
movieClip 2505 {
frame 1 {
if (_root.character == 5 or _root.character == 6) {
gotoAndStop(_root.character + 31);
} else {
gotoAndStop(_root.character + 1);
}
}
}
movieClip 2518 {
frame 1 {
if (_root.character == 5 or _root.character == 6) {
gotoAndStop(_root.costume + 31);
} else {
gotoAndStop(_root.costume + 1);
}
}
}
movieClip 2551 {
frame 1 {
if (_root.character == 5 or _root.character == 6) {
gotoAndStop(_root.character + 31);
} else {
gotoAndStop(_root.character + 1);
}
}
}
movieClip 2558 {
frame 1 {
gotoAndStop(_root.costume + 1);
}
}
movieClip 2565 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 2566 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 2575 {
frame 1 {
if (_root.character == 5 or _root.character == 6) {
gotoAndStop(_root.costume + 31);
} else {
gotoAndStop(_root.costume + 1);
}
}
}
movieClip 2588 {
frame 1 {
if (_root.character == 5 or _root.character == 6) {
gotoAndStop(_root.character + 31);
} else {
gotoAndStop(_root.character + 1);
}
}
}
movieClip 2589 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 2598 {
frame 1 {
if (_root.character == 5 or _root.character == 6) {
gotoAndStop(_root.costume + 31);
} else {
gotoAndStop(_root.costume + 1);
}
}
}
movieClip 2611 {
frame 1 {
if (_root.character == 5 or _root.character == 6) {
gotoAndStop(_root.character + 31);
} else {
gotoAndStop(_root.character + 1);
}
}
}
movieClip 2612 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 2613 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 2620 {
frame 1 {
gotoAndStop(_root.costume + 1);
}
}
movieClip 2648 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 2649 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 2657 {
frame 1 {
if (_root.character == 5 or _root.character == 6) {
gotoAndStop(_root.costume + 31);
} else {
gotoAndStop(_root.costume + 1);
}
}
}
movieClip 2708 {
frame 1 {
if (_root.character == 5 or _root.character == 6) {
gotoAndStop(_root.character + 31);
} else {
gotoAndStop(_root.character + 1);
}
}
}
movieClip 2709 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 2710 {
frame 1 {
_alpha = 0;
}
}
movieClip 2734 {
frame 1 {
gotoAndStop(2);
}
frame 2 {
stop();
}
frame 29 {
stop();
_parent._remove();
}
}
movieClip 2735 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 2746 {
frame 1 {
if (_root.character == 5 or _root.character == 6) {
gotoAndStop(_root.costume + 31);
} else {
gotoAndStop(_root.costume + 1);
}
}
}
movieClip 2802 {
frame 1 {
if (_root.character == 5 or _root.character == 6) {
gotoAndStop(_root.character + 31);
} else {
gotoAndStop(_root.character + 1);
}
}
}
movieClip 2813 {
frame 1 {
if (_root.character == 5 or _root.character == 6) {
gotoAndStop(_root.costume + 31);
} else {
gotoAndStop(_root.costume + 1);
}
}
}
movieClip 2869 {
frame 1 {
if (_root.character == 5 or _root.character == 6) {
gotoAndStop(_root.character + 31);
} else {
gotoAndStop(_root.character + 1);
}
}
}
movieClip 2870 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 2871 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 2872 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 2873 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 2874 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 2875 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 2876 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 2877 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 2878 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 2885 {
frame 1 {
gotoAndStop(_root.costume + 1);
}
}
movieClip 2913 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 2922 {
frame 1 {
gotoAndStop(_root.costume + 1);
}
}
movieClip 2929 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 2937 {
frame 1 {
gotoAndStop(_root.costume + 1);
}
}
movieClip 2944 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 2952 {
frame 1 {
gotoAndStop(_root.costume + 1);
}
}
movieClip 2959 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 2972 {
frame 1 {
if (_root.strippedBot != true) {
gotoAndStop(_root.costume + 1);
} else {
gotoAndStop(_root.costume + 31);
}
}
}
movieClip 2979 {
frame 1 {
gotoAndStop(_root.costume + 1);
}
}
movieClip 2986 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 2987 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 2988 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 2989 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 2990 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 2997 {
frame 1 {
gotoAndStop(_root.costume + 1);
}
}
movieClip 3005 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 3006 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 3016 {
frame 1 {
gotoAndStop(_root.costume + 1);
}
}
movieClip 3028 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 3034 {
frame 1 {
gotoAndStop(_root.costume + 1);
}
}
movieClip 3041 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 3055 {
frame 1 {
if (_root.character == 5 or _root.character == 6) {
gotoAndStop(_root.costume + 31);
} else {
gotoAndStop(_root.costume + 1);
}
}
}
movieClip 3101 {
frame 1 {
if (_root.character == 5 or _root.character == 6) {
gotoAndStop(_root.character + 31);
} else {
gotoAndStop(_root.character + 1);
}
}
}
movieClip 3110 {
frame 1 {
gotoAndStop(_root.costume + 1);
}
}
movieClip 3138 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 3152 {
frame 1 {
if (_root.character == 5 or _root.character == 6) {
gotoAndStop(_root.costume + 31);
} else {
gotoAndStop(_root.costume + 1);
}
}
}
movieClip 3208 {
frame 1 {
if (_root.character == 5 or _root.character == 6) {
gotoAndStop(_root.character + 31);
} else {
gotoAndStop(_root.character + 1);
}
}
}
movieClip 3217 {
frame 1 {
gotoAndStop(_root.costume + 1);
}
}
movieClip 3245 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 3257 {
frame 1 {
if (_root.strippedBot != true) {
gotoAndStop(_root.costume + 1);
} else {
gotoAndStop(_root.costume + 31);
}
}
}
movieClip 3265 {
frame 1 {
gotoAndStop(_root.costume + 1);
}
}
movieClip 3272 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 3279 {
frame 1 {
gotoAndStop(_root.costume + 1);
}
}
movieClip 3286 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 3294 {
frame 1 {
gotoAndStop(_root.costume + 1);
}
}
movieClip 3301 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 3308 {
frame 1 {
gotoAndStop(_root.costume + 1);
}
}
movieClip 3315 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 3321 {
frame 1 {
gotoAndStop(_root.costume + 1);
}
}
movieClip 3328 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 3333 {
frame 1 {
gotoAndStop(_root.costume + 1);
}
}
movieClip 3340 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 3343 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 3351 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 3355 {
frame 1 {
gotoAndStop(_root.costume + 1);
}
}
movieClip 3361 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 3363 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 3374 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 3399 {
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 3405 {
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 3406 {
frame 1 {
gotoAndPlay(random(100) + 1);
}
frame 105 {
gotoAndStop(1);
}
}
movieClip 3414 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 3415 {
}
movieClip 3419 {
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 3425 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 3426 {
}
movieClip 3435 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 3448 {
frame 1 {
gotoAndStop(_parent._color);
}
}
movieClip 3462 {
frame 1 {
gotoAndStop(_parent._color);
}
}
movieClip 3475 {
frame 1 {
gotoAndStop(_parent._color);
}
}
movieClip 3478 {
}
movieClip 3487 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 3491 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 3494 {
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 3495 {
}
movieClip 3505 {
frame 1 {
if (_root.character == 5 or _root.character == 6) {
gotoAndStop(_root.costume + 31);
} else {
gotoAndStop(_root.costume + 1);
}
}
}
movieClip 3517 {
frame 1 {
if (_root.character == 5 or _root.character == 6) {
gotoAndStop(_root.character + 31);
} else {
gotoAndStop(_root.character + 1);
}
}
}
movieClip 3520 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 3523 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 3528 {
frame 1 {
gotoAndStop(_root.costume + 1);
}
}
movieClip 3534 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 3560 {
frame 1 {
if (_root.hidePussy != true) {
gotoAndStop(_root.character + 1);
} else {
gotoAndStop('hide');
}
}
}
movieClip 3574 {
frame 1 {
if (_root.strippedBot != true) {
gotoAndStop(_root.costume + 1);
} else {
gotoAndStop(_root.costume + 31);
}
}
}
movieClip 3577 {
frame 1 {
gotoAndStop(_root.costume + 1);
}
}
movieClip 3585 {
frame 1 {
if (_root.hideNipples != true) {
gotoAndStop(_root.character + 1);
} else {
gotoAndStop('hide');
}
}
}
movieClip 3613 {
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 3641 {
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 3644 {
frame 1 {
gotoAndStop(_root.costume + 1);
}
}
movieClip 3650 {
frame 1 {
if (_root.strippedTop != true) {
gotoAndStop(_root.costume + 1);
} else {
gotoAndStop(_root.costume + 31);
}
}
}
movieClip 3654 {
frame 1 {
if (_root.strippedTop != true) {
gotoAndStop(_root.costume + 1);
} else {
gotoAndStop(_root.costume + 31);
}
}
}
movieClip 3669 {
frame 1 {
if (_root.strippedTop != true) {
gotoAndStop(_root.costume + 1);
} else {
gotoAndStop(_root.costume + 31);
}
}
}
movieClip 3682 {
frame 1 {
if (_root.strippedTop != true) {
gotoAndStop(_root.costume + 1);
} else {
gotoAndStop(_root.costume + 31);
}
}
}
movieClip 3692 {
frame 1 {
if (_root.strippedTop != true) {
gotoAndStop(_root.costume + 1);
} else {
gotoAndStop(_root.costume + 31);
}
}
}
movieClip 3702 {
frame 1 {
if (_root.strippedTop != true) {
gotoAndStop(_root.costume + 1);
} else {
gotoAndStop(_root.costume + 31);
}
}
}
movieClip 3711 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 3712 {
}
movieClip 3716 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 3719 {
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 3720 {
}
movieClip 3721 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 3735 {
frame 1 {
if (_root.strippedBot != true) {
gotoAndStop(_root.costume + 1);
} else {
gotoAndStop(_root.costume + 31);
}
}
}
movieClip 3743 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 3744 {
}
movieClip 3745 {
}
movieClip 3746 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 3747 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);
}
movieClip 3749 {
frame 1 {
gotoAndStop(2);
}
}
instance of movieClip 3749 {
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 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 3762 {
frame 1 {
gotoAndStop(_parent._color);
}
}
movieClip 3776 {
frame 1 {
gotoAndStop(_parent._color);
}
}
movieClip 3790 {
frame 1 {
gotoAndStop(_parent._color);
}
}
movieClip 3803 {
frame 1 {
gotoAndStop(_parent._color);
}
}
movieClip 3817 {
frame 1 {
gotoAndStop(_parent._color);
}
}
movieClip 3838 {
frame 1 {
gotoAndStop(_parent._color);
}
}
movieClip 3846 {
frame 1 {
gotoAndStop(_parent._color);
}
}
movieClip 3848 {
frame 1 {
_alpha = 0;
}
}
movieClip 3851 {
frame 1 {
_visible = false;
}
}
movieClip 3873 {
frame 1 {
gotoAndStop(_parent._color);
}
}
movieClip 3874 d0 {
frame 1 {
btn.onPress = function () {
if (!_parent.a0) {
_parent.rainbow();
}
_parent.attach_anim(_index, _xmode, _color);
_visible = false;
onEnterFrame = null;
};
if (_root.skillAll1 == true && _root.skillAll2 == true && _root.skillAll3 == true) {
timePlus = 300;
} else {
if (_root.skillAll1 == true && _root.skillAll2 == true && _root.skillAll3 == false) {
timePlus = 200;
} else {
if (_root.skillAll1 == false && _root.skillAll2 == false && _root.skillAll3 == true) {
timePlus = 100;
} else {
timePlus = 0;
}
}
}
_xmode = 1;
}
frame 2 {
_xmode = 1;
}
frame 10 {
stop();
timer = 50 + random(100) + timePlus;
_xmode = 1;
this.onEnterFrame = function () {
if (_root.level_pause == false) {
if (_visible == false) {
return undefined;
}
if (timer > 0) {
--timer;
return undefined;
}
this.onEnterFrame = null;
gotoAndPlay(_currentframe + 1);
}
};
}
frame 11 {
_xmode = 2;
}
frame 36 {
stop();
timer = 25 + random(50) + timePlus / 2;
_xmode = 2;
this.onEnterFrame = function () {
if (_root.level_pause == false) {
if (_visible == false) {
return undefined;
}
if (timer > 0) {
--timer;
return undefined;
}
this.onEnterFrame = null;
gotoAndPlay(_currentframe + 1);
}
};
}
frame 45 {
stop();
_xmode = 4;
_parent.free_hole(_index);
_parent.add_points(_index, _xmode);
this.removeMovieClip();
}
frame 55 {
stop();
_parent.free_hole(_index);
this.removeMovieClip();
}
}
movieClip 3877 {
frame 1 {
gotoAndStop(_parent._color);
}
}
movieClip 3880 {
frame 1 {
_visible = false;
}
}
movieClip 3891 {
frame 1 {
gotoAndStop(_parent._color);
}
}
movieClip 3892 c0 {
frame 1 {
btn.onPress = function () {
if (!_parent.a0) {
_parent.rainbow();
}
_parent.attach_anim(_index, _xmode, _color);
_visible = false;
onEnterFrame = null;
};
if (_root.skillAll1 == true && _root.skillAll2 == true && _root.skillAll3 == true) {
timePlus = 300;
} else {
if (_root.skillAll1 == true && _root.skillAll2 == true && _root.skillAll3 == false) {
timePlus = 200;
} else {
if (_root.skillAll1 == false && _root.skillAll2 == false && _root.skillAll3 == true) {
timePlus = 100;
} else {
timePlus = 0;
}
}
}
_xmode = 1;
}
frame 2 {
_xmode = 1;
}
frame 11 {
stop();
timer = 50 + random(100) + timePlus;
_xmode = 1;
this.onEnterFrame = function () {
if (_root.level_pause == false) {
if (_visible == false) {
return undefined;
}
if (timer > 0) {
--timer;
return undefined;
}
this.onEnterFrame = null;
gotoAndPlay(_currentframe + 1);
}
};
}
frame 12 {
_xmode = 2;
}
frame 36 {
stop();
timer = 25 + random(50) + timePlus / 2;
_xmode = 2;
this.onEnterFrame = function () {
if (_root.level_pause == false) {
if (_visible == false) {
return undefined;
}
if (timer > 0) {
--timer;
return undefined;
}
this.onEnterFrame = null;
gotoAndPlay(_currentframe + 1);
}
};
}
frame 45 {
stop();
_xmode = 4;
_parent.free_hole(_index);
_parent.add_points(_index, _xmode);
this.removeMovieClip();
}
frame 55 {
stop();
_parent.free_hole(_index);
this.removeMovieClip();
}
}
movieClip 3900 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 3901 {
}
movieClip 3917 {
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 3918 {
frame 1 {
gotoAndPlay(random(100) + 1);
}
frame 105 {
gotoAndStop(1);
}
}
movieClip 3919 {
}
movieClip 3920 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 3927 {
frame 1 {
gotoAndStop(_root.costume + 1);
}
}
movieClip 3934 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 3935 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 3942 {
frame 1 {
gotoAndStop(_root.costume + 1);
}
}
movieClip 3950 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 3951 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 3952 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 3953 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 3954 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 3961 {
frame 1 {
gotoAndStop(_root.costume + 1);
}
}
movieClip 3968 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 3969 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 3970 {
}
movieClip 3978 {
frame 1 {
gotoAndStop(_root.character + 1);
}
}
movieClip 3979 {
}
movieClip 3980 {
}
movieClip 3981 a0 {
frame 1 {
}
}
movieClip 3984 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 3995 h0 {
frame 1 {
gotoAndStop(_color);
}
}
movieClip 3997 {
}
movieClip 3999 {
}
movieClip 4001 {
}
movieClip 4003 {
}
movieClip 4004 {
frame 1 {
stop();
}
}
movieClip 4006 {
frame 1 {
_visible = false;
}
}
movieClip 4007 points {
frame 1 {
title.gotoAndStop(_xmode);
}
frame 22 {
stop();
this.removeMovieClip();
}
}
movieClip 4009 trans_screen {
frame 1 {
var next_screen;
}
frame 10 {
stop();
_root.setScreen(next_screen);
}
frame 20 {
removeMovieClip(this);
}
}
movieClip 4011 block {
}
movieClip 4020 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
}
movieClip 4025 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
}
movieClip 4030 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
}
movieClip 4035 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
}
movieClip 4040 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
}
movieClip 4045 {
}
movieClip 4050 {
}
movieClip 4054 {
}
movieClip 4059 {
}
movieClip 4063 {
}
movieClip 4069 {
frame 1 {
if (!_root.localMap) {
stop();
} else {
gotoAndStop(_root.localMap);
}
}
}
movieClip 4078 {
}
movieClip 4088 {
frame 1 {
gotoAndStop(2);
}
frame 25 {
gotoAndStop(2);
}
}
movieClip 4097 {
}
movieClip 4110 {
}
movieClip 4122 {
frame 1 {
gotoAndStop('stop');
}
frame 36 {
gotoAndStop('stop');
}
}
movieClip 4124 {
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));
}
};
}
}
movieClip 4137 {
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 4154 {
frame 1 {
gotoAndStop(2);
}
frame 14 {
gotoAndStop(2);
}
frame 24 {
gotoAndStop(2);
}
}
movieClip 4161 {
frame 1 {
stop();
}
}
movieClip 4166 {
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);
}
}
}
}
}
frame 5 {
stop();
}
}
movieClip 4172 {
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);
}
}
}
}
}
frame 5 {
stop();
}
}
movieClip 4180 {
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);
}
}
}
}
}
frame 5 {
stop();
}
}
movieClip 4188 {
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);
}
}
}
}
}
frame 5 {
stop();
}
}
movieClip 4189 {
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);
}
}
movieClip 4203 {
frame 1 {
stop();
if (_root.BGMmute != true) {
gotoAndStop('no');
} else {
gotoAndStop('yes');
}
}
frame 2 {
stop();
}
}
movieClip 4204 {
}
button 4209 {
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 4221 {
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 4236 {
}
movieClip 4256 {
}
movieClip 4260 {
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 4256 {
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 4256 {
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 4256 {
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 4263 {
on (release) {
selectHair();
}
on (rollOver) {
rollHair();
}
on (rollOut) {
iconReset();
}
on (releaseOutside) {
iconReset();
}
}
movieClip 4268 {
frame 11 {
stop();
}
}
button 4273 {
on (release) {
selectMask();
}
on (rollOver) {
rollMask();
}
on (rollOut) {
iconReset();
}
on (releaseOutside) {
iconReset();
}
}
movieClip 4281 {
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 4268 {
}
instance lockMask of movieClip 4268 {
}
}
movieClip 4291 {
}
movieClip 4303 {
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 4268 {
}
}
movieClip 4310 {
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 4313 {
on (release) {
selectTop();
}
on (rollOver) {
rollTop();
}
on (rollOut) {
iconReset();
}
on (releaseOutside) {
iconReset();
}
}
button 4314 {
on (release) {
selectBot();
}
on (rollOver) {
rollBot();
}
on (rollOut) {
iconReset();
}
on (releaseOutside) {
iconReset();
}
}
button 4327 {
on (release) {
selectFull();
}
on (rollOver) {
rollFull();
}
on (rollOut) {
iconReset();
}
on (releaseOutside) {
iconReset();
}
}
movieClip 4331 {
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 4268 {
}
instance lockBot of movieClip 4268 {
}
instance lockFull of movieClip 4268 {
}
}
movieClip 4336 {
}
movieClip 4339 {
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 4347 {
on (release) {
_root.startup = 'map';
_root.gotoScreen('4');
}
}
movieClip 4356 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
play();
}
frame 15 {
gotoAndStop('on');
}
}
movieClip 4360 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
play();
}
frame 15 {
gotoAndStop('on');
}
}
movieClip 4364 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
play();
}
frame 15 {
gotoAndStop('on');
}
}
movieClip 4368 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
play();
}
frame 15 {
gotoAndStop('on');
}
}
movieClip 4372 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
play();
}
frame 15 {
gotoAndStop('on');
}
}
movieClip 4376 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
play();
}
frame 15 {
gotoAndStop('on');
}
}
movieClip 4380 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
play();
}
frame 15 {
gotoAndStop('on');
}
}
movieClip 4384 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
play();
}
frame 15 {
gotoAndStop('on');
}
}
movieClip 4388 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
play();
}
frame 15 {
gotoAndStop('on');
}
}
movieClip 4392 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
play();
}
frame 15 {
gotoAndStop('on');
}
}
movieClip 4396 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
play();
}
frame 15 {
gotoAndStop('on');
}
}
movieClip 4400 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
play();
}
frame 15 {
gotoAndStop('on');
}
}
movieClip 4404 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
play();
}
frame 15 {
gotoAndStop('on');
}
}
movieClip 4408 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
play();
}
frame 15 {
gotoAndStop('on');
}
}
button 4420 {
on (release) {
_parent.gotoAndPlay('lookGo');
}
}
movieClip 4429 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
play();
}
frame 15 {
gotoAndStop('on');
}
}
movieClip 4435 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
play();
}
frame 15 {
gotoAndStop('on');
}
}
movieClip 4441 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
play();
}
frame 15 {
gotoAndStop('on');
}
}
movieClip 4447 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
play();
}
frame 15 {
gotoAndStop('on');
}
}
movieClip 4453 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
play();
}
frame 15 {
gotoAndStop('on');
}
}
movieClip 4459 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
play();
}
frame 15 {
gotoAndStop('on');
}
}
movieClip 4465 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
play();
}
frame 15 {
gotoAndStop('on');
}
}
movieClip 4472 {
frame 1 {
function setNude() {
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 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 4356 {
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 4360 {
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 4364 {
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 4368 {
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 4372 {
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 4376 {
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 4380 {
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 4356 {
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 4360 {
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 4364 {
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 4368 {
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 4372 {
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 4376 {
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 4384 {
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 4388 {
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 4392 {
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 4396 {
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 4400 {
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 4404 {
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 4380 {
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 4408 {
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;
}
}
}
}
}
frame 3 {
gotoAndStop('menu');
}
instance btnCha02 of movieClip 4429 {
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 4435 {
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 4441 {
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 4447 {
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 4453 {
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 4459 {
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 4465 {
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;
}
}
}
}
}
}
movieClip 4473 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 = '[+ click & hold power]';
break;
case 'fin2':
textCost.text = _root.skillFin2Cost;
textName.text = 'Talented';
textLine1.text = 'You know what you\'re doing';
textLine2.text = '[++ click & hold power]';
break;
case 'fin3':
textCost.text = _root.skillFin3Cost;
textName.text = 'Experienced';
textLine1.text = 'And you\'re not afraid of anything';
textLine2.text = '[+++ click & hold power]';
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 = 'Males stick around a bit longer';
textLine2.text = 'And pay 15% more for your services';
break;
case 'all2':
textCost.text = _root.skillAll2Cost;
textName.text = '\'\'How you doin?\'\'';
textLine1.text = 'Males stay erect for longer';
textLine2.text = 'And pay 30% more for your services';
break;
case 'all3':
textCost.text = _root.skillAll3Cost;
textName.text = '\'\'AYO BB\'\'';
textLine1.text = 'Males stay erect for even longer';
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 & sex speed]';
break;
case 'lib2':
textCost.text = _root.skillLib2Cost;
textName.text = 'Naughty';
textLine1.text = 'Your sex-drive is taking over';
textLine2.text = '[++ momentum & sex speed]';
break;
case 'lib3':
textCost.text = _root.skillLib3Cost;
textName.text = 'Deviant';
textLine1.text = 'My hips are moving on thier own!';
textLine2.text = '[+++ momentum & sex speed]';
}
}
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 4221 {
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 4221 {
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 4221 {
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 4221 {
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 4221 {
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 4221 {
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 4221 {
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 4221 {
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 4221 {
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 4221 {
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 4221 {
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 4221 {
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 4221 {
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 4221 {
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 4221 {
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 4221 {
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 4221 {
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 4221 {
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 4221 {
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 4221 {
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 4221 {
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 4221 {
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 4221 {
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 4221 {
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 4221 {
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 4221 {
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 4221 {
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 4221 {
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 4221 {
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 4221 {
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 4204 {
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 4204 {
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 4204 {
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 4204 {
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 4474 {
}
movieClip 4485 {
}
movieClip 4488 {
frame 1 {
stop();
}
}
movieClip 4498 {
}
movieClip 4508 {
}
movieClip 4511 {
frame 1 {
stop();
}
}
button 4514 {
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 4515 {
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 4516 {
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 4526 {
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 4530 {
frame 1 {
stop();
}
frame 2 {
stop();
}
}
movieClip 4539 {
frame 1 {
stop();
}
}
movieClip 4542 {
frame 1 {
stop();
}
}
movieClip 4545 {
frame 1 {
stop();
}
}
movieClip 4548 {
frame 1 {
stop();
}
}
movieClip 4552 {
frame 1 {
stop();
}
frame 2 {
stop();
}
}
movieClip 4574 {
}
movieClip 4577 {
frame 1 {
stop();
}
frame 2 {
stop();
}
}
movieClip 4578 {
}
movieClip 4581 {
frame 1 {
stop();
}
}
movieClip 4584 {
frame 1 {
stop();
}
}
movieClip 4588 {
frame 1 {
stop();
}
}
movieClip 4591 {
frame 1 {
stop();
}
}
movieClip 4594 {
frame 1 {
stop();
}
}
movieClip 4600 {
}
movieClip 4631 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
}
movieClip 4632 {
frame 1 {
gotoAndStop('gone');
_root.mapTooltipShowing = false;
}
frame 2 {
_root.mapTooltipShowing = false;
}
frame 7 {
stop();
}
frame 13 {
gotoAndStop('gone');
_root.mapTooltipShowing = false;
}
}
movieClip 4644 {
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 4649 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
play();
}
frame 15 {
gotoAndStop('on');
}
}
movieClip 4654 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
play();
}
frame 15 {
gotoAndStop('on');
}
}
movieClip 4661 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
play();
}
frame 15 {
gotoAndStop('on');
}
}
movieClip 4666 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
play();
}
frame 15 {
gotoAndStop('on');
}
}
movieClip 4671 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
play();
}
frame 15 {
gotoAndStop('on');
}
}
movieClip 4676 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
play();
}
frame 15 {
gotoAndStop('on');
}
}
movieClip 4681 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
play();
}
frame 15 {
gotoAndStop('on');
}
}
movieClip 4686 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
play();
}
frame 15 {
gotoAndStop('on');
}
}
movieClip 4691 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
play();
}
frame 15 {
gotoAndStop('on');
}
}
movieClip 4696 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
play();
}
frame 15 {
gotoAndStop('on');
}
}
movieClip 4697 {
frame 1 {
stop();
dayNumber.text = _root.dayNumber;
}
instance of movieClip 4530 {
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 4539 {
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 4542 {
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 4545 {
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 4548 {
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 4574 {
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 4578 {
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 4581 {
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 4584 {
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 4588 {
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 4591 {
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 4594 {
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 4649 {
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 4654 {
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 4429 {
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 4435 {
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 4441 {
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 4447 {
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 4453 {
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 4459 {
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 4465 {
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 4661 {
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 4666 {
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 4671 {
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 4676 {
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 4681 {
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 4686 {
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 4691 {
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 4696 {
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;
}
}
}
}
button 4704 {
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.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 4705 {
}
button 4710 {
on (release) {
_parent.gotoAndPlay('mapToShop');
if (_root.startup != false) {
_root.startup = true;
}
}
}
movieClip 4713 {
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();
}
}
movieClip 4715 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('fade');
}
if (_root.mapCsecUnlocked != true) {
if (_root.mapSlumsRep >= 30) {
_root.mapCsecUnlocked = true;
}
nodeCsec.gotoAndStop('fade');
}
if (_root.mapConsortUnlocked != true) {
if (_root.mapCsecRep >= 30) {
_root.mapConsortUnlocked = true;
}
nodeConsort.gotoAndStop('fade');
}
if (_root.mapFluxUnlocked != true) {
if (_root.mapConsortRep >= 30) {
_root.mapFluxUnlocked = true;
}
nodeFlux.gotoAndStop('fade');
}
if (_root.mapBloodUnlocked != true) {
if (_root.mapSlumsRep >= 70) {
_root.mapBloodUnlocked = true;
}
nodeBlood.gotoAndStop('fade');
}
if (_root.mapCerberusUnlocked != true) {
if (_root.mapConsortRep >= 70) {
_root.mapCerberusUnlocked = true;
}
nodeCerberus.gotoAndStop('fade');
}
if (_root.mapCouncilUnlocked != true) {
if (_root.mapCsecRep >= 70) {
_root.mapCouncilUnlocked = true;
}
nodeCouncil.gotoAndStop('fade');
}
if (_root.cheatRegular != true) {
if (_root.timeDay == 3 or _root.timeDay == 5) {
_root.mapBloodOrbit = true;
} else {
_root.mapBloodOrbit = false;
nodeBlood.gotoAndStop('fade');
}
if (_root.timeDay == 1 or _root.timeDay == 4) {
_root.mapCerberusOrbit = true;
} else {
_root.mapCerberusOrbit = false;
nodeCerberus.gotoAndStop('fade');
}
if (_root.timeDay == 2 or _root.timeDay == 6) {
_root.mapCouncilOrbit = true;
} else {
_root.mapCouncilOrbit = false;
nodeCouncil.gotoAndStop('fade');
}
} 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.gotoAndPlay('come');
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 = '- Endless Session';
} 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 = '- Endless Session';
} 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 = '- Endless Session';
} else {
_root.mapTooltip2 = '- ?';
_root.mapTooltip3 = '- ?';
_root.mapTooltip4 = '- ?';
}
} else {
if (_root.mapSelected == 'flux') {
_root.mapTooltip = 'Renown:';
if (_root.mapFluxUnlocked != false) {
_root.mapTooltip2 = '- [+Stretch-Goal Scene+]';
_root.mapTooltip3 = '- [+Stretch-Goal Scene+]';
_root.mapTooltip4 = '- Endless Session';
} 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 = '- [+Stretch-Goal Scene+]';
_root.mapTooltip4 = '- Endless Session';
} 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 = '- [+Stretch-Goal Scene+]';
_root.mapTooltip4 = '- Endless Session';
} 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 = '- [+Stretch-Goal Scene+]';
_root.mapTooltip4 = '- Endless Session';
} 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 = _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 = _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 = _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 = _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 = _root.mapBloodRep;
showReason();
noWork._visible = true;
_root.canWork = false;
} else {
mapPlate.gotoAndStop('mini');
mapPlate.mapName.text = 'Blood Pack Cruiser';
_root.mapLocalRep = _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 = _root.mapCerberusRep;
showReason();
noWork._visible = true;
_root.canWork = false;
} else {
mapPlate.gotoAndStop('mini');
mapPlate.mapName.text = 'Cerberus Gunship';
_root.mapLocalRep = _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 = _root.mapCouncilRep;
showReason();
noWork._visible = true;
_root.canWork = false;
} else {
mapPlate.gotoAndStop('mini');
mapPlate.mapName.text = 'Emissary Vessel';
_root.mapLocalRep = _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 4716 {
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.session_timer = 0;
_parent.TimeBar.gotoAndStop(Math.round(_root.session_timer + 2));
}
};
btnShop.onPress = function () {
if (busy == false) {
gotoAndPlay('levelIn');
}
};
btnMap.onPress = function () {
if (busy == false) {
gotoAndPlay('mapIn');
}
};
}
instance volSetting of movieClip 4203 {
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 4203 {
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 4203 {
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 4717 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, _xmode) {
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.level_pause == true && _xmode == 4)) {
clip = attachMovie('points', 'points' + _index, 900 + _index);
clip._x = x;
clip._y = y;
clip._xmode = _xmode;
}
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;
}
}
}
}
}
}
}
switch (_xmode) {
case 1:
add_pnts = 75 * wealthmod * skillmod;
_root.xp += 750;
_root.StatsServed += 1;
_root.StatsExcellent += 1;
_root.StatsSessionServed += 1;
_root.StatsSessionExcellent += 1;
if (_root.mapLocalRep < 100) {
++_root.mapLocalRep;
}
if (_root.session_start_rep < 100 && _root.endless != true) {
_root.session_timer += 25;
if (_root.session_timer > 99) {
_root.session_timer = 100;
}
TimeBar.gotoAndStop(Math.round(_root.session_timer + 2));
}
break;
case 2:
add_pnts = 50 * wealthmod * skillmod;
_root.xp += 500;
_root.StatsServed += 1;
_root.StatsSessionServed += 1;
if (_root.mapLocalRep < 70) {
++_root.mapLocalRep;
}
if (_root.session_start_rep < 100 && _root.endless != true) {
_root.session_timer += 10;
if (_root.session_timer > 100) {
_root.session_timer = 100;
}
TimeBar.gotoAndStop(Math.round(_root.session_timer + 2));
}
break;
case 3:
add_pnts = 25 * wealthmod * skillmod;
_root.xp += 250;
_root.StatsServed += 1;
_root.StatsSessionServed += 1;
if (_root.mapLocalRep < 30) {
++_root.mapLocalRep;
}
if (_root.session_start_rep < 100 && _root.endless != true) {
_root.session_timer += 5;
if (_root.session_timer > 100) {
_root.session_timer = 100;
}
TimeBar.gotoAndStop(Math.round(_root.session_timer + 2));
}
break;
case 4:
if (_root.level_pause == false) {
add_pnts = -100 * wealthmod / skillmod;
} else {
add_pnts = 0;
}
_root.StatsMissed += 1;
_root.StatsSessionMissed += 1;
if (_root.mapLocalRep < 100 && _root.mapLocalRep > 0) {
--_root.mapLocalRep;
}
}
_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.session_timer = 100;
_root.session_timer_mult = 0;
_root.StatsSessionServed = 0;
_root.StatsSessionExcellent = 0;
_root.StatsSessionMissed = 0;
_root.StatsSessionCashEarned = 0;
_root.StatsSessionPlayTime = 0;
lvl = 'LEVEL ' + _root.level;
remove_all_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 (af0) {
if (_root.jutsu != 5) {
af0._remove();
}
}
if (ab0) {
if (_root.jutsu != 5) {
ab0._remove();
}
}
if (as0) {
if (_root.jutsu != 5) {
as0._remove();
}
}
if (aa0) {
if (_root.jutsu != 5) {
aa0._remove();
}
}
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 (af0) {
if (_root.jutsu != 5) {
af0._remove();
}
}
if (ab0) {
if (_root.jutsu != 5) {
ab0._remove();
}
}
if (as0) {
if (_root.jutsu != 5) {
as0._remove();
}
}
if (aa0) {
if (_root.jutsu != 5) {
aa0._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) {
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:
girl_name = 'a' + symbol + '0';
}
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)).gotoAndPlay('a1');
};
clip._xmode = _xmode;
clip._color = _color;
spark(girl.xspark, girl.yspark);
hole = get_dick_data(_index);
if (_index < 4) {
(eval('d0' + _index))._visible = false;
} else {
c0._visible = false;
}
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;
}
};
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.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;
}
setStage();
onEnterFrame = function () {
if (_root.level_pause != true) {
if (_root.session_timer > 0) {
if (_root.session_start_rep < 100 && _root.endless != true) {
_root.session_timer_mult += 0.2;
if (_root.session_timer_mult >= 718) {
_root.session_timer_mult = 718;
}
TimeBar.clock.gotoAndStop(Math.floor(_root.session_timer_mult * 0.32 + 2));
TimeBar.colour.gotoAndStop(Math.floor(_root.session_timer_mult * 0.01 + 2));
TimeBar.arrows.gotoAndStop(Math.floor(_root.session_timer_mult * 0.01 + 2));
if (_root.session_timer_mult >= 100 && _root.session_timer_mult <= 120) {
TimeBar.clock.icon.gotoAndStop('tick');
} else {
if (_root.session_timer_mult >= 200 && _root.session_timer_mult <= 220) {
TimeBar.clock.icon.gotoAndStop('tick');
} else {
if (_root.session_timer_mult >= 300 && _root.session_timer_mult <= 320) {
TimeBar.clock.icon.gotoAndStop('tick');
} else {
if (_root.session_timer_mult >= 400 && _root.session_timer_mult <= 420) {
TimeBar.clock.icon.gotoAndStop('tick');
} else {
if (_root.session_timer_mult >= 500 && _root.session_timer_mult <= 520) {
TimeBar.clock.icon.gotoAndStop('tickBig');
} else {
if (_root.session_timer_mult >= 600 && _root.session_timer_mult <= 620) {
TimeBar.clock.icon.gotoAndStop('tickBig');
} else {
if (_root.session_timer_mult >= 700) {
TimeBar.clock.icon.gotoAndStop('ring');
} else {
TimeBar.clock.icon.gotoAndStop('idle');
}
}
}
}
}
}
}
_root.session_timer -= 0.05 * Math.ceil(_root.session_timer_mult * 0.01);
TimeBar.gotoAndStop(Math.round(_root.session_timer + 2));
} else {
TimeBar.gotoAndStop('endless');
TimeBar.clock.gotoAndStop('endless');
}
_root.StatsPlayTime += 0.04;
_root.StatsSessionPlayTime += 0.04;
} else {
if (_root.session_timer <= 1) {
_root.gotoScreen('1');
_root.level_pause = true;
}
}
}
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 (af0) {
need_a0 = false;
}
if (ab0) {
need_a0 = false;
}
if (as0) {
need_a0 = false;
}
if (aa0) {
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();
};
}
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.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 4110 {
onClipEvent (load) {
this.swapDepths(99996);
}
}
instance board of movieClip 4124 {
onClipEvent (load) {
this.swapDepths(99999);
}
}
instance LevelBar of movieClip 4137 {
onClipEvent (load) {
this.swapDepths(100000);
}
}
instance skills of movieClip 4189 {
onClipEvent (load) {
this.swapDepths(99997);
}
}
instance pauseMenu of movieClip 4716 {
onClipEvent (load) {
this.swapDepths(99998);
}
}
}
movieClip 4721 {
}
movieClip 4934 {
}
movieClip 4936 {
}
movieClip 4948 {
frame 1 {
_alpha = 0;
}
}
movieClip 4968 {
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.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 {
gotoAndPlay('wrong');
_parent.codeLine.text = 'bad code';
}
}
}
}
}
}
}
}
}
}
}
}
// unknown tag 88 length 151
movieClip 4978 {
frame 1 {
stop();
if (_root.BGMmute != true) {
gotoAndStop('no');
} else {
gotoAndStop('yes');
}
}
frame 2 {
stop();
}
}
movieClip 4980 193f56ce {
frame 1 {
function cheatRun() {
_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 = 30;
_root.mapCerberusUnlocked = true;
_root.mapCerberusRep = 30;
_root.mapCouncilUnlocked = true;
_root.mapCouncilRep = 30;
}
_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.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');
};
play_btn.onRelease = function () {
play_btn.onPress = null;
_root.level_pause = true;
_root.gotoScreen('4');
_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 = 10;
_root.skillFin2Cost = 15;
_root.skillFin3Cost = 20;
_root.skillSta1 = false;
_root.skillSta2 = false;
_root.skillSta3 = false;
_root.skillSta1Cost = 10;
_root.skillSta2Cost = 15;
_root.skillSta3Cost = 20;
_root.skillAll1 = false;
_root.skillAll2 = false;
_root.skillAll3 = false;
_root.skillAll1Cost = 3;
_root.skillAll2Cost = 3;
_root.skillAll3Cost = 3;
_root.skillLib1 = false;
_root.skillLib2 = false;
_root.skillLib3 = false;
_root.skillLib1Cost = 6;
_root.skillLib2Cost = 6;
_root.skillLib3Cost = 6;
if (cheat == true) {
cheatRun();
}
if (_root.cheatEnergy == true) {
_root.skillSta1 = true;
_root.skillSta2 = true;
_root.skillSta3 = true;
}
};
}
instance volSetting of movieClip 4978 {
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.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 4981 {
}
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 {
_root.attachMovie(_root.replaceName, 'girl', 0);
girl._x = node._x;
girl._y = node._y;
}
}
}
}
_root.UI.swapDepths(1000);
_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;
node._alpha = 0;
nodeUpper._alpha = 0;
}
movieClip 4984 {
}
button 4985 {
on (release) {
_root.replaceName = 'af0';
skillSelect._x = 508;
skillSelect._y = 162.35;
skillSelect._rotation = 90;
_parent.replaceGirl();
}
}
button 4986 {
on (release) {
_root.replaceName = 'aft0';
skillSelect._x = 537.4;
skillSelect._y = 147.45;
skillSelect._rotation = 90;
_parent.replaceGirl();
}
}
button 4987 {
on (release) {
_root.replaceName = 'aft1';
skillSelect._x = 566.7000000000001;
skillSelect._y = 147.45;
skillSelect._rotation = 90;
_parent.replaceGirl();
}
}
button 4988 {
on (release) {
_root.replaceName = 'aft2';
skillSelect._x = 596.05;
skillSelect._y = 147.45;
skillSelect._rotation = 90;
_parent.replaceGirl();
}
}
button 4989 {
on (release) {
_root.replaceName = 'aft3';
skillSelect._x = 625.4;
skillSelect._y = 147.45;
skillSelect._rotation = 90;
_parent.replaceGirl();
}
}
button 4990 {
on (release) {
_root.replaceName = 'afb0';
skillSelect._x = 537.4;
skillSelect._y = 177.3;
skillSelect._rotation = 90;
_parent.replaceGirl();
}
}
button 4991 {
on (release) {
_root.replaceName = 'afb1';
skillSelect._x = 566.7000000000001;
skillSelect._y = 177.3;
skillSelect._rotation = 90;
_parent.replaceGirl();
}
}
button 4992 {
on (release) {
_root.replaceName = 'afb2';
skillSelect._x = 596.05;
skillSelect._y = 177.3;
skillSelect._rotation = 90;
_parent.replaceGirl();
}
}
button 4993 {
on (release) {
_root.replaceName = 'afb3';
skillSelect._x = 625.4;
skillSelect._y = 177.3;
skillSelect._rotation = 90;
_parent.replaceGirl();
}
}
button 4994 {
on (release) {
_root.replaceName = 'aa0';
skillSelect._x = 508;
skillSelect._y = 256.75;
skillSelect._rotation = 180;
_parent.replaceGirl();
}
}
button 4995 {
on (release) {
_root.replaceName = 'aat0';
skillSelect._x = 537.4;
skillSelect._y = 241.8;
skillSelect._rotation = 180;
_parent.replaceGirl();
}
}
button 4996 {
on (release) {
_root.replaceName = 'aat1';
skillSelect._x = 566.7000000000001;
skillSelect._y = 241.8;
skillSelect._rotation = 180;
_parent.replaceGirl();
}
}
button 4997 {
on (release) {
_root.replaceName = 'aat2';
skillSelect._x = 596.05;
skillSelect._y = 241.8;
skillSelect._rotation = 180;
_parent.replaceGirl();
}
}
button 4998 {
on (release) {
_root.replaceName = 'aat3';
skillSelect._x = 625.4;
skillSelect._y = 241.8;
skillSelect._rotation = 180;
_parent.replaceGirl();
}
}
button 4999 {
on (release) {
_root.replaceName = 'aab0';
skillSelect._x = 537.4;
skillSelect._y = 271.65;
skillSelect._rotation = 180;
_parent.replaceGirl();
}
}
button 5000 {
on (release) {
_root.replaceName = 'aab1';
skillSelect._x = 566.7000000000001;
skillSelect._y = 271.65;
skillSelect._rotation = 180;
_parent.replaceGirl();
}
}
button 5001 {
on (release) {
_root.replaceName = 'aab2';
skillSelect._x = 596.05;
skillSelect._y = 271.65;
skillSelect._rotation = 180;
_parent.replaceGirl();
}
}
button 5002 {
on (release) {
_root.replaceName = 'aab3';
skillSelect._x = 625.4;
skillSelect._y = 271.65;
skillSelect._rotation = 180;
_parent.replaceGirl();
}
}
button 5003 {
on (release) {
_root.replaceName = 'as0';
skillSelect._x = 450;
skillSelect._y = 90.5;
skillSelect._rotation = 0;
_parent.replaceGirl();
}
}
button 5004 {
on (release) {
_root.replaceName = 'ast0';
skillSelect._x = 479.4;
skillSelect._y = 75.59999999999999;
skillSelect._rotation = 0;
_parent.replaceGirl();
}
}
button 5005 {
on (release) {
_root.replaceName = 'ast1';
skillSelect._x = 508.7;
skillSelect._y = 75.59999999999999;
skillSelect._rotation = 0;
_parent.replaceGirl();
}
}
button 5006 {
on (release) {
_root.replaceName = 'ast2';
skillSelect._x = 538.05;
skillSelect._y = 75.59999999999999;
skillSelect._rotation = 0;
_parent.replaceGirl();
}
}
button 5007 {
on (release) {
_root.replaceName = 'ast3';
skillSelect._x = 567.4;
skillSelect._y = 75.59999999999999;
skillSelect._rotation = 0;
_parent.replaceGirl();
}
}
button 5008 {
on (release) {
_root.replaceName = 'ast4';
skillSelect._x = 596.7000000000001;
skillSelect._y = 75.59999999999999;
skillSelect._rotation = 0;
_parent.replaceGirl();
}
}
button 5009 {
on (release) {
_root.replaceName = 'asb0';
skillSelect._x = 479.4;
skillSelect._y = 105.45;
skillSelect._rotation = 0;
_parent.replaceGirl();
}
}
button 5010 {
on (release) {
_root.replaceName = 'asb1';
skillSelect._x = 508.7;
skillSelect._y = 105.45;
skillSelect._rotation = 0;
_parent.replaceGirl();
}
}
button 5011 {
on (release) {
_root.replaceName = 'asb2';
skillSelect._x = 538.05;
skillSelect._y = 105.45;
skillSelect._rotation = 0;
_parent.replaceGirl();
}
}
button 5012 {
on (release) {
_root.replaceName = 'asb3';
skillSelect._x = 567.4;
skillSelect._y = 105.45;
skillSelect._rotation = 0;
_parent.replaceGirl();
}
}
button 5013 {
on (release) {
_root.replaceName = 'asb4';
skillSelect._x = 596.7000000000001;
skillSelect._y = 105.45;
skillSelect._rotation = 0;
_parent.replaceGirl();
}
}
button 5014 {
on (release) {
_root.replaceName = 'ab0';
skillSelect._x = 450;
skillSelect._y = 51.15;
skillSelect._rotation = -90;
_parent.replaceGirl();
}
}
button 5015 {
on (release) {
_root.replaceName = 'abt0';
skillSelect._x = 479.4;
skillSelect._y = 36.25;
skillSelect._rotation = -90;
_parent.replaceGirl();
}
}
button 5016 {
on (release) {
_root.replaceName = 'abt1';
skillSelect._x = 508.7;
skillSelect._y = 36.25;
skillSelect._rotation = -90;
_parent.replaceGirl();
}
}
button 5017 {
on (release) {
_root.replaceName = 'abt2';
skillSelect._x = 538.05;
skillSelect._y = 36.25;
skillSelect._rotation = -90;
_parent.replaceGirl();
}
}
button 5018 {
on (release) {
_root.replaceName = 'abt3';
skillSelect._x = 567.4;
skillSelect._y = 36.25;
skillSelect._rotation = -90;
_parent.replaceGirl();
}
}
button 5019 {
on (release) {
_root.replaceName = 'abt4';
skillSelect._x = 596.7000000000001;
skillSelect._y = 36.25;
skillSelect._rotation = -90;
_parent.replaceGirl();
}
}
button 5020 {
on (release) {
_root.replaceName = 'abb0';
skillSelect._x = 479.4;
skillSelect._y = 66.09999999999999;
skillSelect._rotation = -90;
_parent.replaceGirl();
}
}
button 5021 {
on (release) {
_root.replaceName = 'abb1';
skillSelect._x = 508.7;
skillSelect._y = 66.09999999999999;
skillSelect._rotation = -90;
_parent.replaceGirl();
}
}
button 5022 {
on (release) {
_root.replaceName = 'abb2';
skillSelect._x = 538.05;
skillSelect._y = 66.09999999999999;
skillSelect._rotation = -90;
_parent.replaceGirl();
}
}
button 5023 {
on (release) {
_root.replaceName = 'abb3';
skillSelect._x = 567.4;
skillSelect._y = 66.09999999999999;
skillSelect._rotation = -90;
_parent.replaceGirl();
}
}
button 5024 {
on (release) {
_root.replaceName = 'abb4';
skillSelect._x = 596.7000000000001;
skillSelect._y = 66.09999999999999;
skillSelect._rotation = -90;
_parent.replaceGirl();
}
}
button 5025 {
on (release) {
_root.replaceName = 'a0';
skillSelect._x = 344.4;
skillSelect._y = 51.15;
skillSelect._rotation = -90;
_parent.replaceGirl();
}
}
movieClip 5036 {
frame 1 {
gotoAndStop(2);
}
frame 14 {
gotoAndStop(2);
}
frame 24 {
gotoAndStop(2);
}
}
movieClip 5040 {
frame 1 {
stop();
}
}
movieClip 5043 {
}
movieClip 5044 {
instance of movieClip 4380 {
onClipEvent (release) {
_root.character = 1;
_parent._parent.replaceGirl();
}
}
instance of movieClip 4356 {
onClipEvent (release) {
_root.character = 2;
_parent._parent.replaceGirl();
}
}
instance of movieClip 4360 {
onClipEvent (release) {
_root.character = 3;
_parent._parent.replaceGirl();
}
}
instance of movieClip 4364 {
onClipEvent (release) {
_root.character = 4;
_parent._parent.replaceGirl();
}
}
instance of movieClip 4368 {
onClipEvent (release) {
_root.character = 5;
_parent._parent.replaceGirl();
}
}
instance of movieClip 4372 {
onClipEvent (release) {
_root.character = 6;
_parent._parent.replaceGirl();
}
}
instance of movieClip 4376 {
onClipEvent (release) {
_root.character = 7;
_parent._parent.replaceGirl();
}
}
instance of movieClip 4380 {
onClipEvent (release) {
_root.costume = 1;
_root.hideNipples = true;
_root.hidePussy = false;
_parent._parent.replaceGirl();
}
}
instance of movieClip 4356 {
onClipEvent (release) {
_root.costume = 2;
_root.hideNipples = true;
_root.hidePussy = true;
_parent._parent.replaceGirl();
}
}
instance of movieClip 4360 {
onClipEvent (release) {
_root.costume = 3;
_root.hideNipples = false;
_root.hidePussy = true;
_parent._parent.replaceGirl();
}
}
instance of movieClip 4364 {
onClipEvent (release) {
_root.costume = 4;
_root.hideNipples = false;
_root.hidePussy = false;
_parent._parent.replaceGirl();
}
}
instance of movieClip 4368 {
onClipEvent (release) {
_root.costume = 5;
_root.hideNipples = true;
_root.hidePussy = true;
_parent._parent.replaceGirl();
}
}
instance of movieClip 4372 {
onClipEvent (release) {
_root.costume = 6;
_root.hideNipples = true;
_root.hidePussy = true;
_parent._parent.replaceGirl();
}
}
instance of movieClip 4376 {
onClipEvent (release) {
_root.costume = 7;
_root.hideNipples = false;
_root.hidePussy = false;
_parent._parent.replaceGirl();
}
}
instance of movieClip 4384 {
onClipEvent (release) {
_root.costume = 25;
_root.hideNipples = false;
_root.hidePussy = false;
_parent._parent.replaceGirl();
}
}
instance of movieClip 4388 {
onClipEvent (release) {
_root.costume = 26;
_root.hideNipples = false;
_root.hidePussy = false;
_parent._parent.replaceGirl();
}
}
instance of movieClip 4392 {
onClipEvent (release) {
_root.costume = 23;
_root.hideNipples = false;
_root.hidePussy = false;
_parent._parent.replaceGirl();
}
}
instance of movieClip 4396 {
onClipEvent (release) {
_root.costume = 27;
_root.hideNipples = false;
_root.hidePussy = false;
_parent._parent.replaceGirl();
}
}
instance of movieClip 4400 {
onClipEvent (release) {
_root.costume = 28;
_root.hideNipples = false;
_root.hidePussy = false;
_parent._parent.replaceGirl();
}
}
instance of movieClip 4408 {
onClipEvent (release) {
_root.costume = 29;
_root.hideNipples = false;
_root.hidePussy = false;
_parent._parent.replaceGirl();
}
}
instance of movieClip 4404 {
onClipEvent (release) {
_root.costume = 24;
_root.hideNipples = false;
_root.hidePussy = false;
_parent._parent.replaceGirl();
}
}
}
frame 6 {
gotoAndStop(5);
}