Combined Code
frame 1 {
cenpath = 'ceiling_all.alien.girl';
gotoAndStop(6);
monst1stat = 0;
bg_speed = 0;
jumping = false;
bg_sp_y = 0;
monst1hp = 100;
actcooldown = 0;
location = 51;
monst1grav = false;
ready_for_xxx = true;
girl_used = 0;
girlflag1 = false;
girlwet1 = 0;
girltears = 0;
hairs = 3;
th_clothes = true;
statArr = new Array();
statArr.censor = 4;
statArr.l1g2b = 1;
statArr.l1g2c = 1;
statArr.l1g2d = 1;
}
frame 3 {
gotoAndPlay(1);
}
frame 4 {
gotoAndPlay(1);
}
frame 5 {
gotoAndPlay(1);
}
frame 6 {
onEnterFrame = function () {
if (monst1grav == true) {
if (bg_sp_y > -17) {
jumping = true;
bg_sp_y -= 1;
}
}
if (monst1stat < 6) {
if (Key.isDown(39) == true && Key.isDown(37) == false) {
ceiling_all._x -= bg_speed;
blockground._x -= bg_speed;
if (bg_speed < 10) {
bg_speed += 1;
}
if (jumping == false && monst1stat != 3) {
Monst1.gotoAndStop('running2');
monst1stat = 3;
}
if (jumping == true && monst1stat != 4 && monst1stat != 5) {
Monst1.gotoAndStop('jump2');
monst1stat = 5;
}
}
if (Key.isDown(37) == true && Key.isDown(39) == false) {
ceiling_all._x += bg_speed;
blockground._x += bg_speed;
if (bg_speed < 10) {
bg_speed += 1;
}
if (jumping == false && monst1stat != 2) {
Monst1.gotoAndStop('running1');
monst1stat = 2;
}
if (jumping == true && monst1stat != 4 && monst1stat != 5) {
Monst1.gotoAndStop('jump1');
monst1stat = 4;
}
}
if (Key.isDown(39) == false && Key.isDown(37) == false || Key.isDown(39) == true && Key.isDown(37) == true) {
if (bg_speed > 2) {
bg_speed -= 1;
}
if (jumping == false && monst1stat != 0 && monst1stat != 1) {
if (monst1stat == 2 || monst1stat == 4) {
Monst1.gotoAndStop('standing1');
monst1stat = 0;
}
if (monst1stat == 3 || monst1stat == 5) {
Monst1.gotoAndStop('standing2');
monst1stat = 1;
}
}
if (jumping == true && monst1stat != 4 && monst1stat != 5) {
if (monst1stat == 2 || monst1stat == 0) {
Monst1.gotoAndStop('jump1');
monst1stat = 4;
}
if (monst1stat == 3 || monst1stat == 1) {
Monst1.gotoAndStop('jump2');
monst1stat = 5;
}
}
}
if (Key.isDown(38) && jumping == false) {
jumping = true;
bg_sp_y = 10;
}
if (Key.isDown(32) && jumping == false && monst1stat != 4 && monst1stat != 5) {
if (monst1stat == 2 || monst1stat == 0) {
Monst1.gotoAndPlay('attack1');
monst1stat = 6;
}
if (monst1stat == 3 || monst1stat == 1) {
Monst1.gotoAndPlay('attack2');
monst1stat = 7;
}
}
if (monst1hp <= 0) {
if (monst1stat == 2 || monst1stat == 0) {
Monst1.gotoAndStop('ko1');
monst1stat = 10;
}
if (monst1stat == 3 || monst1stat == 1) {
Monst1.gotoAndStop('ko2');
monst1stat = 11;
}
}
if (actcooldown > 0) {
actcooldown -= 1;
}
if (location == 51 && blockground._x >= 188) {
gotoAndPlay('th_lead_in');
}
}
if (monst1stat == 14) {
if (th_clothes == false) {
if (girl_used == 0) {
Monst1.gotoAndStop('girl10xxx1a');
} else {
Monst1.gotoAndStop('girl10xxx1b');
}
} else {
if (girl_used == 0) {
Monst1.gotoAndStop('girl10xxx2a');
} else {
Monst1.gotoAndStop('girl10xxx2b');
}
}
ceiling_all.girl10chest._visible = false;
ceiling_all._x = 288.65;
ceiling_all._y = 356.6;
blockground._x = -51.95;
blockground._y = 0;
monst1stat = 15;
}
monst1grav = true;
blockground._y += bg_sp_y;
ceiling_all._y += bg_sp_y;
};
stop();
}
movieClip 8 {
}
movieClip 10 {
}
movieClip 11 {
instance of movieClip 10 {
onClipEvent (enterFrame) {
if (this.hitTest(_parent._parent._parent.Monst1.outground)) {
_parent._parent._parent.blockground._y += 2;
_parent._parent._parent.ceiling_all._y += 2;
_parent._parent._parent.jumping = false;
_parent._parent._parent.monst1grav = false;
_parent._parent._parent.bg_sp_y = 0;
} else {
if (this.hitTest(_parent._parent._parent.Monst1.inground)) {
_parent._parent._parent.jumping = false;
_parent._parent._parent.monst1grav = false;
_parent._parent._parent.bg_sp_y = 0;
}
}
if (this.hitTest(_parent._parent._parent.Monst1.hitright)) {
_parent._parent._parent.blockground._x += _parent._parent._parent.bg_speed;
_parent._parent._parent.ceiling_all._x += _parent._parent._parent.bg_speed;
}
if (this.hitTest(_parent._parent._parent.Monst1.hitleft)) {
_parent._parent._parent.blockground._x -= _parent._parent._parent.bg_speed;
_parent._parent._parent.ceiling_all._x -= _parent._parent._parent.bg_speed;
}
}
}
}
movieClip 13 {
}
movieClip 14 {
instance of movieClip 13 {
onClipEvent (enterFrame) {
if (this.hitTest(_parent._parent._parent.Monst1.hithead) and _parent._parent._parent.jumping == true) {
if (_parent._parent._parent.bg_sp_y > -1) {
_parent._parent._parent.bg_sp_y = -1;
}
}
if (this.hitTest(_parent._parent._parent.Monst1.hitright)) {
_parent._parent._parent.blockground._x += _parent._parent._parent.bg_speed;
_parent._parent._parent.ceiling_all._x += _parent._parent._parent.bg_speed;
}
if (this.hitTest(_parent._parent._parent.Monst1.hitleft)) {
_parent._parent._parent.blockground._x -= _parent._parent._parent.bg_speed;
_parent._parent._parent.ceiling_all._x -= _parent._parent._parent.bg_speed;
}
}
}
}
movieClip 37 {
}
movieClip 47 {
frame 1 {
if (_root.statArr.quality == 0) {
this.gotoAndStop(2);
} else {
stop();
}
}
}
movieClip 50 {
frame 1 {
if (_root.statArr.quality == 0) {
this.gotoAndStop(2);
} else {
stop();
}
}
}
movieClip 51 {
instance of movieClip 11 {
onClipEvent (load) {
this._visible = false;
}
}
instance of movieClip 14 {
onClipEvent (load) {
this._visible = false;
}
}
instance of movieClip 14 {
onClipEvent (load) {
this._visible = false;
}
}
instance of movieClip 11 {
onClipEvent (load) {
this._visible = false;
}
}
}
movieClip 53 {
}
movieClip 54 {
}
movieClip 55 {
}
movieClip 57 {
}
movieClip 59 {
}
movieClip 61 {
}
movieClip 63 {
}
movieClip 65 {
}
movieClip 67 {
}
movieClip 69 {
}
movieClip 71 {
}
movieClip 77 {
}
movieClip 79 {
}
movieClip 81 {
}
movieClip 83 {
}
movieClip 85 {
}
movieClip 86 {
frame 20 {
gotoAndPlay('standing');
}
}
movieClip 88 {
}
movieClip 90 {
}
movieClip 92 {
frame 23 {
gotoAndPlay('running');
}
}
movieClip 94 {
}
movieClip 96 {
}
movieClip 97 {
frame 5 {
stop();
}
}
movieClip 99 {
frame 10 {
if (_parent._parent.monst1stat == 6) {
_parent._parent.monst1stat = 0;
_parent._parent.Monst1.gotoAndStop('standing1');
} else {
_parent._parent.monst1stat = 1;
_parent._parent.Monst1.gotoAndStop('standing2');
}
}
}
movieClip 102 {
frame 112 {
}
}
movieClip 104 {
}
movieClip 106 {
}
movieClip 108 {
}
movieClip 112 {
}
movieClip 120 {
}
movieClip 206 {
}
movieClip 208 {
}
movieClip 217 {
}
movieClip 225 {
frame 755 {
_parent._parent.ceiling_all.girl10chest.gotoAndPlay(1);
_parent._parent.ceiling_all.girl10chest._visible = true;
_parent._parent.girl_used = 1;
_parent._parent.monst1stat = 5;
}
}
movieClip 319 {
frame 755 {
_parent._parent.ceiling_all.girl10chest.gotoAndPlay('red_breasts_pur');
_parent._parent.ceiling_all.girl10chest._visible = true;
_parent._parent.monst1stat = 5;
}
}
movieClip 414 {
frame 755 {
_parent._parent.ceiling_all.girl10chest.gotoAndPlay('chest_clothes');
_parent._parent.ceiling_all.girl10chest._visible = true;
_parent._parent.girl_used = 1;
_parent._parent.monst1stat = 5;
}
}
movieClip 508 {
frame 755 {
_parent._parent.ceiling_all.girl10chest.gotoAndPlay('red_breasts_cloth');
_parent._parent.ceiling_all.girl10chest._visible = true;
_parent._parent.monst1stat = 5;
}
}
movieClip 509 {
instance monster_hit of movieClip 53 {
onClipEvent (load) {
_visible = false;
}
}
instance hithead of movieClip 54 {
onClipEvent (load) {
_visible = false;
}
}
instance hitright of movieClip 55 {
onClipEvent (load) {
_visible = false;
}
}
instance hitleft of movieClip 55 {
onClipEvent (load) {
_visible = false;
}
}
instance outground of movieClip 54 {
onClipEvent (load) {
_visible = false;
}
}
instance inground of movieClip 54 {
onClipEvent (load) {
_visible = false;
}
}
frame 2 {
stop();
}
frame 11 {
stop();
}
frame 21 {
stop();
}
frame 31 {
stop();
}
frame 41 {
stop();
}
frame 51 {
stop();
}
frame 61 {
stop();
}
frame 71 {
stop();
}
instance hitbox of movieClip 55 {
onClipEvent (load) {
_visible = false;
}
}
frame 84 {
stop();
}
instance hitbox of movieClip 55 {
onClipEvent (load) {
_visible = false;
}
}
frame 89 {
stop();
}
frame 91 {
stop();
}
frame 101 {
stop();
}
frame 121 {
stop();
}
frame 131 {
stop();
}
frame 141 {
stop();
}
frame 151 {
stop();
}
}
movieClip 511 {
}
movieClip 512 {
instance of movieClip 511 {
onClipEvent (load) {
_visible = false;
}
onClipEvent (enterFrame) {
if (this.hitTest(_parent._parent._parent._parent.Monst1.hitbox) && _parent._parent._parent._parent.monst1stat == 7 && _parent._parent._parent._parent.ready_for_xxx == true) {
_parent._parent._parent._parent.monst1stat = 14;
_parent._parent._parent._parent.ready_for_xxx = false;
}
}
}
}
movieClip 514 {
instance of movieClip 512 {
onClipEvent (load) {
this._visible = false;
}
}
frame 3 {
_parent._parent.ready_for_xxx = true;
stop();
}
frame 56 {
_parent._parent.ready_for_xxx = true;
stop();
}
frame 59 {
_parent._parent.ready_for_xxx = true;
stop();
}
frame 120 {
_parent._parent.ready_for_xxx = true;
stop();
}
}
movieClip 517 {
frame 1 {
if (_parent._parent._parent._parent.th_clothes == true) {
gotoAndStop(2);
} else {
stop();
}
}
}
movieClip 520 {
frame 1 {
if (_parent._parent._parent._parent.th_clothes == true) {
gotoAndStop(2);
} else {
stop();
}
}
}
movieClip 522 {
}
movieClip 525 {
frame 1 {
if (_parent._parent._parent._parent.th_clothes == true) {
gotoAndStop(2);
} else {
stop();
}
}
}
movieClip 528 {
}
movieClip 530 {
}
movieClip 541 {
frame 1 {
onEnterFrame = function () {
_parent._parent._parent._parent.girltears = Math.min(124, _parent._parent._parent._parent.girltears);
gotoAndStop(Math.floor(_parent._parent._parent._parent.girltears) + 1);
};
gotoAndStop(Math.floor(_parent._parent._parent._parent.girltears) + 1);
}
}
movieClip 545 {
frame 1 {
if (_parent._parent._parent._parent.hairs == 1) {
stop();
} else {
gotoAndStop(_parent._parent._parent._parent.hairs);
}
}
}
movieClip 553 {
}
movieClip 556 {
}
movieClip 558 {
}
movieClip 561 {
}
movieClip 564 {
frame 1 {
if (_parent._parent._parent._parent.th_clothes == false) {
_visible = false;
}
}
}
movieClip 567 {
frame 1 {
stop();
}
}
movieClip 569 {
}
movieClip 573 {
frame 1 {
stop();
}
}
movieClip 726 {
}
movieClip 728 {
}
movieClip 751 {
frame 1 {
if (_parent._parent._parent._parent.hairs == 1) {
stop();
} else {
gotoAndStop(_parent._parent._parent._parent.hairs);
}
}
}
movieClip 753 {
}
movieClip 755 {
}
movieClip 757 {
}
movieClip 767 {
frame 1 {
onEnterFrame = function () {
_parent._parent._parent._parent.girltears = Math.min(124, _parent._parent._parent._parent.girltears);
gotoAndStop(Math.floor(_parent._parent._parent._parent.girltears) + 1);
};
gotoAndStop(Math.floor(_parent._parent._parent._parent.girltears) + 1);
}
}
movieClip 769 {
}
movieClip 771 {
}
movieClip 775 {
}
movieClip 777 {
}
movieClip 779 {
frame 1 {
if (_parent._parent._parent._parent.hairs == 2) {
px = _x;
lr = _rotation;
tempx = 0;
temprot = 0;
force1 = 0;
force1sub = 0;
onEnterFrame = function () {
tempx = (_x - px) * 0.4;
temprot = _rotation - lr;
tempx -= Math.min(1, Math.abs(temprot) * 0.04) * (temprot < 0 ? -1 : 1);
px = _x;
py = _y;
lr = _rotation;
force1 = Math.min(14, Math.max(-14, force1 - Math.min(1, Math.abs(tempx)) * (tempx < 0 ? -1 : 1)));
if (force1 < 0) {
force1sub += 0.03;
} else {
if (0 < force1) {
force1sub -= 0.03;
}
}
force1sub *= 0.998;
force1 += force1sub;
force1 = Math.max(0, Math.abs(force1) - 0.1) * (force1 < 0 ? -1 : 1);
hair1._rotation = force1;
hair1._rotation = force2;
};
}
if (_parent._parent._parent._parent.hairs == 1) {
stop();
} else {
gotoAndStop(_parent._parent._parent._parent.hairs);
}
}
}
movieClip 794 {
}
movieClip 796 {
}
movieClip 798 {
frame 1 {
if (_parent._parent._parent._parent.hairs == 1 || _parent._parent._parent._parent.hairs == 2) {
px = _x;
lr = _rotation;
tempx = 0;
temprot = 0;
force1 = 0;
force1sub = 0;
onEnterFrame = function () {
tempx = (_x - px) * 0.4;
temprot = _rotation - lr;
tempx -= Math.min(1, Math.abs(temprot) * 0.04) * (temprot < 0 ? -1 : 1);
px = _x;
py = _y;
lr = _rotation;
force1 = Math.min(14, Math.max(-14, force1 - Math.min(1, Math.abs(tempx)) * (tempx < 0 ? -1 : 1)));
if (force1 < 0) {
force1sub += 0.03;
} else {
if (0 < force1) {
force1sub -= 0.03;
}
}
force1sub *= 0.998;
force1 = (force1 + force1sub) * 0.98;
force1 = Math.max(0, Math.abs(force1) - 0.1) * (force1 < 0 ? -1 : 1);
hair1._rotation = force1;
};
}
if (_parent._parent._parent._parent.hairs == 1) {
stop();
} else {
gotoAndStop(_parent._parent._parent._parent.hairs);
}
}
}
movieClip 800 {
}
movieClip 811 {
frame 1 {
onEnterFrame = function () {
_parent._parent._parent._parent.girltears = Math.min(124, _parent._parent._parent._parent.girltears);
gotoAndStop(Math.floor(_parent._parent._parent._parent.girltears) + 1);
};
gotoAndStop(Math.floor(_parent._parent._parent._parent.girltears) + 1);
}
}
movieClip 813 {
}
movieClip 815 {
}
movieClip 818 {
}
movieClip 820 {
}
movieClip 823 {
}
movieClip 825 {
}
movieClip 827 {
}
movieClip 829 {
frame 1 {
if (_parent._parent._parent._parent.hairs == 1 || _parent._parent._parent._parent.hairs == 2) {
px = _x;
py = _y;
lr = _rotation;
tempx = 0;
tempy = 0;
temprot = 0;
force1 = 0;
force1sub = 0;
force2 = 0;
force2sub = 0;
onEnterFrame = function () {
tempx = _x - px;
tempy = _y - py;
temprot = _rotation - lr;
tempx -= Math.min(1, Math.abs(temprot) * 0.04) * (temprot < 0 ? -1 : 1);
tempy -= Math.min(1, Math.abs(temprot) * 0.04) * (temprot < 0 ? -1 : 1);
px = _x;
py = _y;
lr = _rotation;
force1 = Math.min(3, Math.max(-20, force1 - Math.min(1, Math.abs(tempy)) * (tempy < 0 ? -1 : 1)));
if (force1 < 0) {
force1sub += 0.2;
} else {
if (0 < force1) {
force1sub -= 0.2;
}
}
force1sub *= 0.98;
force1 = (force1 + force1sub) * 0.8;
force1 = Math.max(0, Math.abs(force1) - 0.05) * (force1 < 0 ? -1 : 1);
if (_parent._parent._parent._parent.hairs == 1) {
hair1._rotation = force1;
}
force2 = Math.min(20, Math.max(-20, force2 - Math.min(1, Math.abs(tempx)) * (tempx < 0 ? -1 : 1)));
if (force2 < 0) {
force2sub += 0.03;
} else {
if (0 < vel1) {
force2sub -= 0.03;
}
}
force2sub *= 0.98;
force2 = (force2 + force2sub) * 0.98;
force2 = Math.max(0, Math.abs(force2) - 0.05) * (force2 < 0 ? -1 : 1);
hair2._rotation = force2;
if (_parent._parent._parent._parent.hairs == 2) {
hair1._rotation = force2 * 0.3;
hair3._rotation = force2 * 0.3;
}
};
}
if (_parent._parent._parent._parent.hairs == 1) {
stop();
} else {
gotoAndStop(_parent._parent._parent._parent.hairs);
}
}
}
movieClip 831 {
}
movieClip 833 {
}
movieClip 857 {
}
movieClip 859 {
}
movieClip 886 {
}
movieClip 888 {
}
movieClip 892 {
}
movieClip 912 {
}
movieClip 1317 {
}
movieClip 1581 {
}
movieClip 1583 {
}
movieClip 1585 {
}
movieClip 1609 {
frame 762 {
if (_root.statArr.l1g2c == 1) {
_parent.gotoAndStop(3);
}
}
frame 886 {
gotoAndPlay('endloop');
}
}
movieClip 2564 {
}
movieClip 2665 {
}
movieClip 2759 {
}
movieClip 2770 {
}
movieClip 2782 {
}
movieClip 2784 {
}
movieClip 2787 {
}
movieClip 2789 {
}
movieClip 2864 {
}
movieClip 2869 {
}
movieClip 2875 {
}
movieClip 2879 {
}
movieClip 2886 {
}
movieClip 3338 {
}
movieClip 3342 {
}
// unknown tag 88 length 4
movieClip 4635 {
}
movieClip 4645 {
}
movieClip 4647 {
}
movieClip 4649 {
}
movieClip 4684 {
}
movieClip 4754 {
}
movieClip 4762 {
}
movieClip 4780 {
instance of movieClip 728 {
onClipEvent (load) {
_visible = false;
}
onClipEvent (enterFrame) {
_parent._parent._parent._parent.girltears += 0.5;
}
}
instance of movieClip 728 {
onClipEvent (load) {
_visible = false;
}
onClipEvent (enterFrame) {
_parent._parent._parent._parent.girltears += 0.2;
}
}
instance of movieClip 728 {
onClipEvent (load) {
_visible = false;
}
onClipEvent (enterFrame) {
_parent._parent._parent._parent.girltears += 0.5;
}
}
instance of movieClip 728 {
onClipEvent (load) {
_visible = false;
}
onClipEvent (enterFrame) {
_parent._parent._parent._parent.girltears += 0.2;
}
}
instance of movieClip 728 {
onClipEvent (load) {
_visible = false;
}
onClipEvent (enterFrame) {
_parent._parent._parent._parent.girltears += 0.5;
}
}
instance of movieClip 728 {
onClipEvent (load) {
_visible = false;
}
onClipEvent (enterFrame) {
_parent._parent._parent._parent.girltears += 0.2;
}
}
instance of movieClip 728 {
onClipEvent (load) {
_visible = false;
}
onClipEvent (enterFrame) {
_parent._parent._parent._parent.girltears += 0.2;
}
}
frame 1325 {
_parent._parent._parent.girlflag1 = false;
_parent._parent._parent.girlwet1 = 0;
}
instance backtentswitch of movieClip 4635 {
onClipEvent (enterFrame) {
if (Key.isDown(8) == true) {
if (_parent._parent._parent._parent.girlflag1 == false) {
_parent._parent._parent._parent.girlwet1 += 10;
_parent._parent._parent._parent.girlflag1 = true;
}
}
}
}
frame 1377 {
if (_parent._parent._parent.girlflag1 == false) {
gotoAndPlay('girl10hole2loop');
}
}
instance of movieClip 4649 {
onClipEvent (load) {
myCurrentFrame = 0;
loopforward = true;
mytemp = 0;
this._visible = false;
}
onClipEvent (enterFrame) {
if (_parent._parent._parent._parent.girlflag1 == true) {
if (myCurrentFrame < _parent._parent._parent._parent.girlwet1 - 7) {
myCurrentFrame += 1;
} else {
myCurrentFrame -= 2;
loopforward = false;
_parent._parent._parent._parent.girlflag1 = false;
}
} else {
if (Key.isDown(8) == true) {
_parent._parent._parent._parent.girlwet1 += 0.1;
if (loopforward == true) {
if (myCurrentFrame < _parent._parent._parent._parent.girlwet1 - 7) {
myCurrentFrame += 1;
} else {
myCurrentFrame -= 2;
loopforward = false;
}
} else {
if (myCurrentFrame < _parent._parent._parent._parent.girlwet1 - 9) {
loopforward = true;
myCurrentFrame += 1;
} else {
myCurrentFrame -= 2;
}
}
} else {
myCurrentFrame -= 2;
}
}
mytemp = myCurrentFrame + 1377;
if (myCurrentFrame > 0) {
if (myCurrentFrame < 38) {
_parent.gotoAndStop(mytemp);
} else {
_parent.gotoAndPlay('anigo');
}
} else {
_parent.gotoAndPlay('girl10hole2loop');
}
}
}
frame 1496 {
if (_root.statArr.l1g2d == 1) {
_parent.gotoAndStop(4);
} else {
gotoAndPlay('girl10after3loop');
}
}
}
movieClip 5966 {
}
movieClip 7568 {
}
movieClip 8491 {
}
movieClip 8621 {
}
movieClip 9539 {
}
movieClip 9548 {
}
movieClip 9554 {
}
movieClip 9557 {
}
movieClip 9559 {
}
movieClip 9561 {
}
movieClip 9605 {
frame 65 {
if (Math.random() < 0.6) {
gotoAndPlay(1);
}
}
}
movieClip 10121 {
}
movieClip 10289 {
}
movieClip 10311 {
frame 66 {
if (Math.random() < 0.6) {
gotoAndPlay('closeloop');
}
}
frame 73 {
gotoAndPlay('closeloop');
}
}
movieClip 10471 {
}
movieClip 11884 {
}
movieClip 11915 {
frame 184 {
_parent._parent._parent.girlflag1 = false;
_parent._parent._parent.girlwet1 = 0;
}
instance backtentswitch of movieClip 4635 {
onClipEvent (enterFrame) {
if (Key.isDown(8) == true) {
if (_parent._parent._parent._parent.girlflag1 == false) {
_parent._parent._parent._parent.girlwet1 += 30;
_parent._parent._parent._parent.girlflag1 = true;
}
}
}
}
frame 235 {
if (_parent._parent._parent.girlflag1 == false) {
gotoAndPlay('girl10hole1loop');
}
}
instance of movieClip 4649 {
onClipEvent (load) {
myCurrentFrame = 0;
loopforward = true;
mytemp = 0;
this._visible = false;
}
onClipEvent (enterFrame) {
if (_parent._parent._parent._parent.girlflag1 == true) {
if (myCurrentFrame < _parent._parent._parent._parent.girlwet1 - 27) {
myCurrentFrame += 1;
} else {
myCurrentFrame -= 4;
loopforward = false;
_parent._parent._parent._parent.girlflag1 = false;
}
} else {
if (Key.isDown(8) == true) {
_parent._parent._parent._parent.girlwet1 += 0.6;
if (loopforward == true) {
if (myCurrentFrame < _parent._parent._parent._parent.girlwet1 - 27) {
myCurrentFrame += 1;
} else {
myCurrentFrame -= 4;
loopforward = false;
}
} else {
if (myCurrentFrame < _parent._parent._parent._parent.girlwet1 - 34) {
loopforward = true;
myCurrentFrame += 1;
} else {
myCurrentFrame -= 4;
}
}
} else {
myCurrentFrame -= 4;
}
}
mytemp = myCurrentFrame + 235;
if (myCurrentFrame > 0) {
if (myCurrentFrame < 102) {
_parent.gotoAndStop(mytemp);
} else {
_parent.gotoAndPlay('anigo');
}
} else {
_parent.gotoAndPlay('girl10hole1loop');
}
}
}
instance of movieClip 728 {
onClipEvent (load) {
_visible = false;
}
onClipEvent (enterFrame) {
_parent._parent._parent._parent.girltears += 0.2;
}
}
instance of movieClip 728 {
onClipEvent (load) {
_visible = false;
}
onClipEvent (enterFrame) {
_parent._parent._parent._parent.girltears += 0.5;
}
}
instance of movieClip 4649 {
onClipEvent (load) {
if (Key.isDown(8) == true) {
mymanualplay = false;
} else {
mymanualplay = true;
}
myCurrentFrame = 0;
loopforward = true;
mytemp = 0;
this._visible = false;
}
onClipEvent (enterFrame) {
if (mymanualplay == true) {
myCurrentFrame += 5;
mytemp = myCurrentFrame + 336;
if (myCurrentFrame < 541) {
_parent.gotoAndStop(mytemp);
} else {
_parent.gotoAndPlay(mytemp);
}
}
}
}
instance of movieClip 728 {
onClipEvent (load) {
_visible = false;
}
onClipEvent (enterFrame) {
_parent._parent._parent._parent.girltears += 0.2;
}
}
frame 1082 {
_parent._parent._parent.girlflag1 = false;
_parent._parent._parent.girlwet1 = 0;
}
instance backtentswitch of movieClip 4635 {
onClipEvent (enterFrame) {
if (Key.isDown(8) == true) {
if (_parent._parent._parent._parent.girlflag1 == false) {
_parent._parent._parent._parent.girlwet1 += 10;
_parent._parent._parent._parent.girlflag1 = true;
}
}
}
}
frame 1191 {
if (_parent._parent._parent.girlflag1 == false) {
gotoAndPlay('girl10hole12loop');
}
}
instance of movieClip 4649 {
onClipEvent (load) {
myCurrentFrame = 0;
loopforward = true;
mytemp = 0;
this._visible = false;
}
onClipEvent (enterFrame) {
if (_parent._parent._parent._parent.girlflag1 == true) {
if (myCurrentFrame < _parent._parent._parent._parent.girlwet1 - 5) {
myCurrentFrame += 1;
} else {
myCurrentFrame -= 3;
loopforward = false;
_parent._parent._parent._parent.girlflag1 = false;
}
} else {
if (Key.isDown(8) == true) {
_parent._parent._parent._parent.girlwet1 += 0.2;
if (loopforward == true) {
if (myCurrentFrame < _parent._parent._parent._parent.girlwet1 - 5) {
myCurrentFrame += 1;
} else {
myCurrentFrame -= 3;
loopforward = false;
}
} else {
if (myCurrentFrame < _parent._parent._parent._parent.girlwet1 - 9) {
loopforward = true;
myCurrentFrame += 1;
} else {
myCurrentFrame -= 3;
}
}
} else {
myCurrentFrame -= 3;
}
}
mytemp = myCurrentFrame + 1191;
if (myCurrentFrame > 0) {
if (myCurrentFrame < 80) {
_parent.gotoAndStop(mytemp);
} else {
_parent.gotoAndPlay(1271);
}
} else {
_parent.gotoAndPlay('girl10hole12loop');
}
}
}
instance of movieClip 728 {
onClipEvent (load) {
_visible = false;
}
onClipEvent (enterFrame) {
_parent._parent._parent._parent.girltears += 0.2;
}
}
frame 2471 {
gotoAndPlay('girl10loop4d');
}
}
movieClip 11916 {
frame 1 {
if (_root.statArr.l1g2b == 1) {
gotoAndStop(2);
} else {
stop();
}
}
instance of movieClip 728 {
onClipEvent (load) {
this._visible = false;
}
onClipEvent (enterFrame) {
if (_root.statArr.l1g2b == 1) {
if (Key.getAscii() == 50) {
_parent.gotoAndStop(2);
}
if (_root.statArr.l1g2c == 1) {
if (Key.getAscii() == 51) {
_parent.gotoAndStop(3);
}
if (_root.statArr.l1g2d == 1) {
if (Key.getAscii() == 52) {
_parent.gotoAndStop(4);
}
}
}
}
if (Key.getAscii() == 53) {
_parent._parent._parent.girltears = 0;
}
}
}
}
movieClip 11919 {
instance girl10chest of movieClip 514 {
onClipEvent (load) {
if (_parent._parent.th_clothes == true) {
this.gotoAndStop('chest_clothes');
}
}
}
}