Frame 1
stop();
Stage.scaleMode = "exactfit";
Stage.showMenu = false;
Instance of Symbol 18 MovieClip in Frame 1
on (release) {
getURL ("http://toonpimp.net", "gropesville");
}
Instance of Symbol 22 MovieClip in Frame 1
onClipEvent (load) {
bytes_totales = _root.getBytesTotal();
}
onClipEvent (enterFrame) {
bytes_cargados = _root.getBytesLoaded();
if (bytes_cargados >= bytes_totales) {
_root.gotoAndStop("intro1");
} else {
porcentaje = (bytes_cargados / bytes_totales) * 100;
resultado = Math.floor(porcentaje) + "Tentacoo Wape";
barra._xscale = porcentaje;
}
}
Instance of Symbol 32 MovieClip in Frame 1
on (rollOver) {
gotoAndStop ("o");
}
on (rollOut) {
gotoAndStop ("c");
}
Frame 2
stop();
Instance of Symbol 34 MovieClip in Frame 2
on (release) {
_root.fade1.gotoAndPlay(2);
}
Frame 4
function clean() {
for (i in _root) {
_root[i].removeMovieClip();
}
}
stop();
_root.fadeout1 = false;
_root.fadeout2 = false;
_root.fadeout3 = false;
_root.fadeout4 = false;
_root.clean();
_root.lev1pass = false;
_root.lev2pass = false;
_root.lev3pass = false;
_root.lev4pass = false;
_root.lev5pass = false;
_root.level = 1;
_root.score = 0;
_root.cum1 = false;
_root.cum2 = false;
_root.cum3 = false;
_root.pants = true;
_root.shirt = true;
_root.scrollstop = false;
_root.bimhard = false;
_root.life = 100;
Instance of Symbol 60 MovieClip "bg1" in Frame 4
onClipEvent (load) {
speed = 1.5;
}
onClipEvent (enterFrame) {
if (!_root.player.attack1) {
if (!_root.scrollstop) {
if (_root.mover) {
_x = (_x - speed);
}
if (_root.movel) {
_x = (_x + speed);
}
if (_x < -150) {
_x = 450;
}
if (_x > 450) {
_x = -150;
}
}
}
}
Instance of Symbol 60 MovieClip "bg2" in Frame 4
onClipEvent (load) {
speed = 1.5;
}
onClipEvent (enterFrame) {
if (!_root.player.attack1) {
if (!_root.scrollstop) {
if (_root.mover) {
_x = (_x - speed);
}
if (_root.movel) {
_x = (_x + speed);
}
if (_x < -150) {
_x = 450;
}
if (_x > 450) {
_x = -150;
}
}
}
}
Instance of Symbol 121 MovieClip "map1" in Frame 4
onClipEvent (load) {
speed = 5;
}
onClipEvent (enterFrame) {
if (!_root.player.attack1) {
if (!_root.scrollstop) {
if (_root.mover) {
_x = (_x - speed);
}
if (_root.movel) {
_x = (_x + speed);
}
if (_x < -150) {
_x = 450;
nextFrame();
}
if (_x > 450) {
_x = -150;
prevFrame();
}
}
}
}
Instance of Symbol 132 MovieClip "map2" in Frame 4
onClipEvent (load) {
speed = 5;
}
onClipEvent (enterFrame) {
_root.map1x = _x;
if (!_root.player.attack1) {
if (!_root.scrollstop) {
if (_root.mover) {
_x = (_x - speed);
}
if (_root.movel) {
_x = (_x + speed);
}
if (_x < -150) {
_x = 450;
nextFrame();
}
if (_x > 450) {
_x = -150;
prevFrame();
}
}
}
}
Instance of Symbol 134 MovieClip in Frame 4
onClipEvent (load) {
_root.timerstart = true;
_root.secs = 0;
_root.msecs = 0;
_root.mins = 0;
}
onClipEvent (enterFrame) {
if (_root.timerstart) {
_root.msecs++;
if (_root.msecs >= 30) {
_root.msecs = 0;
_root.secs1++;
}
if (_root.secs1 > 9) {
_root.secs++;
_root.secs1 = 0;
}
if (_root.secs >= 6) {
_root.secs = 0;
_root.mins++;
}
if (_root.player.dead) {
_root.timerstart = false;
}
if (_root.enemy10.dead) {
_root.timerstart = false;
}
}
}
Instance of Symbol 369 MovieClip "player" in Frame 4
onClipEvent (load) {
dead = false;
deadtimer = 0;
dir = 1;
rape1 = false;
attack1 = false;
fall = false;
speed = 5;
jumpcounter = 0;
jspeed = 5;
fallspeed = 6;
jump = false;
bdown = false;
_root.mover = false;
_root.move1 = false;
nohit = false;
nohittimer = 0;
}
onClipEvent (enterFrame) {
if (_root.life <= 0) {
dead = true;
}
if (_root.mins >= 15) {
_root.life = 0;
}
if (dead) {
deadtimer = _root.dt;
rape = false;
attack = false;
jump = false;
if ((!_root.map1.black.hitTest(_x, _y + 20, true)) and (!_root.map2.black.hitTest(_x, _y + 20, true))) {
_y = (_y + fallspeed);
gotoAndStop ("deadfall");
}
if (_root.map1.black.hitTest(_x, _y + 20, true)) {
gotoAndStop ("dead");
}
if (_root.map2.black.hitTest(_x, _y + 20, true)) {
gotoAndStop ("dead");
}
}
if (_y >= 350) {
_root.life = _root.life - 25;
_y = -350;
}
if (!dead) {
if (!rape1) {
if (!attack1) {
if (!duck) {
if (!jump) {
if ((!_root.map1.black.hitTest(_x, _y + 20, true)) and (!_root.map2.black.hitTest(_x, _y + 20, true))) {
fall = true;
} else {
fall = false;
}
if (_root.map1.black.hitTest(_x, _y + 15, true)) {
_y = (_y-1);
}
if (_root.map2.black.hitTest(_x, _y + 15, true)) {
_y = (_y-1);
}
if (_root.map1.black.hitTest(_x + 20, _y, true)) {
_x = (_x-1);
gotoAndStop ("stand");
}
if (_root.map2.black.hitTest(_x + 20, _y, true)) {
_x = (_x-1);
gotoAndStop ("stand");
}
if (_root.map1.black.hitTest(_x - 20, _y, true)) {
_x = (_x+1);
gotoAndStop ("stand");
}
if (_root.map2.black.hitTest(_x - 20, _y, true)) {
_x = (_x+1);
gotoAndStop ("stand");
}
}
if (Key.isDown(83)) {
if (!bdown) {
bdown = true;
if ((!jump) and _root.map1.black.hitTest(_x, _y + 20, true)) {
jump = true;
}
}
} else {
bdown = false;
}
if (Key.isDown(83)) {
if (!bdown2) {
bdown2 = true;
if ((!jump) and _root.map2.black.hitTest(_x, _y + 20, true)) {
jump = true;
}
}
} else {
bdown2 = false;
}
if (!attack1) {
if (!_root.scrollstop) {
if (_x < 160) {
if ((Key.isDown(37) and (!_root.map1.black.hitTest(_x - 30, _y, true))) and (!_root.map2.black.hitTest(_x - 30, _y, true))) {
dir = 1;
if ((!jump) and (!fall)) {
gotoAndStop ("run");
}
_xscale = 60;
_root.movel = true;
} else {
_root.movel = false;
}
}
}
if (_x > 160) {
_root.movel = false;
if ((Key.isDown(37) and (!_root.map1.black.hitTest(_x - 30, _y, true))) and (!_root.map2.black.hitTest(_x - 30, _y, true))) {
dir = 1;
_xscale = 60;
if ((!jump) and (!fall)) {
gotoAndStop ("run");
}
if (_x >= 0) {
_x = (_x - speed);
}
}
}
if (_root.scrollstop) {
if ((Key.isDown(37) and (!_root.map1.black.hitTest(_x - 30, _y, true))) and (!_root.map2.black.hitTest(_x - 30, _y, true))) {
dir = 1;
_xscale = 60;
if ((!jump) and (!fall)) {
gotoAndStop ("run");
}
if (_x >= 0) {
_x = (_x - speed);
}
}
}
if (!_root.scrollstop) {
if (_x > 165) {
if ((Key.isDown(39) and (!_root.map1.black.hitTest(_x + 30, _y, true))) and (!_root.map2.black.hitTest(_x + 30, _y, true))) {
dir = 0;
if ((!jump) and (!fall)) {
gotoAndStop ("run");
}
_xscale = -60;
_root.mover = true;
} else {
_root.mover = false;
}
}
}
if (_x < 165) {
_root.mover = false;
if ((Key.isDown(39) and (!_root.map1.black.hitTest(_x + 30, _y, true))) and (!_root.map2.black.hitTest(_x + 30, _y, true))) {
dir = 0;
_xscale = -60;
if ((!jump) and (!fall)) {
gotoAndStop ("run");
}
if (_x <= 350) {
_x = (_x + speed);
}
}
}
if (_root.scrollstop) {
if ((Key.isDown(39) and (!_root.map1.black.hitTest(_x + 30, _y, true))) and (!_root.map2.black.hitTest(_x + 30, _y, true))) {
dir = 0;
_xscale = -60;
if ((!jump) and (!fall)) {
gotoAndStop ("run");
}
if (_x <= 350) {
_x = (_x + speed);
}
}
}
}
if (jump) {
gotoAndStop ("jump");
jumpcounter++;
_y = (_y - jspeed);
if (jumpcounter >= 35) {
jump = false;
jumpcounter = 0;
}
}
}
if ((!Key.isDown(39)) and (!Key.isDown(37))) {
if (Key.isDown(40) and (_root.map2.black.hitTest(_x, _y + 20, true) or _root.map1.black.hitTest(_x, _y + 20, true))) {
duck = true;
} else {
duck = false;
}
}
if (duck) {
gotoAndStop ("duck");
}
if (fall) {
_y = (_y + fallspeed);
gotoAndStop ("fall");
}
if (((((((!attack1) and (!duck)) and (!fall)) and (!jump)) and (!Key.isDown(39))) and (!Key.isDown(37))) and _root.map1.black.hitTest(_x, _y + 20, true)) {
gotoAndStop ("stand");
}
if (((((((!attack1) and (!duck)) and (!fall)) and (!jump)) and (!Key.isDown(39))) and (!Key.isDown(37))) and _root.map2.black.hitTest(_x, _y + 20, true)) {
gotoAndStop ("stand");
}
if (((((((attack1 and (!duck)) and (!fall)) and (!jump)) and (!Key.isDown(39))) and (!Key.isDown(37))) and _root.map2.black.hitTest(_x + 20, _y, true)) and _root.map2.black.hitTest(_x, _y + 20, true)) {
attack1 = false;
adown = true;
gotoAndStop ("stand");
}
if ((((((((!attack1) and (!duck)) and (!fall)) and (!jump)) and (!Key.isDown(39))) and (!Key.isDown(37))) and _root.map1.black.hitTest(_x + 20, _y, true)) and _root.map1.black.hitTest(_x, _y + 20, true)) {
attack1 = false;
adown = true;
gotoAndStop ("stand");
}
}
if (!_root.cum3) {
if (!attack1) {
if (Key.isDown(65)) {
if (!adown) {
adown = true;
if (!_root.map1.black.hitTest(_x + 15, _y, true)) {
attack1 = true;
}
}
} else {
adown = false;
}
}
}
if (attack1 and (_root.map2.black.hitTest(_x, _y + 20, true) or _root.map1.black.hitTest(_x, _y + 20, true))) {
duck = false;
jump = false;
gotoAndStop ("attack1");
}
if ((attack1 and (!_root.map1.black.hitTest(_x, _y + 20, true))) and (!_root.map2.black.hitTest(_x, _y + 20, true))) {
jump = false;
_y = (_y + fallspeed);
gotoAndStop ("attack1");
}
}
}
if (nohit) {
nohittimer++;
if (nohittimer >= 40) {
nohit = false;
nohittimer = 0;
}
}
if (rape1) {
_root.movel = false;
_root.mover = false;
duck = false;
gotoAndStop ("rape1");
jump = false;
attack1 = false;
}
if (_root.shirt) {
if (_root.life <= 70) {
rip.gotoAndStop(2);
_root.shirt = false;
}
}
if (_root.pants) {
if (_root.life <= 50) {
rip.gotoAndStop(3);
_root.pants = false;
}
}
}
Instance of Symbol 377 MovieClip in Frame 4
onClipEvent (enterFrame) {
_width = _root.life;
if (_root.life > 100) {
_width = 100;
}
if (_root.life <= 0) {
_width = 0;
}
}
Instance of Symbol 380 MovieClip in Frame 4
onClipEvent (load) {
if (_root.bimson) {
gotoAndStop ("b");
}
if (_root.oph) {
gotoAndStop ("o");
}
}
Instance of Symbol 404 MovieClip "enemy7" in Frame 4
onClipEvent (load) {
speed2 = 5;
speed = 1;
dead = false;
rape = false;
rapetimer = 0;
gr = false;
gl = true;
grtimer = 0;
gltimer = 0;
fspeed = 3;
}
onClipEvent (enterFrame) {
if ((!_root.map1.black.hitTest(_x, _y + 20, true)) and (!_root.map2.black.hitTest(_x, _y + 20, true))) {
fall = true;
} else {
fall = false;
}
if (!rape) {
if (fall) {
_y = (_y + fspeed);
}
}
if (!dead) {
if (!rape) {
if (gr) {
grtimer++;
_x = (_x + speed);
if (grtimer >= 100) {
grtimer = 0;
gl = true;
gr = false;
}
}
if (gl) {
gltimer++;
_x = (_x - speed);
if (gltimer >= 100) {
gltimer = 0;
gr = true;
gl = false;
}
}
if (this.hitTest(_root.player.attack.limit)) {
dead = true;
}
if (!_root.player.rape1) {
if (!_root.player.nohit) {
if (limit.hitTest(_root.player.limita)) {
rape = true;
}
}
}
}
}
if (rape) {
_root.player.rape1 = true;
if (_root.pants) {
if (_root.player.dir == 1) {
_xscale = 70;
_y = _root.player._y;
_x = (_root.player._x - 30);
}
if (_root.player.dir == 0) {
_y = _root.player._y;
_x = (_root.player._x + 30);
_xscale = -70;
}
gotoAndStop ("rape");
_root.player.victim.gotoAndStop(3);
}
if (!_root.pants) {
if (_root.player.dir == 1) {
_xscale = 70;
_y = _root.player._y;
_x = (_root.player._x - 30);
}
if (_root.player.dir == 0) {
_y = _root.player._y;
_x = (_root.player._x + 30);
_xscale = -70;
}
gotoAndStop ("rape1");
_root.player.victim.gotoAndStop(1);
}
rapetimer++;
if (_root.pants) {
if (rapetimer >= 50) {
_root.life = _root.life - 20;
_root.player.rape1 = false;
_root.player.nohit = true;
rape = false;
dead = false;
pushback = true;
gotoAndStop ("chill");
rapetimer = 0;
}
}
if (!_root.pants) {
if (rapetimer >= 150) {
_root.life = _root.life - 20;
_root.player.rape1 = false;
_root.player.nohit = true;
rape = false;
dead = false;
pushback = true;
gotoAndStop ("chill");
rapetimer = 0;
}
}
}
if (dead) {
gotoAndStop ("dead");
}
if (!_root.player.attack1) {
if (!_root.scrollstop) {
if (_root.mover) {
_x = (_x - speed2);
}
if (_root.movel) {
_x = (_x + speed2);
}
}
}
}
Instance of Symbol 421 MovieClip "fadeout1" in Frame 4
onClipEvent (load) {
gotimer = 0;
}
onClipEvent (enterFrame) {
if (_root.life <= 0) {
gotimer++;
if (gotimer >= 20) {
gotoAndStop (5);
}
}
}
Frame 5
stop();
Instance of Symbol 487 MovieClip "e2" in Frame 5
onClipEvent (load) {
speed2 = 5;
speed = 1;
dead = false;
rape = false;
rapetimer = 0;
gr = false;
gl = true;
grtimer = 0;
gltimer = 0;
fspeed = 3;
}
onClipEvent (enterFrame) {
if ((!_root.map1.black.hitTest(_x, _y + 20, true)) and (!_root.map2.black.hitTest(_x, _y + 20, true))) {
fall = true;
} else {
fall = false;
}
if (!rape) {
if (fall) {
_y = (_y + fspeed);
}
}
if (!dead) {
if (!rape) {
if (gr) {
_xscale = 100;
grtimer++;
_x = (_x + speed);
if (grtimer >= 100) {
grtimer = 0;
gl = true;
gr = false;
}
}
if (gl) {
_xscale = -100;
gltimer++;
_x = (_x - speed);
if (gltimer >= 100) {
gltimer = 0;
gr = true;
gl = false;
}
}
if (this.hitTest(_root.player.attack.limit)) {
dead = true;
}
if (!_root.player.rape1) {
if (!_root.player.nohit) {
if (limit.hitTest(_root.player.limita)) {
rape = true;
}
}
}
}
}
if (rape) {
_root.player.rape1 = true;
if (_root.pants) {
if (_root.player.dir == 1) {
_xscale = 100;
_y = _root.player._y;
_x = (_root.player._x - 30);
}
if (_root.player.dir == 0) {
_y = _root.player._y;
_x = (_root.player._x + 30);
_xscale = -100;
}
gotoAndStop ("rape");
_root.player.victim.gotoAndStop(3);
}
if (!_root.pants) {
if (_root.player.dir == 1) {
_xscale = 100;
_y = _root.player._y;
_x = (_root.player._x - 30);
}
if (_root.player.dir == 0) {
_y = _root.player._y;
_x = (_root.player._x + 30);
_xscale = -100;
}
gotoAndStop ("rape1");
_root.player.victim.gotoAndStop(2);
}
rapetimer++;
if (_root.pants) {
if (rapetimer >= 50) {
_root.life = _root.life - 20;
_root.player.rape1 = false;
_root.player.nohit = true;
rape = false;
dead = false;
pushback = true;
gotoAndStop ("chill");
rapetimer = 0;
}
}
if (!_root.pants) {
if (rapetimer >= 100) {
_root.life = _root.life - 20;
_root.player.rape1 = false;
_root.player.nohit = true;
rape = false;
dead = false;
pushback = true;
gotoAndStop ("chill");
rapetimer = 0;
}
}
}
if (dead) {
gotoAndStop ("dead");
}
if (!_root.player.attack1) {
if (!_root.scrollstop) {
if (_root.mover) {
_x = (_x - speed2);
}
if (_root.movel) {
_x = (_x + speed2);
}
}
}
}
Frame 6
stop();
Instance of Symbol 404 MovieClip "enemy5" in Frame 6
onClipEvent (load) {
speed2 = 5;
speed = 1;
dead = false;
rape = false;
rapetimer = 0;
gr = false;
gl = true;
grtimer = 0;
gltimer = 0;
fspeed = 3;
}
onClipEvent (enterFrame) {
if ((!_root.map1.black.hitTest(_x, _y + 20, true)) and (!_root.map2.black.hitTest(_x, _y + 20, true))) {
fall = true;
} else {
fall = false;
}
if (!rape) {
if (fall) {
_y = (_y + fspeed);
}
}
if (!dead) {
if (!rape) {
if (gr) {
grtimer++;
_x = (_x + speed);
if (grtimer >= 100) {
grtimer = 0;
gl = true;
gr = false;
}
}
if (gl) {
gltimer++;
_x = (_x - speed);
if (gltimer >= 100) {
gltimer = 0;
gr = true;
gl = false;
}
}
if (this.hitTest(_root.player.attack.limit)) {
dead = true;
}
if (!_root.player.rape1) {
if (!_root.player.nohit) {
if (limit.hitTest(_root.player.limita)) {
rape = true;
}
}
}
}
}
if (rape) {
_root.player.rape1 = true;
if (_root.pants) {
if (_root.player.dir == 1) {
_xscale = 70;
_y = _root.player._y;
_x = (_root.player._x - 30);
}
if (_root.player.dir == 0) {
_y = _root.player._y;
_x = (_root.player._x + 30);
_xscale = -70;
}
gotoAndStop ("rape");
_root.player.victim.gotoAndStop(3);
}
if (!_root.pants) {
if (_root.player.dir == 1) {
_xscale = 70;
_y = _root.player._y;
_x = (_root.player._x - 30);
}
if (_root.player.dir == 0) {
_y = _root.player._y;
_x = (_root.player._x + 30);
_xscale = -70;
}
gotoAndStop ("rape1");
_root.player.victim.gotoAndStop(1);
}
rapetimer++;
if (_root.pants) {
if (rapetimer >= 50) {
_root.life = _root.life - 20;
_root.player.rape1 = false;
_root.player.nohit = true;
rape = false;
dead = false;
pushback = true;
gotoAndStop ("chill");
rapetimer = 0;
}
}
if (!_root.pants) {
if (rapetimer >= 150) {
_root.life = _root.life - 20;
_root.player.rape1 = false;
_root.player.nohit = true;
rape = false;
dead = false;
pushback = true;
gotoAndStop ("chill");
rapetimer = 0;
}
}
}
if (dead) {
gotoAndStop ("dead");
}
if (!_root.player.attack1) {
if (!_root.scrollstop) {
if (_root.mover) {
_x = (_x - speed2);
}
if (_root.movel) {
_x = (_x + speed2);
}
}
}
}
Frame 7
stop();
Instance of Symbol 530 MovieClip "enemy4" in Frame 7
onClipEvent (load) {
speed = 5;
dead = false;
rape = false;
gospeed = 0.75;
rapetimer = 0;
pushback = false;
pushtimer = 0;
}
onClipEvent (enterFrame) {
if (!dead) {
if (!pushback) {
if (!rape) {
if (_root.player._x >= _x) {
_x = (_x + gospeed);
}
if (_root.player._x <= _x) {
_x = (_x - gospeed);
}
if (_root.player._y >= _y) {
_y = (_y + gospeed);
}
if (_root.player._y <= _y) {
_y = (_y - gospeed);
}
if (this.hitTest(_root.player.attack.limit)) {
dead = true;
}
if (!_root.player.rape1) {
if (!_root.player.nohit) {
if (this.hitTest(_root.player.limita)) {
rape = true;
}
}
}
}
}
}
if (!_root.player.attack1) {
if (!_root.scrollstop) {
if (_root.mover) {
_x = (_x - speed);
}
if (_root.movel) {
_x = (_x + speed);
}
}
}
if (pushback) {
pushtimer++;
_x = (_x - speed);
if (pushtimer >= 10) {
pushback = false;
pushtimer = 0;
}
}
if (!dead) {
if (rape) {
_y = _root.player._y;
_x = (_root.player._x + 10);
_root.player.rape1 = true;
if (_root.pants) {
if (_root.player.dir == 1) {
_xscale = 100;
_y = (_root.player._y - 20);
_x = (_root.player._x + 10);
}
if (_root.player.dir == 0) {
_y = (_root.player._y - 20);
_x = (_root.player._x - 10);
_xscale = -100;
}
gotoAndStop ("rape1");
_root.player.victim.gotoAndStop(3);
}
if (!_root.pants) {
if (_root.player.dir == 1) {
_y = (_root.player._y - 10);
_x = (_root.player._x + 10);
_xscale = 100;
}
if (_root.player.dir == 0) {
_y = (_root.player._y - 10);
_x = (_root.player._x - 10);
_xscale = -100;
}
gotoAndStop ("rape");
_root.player.victim.gotoAndStop(1);
}
rapetimer++;
if (rapetimer >= 150) {
_root.life = _root.life - 20;
_root.player.rape1 = false;
_root.player.nohit = true;
rape = false;
dead = false;
pushback = true;
gotoAndStop ("chase");
rapetimer = 0;
}
}
}
if (dead) {
gotoAndStop ("dead");
_y = (_y + 2);
}
}
Instance of Symbol 530 MovieClip "enemy3" in Frame 7
onClipEvent (load) {
speed = 5;
dead = false;
rape = false;
gospeed = 1.5;
rapetimer = 0;
pushback = false;
pushtimer = 0;
}
onClipEvent (enterFrame) {
if (!dead) {
if (!pushback) {
if (!rape) {
if (_root.player._x >= _x) {
_x = (_x + gospeed);
}
if (_root.player._x <= _x) {
_x = (_x - gospeed);
}
if (_root.player._y >= _y) {
_y = (_y + gospeed);
}
if (_root.player._y <= _y) {
_y = (_y - gospeed);
}
if (this.hitTest(_root.player.attack.limit)) {
dead = true;
}
if (!_root.player.rape1) {
if (!_root.player.nohit) {
if (this.hitTest(_root.player.limita)) {
rape = true;
}
}
}
}
}
}
if (!_root.player.attack1) {
if (!_root.scrollstop) {
if (_root.mover) {
_x = (_x - speed);
}
if (_root.movel) {
_x = (_x + speed);
}
}
}
if (pushback) {
pushtimer++;
_x = (_x - speed);
if (pushtimer >= 10) {
pushback = false;
pushtimer = 0;
}
}
if (!dead) {
if (rape) {
_y = _root.player._y;
_x = (_root.player._x + 10);
_root.player.rape1 = true;
if (_root.pants) {
if (_root.player.dir == 1) {
_xscale = 100;
_y = (_root.player._y - 20);
_x = (_root.player._x + 10);
}
if (_root.player.dir == 0) {
_y = (_root.player._y - 20);
_x = (_root.player._x - 10);
_xscale = -100;
}
gotoAndStop ("rape1");
_root.player.victim.gotoAndStop(3);
}
if (!_root.pants) {
if (_root.player.dir == 1) {
_y = (_root.player._y - 10);
_x = (_root.player._x + 10);
_xscale = 100;
}
if (_root.player.dir == 0) {
_y = (_root.player._y - 10);
_x = (_root.player._x - 10);
_xscale = -100;
}
gotoAndStop ("rape");
_root.player.victim.gotoAndStop(1);
}
rapetimer++;
if (rapetimer >= 150) {
_root.life = _root.life - 20;
_root.player.rape1 = false;
_root.player.nohit = true;
rape = false;
dead = false;
pushback = true;
gotoAndStop ("chase");
rapetimer = 0;
}
}
}
if (dead) {
gotoAndStop ("dead");
_y = (_y + 2);
}
}
Instance of Symbol 530 MovieClip "enemy2" in Frame 7
onClipEvent (load) {
speed = 5;
dead = false;
rape = false;
gospeed = 1;
rapetimer = 0;
pushback = false;
pushtimer = 0;
}
onClipEvent (enterFrame) {
if (!dead) {
if (!pushback) {
if (!rape) {
if (_root.player._x >= _x) {
_x = (_x + gospeed);
}
if (_root.player._x <= _x) {
_x = (_x - gospeed);
}
if (_root.player._y >= _y) {
_y = (_y + gospeed);
}
if (_root.player._y <= _y) {
_y = (_y - gospeed);
}
if (this.hitTest(_root.player.attack.limit)) {
dead = true;
}
if (!_root.player.rape1) {
if (!_root.player.nohit) {
if (this.hitTest(_root.player.limita)) {
rape = true;
}
}
}
}
}
}
if (!_root.player.attack1) {
if (!_root.scrollstop) {
if (_root.mover) {
_x = (_x - speed);
}
if (_root.movel) {
_x = (_x + speed);
}
}
}
if (pushback) {
pushtimer++;
_x = (_x - speed);
if (pushtimer >= 10) {
pushback = false;
pushtimer = 0;
}
}
if (!dead) {
if (rape) {
_y = _root.player._y;
_x = (_root.player._x + 10);
_root.player.rape1 = true;
if (_root.pants) {
if (_root.player.dir == 1) {
_xscale = 100;
_y = (_root.player._y - 20);
_x = (_root.player._x + 10);
}
if (_root.player.dir == 0) {
_y = (_root.player._y - 20);
_x = (_root.player._x - 10);
_xscale = -100;
}
gotoAndStop ("rape1");
_root.player.victim.gotoAndStop(3);
}
if (!_root.pants) {
if (_root.player.dir == 1) {
_y = (_root.player._y - 10);
_x = (_root.player._x + 10);
_xscale = 100;
}
if (_root.player.dir == 0) {
_y = (_root.player._y - 10);
_x = (_root.player._x - 10);
_xscale = -100;
}
gotoAndStop ("rape");
_root.player.victim.gotoAndStop(1);
}
rapetimer++;
if (rapetimer >= 150) {
_root.life = _root.life - 20;
_root.player.rape1 = false;
_root.player.nohit = true;
rape = false;
dead = false;
pushback = true;
gotoAndStop ("chase");
rapetimer = 0;
}
}
}
if (dead) {
gotoAndStop ("dead");
_y = (_y + 2);
}
}
Instance of Symbol 530 MovieClip "enemy1" in Frame 7
onClipEvent (load) {
speed = 5;
dead = false;
rape = false;
gospeed = 1.25;
rapetimer = 0;
pushback = false;
pushtimer = 0;
}
onClipEvent (enterFrame) {
if (!dead) {
if (!pushback) {
if (!rape) {
if (_root.player._x >= _x) {
_x = (_x + gospeed);
}
if (_root.player._x <= _x) {
_x = (_x - gospeed);
}
if (_root.player._y >= _y) {
_y = (_y + gospeed);
}
if (_root.player._y <= _y) {
_y = (_y - gospeed);
}
if (this.hitTest(_root.player.attack.limit)) {
dead = true;
}
if (!_root.player.rape1) {
if (!_root.player.nohit) {
if (this.hitTest(_root.player.limita)) {
rape = true;
}
}
}
}
}
}
if (!_root.player.attack1) {
if (!_root.scrollstop) {
if (_root.mover) {
_x = (_x - speed);
}
if (_root.movel) {
_x = (_x + speed);
}
}
}
if (pushback) {
pushtimer++;
_x = (_x - speed);
if (pushtimer >= 10) {
pushback = false;
pushtimer = 0;
}
}
if (!dead) {
if (rape) {
_y = _root.player._y;
_x = (_root.player._x + 10);
_root.player.rape1 = true;
if (_root.pants) {
if (_root.player.dir == 1) {
_xscale = 100;
_y = (_root.player._y - 20);
_x = (_root.player._x + 10);
}
if (_root.player.dir == 0) {
_y = (_root.player._y - 20);
_x = (_root.player._x - 10);
_xscale = -100;
}
gotoAndStop ("rape1");
_root.player.victim.gotoAndStop(3);
}
if (!_root.pants) {
if (_root.player.dir == 1) {
_y = (_root.player._y - 10);
_x = (_root.player._x + 10);
_xscale = 100;
}
if (_root.player.dir == 0) {
_y = (_root.player._y - 10);
_x = (_root.player._x - 10);
_xscale = -100;
}
gotoAndStop ("rape");
_root.player.victim.gotoAndStop(1);
}
rapetimer++;
if (rapetimer >= 150) {
_root.life = _root.life - 20;
_root.player.rape1 = false;
_root.player.nohit = true;
rape = false;
dead = false;
pushback = true;
gotoAndStop ("chase");
rapetimer = 0;
}
}
}
if (dead) {
gotoAndStop ("dead");
_y = (_y + 2);
}
}
Instance of Symbol 487 MovieClip "e2" in Frame 7
onClipEvent (load) {
speed2 = 5;
speed = 1;
dead = false;
rape = false;
rapetimer = 0;
gr = false;
gl = true;
grtimer = 0;
gltimer = 0;
fspeed = 3;
}
onClipEvent (enterFrame) {
if ((!_root.map1.black.hitTest(_x, _y + 20, true)) and (!_root.map2.black.hitTest(_x, _y + 20, true))) {
fall = true;
} else {
fall = false;
}
if (!rape) {
if (fall) {
_y = (_y + fspeed);
}
}
if (!dead) {
if (!rape) {
if (gr) {
_xscale = 100;
grtimer++;
_x = (_x + speed);
if (grtimer >= 100) {
grtimer = 0;
gl = true;
gr = false;
}
}
if (gl) {
_xscale = -100;
gltimer++;
_x = (_x - speed);
if (gltimer >= 100) {
gltimer = 0;
gr = true;
gl = false;
}
}
if (this.hitTest(_root.player.attack.limit)) {
dead = true;
}
if (!_root.player.rape1) {
if (!_root.player.nohit) {
if (limit.hitTest(_root.player.limita)) {
rape = true;
}
}
}
}
}
if (rape) {
_root.player.rape1 = true;
if (_root.pants) {
if (_root.player.dir == 1) {
_xscale = 100;
_y = _root.player._y;
_x = (_root.player._x - 30);
}
if (_root.player.dir == 0) {
_y = _root.player._y;
_x = (_root.player._x + 30);
_xscale = -100;
}
gotoAndStop ("rape");
_root.player.victim.gotoAndStop(3);
}
if (!_root.pants) {
if (_root.player.dir == 1) {
_xscale = 100;
_y = _root.player._y;
_x = (_root.player._x - 30);
}
if (_root.player.dir == 0) {
_y = _root.player._y;
_x = (_root.player._x + 30);
_xscale = -100;
}
gotoAndStop ("rape1");
_root.player.victim.gotoAndStop(2);
}
rapetimer++;
if (_root.pants) {
if (rapetimer >= 50) {
_root.life = _root.life - 20;
_root.player.rape1 = false;
_root.player.nohit = true;
rape = false;
dead = false;
pushback = true;
gotoAndStop ("chill");
rapetimer = 0;
}
}
if (!_root.pants) {
if (rapetimer >= 100) {
_root.life = _root.life - 20;
_root.player.rape1 = false;
_root.player.nohit = true;
rape = false;
dead = false;
pushback = true;
gotoAndStop ("chill");
rapetimer = 0;
}
}
}
if (dead) {
gotoAndStop ("dead");
}
if (!_root.player.attack1) {
if (!_root.scrollstop) {
if (_root.mover) {
_x = (_x - speed2);
}
if (_root.movel) {
_x = (_x + speed2);
}
}
}
}
Instance of Symbol 734 MovieClip "bigboss" in Frame 7
onClipEvent (load) {
life = 100;
hit = false;
hittime = 0;
speed2 = 5;
speed = 3.5;
dead = false;
rape = false;
rapetimer = 0;
gr = true;
gl = false;
grtimer = 0;
gltimer = 0;
fspeed = 3;
}
onClipEvent (enterFrame) {
if ((!_root.map1.black.hitTest(_x, _y + 20, true)) and (!_root.map2.black.hitTest(_x, _y + 20, true))) {
fall = true;
} else {
fall = false;
}
if (!rape) {
if (fall) {
_y = (_y + fspeed);
}
}
if (!dead) {
if (!hit) {
if (!rape) {
if (gr) {
_xscale = 50;
grtimer++;
_x = (_x + speed);
}
if (this.hitTest(_root.player.attack.limit)) {
life = life - 50;
blink.gotoAndPlay(2);
hit = true;
}
if (!_root.player.rape1) {
if (!_root.player.nohit) {
if (limit.hitTest(_root.player.limita)) {
rape = true;
}
}
}
}
}
if (rape) {
_root.player.rape1 = true;
if (_root.pants) {
if (_root.player.dir == 1) {
_xscale = 50;
_y = _root.player._y;
_x = (_root.player._x - 30);
}
if (_root.player.dir == 0) {
_y = _root.player._y;
_x = (_root.player._x + 30);
_xscale = -50;
}
gotoAndStop ("rape");
_root.player.victim.gotoAndStop(3);
}
if (!_root.pants) {
if (_root.player.dir == 1) {
_xscale = 50;
_y = _root.player._y;
_x = (_root.player._x - 30);
}
if (_root.player.dir == 0) {
_y = _root.player._y;
_x = (_root.player._x + 30);
_xscale = -50;
}
gotoAndStop ("rape1");
_root.player.victim.gotoAndStop(2);
}
rapetimer++;
if (_root.pants) {
if (rapetimer >= 50) {
_root.life = _root.life - 20;
_root.player.rape1 = false;
_root.player.nohit = true;
rape = false;
dead = false;
pushback = true;
gotoAndStop ("chill");
rapetimer = 0;
}
}
if (!_root.pants) {
if (rapetimer >= 130) {
_root.life = _root.life - 20;
_root.player.rape1 = false;
_root.player.nohit = true;
rape = false;
dead = false;
pushback = true;
gotoAndStop ("chill");
rapetimer = 0;
}
}
}
}
if (!dead) {
if (hit) {
hittime++;
gotoAndStop ("hit");
if (gr) {
_x = (_x - speed);
}
if (gl) {
_x = (_x + speed);
}
if (hittime >= 30) {
gotoAndStop ("chill");
hittime = 0;
hit = false;
}
}
}
if (life <= 0) {
dead = true;
}
if (dead) {
gotoAndStop ("dead");
_y = (_y + 5);
}
if (!_root.player.attack1) {
if (!_root.scrollstop) {
if (_root.mover) {
_x = (_x - speed2);
}
if (_root.movel) {
_x = (_x + speed2);
}
}
}
}
Frame 8
stop();
stop();
Instance of Symbol 404 MovieClip "enemy7" in Frame 8
onClipEvent (load) {
speed2 = 5;
speed = 1;
dead = false;
rape = false;
rapetimer = 0;
gr = false;
gl = true;
grtimer = 0;
gltimer = 0;
fspeed = 3;
}
onClipEvent (enterFrame) {
if ((!_root.map1.black.hitTest(_x, _y + 20, true)) and (!_root.map2.black.hitTest(_x, _y + 20, true))) {
fall = true;
} else {
fall = false;
}
if (!rape) {
if (fall) {
_y = (_y + fspeed);
}
}
if (!dead) {
if (!rape) {
if (gr) {
grtimer++;
_x = (_x + speed);
if (grtimer >= 100) {
grtimer = 0;
gl = true;
gr = false;
}
}
if (gl) {
gltimer++;
_x = (_x - speed);
if (gltimer >= 100) {
gltimer = 0;
gr = true;
gl = false;
}
}
if (this.hitTest(_root.player.attack.limit)) {
dead = true;
}
if (!_root.player.rape1) {
if (!_root.player.nohit) {
if (limit.hitTest(_root.player.limita)) {
rape = true;
}
}
}
}
}
if (rape) {
_root.player.rape1 = true;
if (_root.pants) {
if (_root.player.dir == 1) {
_xscale = 70;
_y = _root.player._y;
_x = (_root.player._x - 30);
}
if (_root.player.dir == 0) {
_y = _root.player._y;
_x = (_root.player._x + 30);
_xscale = -70;
}
gotoAndStop ("rape");
_root.player.victim.gotoAndStop(3);
}
if (!_root.pants) {
if (_root.player.dir == 1) {
_xscale = 70;
_y = _root.player._y;
_x = (_root.player._x - 30);
}
if (_root.player.dir == 0) {
_y = _root.player._y;
_x = (_root.player._x + 30);
_xscale = -70;
}
gotoAndStop ("rape1");
_root.player.victim.gotoAndStop(1);
}
rapetimer++;
if (_root.pants) {
if (rapetimer >= 50) {
_root.life = _root.life - 20;
_root.player.rape1 = false;
_root.player.nohit = true;
rape = false;
dead = false;
pushback = true;
gotoAndStop ("chill");
rapetimer = 0;
}
}
if (!_root.pants) {
if (rapetimer >= 150) {
_root.life = _root.life - 20;
_root.player.rape1 = false;
_root.player.nohit = true;
rape = false;
dead = false;
pushback = true;
gotoAndStop ("chill");
rapetimer = 0;
}
}
}
if (dead) {
gotoAndStop ("dead");
}
if (!_root.player.attack1) {
if (!_root.scrollstop) {
if (_root.mover) {
_x = (_x - speed2);
}
if (_root.movel) {
_x = (_x + speed2);
}
}
}
}
Frame 9
stop();
Instance of Symbol 530 MovieClip "enemy4" in Frame 9
onClipEvent (load) {
speed = 5;
dead = false;
rape = false;
gospeed = 2.75;
rapetimer = 0;
pushback = false;
pushtimer = 0;
}
onClipEvent (enterFrame) {
if (!dead) {
if (!pushback) {
if (!rape) {
if (_root.player._x >= _x) {
_x = (_x + gospeed);
}
if (_root.player._x <= _x) {
_x = (_x - gospeed);
}
if (_root.player._y >= _y) {
_y = (_y + gospeed);
}
if (_root.player._y <= _y) {
_y = (_y - gospeed);
}
if (this.hitTest(_root.player.attack.limit)) {
dead = true;
}
if (!_root.player.rape1) {
if (!_root.player.nohit) {
if (this.hitTest(_root.player.limita)) {
rape = true;
}
}
}
}
}
}
if (!_root.player.attack1) {
if (!_root.scrollstop) {
if (_root.mover) {
_x = (_x - speed);
}
if (_root.movel) {
_x = (_x + speed);
}
}
}
if (pushback) {
pushtimer++;
_x = (_x - speed);
if (pushtimer >= 10) {
pushback = false;
pushtimer = 0;
}
}
if (rape) {
_y = _root.player._y;
_x = (_root.player._x + 10);
_root.player.rape1 = true;
if (_root.pants) {
if (_root.player.dir == 1) {
_xscale = 100;
_y = (_root.player._y - 20);
_x = (_root.player._x + 10);
}
if (_root.player.dir == 0) {
_y = (_root.player._y - 20);
_x = (_root.player._x - 10);
_xscale = -100;
}
gotoAndStop ("rape1");
_root.player.victim.gotoAndStop(3);
}
if (!_root.pants) {
if (_root.player.dir == 1) {
_y = (_root.player._y - 10);
_x = (_root.player._x + 10);
_xscale = 100;
}
if (_root.player.dir == 0) {
_y = (_root.player._y - 10);
_x = (_root.player._x - 10);
_xscale = -100;
}
gotoAndStop ("rape");
_root.player.victim.gotoAndStop(1);
}
rapetimer++;
if (rapetimer >= 150) {
_root.life = _root.life - 20;
_root.player.rape1 = false;
_root.player.nohit = true;
rape = false;
dead = false;
pushback = true;
gotoAndStop ("chase");
rapetimer = 0;
}
}
if (dead) {
gotoAndStop ("dead");
_y = (_y + 2);
}
}
Instance of Symbol 530 MovieClip "enemy3" in Frame 9
onClipEvent (load) {
speed = 5;
dead = false;
rape = false;
gospeed = 2.5;
rapetimer = 0;
pushback = false;
pushtimer = 0;
}
onClipEvent (enterFrame) {
if (!dead) {
if (!pushback) {
if (!rape) {
if (_root.player._x >= _x) {
_x = (_x + gospeed);
}
if (_root.player._x <= _x) {
_x = (_x - gospeed);
}
if (_root.player._y >= _y) {
_y = (_y + gospeed);
}
if (_root.player._y <= _y) {
_y = (_y - gospeed);
}
if (this.hitTest(_root.player.attack.limit)) {
dead = true;
}
if (!_root.player.rape1) {
if (!_root.player.nohit) {
if (this.hitTest(_root.player.limita)) {
rape = true;
}
}
}
}
}
}
if (!_root.player.attack1) {
if (!_root.scrollstop) {
if (_root.mover) {
_x = (_x - speed);
}
if (_root.movel) {
_x = (_x + speed);
}
}
}
if (pushback) {
pushtimer++;
_x = (_x - speed);
if (pushtimer >= 10) {
pushback = false;
pushtimer = 0;
}
}
if (rape) {
_y = _root.player._y;
_x = (_root.player._x + 10);
_root.player.rape1 = true;
if (_root.pants) {
if (_root.player.dir == 1) {
_xscale = 100;
_y = (_root.player._y - 20);
_x = (_root.player._x + 10);
}
if (_root.player.dir == 0) {
_y = (_root.player._y - 20);
_x = (_root.player._x - 10);
_xscale = -100;
}
gotoAndStop ("rape1");
_root.player.victim.gotoAndStop(3);
}
if (!_root.pants) {
if (_root.player.dir == 1) {
_y = (_root.player._y - 10);
_x = (_root.player._x + 10);
_xscale = 100;
}
if (_root.player.dir == 0) {
_y = (_root.player._y - 10);
_x = (_root.player._x - 10);
_xscale = -100;
}
gotoAndStop ("rape");
_root.player.victim.gotoAndStop(1);
}
rapetimer++;
if (rapetimer >= 150) {
_root.life = _root.life - 20;
_root.player.rape1 = false;
_root.player.nohit = true;
rape = false;
dead = false;
pushback = true;
gotoAndStop ("chase");
rapetimer = 0;
}
}
if (dead) {
gotoAndStop ("dead");
_y = (_y + 2);
}
}
Instance of Symbol 530 MovieClip "enemy2" in Frame 9
onClipEvent (load) {
speed = 5;
dead = false;
rape = false;
gospeed = 3;
rapetimer = 0;
pushback = false;
pushtimer = 0;
}
onClipEvent (enterFrame) {
if (!dead) {
if (!pushback) {
if (!rape) {
if (_root.player._x >= _x) {
_x = (_x + gospeed);
}
if (_root.player._x <= _x) {
_x = (_x - gospeed);
}
if (_root.player._y >= _y) {
_y = (_y + gospeed);
}
if (_root.player._y <= _y) {
_y = (_y - gospeed);
}
if (this.hitTest(_root.player.attack.limit)) {
dead = true;
}
if (!_root.player.rape1) {
if (!_root.player.nohit) {
if (this.hitTest(_root.player.limita)) {
rape = true;
}
}
}
}
}
}
if (!_root.player.attack1) {
if (!_root.scrollstop) {
if (_root.mover) {
_x = (_x - speed);
}
if (_root.movel) {
_x = (_x + speed);
}
}
}
if (pushback) {
pushtimer++;
_x = (_x - speed);
if (pushtimer >= 10) {
pushback = false;
pushtimer = 0;
}
}
if (rape) {
_y = _root.player._y;
_x = (_root.player._x + 10);
_root.player.rape1 = true;
if (_root.pants) {
if (_root.player.dir == 1) {
_xscale = 100;
_y = (_root.player._y - 20);
_x = (_root.player._x + 10);
}
if (_root.player.dir == 0) {
_y = (_root.player._y - 20);
_x = (_root.player._x - 10);
_xscale = -100;
}
gotoAndStop ("rape1");
_root.player.victim.gotoAndStop(3);
}
if (!_root.pants) {
if (_root.player.dir == 1) {
_y = (_root.player._y - 10);
_x = (_root.player._x + 10);
_xscale = 100;
}
if (_root.player.dir == 0) {
_y = (_root.player._y - 10);
_x = (_root.player._x - 10);
_xscale = -100;
}
gotoAndStop ("rape");
_root.player.victim.gotoAndStop(1);
}
rapetimer++;
if (rapetimer >= 150) {
_root.life = _root.life - 20;
_root.player.rape1 = false;
_root.player.nohit = true;
rape = false;
dead = false;
pushback = true;
gotoAndStop ("chase");
rapetimer = 0;
}
}
if (dead) {
gotoAndStop ("dead");
_y = (_y + 2);
}
}
Instance of Symbol 530 MovieClip "enemy1" in Frame 9
onClipEvent (load) {
speed = 5;
dead = false;
rape = false;
gospeed = 2.25;
rapetimer = 0;
pushback = false;
pushtimer = 0;
}
onClipEvent (enterFrame) {
if (!dead) {
if (!pushback) {
if (!rape) {
if (_root.player._x >= _x) {
_x = (_x + gospeed);
}
if (_root.player._x <= _x) {
_x = (_x - gospeed);
}
if (_root.player._y >= _y) {
_y = (_y + gospeed);
}
if (_root.player._y <= _y) {
_y = (_y - gospeed);
}
if (this.hitTest(_root.player.attack.limit)) {
dead = true;
}
if (!_root.player.rape1) {
if (!_root.player.nohit) {
if (this.hitTest(_root.player.limita)) {
rape = true;
}
}
}
}
}
}
if (!_root.player.attack1) {
if (!_root.scrollstop) {
if (_root.mover) {
_x = (_x - speed);
}
if (_root.movel) {
_x = (_x + speed);
}
}
}
if (pushback) {
pushtimer++;
_x = (_x - speed);
if (pushtimer >= 10) {
pushback = false;
pushtimer = 0;
}
}
if (rape) {
_y = _root.player._y;
_x = (_root.player._x + 10);
_root.player.rape1 = true;
if (_root.pants) {
if (_root.player.dir == 1) {
_xscale = 100;
_y = (_root.player._y - 20);
_x = (_root.player._x + 10);
}
if (_root.player.dir == 0) {
_y = (_root.player._y - 20);
_x = (_root.player._x - 10);
_xscale = -100;
}
gotoAndStop ("rape1");
_root.player.victim.gotoAndStop(3);
}
if (!_root.pants) {
if (_root.player.dir == 1) {
_y = (_root.player._y - 10);
_x = (_root.player._x + 10);
_xscale = 100;
}
if (_root.player.dir == 0) {
_y = (_root.player._y - 10);
_x = (_root.player._x - 10);
_xscale = -100;
}
gotoAndStop ("rape");
_root.player.victim.gotoAndStop(1);
}
rapetimer++;
if (rapetimer >= 150) {
_root.life = _root.life - 20;
_root.player.rape1 = false;
_root.player.nohit = true;
rape = false;
dead = false;
pushback = true;
gotoAndStop ("chase");
rapetimer = 0;
}
}
if (dead) {
gotoAndStop ("dead");
_y = (_y + 2);
}
}
Instance of Symbol 487 MovieClip "e2" in Frame 9
onClipEvent (load) {
speed2 = 5;
speed = 1;
dead = false;
rape = false;
rapetimer = 0;
gr = false;
gl = true;
grtimer = 0;
gltimer = 0;
fspeed = 3;
}
onClipEvent (enterFrame) {
if ((!_root.map1.black.hitTest(_x, _y + 20, true)) and (!_root.map2.black.hitTest(_x, _y + 20, true))) {
fall = true;
} else {
fall = false;
}
if (!rape) {
if (fall) {
_y = (_y + fspeed);
}
}
if (!dead) {
if (!rape) {
if (gr) {
_xscale = 100;
grtimer++;
_x = (_x + speed);
if (grtimer >= 100) {
grtimer = 0;
gl = true;
gr = false;
}
}
if (gl) {
_xscale = -100;
gltimer++;
_x = (_x - speed);
if (gltimer >= 100) {
gltimer = 0;
gr = true;
gl = false;
}
}
if (this.hitTest(_root.player.attack.limit)) {
dead = true;
}
if (!_root.player.rape1) {
if (!_root.player.nohit) {
if (limit.hitTest(_root.player.limita)) {
rape = true;
}
}
}
}
}
if (rape) {
_root.player.rape1 = true;
if (_root.pants) {
if (_root.player.dir == 1) {
_xscale = 100;
_y = _root.player._y;
_x = (_root.player._x - 30);
}
if (_root.player.dir == 0) {
_y = _root.player._y;
_x = (_root.player._x + 30);
_xscale = -100;
}
gotoAndStop ("rape");
_root.player.victim.gotoAndStop(3);
}
if (!_root.pants) {
if (_root.player.dir == 1) {
_xscale = 100;
_y = _root.player._y;
_x = (_root.player._x - 30);
}
if (_root.player.dir == 0) {
_y = _root.player._y;
_x = (_root.player._x + 30);
_xscale = -100;
}
gotoAndStop ("rape1");
_root.player.victim.gotoAndStop(2);
}
rapetimer++;
if (_root.pants) {
if (rapetimer >= 50) {
_root.life = _root.life - 20;
_root.player.rape1 = false;
_root.player.nohit = true;
rape = false;
dead = false;
pushback = true;
gotoAndStop ("chill");
rapetimer = 0;
}
}
if (!_root.pants) {
if (rapetimer >= 100) {
_root.life = _root.life - 20;
_root.player.rape1 = false;
_root.player.nohit = true;
rape = false;
dead = false;
pushback = true;
gotoAndStop ("chill");
rapetimer = 0;
}
}
}
if (dead) {
gotoAndStop ("dead");
}
if (!_root.player.attack1) {
if (!_root.scrollstop) {
if (_root.mover) {
_x = (_x - speed2);
}
if (_root.movel) {
_x = (_x + speed2);
}
}
}
}
Frame 10
stop();
Instance of Symbol 404 MovieClip "enemy7" in Frame 10
onClipEvent (load) {
speed2 = 5;
speed = 1;
dead = false;
rape = false;
rapetimer = 0;
gr = false;
gl = true;
grtimer = 0;
gltimer = 0;
fspeed = 3;
}
onClipEvent (enterFrame) {
if ((!_root.map1.black.hitTest(_x, _y + 20, true)) and (!_root.map2.black.hitTest(_x, _y + 20, true))) {
fall = true;
} else {
fall = false;
}
if (!rape) {
if (fall) {
_y = (_y + fspeed);
}
}
if (!dead) {
if (!rape) {
if (gr) {
grtimer++;
_x = (_x + speed);
if (grtimer >= 100) {
grtimer = 0;
gl = true;
gr = false;
}
}
if (gl) {
gltimer++;
_x = (_x - speed);
if (gltimer >= 100) {
gltimer = 0;
gr = true;
gl = false;
}
}
if (this.hitTest(_root.player.attack.limit)) {
dead = true;
}
if (!_root.player.rape1) {
if (!_root.player.nohit) {
if (limit.hitTest(_root.player.limita)) {
rape = true;
}
}
}
}
}
if (rape) {
_root.player.rape1 = true;
if (_root.pants) {
if (_root.player.dir == 1) {
_xscale = 70;
_y = _root.player._y;
_x = (_root.player._x - 30);
}
if (_root.player.dir == 0) {
_y = _root.player._y;
_x = (_root.player._x + 30);
_xscale = -70;
}
gotoAndStop ("rape");
_root.player.victim.gotoAndStop(3);
}
if (!_root.pants) {
if (_root.player.dir == 1) {
_xscale = 70;
_y = _root.player._y;
_x = (_root.player._x - 30);
}
if (_root.player.dir == 0) {
_y = _root.player._y;
_x = (_root.player._x + 30);
_xscale = -70;
}
gotoAndStop ("rape1");
_root.player.victim.gotoAndStop(1);
}
rapetimer++;
if (_root.pants) {
if (rapetimer >= 50) {
_root.life = _root.life - 20;
_root.player.rape1 = false;
_root.player.nohit = true;
rape = false;
dead = false;
pushback = true;
gotoAndStop ("chill");
rapetimer = 0;
}
}
if (!_root.pants) {
if (rapetimer >= 150) {
_root.life = _root.life - 20;
_root.player.rape1 = false;
_root.player.nohit = true;
rape = false;
dead = false;
pushback = true;
gotoAndStop ("chill");
rapetimer = 0;
}
}
}
if (dead) {
gotoAndStop ("dead");
}
if (!_root.player.attack1) {
if (!_root.scrollstop) {
if (_root.mover) {
_x = (_x - speed2);
}
if (_root.movel) {
_x = (_x + speed2);
}
}
}
}
Frame 11
stop();
Instance of Symbol 530 MovieClip "enemy4" in Frame 11
onClipEvent (load) {
speed = 5;
dead = false;
rape = false;
gospeed = 2.75;
rapetimer = 0;
pushback = false;
pushtimer = 0;
}
onClipEvent (enterFrame) {
if (!dead) {
if (!pushback) {
if (!rape) {
if (_root.player._x >= _x) {
_x = (_x + gospeed);
}
if (_root.player._x <= _x) {
_x = (_x - gospeed);
}
if (_root.player._y >= _y) {
_y = (_y + gospeed);
}
if (_root.player._y <= _y) {
_y = (_y - gospeed);
}
if (this.hitTest(_root.player.attack.limit)) {
dead = true;
}
if (!_root.player.rape1) {
if (!_root.player.nohit) {
if (this.hitTest(_root.player.limita)) {
rape = true;
}
}
}
}
}
}
if (!_root.player.attack1) {
if (!_root.scrollstop) {
if (_root.mover) {
_x = (_x - speed);
}
if (_root.movel) {
_x = (_x + speed);
}
}
}
if (pushback) {
pushtimer++;
_x = (_x - speed);
if (pushtimer >= 10) {
pushback = false;
pushtimer = 0;
}
}
if (rape) {
_y = _root.player._y;
_x = (_root.player._x + 10);
_root.player.rape1 = true;
if (_root.pants) {
if (_root.player.dir == 1) {
_xscale = 100;
_y = (_root.player._y - 20);
_x = (_root.player._x + 10);
}
if (_root.player.dir == 0) {
_y = (_root.player._y - 20);
_x = (_root.player._x - 10);
_xscale = -100;
}
gotoAndStop ("rape1");
_root.player.victim.gotoAndStop(3);
}
if (!_root.pants) {
if (_root.player.dir == 1) {
_y = (_root.player._y - 10);
_x = (_root.player._x + 10);
_xscale = 100;
}
if (_root.player.dir == 0) {
_y = (_root.player._y - 10);
_x = (_root.player._x - 10);
_xscale = -100;
}
gotoAndStop ("rape");
_root.player.victim.gotoAndStop(1);
}
rapetimer++;
if (rapetimer >= 150) {
_root.life = _root.life - 20;
_root.player.rape1 = false;
_root.player.nohit = true;
rape = false;
dead = false;
pushback = true;
gotoAndStop ("chase");
rapetimer = 0;
}
}
if (dead) {
gotoAndStop ("dead");
_y = (_y + 2);
}
}
Instance of Symbol 530 MovieClip "enemy3" in Frame 11
onClipEvent (load) {
speed = 5;
dead = false;
rape = false;
gospeed = 2.5;
rapetimer = 0;
pushback = false;
pushtimer = 0;
}
onClipEvent (enterFrame) {
if (!dead) {
if (!pushback) {
if (!rape) {
if (_root.player._x >= _x) {
_x = (_x + gospeed);
}
if (_root.player._x <= _x) {
_x = (_x - gospeed);
}
if (_root.player._y >= _y) {
_y = (_y + gospeed);
}
if (_root.player._y <= _y) {
_y = (_y - gospeed);
}
if (this.hitTest(_root.player.attack.limit)) {
dead = true;
}
if (!_root.player.rape1) {
if (!_root.player.nohit) {
if (this.hitTest(_root.player.limita)) {
rape = true;
}
}
}
}
}
}
if (!_root.player.attack1) {
if (!_root.scrollstop) {
if (_root.mover) {
_x = (_x - speed);
}
if (_root.movel) {
_x = (_x + speed);
}
}
}
if (pushback) {
pushtimer++;
_x = (_x - speed);
if (pushtimer >= 10) {
pushback = false;
pushtimer = 0;
}
}
if (rape) {
_y = _root.player._y;
_x = (_root.player._x + 10);
_root.player.rape1 = true;
if (_root.pants) {
if (_root.player.dir == 1) {
_xscale = 100;
_y = (_root.player._y - 20);
_x = (_root.player._x + 10);
}
if (_root.player.dir == 0) {
_y = (_root.player._y - 20);
_x = (_root.player._x - 10);
_xscale = -100;
}
gotoAndStop ("rape1");
_root.player.victim.gotoAndStop(3);
}
if (!_root.pants) {
if (_root.player.dir == 1) {
_y = (_root.player._y - 10);
_x = (_root.player._x + 10);
_xscale = 100;
}
if (_root.player.dir == 0) {
_y = (_root.player._y - 10);
_x = (_root.player._x - 10);
_xscale = -100;
}
gotoAndStop ("rape");
_root.player.victim.gotoAndStop(1);
}
rapetimer++;
if (rapetimer >= 150) {
_root.life = _root.life - 20;
_root.player.rape1 = false;
_root.player.nohit = true;
rape = false;
dead = false;
pushback = true;
gotoAndStop ("chase");
rapetimer = 0;
}
}
if (dead) {
gotoAndStop ("dead");
_y = (_y + 2);
}
}
Instance of Symbol 530 MovieClip "enemy2" in Frame 11
onClipEvent (load) {
speed = 5;
dead = false;
rape = false;
gospeed = 3;
rapetimer = 0;
pushback = false;
pushtimer = 0;
}
onClipEvent (enterFrame) {
if (!dead) {
if (!pushback) {
if (!rape) {
if (_root.player._x >= _x) {
_x = (_x + gospeed);
}
if (_root.player._x <= _x) {
_x = (_x - gospeed);
}
if (_root.player._y >= _y) {
_y = (_y + gospeed);
}
if (_root.player._y <= _y) {
_y = (_y - gospeed);
}
if (this.hitTest(_root.player.attack.limit)) {
dead = true;
}
if (!_root.player.rape1) {
if (!_root.player.nohit) {
if (this.hitTest(_root.player.limita)) {
rape = true;
}
}
}
}
}
}
if (!_root.player.attack1) {
if (!_root.scrollstop) {
if (_root.mover) {
_x = (_x - speed);
}
if (_root.movel) {
_x = (_x + speed);
}
}
}
if (pushback) {
pushtimer++;
_x = (_x - speed);
if (pushtimer >= 10) {
pushback = false;
pushtimer = 0;
}
}
if (rape) {
_y = _root.player._y;
_x = (_root.player._x + 10);
_root.player.rape1 = true;
if (_root.pants) {
if (_root.player.dir == 1) {
_xscale = 100;
_y = (_root.player._y - 20);
_x = (_root.player._x + 10);
}
if (_root.player.dir == 0) {
_y = (_root.player._y - 20);
_x = (_root.player._x - 10);
_xscale = -100;
}
gotoAndStop ("rape1");
_root.player.victim.gotoAndStop(3);
}
if (!_root.pants) {
if (_root.player.dir == 1) {
_y = (_root.player._y - 10);
_x = (_root.player._x + 10);
_xscale = 100;
}
if (_root.player.dir == 0) {
_y = (_root.player._y - 10);
_x = (_root.player._x - 10);
_xscale = -100;
}
gotoAndStop ("rape");
_root.player.victim.gotoAndStop(1);
}
rapetimer++;
if (rapetimer >= 150) {
_root.life = _root.life - 20;
_root.player.rape1 = false;
_root.player.nohit = true;
rape = false;
dead = false;
pushback = true;
gotoAndStop ("chase");
rapetimer = 0;
}
}
if (dead) {
gotoAndStop ("dead");
_y = (_y + 2);
}
}
Instance of Symbol 530 MovieClip "enemy1" in Frame 11
onClipEvent (load) {
speed = 5;
dead = false;
rape = false;
gospeed = 2.25;
rapetimer = 0;
pushback = false;
pushtimer = 0;
}
onClipEvent (enterFrame) {
if (!dead) {
if (!pushback) {
if (!rape) {
if (_root.player._x >= _x) {
_x = (_x + gospeed);
}
if (_root.player._x <= _x) {
_x = (_x - gospeed);
}
if (_root.player._y >= _y) {
_y = (_y + gospeed);
}
if (_root.player._y <= _y) {
_y = (_y - gospeed);
}
if (this.hitTest(_root.player.attack.limit)) {
dead = true;
}
if (!_root.player.rape1) {
if (!_root.player.nohit) {
if (this.hitTest(_root.player.limita)) {
rape = true;
}
}
}
}
}
}
if (!_root.player.attack1) {
if (!_root.scrollstop) {
if (_root.mover) {
_x = (_x - speed);
}
if (_root.movel) {
_x = (_x + speed);
}
}
}
if (pushback) {
pushtimer++;
_x = (_x - speed);
if (pushtimer >= 10) {
pushback = false;
pushtimer = 0;
}
}
if (rape) {
_y = _root.player._y;
_x = (_root.player._x + 10);
_root.player.rape1 = true;
if (_root.pants) {
if (_root.player.dir == 1) {
_xscale = 100;
_y = (_root.player._y - 20);
_x = (_root.player._x + 10);
}
if (_root.player.dir == 0) {
_y = (_root.player._y - 20);
_x = (_root.player._x - 10);
_xscale = -100;
}
gotoAndStop ("rape1");
_root.player.victim.gotoAndStop(3);
}
if (!_root.pants) {
if (_root.player.dir == 1) {
_y = (_root.player._y - 10);
_x = (_root.player._x + 10);
_xscale = 100;
}
if (_root.player.dir == 0) {
_y = (_root.player._y - 10);
_x = (_root.player._x - 10);
_xscale = -100;
}
gotoAndStop ("rape");
_root.player.victim.gotoAndStop(1);
}
rapetimer++;
if (rapetimer >= 150) {
_root.life = _root.life - 20;
_root.player.rape1 = false;
_root.player.nohit = true;
rape = false;
dead = false;
pushback = true;
gotoAndStop ("chase");
rapetimer = 0;
}
}
if (dead) {
gotoAndStop ("dead");
_y = (_y + 2);
}
}
Instance of Symbol 763 MovieClip in Frame 11
onClipEvent (load) {
speed2 = 5;
give = false;
}
onClipEvent (enterFrame) {
if (_root.player._x > _x) {
_xscale = -20;
}
if (_root.player._x < _x) {
_xscale = 20;
}
if (this.hitTest(_root.player.limita)) {
if (!give) {
if (_root.life < 100) {
_root.life = _root.life + 50;
}
_root.shirt = true;
_root.pants = true;
penis.gotoAndStop(2);
mouth.gotoAndStop(2);
gotoAndPlay (5);
give = true;
}
}
if (!_root.player.attack1) {
if (!_root.scrollstop) {
if (_root.mover) {
_x = (_x - speed2);
}
if (_root.movel) {
_x = (_x + speed2);
}
}
}
}
Instance of Symbol 734 MovieClip "bigboss" in Frame 11
onClipEvent (load) {
life = 100;
hit = false;
hittime = 0;
speed2 = 5;
speed = 3.5;
dead = false;
rape = false;
rapetimer = 0;
gr = true;
gl = false;
grtimer = 0;
gltimer = 0;
fspeed = 3;
}
onClipEvent (enterFrame) {
if ((!_root.map1.black.hitTest(_x, _y + 20, true)) and (!_root.map2.black.hitTest(_x, _y + 20, true))) {
fall = true;
} else {
fall = false;
}
if (!rape) {
if (fall) {
_y = (_y + fspeed);
}
}
if (!dead) {
if (!hit) {
if (!rape) {
if (gr) {
_xscale = 50;
grtimer++;
_x = (_x + speed);
}
if (this.hitTest(_root.player.attack.limit)) {
life = life - 50;
blink.gotoAndPlay(2);
hit = true;
}
if (!_root.player.rape1) {
if (!_root.player.nohit) {
if (limit.hitTest(_root.player.limita)) {
rape = true;
}
}
}
}
}
if (rape) {
_root.player.rape1 = true;
if (_root.pants) {
if (_root.player.dir == 1) {
_xscale = 50;
_y = _root.player._y;
_x = (_root.player._x - 30);
}
if (_root.player.dir == 0) {
_y = _root.player._y;
_x = (_root.player._x + 30);
_xscale = -50;
}
gotoAndStop ("rape");
_root.player.victim.gotoAndStop(3);
}
if (!_root.pants) {
if (_root.player.dir == 1) {
_xscale = 50;
_y = _root.player._y;
_x = (_root.player._x - 30);
}
if (_root.player.dir == 0) {
_y = _root.player._y;
_x = (_root.player._x + 30);
_xscale = -50;
}
gotoAndStop ("rape1");
_root.player.victim.gotoAndStop(2);
}
rapetimer++;
if (_root.pants) {
if (rapetimer >= 50) {
_root.life = _root.life - 20;
_root.player.rape1 = false;
_root.player.nohit = true;
rape = false;
dead = false;
pushback = true;
gotoAndStop ("chill");
rapetimer = 0;
}
}
if (!_root.pants) {
if (rapetimer >= 130) {
_root.life = _root.life - 20;
_root.player.rape1 = false;
_root.player.nohit = true;
rape = false;
dead = false;
pushback = true;
gotoAndStop ("chill");
rapetimer = 0;
}
}
}
}
if (!dead) {
if (hit) {
hittime++;
gotoAndStop ("hit");
if (gr) {
_x = (_x - speed);
}
if (gl) {
_x = (_x + speed);
}
if (hittime >= 30) {
gotoAndStop ("chill");
hittime = 0;
hit = false;
}
}
}
if (life <= 0) {
dead = true;
}
if (dead) {
gotoAndStop ("dead");
_y = (_y + 5);
}
if (!_root.player.attack1) {
if (!_root.scrollstop) {
if (_root.mover) {
_x = (_x - speed2);
}
if (_root.movel) {
_x = (_x + speed2);
}
}
}
}
Frame 12
stop();
Instance of Symbol 404 MovieClip "enemy5" in Frame 12
onClipEvent (load) {
speed2 = 5;
speed = 1;
dead = false;
rape = false;
rapetimer = 0;
gr = false;
gl = true;
grtimer = 0;
gltimer = 0;
fspeed = 3;
}
onClipEvent (enterFrame) {
if ((!_root.map1.black.hitTest(_x, _y + 20, true)) and (!_root.map2.black.hitTest(_x, _y + 20, true))) {
fall = true;
} else {
fall = false;
}
if (!rape) {
if (fall) {
_y = (_y + fspeed);
}
}
if (!dead) {
if (!rape) {
if (gr) {
grtimer++;
_x = (_x + speed);
if (grtimer >= 100) {
grtimer = 0;
gl = true;
gr = false;
}
}
if (gl) {
gltimer++;
_x = (_x - speed);
if (gltimer >= 100) {
gltimer = 0;
gr = true;
gl = false;
}
}
if (this.hitTest(_root.player.attack.limit)) {
dead = true;
}
if (!_root.player.rape1) {
if (!_root.player.nohit) {
if (limit.hitTest(_root.player.limita)) {
rape = true;
}
}
}
}
}
if (rape) {
_root.player.rape1 = true;
if (_root.pants) {
if (_root.player.dir == 1) {
_xscale = 70;
_y = _root.player._y;
_x = (_root.player._x - 30);
}
if (_root.player.dir == 0) {
_y = _root.player._y;
_x = (_root.player._x + 30);
_xscale = -70;
}
gotoAndStop ("rape");
_root.player.victim.gotoAndStop(3);
}
if (!_root.pants) {
if (_root.player.dir == 1) {
_xscale = 70;
_y = _root.player._y;
_x = (_root.player._x - 30);
}
if (_root.player.dir == 0) {
_y = _root.player._y;
_x = (_root.player._x + 30);
_xscale = -70;
}
gotoAndStop ("rape1");
_root.player.victim.gotoAndStop(1);
}
rapetimer++;
if (_root.pants) {
if (rapetimer >= 50) {
_root.life = _root.life - 20;
_root.player.rape1 = false;
_root.player.nohit = true;
rape = false;
dead = false;
pushback = true;
gotoAndStop ("chill");
rapetimer = 0;
}
}
if (!_root.pants) {
if (rapetimer >= 150) {
_root.life = _root.life - 20;
_root.player.rape1 = false;
_root.player.nohit = true;
rape = false;
dead = false;
pushback = true;
gotoAndStop ("chill");
rapetimer = 0;
}
}
}
if (dead) {
gotoAndStop ("dead");
}
if (!_root.player.attack1) {
if (!_root.scrollstop) {
if (_root.mover) {
_x = (_x - speed2);
}
if (_root.movel) {
_x = (_x + speed2);
}
}
}
}
Frame 13
stop();
Instance of Symbol 530 MovieClip "enemy4" in Frame 13
onClipEvent (load) {
speed = 5;
dead = false;
rape = false;
gospeed = 2.75;
rapetimer = 0;
pushback = false;
pushtimer = 0;
}
onClipEvent (enterFrame) {
if (!dead) {
if (!pushback) {
if (!rape) {
if (_root.player._x >= _x) {
_x = (_x + gospeed);
}
if (_root.player._x <= _x) {
_x = (_x - gospeed);
}
if (_root.player._y >= _y) {
_y = (_y + gospeed);
}
if (_root.player._y <= _y) {
_y = (_y - gospeed);
}
if (this.hitTest(_root.player.attack.limit)) {
dead = true;
}
if (!_root.player.rape1) {
if (!_root.player.nohit) {
if (this.hitTest(_root.player.limita)) {
rape = true;
}
}
}
}
}
}
if (!_root.player.attack1) {
if (!_root.scrollstop) {
if (_root.mover) {
_x = (_x - speed);
}
if (_root.movel) {
_x = (_x + speed);
}
}
}
if (pushback) {
pushtimer++;
_x = (_x - speed);
if (pushtimer >= 10) {
pushback = false;
pushtimer = 0;
}
}
if (rape) {
_y = _root.player._y;
_x = (_root.player._x + 10);
_root.player.rape1 = true;
if (_root.pants) {
if (_root.player.dir == 1) {
_xscale = 100;
_y = (_root.player._y - 20);
_x = (_root.player._x + 10);
}
if (_root.player.dir == 0) {
_y = (_root.player._y - 20);
_x = (_root.player._x - 10);
_xscale = -100;
}
gotoAndStop ("rape1");
_root.player.victim.gotoAndStop(3);
}
if (!_root.pants) {
if (_root.player.dir == 1) {
_y = (_root.player._y - 10);
_x = (_root.player._x + 10);
_xscale = 100;
}
if (_root.player.dir == 0) {
_y = (_root.player._y - 10);
_x = (_root.player._x - 10);
_xscale = -100;
}
gotoAndStop ("rape");
_root.player.victim.gotoAndStop(1);
}
rapetimer++;
if (rapetimer >= 150) {
_root.life = _root.life - 20;
_root.player.rape1 = false;
_root.player.nohit = true;
rape = false;
dead = false;
pushback = true;
gotoAndStop ("chase");
rapetimer = 0;
}
}
if (dead) {
gotoAndStop ("dead");
_y = (_y + 2);
}
}
Instance of Symbol 530 MovieClip "enemy3" in Frame 13
onClipEvent (load) {
speed = 5;
dead = false;
rape = false;
gospeed = 2.5;
rapetimer = 0;
pushback = false;
pushtimer = 0;
}
onClipEvent (enterFrame) {
if (!dead) {
if (!pushback) {
if (!rape) {
if (_root.player._x >= _x) {
_x = (_x + gospeed);
}
if (_root.player._x <= _x) {
_x = (_x - gospeed);
}
if (_root.player._y >= _y) {
_y = (_y + gospeed);
}
if (_root.player._y <= _y) {
_y = (_y - gospeed);
}
if (this.hitTest(_root.player.attack.limit)) {
dead = true;
}
if (!_root.player.rape1) {
if (!_root.player.nohit) {
if (this.hitTest(_root.player.limita)) {
rape = true;
}
}
}
}
}
}
if (!_root.player.attack1) {
if (!_root.scrollstop) {
if (_root.mover) {
_x = (_x - speed);
}
if (_root.movel) {
_x = (_x + speed);
}
}
}
if (pushback) {
pushtimer++;
_x = (_x - speed);
if (pushtimer >= 10) {
pushback = false;
pushtimer = 0;
}
}
if (rape) {
_y = _root.player._y;
_x = (_root.player._x + 10);
_root.player.rape1 = true;
if (_root.pants) {
if (_root.player.dir == 1) {
_xscale = 100;
_y = (_root.player._y - 20);
_x = (_root.player._x + 10);
}
if (_root.player.dir == 0) {
_y = (_root.player._y - 20);
_x = (_root.player._x - 10);
_xscale = -100;
}
gotoAndStop ("rape1");
_root.player.victim.gotoAndStop(3);
}
if (!_root.pants) {
if (_root.player.dir == 1) {
_y = (_root.player._y - 10);
_x = (_root.player._x + 10);
_xscale = 100;
}
if (_root.player.dir == 0) {
_y = (_root.player._y - 10);
_x = (_root.player._x - 10);
_xscale = -100;
}
gotoAndStop ("rape");
_root.player.victim.gotoAndStop(1);
}
rapetimer++;
if (rapetimer >= 150) {
_root.life = _root.life - 20;
_root.player.rape1 = false;
_root.player.nohit = true;
rape = false;
dead = false;
pushback = true;
gotoAndStop ("chase");
rapetimer = 0;
}
}
if (dead) {
gotoAndStop ("dead");
_y = (_y + 2);
}
}
Instance of Symbol 530 MovieClip "enemy2" in Frame 13
onClipEvent (load) {
speed = 5;
dead = false;
rape = false;
gospeed = 3;
rapetimer = 0;
pushback = false;
pushtimer = 0;
}
onClipEvent (enterFrame) {
if (!dead) {
if (!pushback) {
if (!rape) {
if (_root.player._x >= _x) {
_x = (_x + gospeed);
}
if (_root.player._x <= _x) {
_x = (_x - gospeed);
}
if (_root.player._y >= _y) {
_y = (_y + gospeed);
}
if (_root.player._y <= _y) {
_y = (_y - gospeed);
}
if (this.hitTest(_root.player.attack.limit)) {
dead = true;
}
if (!_root.player.rape1) {
if (!_root.player.nohit) {
if (this.hitTest(_root.player.limita)) {
rape = true;
}
}
}
}
}
}
if (!_root.player.attack1) {
if (!_root.scrollstop) {
if (_root.mover) {
_x = (_x - speed);
}
if (_root.movel) {
_x = (_x + speed);
}
}
}
if (pushback) {
pushtimer++;
_x = (_x - speed);
if (pushtimer >= 10) {
pushback = false;
pushtimer = 0;
}
}
if (rape) {
_y = _root.player._y;
_x = (_root.player._x + 10);
_root.player.rape1 = true;
if (_root.pants) {
if (_root.player.dir == 1) {
_xscale = 100;
_y = (_root.player._y - 20);
_x = (_root.player._x + 10);
}
if (_root.player.dir == 0) {
_y = (_root.player._y - 20);
_x = (_root.player._x - 10);
_xscale = -100;
}
gotoAndStop ("rape1");
_root.player.victim.gotoAndStop(3);
}
if (!_root.pants) {
if (_root.player.dir == 1) {
_y = (_root.player._y - 10);
_x = (_root.player._x + 10);
_xscale = 100;
}
if (_root.player.dir == 0) {
_y = (_root.player._y - 10);
_x = (_root.player._x - 10);
_xscale = -100;
}
gotoAndStop ("rape");
_root.player.victim.gotoAndStop(1);
}
rapetimer++;
if (rapetimer >= 150) {
_root.life = _root.life - 20;
_root.player.rape1 = false;
_root.player.nohit = true;
rape = false;
dead = false;
pushback = true;
gotoAndStop ("chase");
rapetimer = 0;
}
}
if (dead) {
gotoAndStop ("dead");
_y = (_y + 2);
}
}
Instance of Symbol 530 MovieClip "enemy1" in Frame 13
onClipEvent (load) {
speed = 5;
dead = false;
rape = false;
gospeed = 2.25;
rapetimer = 0;
pushback = false;
pushtimer = 0;
}
onClipEvent (enterFrame) {
if (!dead) {
if (!pushback) {
if (!rape) {
if (_root.player._x >= _x) {
_x = (_x + gospeed);
}
if (_root.player._x <= _x) {
_x = (_x - gospeed);
}
if (_root.player._y >= _y) {
_y = (_y + gospeed);
}
if (_root.player._y <= _y) {
_y = (_y - gospeed);
}
if (this.hitTest(_root.player.attack.limit)) {
dead = true;
}
if (!_root.player.rape1) {
if (!_root.player.nohit) {
if (this.hitTest(_root.player.limita)) {
rape = true;
}
}
}
}
}
}
if (!_root.player.attack1) {
if (!_root.scrollstop) {
if (_root.mover) {
_x = (_x - speed);
}
if (_root.movel) {
_x = (_x + speed);
}
}
}
if (pushback) {
pushtimer++;
_x = (_x - speed);
if (pushtimer >= 10) {
pushback = false;
pushtimer = 0;
}
}
if (rape) {
_y = _root.player._y;
_x = (_root.player._x + 10);
_root.player.rape1 = true;
if (_root.pants) {
if (_root.player.dir == 1) {
_xscale = 100;
_y = (_root.player._y - 20);
_x = (_root.player._x + 10);
}
if (_root.player.dir == 0) {
_y = (_root.player._y - 20);
_x = (_root.player._x - 10);
_xscale = -100;
}
gotoAndStop ("rape1");
_root.player.victim.gotoAndStop(3);
}
if (!_root.pants) {
if (_root.player.dir == 1) {
_y = (_root.player._y - 10);
_x = (_root.player._x + 10);
_xscale = 100;
}
if (_root.player.dir == 0) {
_y = (_root.player._y - 10);
_x = (_root.player._x - 10);
_xscale = -100;
}
gotoAndStop ("rape");
_root.player.victim.gotoAndStop(1);
}
rapetimer++;
if (rapetimer >= 150) {
_root.life = _root.life - 20;
_root.player.rape1 = false;
_root.player.nohit = true;
rape = false;
dead = false;
pushback = true;
gotoAndStop ("chase");
rapetimer = 0;
}
}
if (dead) {
gotoAndStop ("dead");
_y = (_y + 2);
}
}
Instance of Symbol 487 MovieClip "e2" in Frame 13
onClipEvent (load) {
speed2 = 5;
speed = 1;
dead = false;
rape = false;
rapetimer = 0;
gr = false;
gl = true;
grtimer = 0;
gltimer = 0;
fspeed = 3;
}
onClipEvent (enterFrame) {
if ((!_root.map1.black.hitTest(_x, _y + 20, true)) and (!_root.map2.black.hitTest(_x, _y + 20, true))) {
fall = true;
} else {
fall = false;
}
if (!rape) {
if (fall) {
_y = (_y + fspeed);
}
}
if (!dead) {
if (!rape) {
if (gr) {
_xscale = 100;
grtimer++;
_x = (_x + speed);
if (grtimer >= 100) {
grtimer = 0;
gl = true;
gr = false;
}
}
if (gl) {
_xscale = -100;
gltimer++;
_x = (_x - speed);
if (gltimer >= 100) {
gltimer = 0;
gr = true;
gl = false;
}
}
if (this.hitTest(_root.player.attack.limit)) {
dead = true;
}
if (!_root.player.rape1) {
if (!_root.player.nohit) {
if (limit.hitTest(_root.player.limita)) {
rape = true;
}
}
}
}
}
if (rape) {
_root.player.rape1 = true;
if (_root.pants) {
if (_root.player.dir == 1) {
_xscale = 100;
_y = _root.player._y;
_x = (_root.player._x - 30);
}
if (_root.player.dir == 0) {
_y = _root.player._y;
_x = (_root.player._x + 30);
_xscale = -100;
}
gotoAndStop ("rape");
_root.player.victim.gotoAndStop(3);
}
if (!_root.pants) {
if (_root.player.dir == 1) {
_xscale = 100;
_y = _root.player._y;
_x = (_root.player._x - 30);
}
if (_root.player.dir == 0) {
_y = _root.player._y;
_x = (_root.player._x + 30);
_xscale = -100;
}
gotoAndStop ("rape1");
_root.player.victim.gotoAndStop(2);
}
rapetimer++;
if (_root.pants) {
if (rapetimer >= 50) {
_root.life = _root.life - 20;
_root.player.rape1 = false;
_root.player.nohit = true;
rape = false;
dead = false;
pushback = true;
gotoAndStop ("chill");
rapetimer = 0;
}
}
if (!_root.pants) {
if (rapetimer >= 100) {
_root.life = _root.life - 20;
_root.player.rape1 = false;
_root.player.nohit = true;
rape = false;
dead = false;
pushback = true;
gotoAndStop ("chill");
rapetimer = 0;
}
}
}
if (dead) {
gotoAndStop ("dead");
}
if (!_root.player.attack1) {
if (!_root.scrollstop) {
if (_root.mover) {
_x = (_x - speed2);
}
if (_root.movel) {
_x = (_x + speed2);
}
}
}
}
Instance of Symbol 734 MovieClip "bigboss" in Frame 13
onClipEvent (load) {
life = 100;
hit = false;
hittime = 0;
speed2 = 5;
speed = 3.5;
dead = false;
rape = false;
rapetimer = 0;
gr = true;
gl = false;
grtimer = 0;
gltimer = 0;
fspeed = 3;
}
onClipEvent (enterFrame) {
if ((!_root.map1.black.hitTest(_x, _y + 20, true)) and (!_root.map2.black.hitTest(_x, _y + 20, true))) {
fall = true;
} else {
fall = false;
}
if (!rape) {
if (fall) {
_y = (_y + fspeed);
}
}
if (!dead) {
if (!hit) {
if (!rape) {
if (gr) {
_xscale = 50;
grtimer++;
_x = (_x + speed);
}
if (this.hitTest(_root.player.attack.limit)) {
life = life - 50;
blink.gotoAndPlay(2);
hit = true;
}
if (!_root.player.rape1) {
if (!_root.player.nohit) {
if (limit.hitTest(_root.player.limita)) {
rape = true;
}
}
}
}
}
if (rape) {
_root.player.rape1 = true;
if (_root.pants) {
if (_root.player.dir == 1) {
_xscale = 50;
_y = _root.player._y;
_x = (_root.player._x - 30);
}
if (_root.player.dir == 0) {
_y = _root.player._y;
_x = (_root.player._x + 30);
_xscale = -50;
}
gotoAndStop ("rape");
_root.player.victim.gotoAndStop(3);
}
if (!_root.pants) {
if (_root.player.dir == 1) {
_xscale = 50;
_y = _root.player._y;
_x = (_root.player._x - 30);
}
if (_root.player.dir == 0) {
_y = _root.player._y;
_x = (_root.player._x + 30);
_xscale = -50;
}
gotoAndStop ("rape1");
_root.player.victim.gotoAndStop(2);
}
rapetimer++;
if (_root.pants) {
if (rapetimer >= 50) {
_root.life = _root.life - 20;
_root.player.rape1 = false;
_root.player.nohit = true;
rape = false;
dead = false;
pushback = true;
gotoAndStop ("chill");
rapetimer = 0;
}
}
if (!_root.pants) {
if (rapetimer >= 130) {
_root.life = _root.life - 20;
_root.player.rape1 = false;
_root.player.nohit = true;
rape = false;
dead = false;
pushback = true;
gotoAndStop ("chill");
rapetimer = 0;
}
}
}
}
if (!dead) {
if (hit) {
hittime++;
gotoAndStop ("hit");
if (gr) {
_x = (_x - speed);
}
if (gl) {
_x = (_x + speed);
}
if (hittime >= 30) {
gotoAndStop ("chill");
hittime = 0;
hit = false;
}
}
}
if (life <= 0) {
dead = true;
}
if (dead) {
gotoAndStop ("dead");
_y = (_y + 5);
}
if (!_root.player.attack1) {
if (!_root.scrollstop) {
if (_root.mover) {
_x = (_x - speed2);
}
if (_root.movel) {
_x = (_x + speed2);
}
}
}
}
Frame 14
stop();
Instance of Symbol 404 MovieClip "enemy7" in Frame 14
onClipEvent (load) {
speed2 = 5;
speed = 1;
dead = false;
rape = false;
rapetimer = 0;
gr = false;
gl = true;
grtimer = 0;
gltimer = 0;
fspeed = 3;
}
onClipEvent (enterFrame) {
if ((!_root.map1.black.hitTest(_x, _y + 20, true)) and (!_root.map2.black.hitTest(_x, _y + 20, true))) {
fall = true;
} else {
fall = false;
}
if (!rape) {
if (fall) {
_y = (_y + fspeed);
}
}
if (!dead) {
if (!rape) {
if (gr) {
grtimer++;
_x = (_x + speed);
if (grtimer >= 100) {
grtimer = 0;
gl = true;
gr = false;
}
}
if (gl) {
gltimer++;
_x = (_x - speed);
if (gltimer >= 100) {
gltimer = 0;
gr = true;
gl = false;
}
}
if (this.hitTest(_root.player.attack.limit)) {
dead = true;
}
if (!_root.player.rape1) {
if (!_root.player.nohit) {
if (limit.hitTest(_root.player.limita)) {
rape = true;
}
}
}
}
}
if (rape) {
_root.player.rape1 = true;
if (_root.pants) {
if (_root.player.dir == 1) {
_xscale = 70;
_y = _root.player._y;
_x = (_root.player._x - 30);
}
if (_root.player.dir == 0) {
_y = _root.player._y;
_x = (_root.player._x + 30);
_xscale = -70;
}
gotoAndStop ("rape");
_root.player.victim.gotoAndStop(3);
}
if (!_root.pants) {
if (_root.player.dir == 1) {
_xscale = 70;
_y = _root.player._y;
_x = (_root.player._x - 30);
}
if (_root.player.dir == 0) {
_y = _root.player._y;
_x = (_root.player._x + 30);
_xscale = -70;
}
gotoAndStop ("rape1");
_root.player.victim.gotoAndStop(1);
}
rapetimer++;
if (_root.pants) {
if (rapetimer >= 50) {
_root.life = _root.life - 20;
_root.player.rape1 = false;
_root.player.nohit = true;
rape = false;
dead = false;
pushback = true;
gotoAndStop ("chill");
rapetimer = 0;
}
}
if (!_root.pants) {
if (rapetimer >= 150) {
_root.life = _root.life - 20;
_root.player.rape1 = false;
_root.player.nohit = true;
rape = false;
dead = false;
pushback = true;
gotoAndStop ("chill");
rapetimer = 0;
}
}
}
if (dead) {
gotoAndStop ("dead");
}
if (!_root.player.attack1) {
if (!_root.scrollstop) {
if (_root.mover) {
_x = (_x - speed2);
}
if (_root.movel) {
_x = (_x + speed2);
}
}
}
}
Frame 15
stop();
Instance of Symbol 487 MovieClip "e2" in Frame 15
onClipEvent (load) {
speed2 = 5;
speed = 1;
dead = false;
rape = false;
rapetimer = 0;
gr = false;
gl = true;
grtimer = 0;
gltimer = 0;
fspeed = 3;
}
onClipEvent (enterFrame) {
if ((!_root.map1.black.hitTest(_x, _y + 20, true)) and (!_root.map2.black.hitTest(_x, _y + 20, true))) {
fall = true;
} else {
fall = false;
}
if (!rape) {
if (fall) {
_y = (_y + fspeed);
}
}
if (!dead) {
if (!rape) {
if (gr) {
_xscale = 100;
grtimer++;
_x = (_x + speed);
if (grtimer >= 100) {
grtimer = 0;
gl = true;
gr = false;
}
}
if (gl) {
_xscale = -100;
gltimer++;
_x = (_x - speed);
if (gltimer >= 100) {
gltimer = 0;
gr = true;
gl = false;
}
}
if (this.hitTest(_root.player.attack.limit)) {
dead = true;
}
if (!_root.player.rape1) {
if (!_root.player.nohit) {
if (limit.hitTest(_root.player.limita)) {
rape = true;
}
}
}
}
}
if (rape) {
_root.player.rape1 = true;
if (_root.pants) {
if (_root.player.dir == 1) {
_xscale = 100;
_y = _root.player._y;
_x = (_root.player._x - 30);
}
if (_root.player.dir == 0) {
_y = _root.player._y;
_x = (_root.player._x + 30);
_xscale = -100;
}
gotoAndStop ("rape");
_root.player.victim.gotoAndStop(3);
}
if (!_root.pants) {
if (_root.player.dir == 1) {
_xscale = 100;
_y = _root.player._y;
_x = (_root.player._x - 30);
}
if (_root.player.dir == 0) {
_y = _root.player._y;
_x = (_root.player._x + 30);
_xscale = -100;
}
gotoAndStop ("rape1");
_root.player.victim.gotoAndStop(2);
}
rapetimer++;
if (_root.pants) {
if (rapetimer >= 50) {
_root.life = _root.life - 20;
_root.player.rape1 = false;
_root.player.nohit = true;
rape = false;
dead = false;
pushback = true;
gotoAndStop ("chill");
rapetimer = 0;
}
}
if (!_root.pants) {
if (rapetimer >= 100) {
_root.life = _root.life - 20;
_root.player.rape1 = false;
_root.player.nohit = true;
rape = false;
dead = false;
pushback = true;
gotoAndStop ("chill");
rapetimer = 0;
}
}
}
if (dead) {
gotoAndStop ("dead");
}
if (!_root.player.attack1) {
if (!_root.scrollstop) {
if (_root.mover) {
_x = (_x - speed2);
}
if (_root.movel) {
_x = (_x + speed2);
}
}
}
}
Instance of Symbol 734 MovieClip "bigboss" in Frame 15
onClipEvent (load) {
life = 100;
hit = false;
hittime = 0;
speed2 = 5;
speed = 3.5;
dead = false;
rape = false;
rapetimer = 0;
gr = true;
gl = false;
grtimer = 0;
gltimer = 0;
fspeed = 3;
}
onClipEvent (enterFrame) {
if ((!_root.map1.black.hitTest(_x, _y + 20, true)) and (!_root.map2.black.hitTest(_x, _y + 20, true))) {
fall = true;
} else {
fall = false;
}
if (!rape) {
if (fall) {
_y = (_y + fspeed);
}
}
if (!dead) {
if (!hit) {
if (!rape) {
if (gr) {
_xscale = 50;
grtimer++;
_x = (_x + speed);
}
if (this.hitTest(_root.player.attack.limit)) {
life = life - 50;
blink.gotoAndPlay(2);
hit = true;
}
if (!_root.player.rape1) {
if (!_root.player.nohit) {
if (limit.hitTest(_root.player.limita)) {
rape = true;
}
}
}
}
}
if (rape) {
_root.player.rape1 = true;
if (_root.pants) {
if (_root.player.dir == 1) {
_xscale = 50;
_y = _root.player._y;
_x = (_root.player._x - 30);
}
if (_root.player.dir == 0) {
_y = _root.player._y;
_x = (_root.player._x + 30);
_xscale = -50;
}
gotoAndStop ("rape");
_root.player.victim.gotoAndStop(3);
}
if (!_root.pants) {
if (_root.player.dir == 1) {
_xscale = 50;
_y = _root.player._y;
_x = (_root.player._x - 30);
}
if (_root.player.dir == 0) {
_y = _root.player._y;
_x = (_root.player._x + 30);
_xscale = -50;
}
gotoAndStop ("rape1");
_root.player.victim.gotoAndStop(2);
}
rapetimer++;
if (_root.pants) {
if (rapetimer >= 50) {
_root.life = _root.life - 20;
_root.player.rape1 = false;
_root.player.nohit = true;
rape = false;
dead = false;
pushback = true;
gotoAndStop ("chill");
rapetimer = 0;
}
}
if (!_root.pants) {
if (rapetimer >= 130) {
_root.life = _root.life - 20;
_root.player.rape1 = false;
_root.player.nohit = true;
rape = false;
dead = false;
pushback = true;
gotoAndStop ("chill");
rapetimer = 0;
}
}
}
}
if (!dead) {
if (hit) {
hittime++;
gotoAndStop ("hit");
if (gr) {
_x = (_x - speed);
}
if (gl) {
_x = (_x + speed);
}
if (hittime >= 30) {
gotoAndStop ("chill");
hittime = 0;
hit = false;
}
}
}
if (life <= 0) {
dead = true;
}
if (dead) {
gotoAndStop ("dead");
_y = (_y + 5);
}
if (!_root.player.attack1) {
if (!_root.scrollstop) {
if (_root.mover) {
_x = (_x - speed2);
}
if (_root.movel) {
_x = (_x + speed2);
}
}
}
}
Frame 16
stop();
Instance of Symbol 530 MovieClip "enemy4" in Frame 16
onClipEvent (load) {
speed = 5;
dead = false;
rape = false;
gospeed = 3.75;
rapetimer = 0;
pushback = false;
pushtimer = 0;
}
onClipEvent (enterFrame) {
if (!dead) {
if (!pushback) {
if (!rape) {
if (_root.player._x >= _x) {
_x = (_x + gospeed);
}
if (_root.player._x <= _x) {
_x = (_x - gospeed);
}
if (_root.player._y >= _y) {
_y = (_y + gospeed);
}
if (_root.player._y <= _y) {
_y = (_y - gospeed);
}
if (this.hitTest(_root.player.attack.limit)) {
dead = true;
}
if (!_root.player.rape1) {
if (!_root.player.nohit) {
if (this.hitTest(_root.player.limita)) {
rape = true;
}
}
}
}
}
}
if (!_root.player.attack1) {
if (!_root.scrollstop) {
if (_root.mover) {
_x = (_x - speed);
}
if (_root.movel) {
_x = (_x + speed);
}
}
}
if (pushback) {
pushtimer++;
_x = (_x - speed);
if (pushtimer >= 10) {
pushback = false;
pushtimer = 0;
}
}
if (rape) {
_y = _root.player._y;
_x = (_root.player._x + 10);
_root.player.rape1 = true;
if (_root.pants) {
if (_root.player.dir == 1) {
_xscale = 100;
_y = (_root.player._y - 20);
_x = (_root.player._x + 10);
}
if (_root.player.dir == 0) {
_y = (_root.player._y - 20);
_x = (_root.player._x - 10);
_xscale = -100;
}
gotoAndStop ("rape1");
_root.player.victim.gotoAndStop(3);
}
if (!_root.pants) {
if (_root.player.dir == 1) {
_y = (_root.player._y - 10);
_x = (_root.player._x + 10);
_xscale = 100;
}
if (_root.player.dir == 0) {
_y = (_root.player._y - 10);
_x = (_root.player._x - 10);
_xscale = -100;
}
gotoAndStop ("rape");
_root.player.victim.gotoAndStop(1);
}
rapetimer++;
if (rapetimer >= 150) {
_root.life = _root.life - 20;
_root.player.rape1 = false;
_root.player.nohit = true;
rape = false;
dead = false;
pushback = true;
gotoAndStop ("chase");
rapetimer = 0;
}
}
if (dead) {
gotoAndStop ("dead");
_y = (_y + 2);
}
}
Instance of Symbol 530 MovieClip "enemy3" in Frame 16
onClipEvent (load) {
speed = 5;
dead = false;
rape = false;
gospeed = 3.5;
rapetimer = 0;
pushback = false;
pushtimer = 0;
}
onClipEvent (enterFrame) {
if (!dead) {
if (!pushback) {
if (!rape) {
if (_root.player._x >= _x) {
_x = (_x + gospeed);
}
if (_root.player._x <= _x) {
_x = (_x - gospeed);
}
if (_root.player._y >= _y) {
_y = (_y + gospeed);
}
if (_root.player._y <= _y) {
_y = (_y - gospeed);
}
if (this.hitTest(_root.player.attack.limit)) {
dead = true;
}
if (!_root.player.rape1) {
if (!_root.player.nohit) {
if (this.hitTest(_root.player.limita)) {
rape = true;
}
}
}
}
}
}
if (!_root.player.attack1) {
if (!_root.scrollstop) {
if (_root.mover) {
_x = (_x - speed);
}
if (_root.movel) {
_x = (_x + speed);
}
}
}
if (pushback) {
pushtimer++;
_x = (_x - speed);
if (pushtimer >= 10) {
pushback = false;
pushtimer = 0;
}
}
if (rape) {
_y = _root.player._y;
_x = (_root.player._x + 10);
_root.player.rape1 = true;
if (_root.pants) {
if (_root.player.dir == 1) {
_xscale = 100;
_y = (_root.player._y - 20);
_x = (_root.player._x + 10);
}
if (_root.player.dir == 0) {
_y = (_root.player._y - 20);
_x = (_root.player._x - 10);
_xscale = -100;
}
gotoAndStop ("rape1");
_root.player.victim.gotoAndStop(3);
}
if (!_root.pants) {
if (_root.player.dir == 1) {
_y = (_root.player._y - 10);
_x = (_root.player._x + 10);
_xscale = 100;
}
if (_root.player.dir == 0) {
_y = (_root.player._y - 10);
_x = (_root.player._x - 10);
_xscale = -100;
}
gotoAndStop ("rape");
_root.player.victim.gotoAndStop(1);
}
rapetimer++;
if (rapetimer >= 150) {
_root.life = _root.life - 20;
_root.player.rape1 = false;
_root.player.nohit = true;
rape = false;
dead = false;
pushback = true;
gotoAndStop ("chase");
rapetimer = 0;
}
}
if (dead) {
gotoAndStop ("dead");
_y = (_y + 2);
}
}
Instance of Symbol 530 MovieClip "enemy2" in Frame 16
onClipEvent (load) {
speed = 5;
dead = false;
rape = false;
gospeed = 4;
rapetimer = 0;
pushback = false;
pushtimer = 0;
}
onClipEvent (enterFrame) {
if (!dead) {
if (!pushback) {
if (!rape) {
if (_root.player._x >= _x) {
_x = (_x + gospeed);
}
if (_root.player._x <= _x) {
_x = (_x - gospeed);
}
if (_root.player._y >= _y) {
_y = (_y + gospeed);
}
if (_root.player._y <= _y) {
_y = (_y - gospeed);
}
if (this.hitTest(_root.player.attack.limit)) {
dead = true;
}
if (!_root.player.rape1) {
if (!_root.player.nohit) {
if (this.hitTest(_root.player.limita)) {
rape = true;
}
}
}
}
}
}
if (!_root.player.attack1) {
if (!_root.scrollstop) {
if (_root.mover) {
_x = (_x - speed);
}
if (_root.movel) {
_x = (_x + speed);
}
}
}
if (pushback) {
pushtimer++;
_x = (_x - speed);
if (pushtimer >= 10) {
pushback = false;
pushtimer = 0;
}
}
if (rape) {
_y = _root.player._y;
_x = (_root.player._x + 10);
_root.player.rape1 = true;
if (_root.pants) {
if (_root.player.dir == 1) {
_xscale = 100;
_y = (_root.player._y - 20);
_x = (_root.player._x + 10);
}
if (_root.player.dir == 0) {
_y = (_root.player._y - 20);
_x = (_root.player._x - 10);
_xscale = -100;
}
gotoAndStop ("rape1");
_root.player.victim.gotoAndStop(3);
}
if (!_root.pants) {
if (_root.player.dir == 1) {
_y = (_root.player._y - 10);
_x = (_root.player._x + 10);
_xscale = 100;
}
if (_root.player.dir == 0) {
_y = (_root.player._y - 10);
_x = (_root.player._x - 10);
_xscale = -100;
}
gotoAndStop ("rape");
_root.player.victim.gotoAndStop(1);
}
rapetimer++;
if (rapetimer >= 150) {
_root.life = _root.life - 20;
_root.player.rape1 = false;
_root.player.nohit = true;
rape = false;
dead = false;
pushback = true;
gotoAndStop ("chase");
rapetimer = 0;
}
}
if (dead) {
gotoAndStop ("dead");
_y = (_y + 2);
}
}
Instance of Symbol 530 MovieClip "enemy1" in Frame 16
onClipEvent (load) {
speed = 5;
dead = false;
rape = false;
gospeed = 3.25;
rapetimer = 0;
pushback = false;
pushtimer = 0;
}
onClipEvent (enterFrame) {
if (!dead) {
if (!pushback) {
if (!rape) {
if (_root.player._x >= _x) {
_x = (_x + gospeed);
}
if (_root.player._x <= _x) {
_x = (_x - gospeed);
}
if (_root.player._y >= _y) {
_y = (_y + gospeed);
}
if (_root.player._y <= _y) {
_y = (_y - gospeed);
}
if (this.hitTest(_root.player.attack.limit)) {
dead = true;
}
if (!_root.player.rape1) {
if (!_root.player.nohit) {
if (this.hitTest(_root.player.limita)) {
rape = true;
}
}
}
}
}
}
if (!_root.player.attack1) {
if (!_root.scrollstop) {
if (_root.mover) {
_x = (_x - speed);
}
if (_root.movel) {
_x = (_x + speed);
}
}
}
if (pushback) {
pushtimer++;
_x = (_x - speed);
if (pushtimer >= 10) {
pushback = false;
pushtimer = 0;
}
}
if (rape) {
_y = _root.player._y;
_x = (_root.player._x + 10);
_root.player.rape1 = true;
if (_root.pants) {
if (_root.player.dir == 1) {
_xscale = 100;
_y = (_root.player._y - 20);
_x = (_root.player._x + 10);
}
if (_root.player.dir == 0) {
_y = (_root.player._y - 20);
_x = (_root.player._x - 10);
_xscale = -100;
}
gotoAndStop ("rape1");
_root.player.victim.gotoAndStop(3);
}
if (!_root.pants) {
if (_root.player.dir == 1) {
_y = (_root.player._y - 10);
_x = (_root.player._x + 10);
_xscale = 100;
}
if (_root.player.dir == 0) {
_y = (_root.player._y - 10);
_x = (_root.player._x - 10);
_xscale = -100;
}
gotoAndStop ("rape");
_root.player.victim.gotoAndStop(1);
}
rapetimer++;
if (rapetimer >= 150) {
_root.life = _root.life - 20;
_root.player.rape1 = false;
_root.player.nohit = true;
rape = false;
dead = false;
pushback = true;
gotoAndStop ("chase");
rapetimer = 0;
}
}
if (dead) {
gotoAndStop ("dead");
_y = (_y + 2);
}
}
Frame 17
stop();
Instance of Symbol 404 MovieClip "enemy5" in Frame 17
onClipEvent (load) {
speed2 = 5;
speed = 1;
dead = false;
rape = false;
rapetimer = 0;
gr = false;
gl = true;
grtimer = 0;
gltimer = 0;
fspeed = 3;
}
onClipEvent (enterFrame) {
if ((!_root.map1.black.hitTest(_x, _y + 20, true)) and (!_root.map2.black.hitTest(_x, _y + 20, true))) {
fall = true;
} else {
fall = false;
}
if (!rape) {
if (fall) {
_y = (_y + fspeed);
}
}
if (!dead) {
if (!rape) {
if (gr) {
grtimer++;
_x = (_x + speed);
if (grtimer >= 100) {
grtimer = 0;
gl = true;
gr = false;
}
}
if (gl) {
gltimer++;
_x = (_x - speed);
if (gltimer >= 100) {
gltimer = 0;
gr = true;
gl = false;
}
}
if (this.hitTest(_root.player.attack.limit)) {
dead = true;
}
if (!_root.player.rape1) {
if (!_root.player.nohit) {
if (limit.hitTest(_root.player.limita)) {
rape = true;
}
}
}
}
}
if (rape) {
_root.player.rape1 = true;
if (_root.pants) {
if (_root.player.dir == 1) {
_xscale = 70;
_y = _root.player._y;
_x = (_root.player._x - 30);
}
if (_root.player.dir == 0) {
_y = _root.player._y;
_x = (_root.player._x + 30);
_xscale = -70;
}
gotoAndStop ("rape");
_root.player.victim.gotoAndStop(3);
}
if (!_root.pants) {
if (_root.player.dir == 1) {
_xscale = 70;
_y = _root.player._y;
_x = (_root.player._x - 30);
}
if (_root.player.dir == 0) {
_y = _root.player._y;
_x = (_root.player._x + 30);
_xscale = -70;
}
gotoAndStop ("rape1");
_root.player.victim.gotoAndStop(1);
}
rapetimer++;
if (_root.pants) {
if (rapetimer >= 50) {
_root.life = _root.life - 20;
_root.player.rape1 = false;
_root.player.nohit = true;
rape = false;
dead = false;
pushback = true;
gotoAndStop ("chill");
rapetimer = 0;
}
}
if (!_root.pants) {
if (rapetimer >= 150) {
_root.life = _root.life - 20;
_root.player.rape1 = false;
_root.player.nohit = true;
rape = false;
dead = false;
pushback = true;
gotoAndStop ("chill");
rapetimer = 0;
}
}
}
if (dead) {
gotoAndStop ("dead");
}
if (!_root.player.attack1) {
if (!_root.scrollstop) {
if (_root.mover) {
_x = (_x - speed2);
}
if (_root.movel) {
_x = (_x + speed2);
}
}
}
}
Instance of Symbol 487 MovieClip "e2" in Frame 17
onClipEvent (load) {
speed2 = 5;
speed = 1;
dead = false;
rape = false;
rapetimer = 0;
gr = false;
gl = true;
grtimer = 0;
gltimer = 0;
fspeed = 3;
}
onClipEvent (enterFrame) {
if ((!_root.map1.black.hitTest(_x, _y + 20, true)) and (!_root.map2.black.hitTest(_x, _y + 20, true))) {
fall = true;
} else {
fall = false;
}
if (!rape) {
if (fall) {
_y = (_y + fspeed);
}
}
if (!dead) {
if (!rape) {
if (gr) {
_xscale = 100;
grtimer++;
_x = (_x + speed);
if (grtimer >= 100) {
grtimer = 0;
gl = true;
gr = false;
}
}
if (gl) {
_xscale = -100;
gltimer++;
_x = (_x - speed);
if (gltimer >= 100) {
gltimer = 0;
gr = true;
gl = false;
}
}
if (this.hitTest(_root.player.attack.limit)) {
dead = true;
}
if (!_root.player.rape1) {
if (!_root.player.nohit) {
if (limit.hitTest(_root.player.limita)) {
rape = true;
}
}
}
}
}
if (rape) {
_root.player.rape1 = true;
if (_root.pants) {
if (_root.player.dir == 1) {
_xscale = 100;
_y = _root.player._y;
_x = (_root.player._x - 30);
}
if (_root.player.dir == 0) {
_y = _root.player._y;
_x = (_root.player._x + 30);
_xscale = -100;
}
gotoAndStop ("rape");
_root.player.victim.gotoAndStop(3);
}
if (!_root.pants) {
if (_root.player.dir == 1) {
_xscale = 100;
_y = _root.player._y;
_x = (_root.player._x - 30);
}
if (_root.player.dir == 0) {
_y = _root.player._y;
_x = (_root.player._x + 30);
_xscale = -100;
}
gotoAndStop ("rape1");
_root.player.victim.gotoAndStop(2);
}
rapetimer++;
if (_root.pants) {
if (rapetimer >= 50) {
_root.life = _root.life - 20;
_root.player.rape1 = false;
_root.player.nohit = true;
rape = false;
dead = false;
pushback = true;
gotoAndStop ("chill");
rapetimer = 0;
}
}
if (!_root.pants) {
if (rapetimer >= 100) {
_root.life = _root.life - 20;
_root.player.rape1 = false;
_root.player.nohit = true;
rape = false;
dead = false;
pushback = true;
gotoAndStop ("chill");
rapetimer = 0;
}
}
}
if (dead) {
gotoAndStop ("dead");
}
if (!_root.player.attack1) {
if (!_root.scrollstop) {
if (_root.mover) {
_x = (_x - speed2);
}
if (_root.movel) {
_x = (_x + speed2);
}
}
}
}
Instance of Symbol 734 MovieClip "bigboss" in Frame 17
onClipEvent (load) {
life = 100;
hit = false;
hittime = 0;
speed2 = 5;
speed = 3.5;
dead = false;
rape = false;
rapetimer = 0;
gr = true;
gl = false;
grtimer = 0;
gltimer = 0;
fspeed = 3;
}
onClipEvent (enterFrame) {
if ((!_root.map1.black.hitTest(_x, _y + 20, true)) and (!_root.map2.black.hitTest(_x, _y + 20, true))) {
fall = true;
} else {
fall = false;
}
if (!rape) {
if (fall) {
_y = (_y + fspeed);
}
}
if (!dead) {
if (!hit) {
if (!rape) {
if (gr) {
_xscale = 50;
grtimer++;
_x = (_x + speed);
}
if (this.hitTest(_root.player.attack.limit)) {
life = life - 50;
blink.gotoAndPlay(2);
hit = true;
}
if (!_root.player.rape1) {
if (!_root.player.nohit) {
if (limit.hitTest(_root.player.limita)) {
rape = true;
}
}
}
}
}
if (rape) {
_root.player.rape1 = true;
if (_root.pants) {
if (_root.player.dir == 1) {
_xscale = 50;
_y = _root.player._y;
_x = (_root.player._x - 30);
}
if (_root.player.dir == 0) {
_y = _root.player._y;
_x = (_root.player._x + 30);
_xscale = -50;
}
gotoAndStop ("rape");
_root.player.victim.gotoAndStop(3);
}
if (!_root.pants) {
if (_root.player.dir == 1) {
_xscale = 50;
_y = _root.player._y;
_x = (_root.player._x - 30);
}
if (_root.player.dir == 0) {
_y = _root.player._y;
_x = (_root.player._x + 30);
_xscale = -50;
}
gotoAndStop ("rape1");
_root.player.victim.gotoAndStop(2);
}
rapetimer++;
if (_root.pants) {
if (rapetimer >= 50) {
_root.life = _root.life - 20;
_root.player.rape1 = false;
_root.player.nohit = true;
rape = false;
dead = false;
pushback = true;
gotoAndStop ("chill");
rapetimer = 0;
}
}
if (!_root.pants) {
if (rapetimer >= 130) {
_root.life = _root.life - 20;
_root.player.rape1 = false;
_root.player.nohit = true;
rape = false;
dead = false;
pushback = true;
gotoAndStop ("chill");
rapetimer = 0;
}
}
}
}
if (!dead) {
if (hit) {
hittime++;
gotoAndStop ("hit");
if (gr) {
_x = (_x - speed);
}
if (gl) {
_x = (_x + speed);
}
if (hittime >= 30) {
gotoAndStop ("chill");
hittime = 0;
hit = false;
}
}
}
if (life <= 0) {
dead = true;
}
if (dead) {
gotoAndStop ("dead");
_y = (_y + 5);
}
if (!_root.player.attack1) {
if (!_root.scrollstop) {
if (_root.mover) {
_x = (_x - speed2);
}
if (_root.movel) {
_x = (_x + speed2);
}
}
}
}
Frame 18
stop();
Instance of Symbol 530 MovieClip "enemy4" in Frame 18
onClipEvent (load) {
speed = 5;
dead = false;
rape = false;
gospeed = 3.75;
rapetimer = 0;
pushback = false;
pushtimer = 0;
}
onClipEvent (enterFrame) {
if (!dead) {
if (!pushback) {
if (!rape) {
if (_root.player._x >= _x) {
_x = (_x + gospeed);
}
if (_root.player._x <= _x) {
_x = (_x - gospeed);
}
if (_root.player._y >= _y) {
_y = (_y + gospeed);
}
if (_root.player._y <= _y) {
_y = (_y - gospeed);
}
if (this.hitTest(_root.player.attack.limit)) {
dead = true;
}
if (!_root.player.rape1) {
if (!_root.player.nohit) {
if (this.hitTest(_root.player.limita)) {
rape = true;
}
}
}
}
}
}
if (!_root.player.attack1) {
if (!_root.scrollstop) {
if (_root.mover) {
_x = (_x - speed);
}
if (_root.movel) {
_x = (_x + speed);
}
}
}
if (pushback) {
pushtimer++;
_x = (_x - speed);
if (pushtimer >= 10) {
pushback = false;
pushtimer = 0;
}
}
if (rape) {
_y = _root.player._y;
_x = (_root.player._x + 10);
_root.player.rape1 = true;
if (_root.pants) {
if (_root.player.dir == 1) {
_xscale = 100;
_y = (_root.player._y - 20);
_x = (_root.player._x + 10);
}
if (_root.player.dir == 0) {
_y = (_root.player._y - 20);
_x = (_root.player._x - 10);
_xscale = -100;
}
gotoAndStop ("rape1");
_root.player.victim.gotoAndStop(3);
}
if (!_root.pants) {
if (_root.player.dir == 1) {
_y = (_root.player._y - 10);
_x = (_root.player._x + 10);
_xscale = 100;
}
if (_root.player.dir == 0) {
_y = (_root.player._y - 10);
_x = (_root.player._x - 10);
_xscale = -100;
}
gotoAndStop ("rape");
_root.player.victim.gotoAndStop(1);
}
rapetimer++;
if (rapetimer >= 150) {
_root.life = _root.life - 20;
_root.player.rape1 = false;
_root.player.nohit = true;
rape = false;
dead = false;
pushback = true;
gotoAndStop ("chase");
rapetimer = 0;
}
}
if (dead) {
gotoAndStop ("dead");
_y = (_y + 2);
}
}
Instance of Symbol 530 MovieClip "enemy3" in Frame 18
onClipEvent (load) {
speed = 5;
dead = false;
rape = false;
gospeed = 3.5;
rapetimer = 0;
pushback = false;
pushtimer = 0;
}
onClipEvent (enterFrame) {
if (!dead) {
if (!pushback) {
if (!rape) {
if (_root.player._x >= _x) {
_x = (_x + gospeed);
}
if (_root.player._x <= _x) {
_x = (_x - gospeed);
}
if (_root.player._y >= _y) {
_y = (_y + gospeed);
}
if (_root.player._y <= _y) {
_y = (_y - gospeed);
}
if (this.hitTest(_root.player.attack.limit)) {
dead = true;
}
if (!_root.player.rape1) {
if (!_root.player.nohit) {
if (this.hitTest(_root.player.limita)) {
rape = true;
}
}
}
}
}
}
if (!_root.player.attack1) {
if (!_root.scrollstop) {
if (_root.mover) {
_x = (_x - speed);
}
if (_root.movel) {
_x = (_x + speed);
}
}
}
if (pushback) {
pushtimer++;
_x = (_x - speed);
if (pushtimer >= 10) {
pushback = false;
pushtimer = 0;
}
}
if (rape) {
_y = _root.player._y;
_x = (_root.player._x + 10);
_root.player.rape1 = true;
if (_root.pants) {
if (_root.player.dir == 1) {
_xscale = 100;
_y = (_root.player._y - 20);
_x = (_root.player._x + 10);
}
if (_root.player.dir == 0) {
_y = (_root.player._y - 20);
_x = (_root.player._x - 10);
_xscale = -100;
}
gotoAndStop ("rape1");
_root.player.victim.gotoAndStop(3);
}
if (!_root.pants) {
if (_root.player.dir == 1) {
_y = (_root.player._y - 10);
_x = (_root.player._x + 10);
_xscale = 100;
}
if (_root.player.dir == 0) {
_y = (_root.player._y - 10);
_x = (_root.player._x - 10);
_xscale = -100;
}
gotoAndStop ("rape");
_root.player.victim.gotoAndStop(1);
}
rapetimer++;
if (rapetimer >= 150) {
_root.life = _root.life - 20;
_root.player.rape1 = false;
_root.player.nohit = true;
rape = false;
dead = false;
pushback = true;
gotoAndStop ("chase");
rapetimer = 0;
}
}
if (dead) {
gotoAndStop ("dead");
_y = (_y + 2);
}
}
Instance of Symbol 530 MovieClip "enemy2" in Frame 18
onClipEvent (load) {
speed = 5;
dead = false;
rape = false;
gospeed = 4;
rapetimer = 0;
pushback = false;
pushtimer = 0;
}
onClipEvent (enterFrame) {
if (!dead) {
if (!pushback) {
if (!rape) {
if (_root.player._x >= _x) {
_x = (_x + gospeed);
}
if (_root.player._x <= _x) {
_x = (_x - gospeed);
}
if (_root.player._y >= _y) {
_y = (_y + gospeed);
}
if (_root.player._y <= _y) {
_y = (_y - gospeed);
}
if (this.hitTest(_root.player.attack.limit)) {
dead = true;
}
if (!_root.player.rape1) {
if (!_root.player.nohit) {
if (this.hitTest(_root.player.limita)) {
rape = true;
}
}
}
}
}
}
if (!_root.player.attack1) {
if (!_root.scrollstop) {
if (_root.mover) {
_x = (_x - speed);
}
if (_root.movel) {
_x = (_x + speed);
}
}
}
if (pushback) {
pushtimer++;
_x = (_x - speed);
if (pushtimer >= 10) {
pushback = false;
pushtimer = 0;
}
}
if (rape) {
_y = _root.player._y;
_x = (_root.player._x + 10);
_root.player.rape1 = true;
if (_root.pants) {
if (_root.player.dir == 1) {
_xscale = 100;
_y = (_root.player._y - 20);
_x = (_root.player._x + 10);
}
if (_root.player.dir == 0) {
_y = (_root.player._y - 20);
_x = (_root.player._x - 10);
_xscale = -100;
}
gotoAndStop ("rape1");
_root.player.victim.gotoAndStop(3);
}
if (!_root.pants) {
if (_root.player.dir == 1) {
_y = (_root.player._y - 10);
_x = (_root.player._x + 10);
_xscale = 100;
}
if (_root.player.dir == 0) {
_y = (_root.player._y - 10);
_x = (_root.player._x - 10);
_xscale = -100;
}
gotoAndStop ("rape");
_root.player.victim.gotoAndStop(1);
}
rapetimer++;
if (rapetimer >= 150) {
_root.life = _root.life - 20;
_root.player.rape1 = false;
_root.player.nohit = true;
rape = false;
dead = false;
pushback = true;
gotoAndStop ("chase");
rapetimer = 0;
}
}
if (dead) {
gotoAndStop ("dead");
_y = (_y + 2);
}
}
Instance of Symbol 530 MovieClip "enemy1" in Frame 18
onClipEvent (load) {
speed = 5;
dead = false;
rape = false;
gospeed = 3.25;
rapetimer = 0;
pushback = false;
pushtimer = 0;
}
onClipEvent (enterFrame) {
if (!dead) {
if (!pushback) {
if (!rape) {
if (_root.player._x >= _x) {
_x = (_x + gospeed);
}
if (_root.player._x <= _x) {
_x = (_x - gospeed);
}
if (_root.player._y >= _y) {
_y = (_y + gospeed);
}
if (_root.player._y <= _y) {
_y = (_y - gospeed);
}
if (this.hitTest(_root.player.attack.limit)) {
dead = true;
}
if (!_root.player.rape1) {
if (!_root.player.nohit) {
if (this.hitTest(_root.player.limita)) {
rape = true;
}
}
}
}
}
}
if (!_root.player.attack1) {
if (!_root.scrollstop) {
if (_root.mover) {
_x = (_x - speed);
}
if (_root.movel) {
_x = (_x + speed);
}
}
}
if (pushback) {
pushtimer++;
_x = (_x - speed);
if (pushtimer >= 10) {
pushback = false;
pushtimer = 0;
}
}
if (rape) {
_y = _root.player._y;
_x = (_root.player._x + 10);
_root.player.rape1 = true;
if (_root.pants) {
if (_root.player.dir == 1) {
_xscale = 100;
_y = (_root.player._y - 20);
_x = (_root.player._x + 10);
}
if (_root.player.dir == 0) {
_y = (_root.player._y - 20);
_x = (_root.player._x - 10);
_xscale = -100;
}
gotoAndStop ("rape1");
_root.player.victim.gotoAndStop(3);
}
if (!_root.pants) {
if (_root.player.dir == 1) {
_y = (_root.player._y - 10);
_x = (_root.player._x + 10);
_xscale = 100;
}
if (_root.player.dir == 0) {
_y = (_root.player._y - 10);
_x = (_root.player._x - 10);
_xscale = -100;
}
gotoAndStop ("rape");
_root.player.victim.gotoAndStop(1);
}
rapetimer++;
if (rapetimer >= 150) {
_root.life = _root.life - 20;
_root.player.rape1 = false;
_root.player.nohit = true;
rape = false;
dead = false;
pushback = true;
gotoAndStop ("chase");
rapetimer = 0;
}
}
if (dead) {
gotoAndStop ("dead");
_y = (_y + 2);
}
}
Frame 19
stop();
Instance of Symbol 404 MovieClip "enemy7" in Frame 19
onClipEvent (load) {
speed2 = 5;
speed = 1;
dead = false;
rape = false;
rapetimer = 0;
gr = false;
gl = true;
grtimer = 0;
gltimer = 0;
fspeed = 3;
}
onClipEvent (enterFrame) {
if ((!_root.map1.black.hitTest(_x, _y + 20, true)) and (!_root.map2.black.hitTest(_x, _y + 20, true))) {
fall = true;
} else {
fall = false;
}
if (!rape) {
if (fall) {
_y = (_y + fspeed);
}
}
if (!dead) {
if (!rape) {
if (gr) {
grtimer++;
_x = (_x + speed);
if (grtimer >= 100) {
grtimer = 0;
gl = true;
gr = false;
}
}
if (gl) {
gltimer++;
_x = (_x - speed);
if (gltimer >= 100) {
gltimer = 0;
gr = true;
gl = false;
}
}
if (this.hitTest(_root.player.attack.limit)) {
dead = true;
}
if (!_root.player.rape1) {
if (!_root.player.nohit) {
if (limit.hitTest(_root.player.limita)) {
rape = true;
}
}
}
}
}
if (rape) {
_root.player.rape1 = true;
if (_root.pants) {
if (_root.player.dir == 1) {
_xscale = 70;
_y = _root.player._y;
_x = (_root.player._x - 30);
}
if (_root.player.dir == 0) {
_y = _root.player._y;
_x = (_root.player._x + 30);
_xscale = -70;
}
gotoAndStop ("rape");
_root.player.victim.gotoAndStop(3);
}
if (!_root.pants) {
if (_root.player.dir == 1) {
_xscale = 70;
_y = _root.player._y;
_x = (_root.player._x - 30);
}
if (_root.player.dir == 0) {
_y = _root.player._y;
_x = (_root.player._x + 30);
_xscale = -70;
}
gotoAndStop ("rape1");
_root.player.victim.gotoAndStop(1);
}
rapetimer++;
if (_root.pants) {
if (rapetimer >= 50) {
_root.life = _root.life - 20;
_root.player.rape1 = false;
_root.player.nohit = true;
rape = false;
dead = false;
pushback = true;
gotoAndStop ("chill");
rapetimer = 0;
}
}
if (!_root.pants) {
if (rapetimer >= 150) {
_root.life = _root.life - 20;
_root.player.rape1 = false;
_root.player.nohit = true;
rape = false;
dead = false;
pushback = true;
gotoAndStop ("chill");
rapetimer = 0;
}
}
}
if (dead) {
gotoAndStop ("dead");
}
if (!_root.player.attack1) {
if (!_root.scrollstop) {
if (_root.mover) {
_x = (_x - speed2);
}
if (_root.movel) {
_x = (_x + speed2);
}
}
}
}
Instance of Symbol 734 MovieClip "bigboss" in Frame 19
onClipEvent (load) {
life = 100;
hit = false;
hittime = 0;
speed2 = 5;
speed = 3.5;
dead = false;
rape = false;
rapetimer = 0;
gr = true;
gl = false;
grtimer = 0;
gltimer = 0;
fspeed = 3;
}
onClipEvent (enterFrame) {
if ((!_root.map1.black.hitTest(_x, _y + 20, true)) and (!_root.map2.black.hitTest(_x, _y + 20, true))) {
fall = true;
} else {
fall = false;
}
if (!rape) {
if (fall) {
_y = (_y + fspeed);
}
}
if (!dead) {
if (!hit) {
if (!rape) {
if (gr) {
_xscale = 50;
grtimer++;
_x = (_x + speed);
}
if (this.hitTest(_root.player.attack.limit)) {
life = life - 50;
blink.gotoAndPlay(2);
hit = true;
}
if (!_root.player.rape1) {
if (!_root.player.nohit) {
if (limit.hitTest(_root.player.limita)) {
rape = true;
}
}
}
}
}
if (rape) {
_root.player.rape1 = true;
if (_root.pants) {
if (_root.player.dir == 1) {
_xscale = 50;
_y = _root.player._y;
_x = (_root.player._x - 30);
}
if (_root.player.dir == 0) {
_y = _root.player._y;
_x = (_root.player._x + 30);
_xscale = -50;
}
gotoAndStop ("rape");
_root.player.victim.gotoAndStop(3);
}
if (!_root.pants) {
if (_root.player.dir == 1) {
_xscale = 50;
_y = _root.player._y;
_x = (_root.player._x - 30);
}
if (_root.player.dir == 0) {
_y = _root.player._y;
_x = (_root.player._x + 30);
_xscale = -50;
}
gotoAndStop ("rape1");
_root.player.victim.gotoAndStop(2);
}
rapetimer++;
if (_root.pants) {
if (rapetimer >= 50) {
_root.life = _root.life - 20;
_root.player.rape1 = false;
_root.player.nohit = true;
rape = false;
dead = false;
pushback = true;
gotoAndStop ("chill");
rapetimer = 0;
}
}
if (!_root.pants) {
if (rapetimer >= 130) {
_root.life = _root.life - 20;
_root.player.rape1 = false;
_root.player.nohit = true;
rape = false;
dead = false;
pushback = true;
gotoAndStop ("chill");
rapetimer = 0;
}
}
}
}
if (!dead) {
if (hit) {
hittime++;
gotoAndStop ("hit");
if (gr) {
_x = (_x - speed);
}
if (gl) {
_x = (_x + speed);
}
if (hittime >= 30) {
gotoAndStop ("chill");
hittime = 0;
hit = false;
}
}
}
if (life <= 0) {
dead = true;
}
if (dead) {
gotoAndStop ("dead");
_y = (_y + 5);
}
if (!_root.player.attack1) {
if (!_root.scrollstop) {
if (_root.mover) {
_x = (_x - speed2);
}
if (_root.movel) {
_x = (_x + speed2);
}
}
}
}
Frame 20
stop();
Instance of Symbol 530 MovieClip "enemy4" in Frame 20
onClipEvent (load) {
speed = 5;
dead = false;
rape = false;
gospeed = 3.75;
rapetimer = 0;
pushback = false;
pushtimer = 0;
}
onClipEvent (enterFrame) {
if (!dead) {
if (!pushback) {
if (!rape) {
if (_root.player._x >= _x) {
_x = (_x + gospeed);
}
if (_root.player._x <= _x) {
_x = (_x - gospeed);
}
if (_root.player._y >= _y) {
_y = (_y + gospeed);
}
if (_root.player._y <= _y) {
_y = (_y - gospeed);
}
if (this.hitTest(_root.player.attack.limit)) {
dead = true;
}
if (!_root.player.rape1) {
if (!_root.player.nohit) {
if (this.hitTest(_root.player.limita)) {
rape = true;
}
}
}
}
}
}
if (!_root.player.attack1) {
if (!_root.scrollstop) {
if (_root.mover) {
_x = (_x - speed);
}
if (_root.movel) {
_x = (_x + speed);
}
}
}
if (pushback) {
pushtimer++;
_x = (_x - speed);
if (pushtimer >= 10) {
pushback = false;
pushtimer = 0;
}
}
if (rape) {
_y = _root.player._y;
_x = (_root.player._x + 10);
_root.player.rape1 = true;
if (_root.pants) {
if (_root.player.dir == 1) {
_xscale = 100;
_y = (_root.player._y - 20);
_x = (_root.player._x + 10);
}
if (_root.player.dir == 0) {
_y = (_root.player._y - 20);
_x = (_root.player._x - 10);
_xscale = -100;
}
gotoAndStop ("rape1");
_root.player.victim.gotoAndStop(3);
}
if (!_root.pants) {
if (_root.player.dir == 1) {
_y = (_root.player._y - 10);
_x = (_root.player._x + 10);
_xscale = 100;
}
if (_root.player.dir == 0) {
_y = (_root.player._y - 10);
_x = (_root.player._x - 10);
_xscale = -100;
}
gotoAndStop ("rape");
_root.player.victim.gotoAndStop(1);
}
rapetimer++;
if (rapetimer >= 150) {
_root.life = _root.life - 20;
_root.player.rape1 = false;
_root.player.nohit = true;
rape = false;
dead = false;
pushback = true;
gotoAndStop ("chase");
rapetimer = 0;
}
}
if (dead) {
gotoAndStop ("dead");
_y = (_y + 2);
}
}
Instance of Symbol 530 MovieClip "enemy3" in Frame 20
onClipEvent (load) {
speed = 5;
dead = false;
rape = false;
gospeed = 3.5;
rapetimer = 0;
pushback = false;
pushtimer = 0;
}
onClipEvent (enterFrame) {
if (!dead) {
if (!pushback) {
if (!rape) {
if (_root.player._x >= _x) {
_x = (_x + gospeed);
}
if (_root.player._x <= _x) {
_x = (_x - gospeed);
}
if (_root.player._y >= _y) {
_y = (_y + gospeed);
}
if (_root.player._y <= _y) {
_y = (_y - gospeed);
}
if (this.hitTest(_root.player.attack.limit)) {
dead = true;
}
if (!_root.player.rape1) {
if (!_root.player.nohit) {
if (this.hitTest(_root.player.limita)) {
rape = true;
}
}
}
}
}
}
if (!_root.player.attack1) {
if (!_root.scrollstop) {
if (_root.mover) {
_x = (_x - speed);
}
if (_root.movel) {
_x = (_x + speed);
}
}
}
if (pushback) {
pushtimer++;
_x = (_x - speed);
if (pushtimer >= 10) {
pushback = false;
pushtimer = 0;
}
}
if (rape) {
_y = _root.player._y;
_x = (_root.player._x + 10);
_root.player.rape1 = true;
if (_root.pants) {
if (_root.player.dir == 1) {
_xscale = 100;
_y = (_root.player._y - 20);
_x = (_root.player._x + 10);
}
if (_root.player.dir == 0) {
_y = (_root.player._y - 20);
_x = (_root.player._x - 10);
_xscale = -100;
}
gotoAndStop ("rape1");
_root.player.victim.gotoAndStop(3);
}
if (!_root.pants) {
if (_root.player.dir == 1) {
_y = (_root.player._y - 10);
_x = (_root.player._x + 10);
_xscale = 100;
}
if (_root.player.dir == 0) {
_y = (_root.player._y - 10);
_x = (_root.player._x - 10);
_xscale = -100;
}
gotoAndStop ("rape");
_root.player.victim.gotoAndStop(1);
}
rapetimer++;
if (rapetimer >= 150) {
_root.life = _root.life - 20;
_root.player.rape1 = false;
_root.player.nohit = true;
rape = false;
dead = false;
pushback = true;
gotoAndStop ("chase");
rapetimer = 0;
}
}
if (dead) {
gotoAndStop ("dead");
_y = (_y + 2);
}
}
Instance of Symbol 530 MovieClip "enemy2" in Frame 20
onClipEvent (load) {
speed = 5;
dead = false;
rape = false;
gospeed = 4;
rapetimer = 0;
pushback = false;
pushtimer = 0;
}
onClipEvent (enterFrame) {
if (!dead) {
if (!pushback) {
if (!rape) {
if (_root.player._x >= _x) {
_x = (_x + gospeed);
}
if (_root.player._x <= _x) {
_x = (_x - gospeed);
}
if (_root.player._y >= _y) {
_y = (_y + gospeed);
}
if (_root.player._y <= _y) {
_y = (_y - gospeed);
}
if (this.hitTest(_root.player.attack.limit)) {
dead = true;
}
if (!_root.player.rape1) {
if (!_root.player.nohit) {
if (this.hitTest(_root.player.limita)) {
rape = true;
}
}
}
}
}
}
if (!_root.player.attack1) {
if (!_root.scrollstop) {
if (_root.mover) {
_x = (_x - speed);
}
if (_root.movel) {
_x = (_x + speed);
}
}
}
if (pushback) {
pushtimer++;
_x = (_x - speed);
if (pushtimer >= 10) {
pushback = false;
pushtimer = 0;
}
}
if (rape) {
_y = _root.player._y;
_x = (_root.player._x + 10);
_root.player.rape1 = true;
if (_root.pants) {
if (_root.player.dir == 1) {
_xscale = 100;
_y = (_root.player._y - 20);
_x = (_root.player._x + 10);
}
if (_root.player.dir == 0) {
_y = (_root.player._y - 20);
_x = (_root.player._x - 10);
_xscale = -100;
}
gotoAndStop ("rape1");
_root.player.victim.gotoAndStop(3);
}
if (!_root.pants) {
if (_root.player.dir == 1) {
_y = (_root.player._y - 10);
_x = (_root.player._x + 10);
_xscale = 100;
}
if (_root.player.dir == 0) {
_y = (_root.player._y - 10);
_x = (_root.player._x - 10);
_xscale = -100;
}
gotoAndStop ("rape");
_root.player.victim.gotoAndStop(1);
}
rapetimer++;
if (rapetimer >= 150) {
_root.life = _root.life - 20;
_root.player.rape1 = false;
_root.player.nohit = true;
rape = false;
dead = false;
pushback = true;
gotoAndStop ("chase");
rapetimer = 0;
}
}
if (dead) {
gotoAndStop ("dead");
_y = (_y + 2);
}
}
Instance of Symbol 530 MovieClip "enemy1" in Frame 20
onClipEvent (load) {
speed = 5;
dead = false;
rape = false;
gospeed = 3.25;
rapetimer = 0;
pushback = false;
pushtimer = 0;
}
onClipEvent (enterFrame) {
if (!dead) {
if (!pushback) {
if (!rape) {
if (_root.player._x >= _x) {
_x = (_x + gospeed);
}
if (_root.player._x <= _x) {
_x = (_x - gospeed);
}
if (_root.player._y >= _y) {
_y = (_y + gospeed);
}
if (_root.player._y <= _y) {
_y = (_y - gospeed);
}
if (this.hitTest(_root.player.attack.limit)) {
dead = true;
}
if (!_root.player.rape1) {
if (!_root.player.nohit) {
if (this.hitTest(_root.player.limita)) {
rape = true;
}
}
}
}
}
}
if (!_root.player.attack1) {
if (!_root.scrollstop) {
if (_root.mover) {
_x = (_x - speed);
}
if (_root.movel) {
_x = (_x + speed);
}
}
}
if (pushback) {
pushtimer++;
_x = (_x - speed);
if (pushtimer >= 10) {
pushback = false;
pushtimer = 0;
}
}
if (rape) {
_y = _root.player._y;
_x = (_root.player._x + 10);
_root.player.rape1 = true;
if (_root.pants) {
if (_root.player.dir == 1) {
_xscale = 100;
_y = (_root.player._y - 20);
_x = (_root.player._x + 10);
}
if (_root.player.dir == 0) {
_y = (_root.player._y - 20);
_x = (_root.player._x - 10);
_xscale = -100;
}
gotoAndStop ("rape1");
_root.player.victim.gotoAndStop(3);
}
if (!_root.pants) {
if (_root.player.dir == 1) {
_y = (_root.player._y - 10);
_x = (_root.player._x + 10);
_xscale = 100;
}
if (_root.player.dir == 0) {
_y = (_root.player._y - 10);
_x = (_root.player._x - 10);
_xscale = -100;
}
gotoAndStop ("rape");
_root.player.victim.gotoAndStop(1);
}
rapetimer++;
if (rapetimer >= 150) {
_root.life = _root.life - 20;
_root.player.rape1 = false;
_root.player.nohit = true;
rape = false;
dead = false;
pushback = true;
gotoAndStop ("chase");
rapetimer = 0;
}
}
if (dead) {
gotoAndStop ("dead");
_y = (_y + 2);
}
}
Frame 21
stop();
Instance of Symbol 487 MovieClip "e2" in Frame 21
onClipEvent (load) {
speed2 = 5;
speed = 1;
dead = false;
rape = false;
rapetimer = 0;
gr = false;
gl = true;
grtimer = 0;
gltimer = 0;
fspeed = 3;
}
onClipEvent (enterFrame) {
if ((!_root.map1.black.hitTest(_x, _y + 20, true)) and (!_root.map2.black.hitTest(_x, _y + 20, true))) {
fall = true;
} else {
fall = false;
}
if (!rape) {
if (fall) {
_y = (_y + fspeed);
}
}
if (!dead) {
if (!rape) {
if (gr) {
_xscale = 100;
grtimer++;
_x = (_x + speed);
if (grtimer >= 100) {
grtimer = 0;
gl = true;
gr = false;
}
}
if (gl) {
_xscale = -100;
gltimer++;
_x = (_x - speed);
if (gltimer >= 100) {
gltimer = 0;
gr = true;
gl = false;
}
}
if (this.hitTest(_root.player.attack.limit)) {
dead = true;
}
if (!_root.player.rape1) {
if (!_root.player.nohit) {
if (limit.hitTest(_root.player.limita)) {
rape = true;
}
}
}
}
}
if (rape) {
_root.player.rape1 = true;
if (_root.pants) {
if (_root.player.dir == 1) {
_xscale = 100;
_y = _root.player._y;
_x = (_root.player._x - 30);
}
if (_root.player.dir == 0) {
_y = _root.player._y;
_x = (_root.player._x + 30);
_xscale = -100;
}
gotoAndStop ("rape");
_root.player.victim.gotoAndStop(3);
}
if (!_root.pants) {
if (_root.player.dir == 1) {
_xscale = 100;
_y = _root.player._y;
_x = (_root.player._x - 30);
}
if (_root.player.dir == 0) {
_y = _root.player._y;
_x = (_root.player._x + 30);
_xscale = -100;
}
gotoAndStop ("rape1");
_root.player.victim.gotoAndStop(2);
}
rapetimer++;
if (_root.pants) {
if (rapetimer >= 50) {
_root.life = _root.life - 20;
_root.player.rape1 = false;
_root.player.nohit = true;
rape = false;
dead = false;
pushback = true;
gotoAndStop ("chill");
rapetimer = 0;
}
}
if (!_root.pants) {
if (rapetimer >= 100) {
_root.life = _root.life - 20;
_root.player.rape1 = false;
_root.player.nohit = true;
rape = false;
dead = false;
pushback = true;
gotoAndStop ("chill");
rapetimer = 0;
}
}
}
if (dead) {
gotoAndStop ("dead");
}
if (!_root.player.attack1) {
if (!_root.scrollstop) {
if (_root.mover) {
_x = (_x - speed2);
}
if (_root.movel) {
_x = (_x + speed2);
}
}
}
}
Instance of Symbol 734 MovieClip "bigboss" in Frame 21
onClipEvent (load) {
life = 100;
hit = false;
hittime = 0;
speed2 = 5;
speed = 3.5;
dead = false;
rape = false;
rapetimer = 0;
gr = true;
gl = false;
grtimer = 0;
gltimer = 0;
fspeed = 3;
}
onClipEvent (enterFrame) {
if ((!_root.map1.black.hitTest(_x, _y + 20, true)) and (!_root.map2.black.hitTest(_x, _y + 20, true))) {
fall = true;
} else {
fall = false;
}
if (!rape) {
if (fall) {
_y = (_y + fspeed);
}
}
if (!dead) {
if (!hit) {
if (!rape) {
if (gr) {
_xscale = 50;
grtimer++;
_x = (_x + speed);
}
if (this.hitTest(_root.player.attack.limit)) {
life = life - 50;
blink.gotoAndPlay(2);
hit = true;
}
if (!_root.player.rape1) {
if (!_root.player.nohit) {
if (limit.hitTest(_root.player.limita)) {
rape = true;
}
}
}
}
}
if (rape) {
_root.player.rape1 = true;
if (_root.pants) {
if (_root.player.dir == 1) {
_xscale = 50;
_y = _root.player._y;
_x = (_root.player._x - 30);
}
if (_root.player.dir == 0) {
_y = _root.player._y;
_x = (_root.player._x + 30);
_xscale = -50;
}
gotoAndStop ("rape");
_root.player.victim.gotoAndStop(3);
}
if (!_root.pants) {
if (_root.player.dir == 1) {
_xscale = 50;
_y = _root.player._y;
_x = (_root.player._x - 30);
}
if (_root.player.dir == 0) {
_y = _root.player._y;
_x = (_root.player._x + 30);
_xscale = -50;
}
gotoAndStop ("rape1");
_root.player.victim.gotoAndStop(2);
}
rapetimer++;
if (_root.pants) {
if (rapetimer >= 50) {
_root.life = _root.life - 20;
_root.player.rape1 = false;
_root.player.nohit = true;
rape = false;
dead = false;
pushback = true;
gotoAndStop ("chill");
rapetimer = 0;
}
}
if (!_root.pants) {
if (rapetimer >= 130) {
_root.life = _root.life - 20;
_root.player.rape1 = false;
_root.player.nohit = true;
rape = false;
dead = false;
pushback = true;
gotoAndStop ("chill");
rapetimer = 0;
}
}
}
}
if (!dead) {
if (hit) {
hittime++;
gotoAndStop ("hit");
if (gr) {
_x = (_x - speed);
}
if (gl) {
_x = (_x + speed);
}
if (hittime >= 30) {
gotoAndStop ("chill");
hittime = 0;
hit = false;
}
}
}
if (life <= 0) {
dead = true;
}
if (dead) {
gotoAndStop ("dead");
_y = (_y + 5);
}
if (!_root.player.attack1) {
if (!_root.scrollstop) {
if (_root.mover) {
_x = (_x - speed2);
}
if (_root.movel) {
_x = (_x + speed2);
}
}
}
}
Frame 22
stop();
Instance of Symbol 530 MovieClip "enemy4" in Frame 22
onClipEvent (load) {
speed = 5;
dead = false;
rape = false;
gospeed = 3.75;
rapetimer = 0;
pushback = false;
pushtimer = 0;
}
onClipEvent (enterFrame) {
if (!dead) {
if (!pushback) {
if (!rape) {
if (_root.player._x >= _x) {
_x = (_x + gospeed);
}
if (_root.player._x <= _x) {
_x = (_x - gospeed);
}
if (_root.player._y >= _y) {
_y = (_y + gospeed);
}
if (_root.player._y <= _y) {
_y = (_y - gospeed);
}
if (this.hitTest(_root.player.attack.limit)) {
dead = true;
}
if (!_root.player.rape1) {
if (!_root.player.nohit) {
if (this.hitTest(_root.player.limita)) {
rape = true;
}
}
}
}
}
}
if (!_root.player.attack1) {
if (!_root.scrollstop) {
if (_root.mover) {
_x = (_x - speed);
}
if (_root.movel) {
_x = (_x + speed);
}
}
}
if (pushback) {
pushtimer++;
_x = (_x - speed);
if (pushtimer >= 10) {
pushback = false;
pushtimer = 0;
}
}
if (rape) {
_y = _root.player._y;
_x = (_root.player._x + 10);
_root.player.rape1 = true;
if (_root.pants) {
if (_root.player.dir == 1) {
_xscale = 100;
_y = (_root.player._y - 20);
_x = (_root.player._x + 10);
}
if (_root.player.dir == 0) {
_y = (_root.player._y - 20);
_x = (_root.player._x - 10);
_xscale = -100;
}
gotoAndStop ("rape1");
_root.player.victim.gotoAndStop(3);
}
if (!_root.pants) {
if (_root.player.dir == 1) {
_y = (_root.player._y - 10);
_x = (_root.player._x + 10);
_xscale = 100;
}
if (_root.player.dir == 0) {
_y = (_root.player._y - 10);
_x = (_root.player._x - 10);
_xscale = -100;
}
gotoAndStop ("rape");
_root.player.victim.gotoAndStop(1);
}
rapetimer++;
if (rapetimer >= 150) {
_root.life = _root.life - 20;
_root.player.rape1 = false;
_root.player.nohit = true;
rape = false;
dead = false;
pushback = true;
gotoAndStop ("chase");
rapetimer = 0;
}
}
if (dead) {
gotoAndStop ("dead");
_y = (_y + 2);
}
}
Instance of Symbol 530 MovieClip "enemy3" in Frame 22
onClipEvent (load) {
speed = 5;
dead = false;
rape = false;
gospeed = 3.5;
rapetimer = 0;
pushback = false;
pushtimer = 0;
}
onClipEvent (enterFrame) {
if (!dead) {
if (!pushback) {
if (!rape) {
if (_root.player._x >= _x) {
_x = (_x + gospeed);
}
if (_root.player._x <= _x) {
_x = (_x - gospeed);
}
if (_root.player._y >= _y) {
_y = (_y + gospeed);
}
if (_root.player._y <= _y) {
_y = (_y - gospeed);
}
if (this.hitTest(_root.player.attack.limit)) {
dead = true;
}
if (!_root.player.rape1) {
if (!_root.player.nohit) {
if (this.hitTest(_root.player.limita)) {
rape = true;
}
}
}
}
}
}
if (!_root.player.attack1) {
if (!_root.scrollstop) {
if (_root.mover) {
_x = (_x - speed);
}
if (_root.movel) {
_x = (_x + speed);
}
}
}
if (pushback) {
pushtimer++;
_x = (_x - speed);
if (pushtimer >= 10) {
pushback = false;
pushtimer = 0;
}
}
if (rape) {
_y = _root.player._y;
_x = (_root.player._x + 10);
_root.player.rape1 = true;
if (_root.pants) {
if (_root.player.dir == 1) {
_xscale = 100;
_y = (_root.player._y - 20);
_x = (_root.player._x + 10);
}
if (_root.player.dir == 0) {
_y = (_root.player._y - 20);
_x = (_root.player._x - 10);
_xscale = -100;
}
gotoAndStop ("rape1");
_root.player.victim.gotoAndStop(3);
}
if (!_root.pants) {
if (_root.player.dir == 1) {
_y = (_root.player._y - 10);
_x = (_root.player._x + 10);
_xscale = 100;
}
if (_root.player.dir == 0) {
_y = (_root.player._y - 10);
_x = (_root.player._x - 10);
_xscale = -100;
}
gotoAndStop ("rape");
_root.player.victim.gotoAndStop(1);
}
rapetimer++;
if (rapetimer >= 150) {
_root.life = _root.life - 20;
_root.player.rape1 = false;
_root.player.nohit = true;
rape = false;
dead = false;
pushback = true;
gotoAndStop ("chase");
rapetimer = 0;
}
}
if (dead) {
gotoAndStop ("dead");
_y = (_y + 2);
}
}
Instance of Symbol 530 MovieClip "enemy2" in Frame 22
onClipEvent (load) {
speed = 5;
dead = false;
rape = false;
gospeed = 4;
rapetimer = 0;
pushback = false;
pushtimer = 0;
}
onClipEvent (enterFrame) {
if (!dead) {
if (!pushback) {
if (!rape) {
if (_root.player._x >= _x) {
_x = (_x + gospeed);
}
if (_root.player._x <= _x) {
_x = (_x - gospeed);
}
if (_root.player._y >= _y) {
_y = (_y + gospeed);
}
if (_root.player._y <= _y) {
_y = (_y - gospeed);
}
if (this.hitTest(_root.player.attack.limit)) {
dead = true;
}
if (!_root.player.rape1) {
if (!_root.player.nohit) {
if (this.hitTest(_root.player.limita)) {
rape = true;
}
}
}
}
}
}
if (!_root.player.attack1) {
if (!_root.scrollstop) {
if (_root.mover) {
_x = (_x - speed);
}
if (_root.movel) {
_x = (_x + speed);
}
}
}
if (pushback) {
pushtimer++;
_x = (_x - speed);
if (pushtimer >= 10) {
pushback = false;
pushtimer = 0;
}
}
if (rape) {
_y = _root.player._y;
_x = (_root.player._x + 10);
_root.player.rape1 = true;
if (_root.pants) {
if (_root.player.dir == 1) {
_xscale = 100;
_y = (_root.player._y - 20);
_x = (_root.player._x + 10);
}
if (_root.player.dir == 0) {
_y = (_root.player._y - 20);
_x = (_root.player._x - 10);
_xscale = -100;
}
gotoAndStop ("rape1");
_root.player.victim.gotoAndStop(3);
}
if (!_root.pants) {
if (_root.player.dir == 1) {
_y = (_root.player._y - 10);
_x = (_root.player._x + 10);
_xscale = 100;
}
if (_root.player.dir == 0) {
_y = (_root.player._y - 10);
_x = (_root.player._x - 10);
_xscale = -100;
}
gotoAndStop ("rape");
_root.player.victim.gotoAndStop(1);
}
rapetimer++;
if (rapetimer >= 150) {
_root.life = _root.life - 20;
_root.player.rape1 = false;
_root.player.nohit = true;
rape = false;
dead = false;
pushback = true;
gotoAndStop ("chase");
rapetimer = 0;
}
}
if (dead) {
gotoAndStop ("dead");
_y = (_y + 2);
}
}
Instance of Symbol 530 MovieClip "enemy1" in Frame 22
onClipEvent (load) {
speed = 5;
dead = false;
rape = false;
gospeed = 3.25;
rapetimer = 0;
pushback = false;
pushtimer = 0;
}
onClipEvent (enterFrame) {
if (!dead) {
if (!pushback) {
if (!rape) {
if (_root.player._x >= _x) {
_x = (_x + gospeed);
}
if (_root.player._x <= _x) {
_x = (_x - gospeed);
}
if (_root.player._y >= _y) {
_y = (_y + gospeed);
}
if (_root.player._y <= _y) {
_y = (_y - gospeed);
}
if (this.hitTest(_root.player.attack.limit)) {
dead = true;
}
if (!_root.player.rape1) {
if (!_root.player.nohit) {
if (this.hitTest(_root.player.limita)) {
rape = true;
}
}
}
}
}
}
if (!_root.player.attack1) {
if (!_root.scrollstop) {
if (_root.mover) {
_x = (_x - speed);
}
if (_root.movel) {
_x = (_x + speed);
}
}
}
if (pushback) {
pushtimer++;
_x = (_x - speed);
if (pushtimer >= 10) {
pushback = false;
pushtimer = 0;
}
}
if (rape) {
_y = _root.player._y;
_x = (_root.player._x + 10);
_root.player.rape1 = true;
if (_root.pants) {
if (_root.player.dir == 1) {
_xscale = 100;
_y = (_root.player._y - 20);
_x = (_root.player._x + 10);
}
if (_root.player.dir == 0) {
_y = (_root.player._y - 20);
_x = (_root.player._x - 10);
_xscale = -100;
}
gotoAndStop ("rape1");
_root.player.victim.gotoAndStop(3);
}
if (!_root.pants) {
if (_root.player.dir == 1) {
_y = (_root.player._y - 10);
_x = (_root.player._x + 10);
_xscale = 100;
}
if (_root.player.dir == 0) {
_y = (_root.player._y - 10);
_x = (_root.player._x - 10);
_xscale = -100;
}
gotoAndStop ("rape");
_root.player.victim.gotoAndStop(1);
}
rapetimer++;
if (rapetimer >= 150) {
_root.life = _root.life - 20;
_root.player.rape1 = false;
_root.player.nohit = true;
rape = false;
dead = false;
pushback = true;
gotoAndStop ("chase");
rapetimer = 0;
}
}
if (dead) {
gotoAndStop ("dead");
_y = (_y + 2);
}
}
Instance of Symbol 404 MovieClip "enemy5" in Frame 22
onClipEvent (load) {
speed2 = 5;
speed = 1;
dead = false;
rape = false;
rapetimer = 0;
gr = false;
gl = true;
grtimer = 0;
gltimer = 0;
fspeed = 3;
}
onClipEvent (enterFrame) {
if ((!_root.map1.black.hitTest(_x, _y + 20, true)) and (!_root.map2.black.hitTest(_x, _y + 20, true))) {
fall = true;
} else {
fall = false;
}
if (!rape) {
if (fall) {
_y = (_y + fspeed);
}
}
if (!dead) {
if (!rape) {
if (gr) {
grtimer++;
_x = (_x + speed);
if (grtimer >= 100) {
grtimer = 0;
gl = true;
gr = false;
}
}
if (gl) {
gltimer++;
_x = (_x - speed);
if (gltimer >= 100) {
gltimer = 0;
gr = true;
gl = false;
}
}
if (this.hitTest(_root.player.attack.limit)) {
dead = true;
}
if (!_root.player.rape1) {
if (!_root.player.nohit) {
if (limit.hitTest(_root.player.limita)) {
rape = true;
}
}
}
}
}
if (rape) {
_root.player.rape1 = true;
if (_root.pants) {
if (_root.player.dir == 1) {
_xscale = 70;
_y = _root.player._y;
_x = (_root.player._x - 30);
}
if (_root.player.dir == 0) {
_y = _root.player._y;
_x = (_root.player._x + 30);
_xscale = -70;
}
gotoAndStop ("rape");
_root.player.victim.gotoAndStop(3);
}
if (!_root.pants) {
if (_root.player.dir == 1) {
_xscale = 70;
_y = _root.player._y;
_x = (_root.player._x - 30);
}
if (_root.player.dir == 0) {
_y = _root.player._y;
_x = (_root.player._x + 30);
_xscale = -70;
}
gotoAndStop ("rape1");
_root.player.victim.gotoAndStop(1);
}
rapetimer++;
if (_root.pants) {
if (rapetimer >= 50) {
_root.life = _root.life - 20;
_root.player.rape1 = false;
_root.player.nohit = true;
rape = false;
dead = false;
pushback = true;
gotoAndStop ("chill");
rapetimer = 0;
}
}
if (!_root.pants) {
if (rapetimer >= 150) {
_root.life = _root.life - 20;
_root.player.rape1 = false;
_root.player.nohit = true;
rape = false;
dead = false;
pushback = true;
gotoAndStop ("chill");
rapetimer = 0;
}
}
}
if (dead) {
gotoAndStop ("dead");
}
if (!_root.player.attack1) {
if (!_root.scrollstop) {
if (_root.mover) {
_x = (_x - speed2);
}
if (_root.movel) {
_x = (_x + speed2);
}
}
}
}
Frame 23
stop();
Instance of Symbol 487 MovieClip "e2" in Frame 23
onClipEvent (load) {
speed2 = 5;
speed = 1;
dead = false;
rape = false;
rapetimer = 0;
gr = false;
gl = true;
grtimer = 0;
gltimer = 0;
fspeed = 3;
}
onClipEvent (enterFrame) {
if ((!_root.map1.black.hitTest(_x, _y + 20, true)) and (!_root.map2.black.hitTest(_x, _y + 20, true))) {
fall = true;
} else {
fall = false;
}
if (!rape) {
if (fall) {
_y = (_y + fspeed);
}
}
if (!dead) {
if (!rape) {
if (gr) {
_xscale = 100;
grtimer++;
_x = (_x + speed);
if (grtimer >= 100) {
grtimer = 0;
gl = true;
gr = false;
}
}
if (gl) {
_xscale = -100;
gltimer++;
_x = (_x - speed);
if (gltimer >= 100) {
gltimer = 0;
gr = true;
gl = false;
}
}
if (this.hitTest(_root.player.attack.limit)) {
dead = true;
}
if (!_root.player.rape1) {
if (!_root.player.nohit) {
if (limit.hitTest(_root.player.limita)) {
rape = true;
}
}
}
}
}
if (rape) {
_root.player.rape1 = true;
if (_root.pants) {
if (_root.player.dir == 1) {
_xscale = 100;
_y = _root.player._y;
_x = (_root.player._x - 30);
}
if (_root.player.dir == 0) {
_y = _root.player._y;
_x = (_root.player._x + 30);
_xscale = -100;
}
gotoAndStop ("rape");
_root.player.victim.gotoAndStop(3);
}
if (!_root.pants) {
if (_root.player.dir == 1) {
_xscale = 100;
_y = _root.player._y;
_x = (_root.player._x - 30);
}
if (_root.player.dir == 0) {
_y = _root.player._y;
_x = (_root.player._x + 30);
_xscale = -100;
}
gotoAndStop ("rape1");
_root.player.victim.gotoAndStop(2);
}
rapetimer++;
if (_root.pants) {
if (rapetimer >= 50) {
_root.life = _root.life - 20;
_root.player.rape1 = false;
_root.player.nohit = true;
rape = false;
dead = false;
pushback = true;
gotoAndStop ("chill");
rapetimer = 0;
}
}
if (!_root.pants) {
if (rapetimer >= 100) {
_root.life = _root.life - 20;
_root.player.rape1 = false;
_root.player.nohit = true;
rape = false;
dead = false;
pushback = true;
gotoAndStop ("chill");
rapetimer = 0;
}
}
}
if (dead) {
gotoAndStop ("dead");
}
if (!_root.player.attack1) {
if (!_root.scrollstop) {
if (_root.mover) {
_x = (_x - speed2);
}
if (_root.movel) {
_x = (_x + speed2);
}
}
}
}
Instance of Symbol 776 MovieClip in Frame 23
onClipEvent (load) {
speed2 = 5;
give = false;
}
onClipEvent (enterFrame) {
if (_root.player._x > _x) {
_xscale = -10;
}
if (_root.player._x < _x) {
_xscale = 10;
}
if (this.hitTest(_root.player.limita)) {
if (!give) {
if (_root.life < 100) {
_root.life = _root.life + 50;
}
_root.shirt = true;
_root.pants = true;
gotoAndStop (5);
give = true;
}
}
if (!_root.player.attack1) {
if (!_root.scrollstop) {
if (_root.mover) {
_x = (_x - speed2);
}
if (_root.movel) {
_x = (_x + speed2);
}
}
}
}
Instance of Symbol 734 MovieClip "bigboss" in Frame 23
onClipEvent (load) {
life = 100;
hit = false;
hittime = 0;
speed2 = 5;
speed = 3.5;
dead = false;
rape = false;
rapetimer = 0;
gr = true;
gl = false;
grtimer = 0;
gltimer = 0;
fspeed = 3;
}
onClipEvent (enterFrame) {
if ((!_root.map1.black.hitTest(_x, _y + 20, true)) and (!_root.map2.black.hitTest(_x, _y + 20, true))) {
fall = true;
} else {
fall = false;
}
if (!rape) {
if (fall) {
_y = (_y + fspeed);
}
}
if (!dead) {
if (!hit) {
if (!rape) {
if (gr) {
_xscale = 50;
grtimer++;
_x = (_x + speed);
}
if (this.hitTest(_root.player.attack.limit)) {
life = life - 50;
blink.gotoAndPlay(2);
hit = true;
}
if (!_root.player.rape1) {
if (!_root.player.nohit) {
if (limit.hitTest(_root.player.limita)) {
rape = true;
}
}
}
}
}
if (rape) {
_root.player.rape1 = true;
if (_root.pants) {
if (_root.player.dir == 1) {
_xscale = 50;
_y = _root.player._y;
_x = (_root.player._x - 30);
}
if (_root.player.dir == 0) {
_y = _root.player._y;
_x = (_root.player._x + 30);
_xscale = -50;
}
gotoAndStop ("rape");
_root.player.victim.gotoAndStop(3);
}
if (!_root.pants) {
if (_root.player.dir == 1) {
_xscale = 50;
_y = _root.player._y;
_x = (_root.player._x - 30);
}
if (_root.player.dir == 0) {
_y = _root.player._y;
_x = (_root.player._x + 30);
_xscale = -50;
}
gotoAndStop ("rape1");
_root.player.victim.gotoAndStop(2);
}
rapetimer++;
if (_root.pants) {
if (rapetimer >= 50) {
_root.life = _root.life - 20;
_root.player.rape1 = false;
_root.player.nohit = true;
rape = false;
dead = false;
pushback = true;
gotoAndStop ("chill");
rapetimer = 0;
}
}
if (!_root.pants) {
if (rapetimer >= 130) {
_root.life = _root.life - 20;
_root.player.rape1 = false;
_root.player.nohit = true;
rape = false;
dead = false;
pushback = true;
gotoAndStop ("chill");
rapetimer = 0;
}
}
}
}
if (!dead) {
if (hit) {
hittime++;
gotoAndStop ("hit");
if (gr) {
_x = (_x - speed);
}
if (gl) {
_x = (_x + speed);
}
if (hittime >= 30) {
gotoAndStop ("chill");
hittime = 0;
hit = false;
}
}
}
if (life <= 0) {
dead = true;
}
if (dead) {
gotoAndStop ("dead");
_y = (_y + 5);
}
if (!_root.player.attack1) {
if (!_root.scrollstop) {
if (_root.mover) {
_x = (_x - speed2);
}
if (_root.movel) {
_x = (_x + speed2);
}
}
}
}
Frame 24
stop();
Instance of Symbol 859 MovieClip "enemy10" in Frame 24
onClipEvent (load) {
attacktimer = 0;
life = 500;
hit = false;
hittimer = 0;
dir = 0;
speed = 5;
dead = false;
rape = false;
gospeed = 1.5;
rapetimer = 0;
pushback = false;
pushtimer = 0;
atttimer = 0;
attack1 = false;
}
onClipEvent (enterFrame) {
if (!dead) {
if (!hit) {
if (!pushback) {
if (!rape) {
if (!attack1) {
atttimer++;
if (_root.player._x >= _x) {
_xscale = -50;
dir = 0;
_x = (_x + gospeed);
}
if (_root.player._x <= _x) {
_xscale = 50;
dir = 1;
_x = (_x - gospeed);
}
if (_root.player._y >= _y) {
_y = (_y + gospeed);
}
if (_root.player._y <= _y) {
_y = (_y - gospeed);
}
if (!_root.player.rape1) {
if (!_root.player.nohit) {
if (limit.hitTest(_root.player.limita)) {
rape = true;
}
if (hand.hitTest(_root.player.limita)) {
rape = true;
}
}
}
}
}
}
}
}
if (!_root.player.attack1) {
if (!_root.scrollstop) {
if (_root.mover) {
_x = (_x - speed);
}
if (_root.movel) {
_x = (_x + speed);
}
}
}
if (pushback) {
pushtimer++;
if (dir == 1) {
_x = (_x + speed);
}
if (dir == 0) {
_x = (_x - speed);
}
if (pushtimer >= 35) {
attack1 = false;
pushback = false;
pushtimer = 0;
}
}
if (atttimer >= 75) {
atttimer = 0;
attack1 = true;
}
if (attack1) {
gotoAndStop ("attack1");
attacktimer++;
if (!_root.player.rape1) {
if (!_root.player.nohit) {
if (hand.hitTest(_root.player.limita)) {
rape = true;
attacktimer = 0;
attack1 = false;
}
}
}
if (attacktimer >= 100) {
gotoAndStop ("chill");
attacktimer = 0;
attack1 = false;
}
}
if (rape) {
attack1 = false;
atttimer = 0;
attacktimer = 0;
_y = _root.player._y;
_x = (_root.player._x + 10);
_root.player.rape1 = true;
if (!_root.pants) {
if (_root.player.dir == 1) {
_xscale = -50;
_y = (_root.player._y - 20);
_x = (_root.player._x - 90);
}
if (_root.player.dir == 0) {
_y = (_root.player._y - 20);
_x = (_root.player._x + 90);
_xscale = 50;
}
gotoAndStop ("rape1");
_root.player.victim.gotoAndStop(2);
}
if (_root.pants) {
if (_root.player.dir == 1) {
_y = (_root.player._y - 10);
_x = (_root.player._x - 110);
_xscale = -50;
}
if (_root.player.dir == 0) {
_y = (_root.player._y - 10);
_x = (_root.player._x + 110);
_xscale = 50;
}
gotoAndStop ("rape");
_root.player.victim.gotoAndStop(3);
}
rapetimer++;
if (rapetimer >= 155) {
_root.life = _root.life - 20;
_root.player.rape1 = false;
_root.player.nohit = true;
rape = false;
dead = false;
pushback = true;
gotoAndStop ("chill");
rapetimer = 0;
}
}
if (hit) {
hittime++;
attacktimer = 0;
attack1 = false;
gotoAndStop ("hit");
if (dir == 1) {
_x = (_x + speed);
}
if (dir == 0) {
_x = (_x - speed);
}
if (hittime >= 30) {
gotoAndStop ("chill");
hittime = 0;
hit = false;
}
}
if (life <= 0) {
dead = true;
}
if (dead) {
_root.fade1.gotoAndStop(2);
hit = false;
gotoAndStop ("dead");
}
if (limit.hitTest(_root.player.attack.limit)) {
blink.gotoAndPlay(2);
life = life - 10;
hit = true;
}
}
Instance of Symbol 377 MovieClip in Frame 24
onClipEvent (enterFrame) {
_width = (_root.enemy10.life / 5);
}
Frame 25
stop();
stopAllSounds();
_root.totbon = 0;
_root.tbonus = 0;
_root.sbonus = 0;
_root.dbonus = 0;
Instance of Symbol 883 MovieClip "rate" in Frame 25
onClipEvent (load) {
trick = false;
}
onClipEvent (enterFrame) {
if (!trick) {
ranks = _root.totbon;
_root.ges = ranks;
trick = true;
}
if (ranks >= 15000) {
gotoAndStop ("a");
}
if ((ranks < 15000) and (ranks >= 10000)) {
gotoAndStop ("b");
}
if ((ranks < 10000) and (ranks > 5000)) {
gotoAndStop ("c");
}
if (ranks <= 5000) {
gotoAndStop ("d");
}
}
Instance of Symbol 888 MovieClip in Frame 25
on (release) {
_root.gotoAndStop("loader");
}
Instance of Symbol 889 MovieClip "box" in Frame 25
onClipEvent (load) {
rtime = 0;
rstop = false;
countup = false;
if (_root.shirt) {
_root.sbonus = 5000;
}
if (_root.pants) {
_root.dbonus = 5000;
}
if (_root.mins <= 6) {
_root.tbonus = 5000;
}
if ((_root.mins > 6) and (_root.mins <= 10)) {
_root.tbonus = 500;
}
if (_root.mins > 10) {
_root.tbonus = 0;
}
_root.totbon = (_root.dbonus + _root.tbonus) + _root.sbonus;
}
onClipEvent (enterFrame) {
if (!rstop) {
rtime++;
if (rtime >= 50) {
rstop = true;
countup = true;
}
}
if (countup) {
_root.totbon = _root.totbon - 35;
_root.score = _root.score + 35;
if (_root.totbon < 0) {
_root.totbon = 0;
countup = false;
}
}
}
Symbol 13 MovieClip [L_03_Crash] Frame 9
this.removeMovieClip();
stop();
Symbol 32 MovieClip Frame 1
stop();
Symbol 32 MovieClip Frame 2
stop();
Symbol 42 MovieClip Frame 1
stop();
Instance of Symbol 37 MovieClip in Symbol 42 MovieClip Frame 1
onClipEvent (load) {
cltimer = 0;
}
onClipEvent (enterFrame) {
cltimer++;
if (cltimer >= 20) {
if (Key.isDown(81)) {
_quality = "MEDIUM";
_root.qualityc.gotoAndStop("med");
}
}
}
Symbol 42 MovieClip Frame 2
stop();
Instance of Symbol 39 MovieClip in Symbol 42 MovieClip Frame 2
onClipEvent (load) {
cltimer = 0;
}
onClipEvent (enterFrame) {
cltimer++;
if (cltimer >= 20) {
if (Key.isDown(81)) {
_root.qualityc.gotoAndStop("low");
}
}
}
Symbol 42 MovieClip Frame 3
stop();
Instance of Symbol 41 MovieClip in Symbol 42 MovieClip Frame 3
onClipEvent (load) {
cltimer = 0;
}
onClipEvent (enterFrame) {
cltimer++;
if (cltimer >= 20) {
if (Key.isDown(81)) {
_quality = "BEST";
_root.qualityc.gotoAndStop("high");
}
}
}
Symbol 44 MovieClip Frame 1
stop();
Symbol 44 MovieClip Frame 42
_root.gotoAndStop("lev1");
stop();
Symbol 48 MovieClip Frame 61
stop();
Symbol 52 MovieClip Frame 46
stop();
Symbol 60 MovieClip Frame 1
stop();
Symbol 60 MovieClip Frame 2
stop();
Symbol 60 MovieClip Frame 3
stop();
Symbol 60 MovieClip Frame 4
stop();
Symbol 60 MovieClip Frame 5
stop();
Symbol 60 MovieClip Frame 6
stop();
Symbol 60 MovieClip Frame 7
stop();
Symbol 60 MovieClip Frame 8
stop();
Symbol 60 MovieClip Frame 9
stop();
Symbol 60 MovieClip Frame 10
stop();
Instance of Symbol 48 MovieClip in Symbol 60 MovieClip Frame 10
onClipEvent (load) {
gtime = 0;
}
onClipEvent (enterFrame) {
if (_root.enemy10.dead) {
gtime++;
if (gtime >= 45) {
_root.gotoAndStop("bonus");
}
}
}
Symbol 121 MovieClip Frame 1
stop();
Symbol 121 MovieClip Frame 2
stop();
Symbol 121 MovieClip Frame 3
_root.gotoAndStop("lev2");
stop();
Symbol 121 MovieClip Frame 4
stop();
Symbol 121 MovieClip Frame 5
_root.gotoAndStop("lev3");
stop();
Symbol 121 MovieClip Frame 6
_root.level = 2;
_root.lev1pass = true;
_root.lev2pass = false;
_root.lev3pass = false;
_root.lev4pass = false;
_root.lev5pass = false;
stop();
Symbol 121 MovieClip Frame 7
stop();
_root.gotoAndStop("lev4");
Symbol 121 MovieClip Frame 8
stop();
Symbol 121 MovieClip Frame 9
stop();
_root.gotoAndStop("lev5");
Symbol 121 MovieClip Frame 10
stop();
Symbol 121 MovieClip Frame 11
stop();
_root.gotoAndStop("lev6");
Symbol 121 MovieClip Frame 12
stop();
Symbol 121 MovieClip Frame 13
stop();
_root.gotoAndStop("lev7");
Symbol 121 MovieClip Frame 14
stop();
Symbol 121 MovieClip Frame 15
_root.lev1pass = true;
_root.lev2pass = true;
_root.lev3pass = false;
_root.lev4pass = false;
_root.lev5pass = false;
_root.gotoAndStop("lev8");
stop();
Symbol 121 MovieClip Frame 16
_root.level = 3;
stop();
Symbol 121 MovieClip Frame 17
stop();
_root.gotoAndStop("lev9");
Symbol 121 MovieClip Frame 18
stop();
Symbol 121 MovieClip Frame 19
stop();
_root.gotoAndStop("lev10");
Symbol 121 MovieClip Frame 20
stop();
Symbol 121 MovieClip Frame 21
stop();
_root.gotoAndStop("lev11");
Symbol 121 MovieClip Frame 22
stop();
Symbol 121 MovieClip Frame 23
stop();
_root.gotoAndStop("lev13");
Symbol 121 MovieClip Frame 24
_root.lev1pass = true;
_root.lev2pass = true;
_root.lev3pass = true;
_root.lev4pass = false;
_root.lev5pass = false;
stop();
Symbol 121 MovieClip Frame 25
_root.level = 4;
_root.gotoAndStop("lev14");
stop();
Symbol 121 MovieClip Frame 26
stop();
Symbol 121 MovieClip Frame 27
stop();
_root.gotoAndStop("lev15");
Symbol 121 MovieClip Frame 28
stop();
Symbol 121 MovieClip Frame 29
stop();
_root.gotoAndStop("lev16");
Symbol 121 MovieClip Frame 30
stop();
Symbol 121 MovieClip Frame 31
stop();
_root.gotoAndStop("lev17");
Symbol 121 MovieClip Frame 32
stop();
Symbol 121 MovieClip Frame 33
stop();
_root.gotoAndStop("lev18");
Symbol 121 MovieClip Frame 34
stop();
Symbol 121 MovieClip Frame 35
_root.level = 5;
_root.lev1pass = true;
_root.lev2pass = true;
_root.lev3pass = true;
_root.lev4pass = true;
_root.lev5pass = false;
_root.gotoAndStop("lev19");
stop();
Symbol 121 MovieClip Frame 36
stop();
Symbol 121 MovieClip Frame 37
_root.gotoAndStop("lev20");
stop();
Symbol 121 MovieClip Frame 38
stop();
Symbol 121 MovieClip Frame 39
stop();
Symbol 121 MovieClip Frame 40
_root.gotoAndStop("lev21");
_root.lev1pass = true;
_root.lev2pass = true;
_root.lev3pass = true;
_root.lev4pass = true;
_root.lev5pass = true;
_root.music.gotoAndStop(5);
stop();
Symbol 132 MovieClip Frame 1
stop();
Symbol 132 MovieClip Frame 2
stop();
Symbol 132 MovieClip Frame 3
stop();
Symbol 132 MovieClip Frame 4
stop();
Instance of Symbol 127 MovieClip in Symbol 132 MovieClip Frame 4
onClipEvent (enterFrame) {
if (!_root.lev1pass) {
_visible = false;
}
if (_root.lev1pass) {
_visible = true;
}
if (this.hitTest(_root.player.limita)) {
if (_root.lev1pass) {
_root.player._x = _root.player._x + 10;
}
}
}
Symbol 132 MovieClip Frame 5
if (!_root.fadeout1) {
_root.bg1.gotoAndStop(2);
_root.bg2.gotoAndStop(2);
_root.fadeout1 = true;
}
stop();
Symbol 132 MovieClip Frame 6
stop();
_root.music.gotoAndStop(2);
_root.bg1.gotoAndStop(3);
_root.bg2.gotoAndStop(3);
Symbol 132 MovieClip Frame 7
stop();
Symbol 132 MovieClip Frame 8
stop();
Symbol 132 MovieClip Frame 9
stop();
Symbol 132 MovieClip Frame 10
stop();
Instance of Symbol 131 MovieClip in Symbol 132 MovieClip Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player.limita)) {
if (_root.shirt) {
if (_root.pants) {
if (!_root.player.nohit) {
_root.player.nohit = true;
_root.shirt = false;
_root.player.rip.gotoAndStop(2);
}
}
}
if (!_root.shirt) {
if (_root.pants) {
if (!_root.player.nohit) {
_root.player.nohit = true;
_root.pants = false;
_root.player.rip.gotoAndStop(3);
}
}
}
}
}
Symbol 132 MovieClip Frame 11
stop();
Symbol 132 MovieClip Frame 12
stop();
Symbol 132 MovieClip Frame 13
stop();
Instance of Symbol 127 MovieClip in Symbol 132 MovieClip Frame 13
onClipEvent (enterFrame) {
if (!_root.lev2pass) {
_visible = false;
}
if (_root.lev2pass) {
_visible = true;
}
if (this.hitTest(_root.player.limita)) {
if (_root.lev2pass) {
_root.player._x = _root.player._x + 10;
}
}
}
Symbol 132 MovieClip Frame 14
stop();
Symbol 132 MovieClip Frame 15
stop();
if (!_root.fadeout2) {
_root.bg1.gotoAndStop(4);
_root.bg2.gotoAndStop(4);
_root.fadeout2 = true;
}
Symbol 132 MovieClip Frame 16
stop();
_root.bg1.gotoAndStop(5);
_root.bg2.gotoAndStop(5);
_root.music.gotoAndStop(3);
Symbol 132 MovieClip Frame 17
stop();
Symbol 132 MovieClip Frame 18
stop();
Symbol 132 MovieClip Frame 19
stop();
Symbol 132 MovieClip Frame 20
stop();
Symbol 132 MovieClip Frame 21
stop();
Symbol 132 MovieClip Frame 22
stop();
Instance of Symbol 127 MovieClip in Symbol 132 MovieClip Frame 22
onClipEvent (enterFrame) {
if (!_root.lev3pass) {
_visible = false;
}
if (_root.lev3pass) {
_visible = true;
}
if (this.hitTest(_root.player.limita)) {
if (_root.lev3pass) {
_root.player._x = _root.player._x + 10;
}
}
}
Symbol 132 MovieClip Frame 23
stop();
Symbol 132 MovieClip Frame 24
stop();
if (!_root.fadeout3) {
_root.bg1.gotoAndStop(6);
_root.bg2.gotoAndStop(6);
_root.fadeout3 = true;
}
Symbol 132 MovieClip Frame 25
_root.music.gotoAndStop(4);
_root.bg1.gotoAndStop(7);
_root.bg2.gotoAndStop(7);
stop();
Symbol 132 MovieClip Frame 26
stop();
Symbol 132 MovieClip Frame 27
stop();
Symbol 132 MovieClip Frame 28
stop();
Symbol 132 MovieClip Frame 29
stop();
Symbol 132 MovieClip Frame 30
stop();
Symbol 132 MovieClip Frame 31
stop();
Symbol 132 MovieClip Frame 32
stop();
Symbol 132 MovieClip Frame 33
stop();
Instance of Symbol 127 MovieClip in Symbol 132 MovieClip Frame 33
onClipEvent (enterFrame) {
if (!_root.lev4pass) {
_visible = false;
}
if (_root.lev4pass) {
_visible = true;
}
if (this.hitTest(_root.player.limita)) {
if (_root.lev4pass) {
_root.player._x = _root.player._x + 10;
}
}
}
Symbol 132 MovieClip Frame 34
if (!_root.fadeout4) {
_root.bg1.gotoAndStop(8);
_root.bg2.gotoAndStop(8);
_root.fadeout4 = true;
}
stop();
Symbol 132 MovieClip Frame 35
stop();
_root.bg1.gotoAndStop(9);
_root.bg2.gotoAndStop(9);
Symbol 132 MovieClip Frame 36
stop();
Symbol 132 MovieClip Frame 37
stop();
Symbol 132 MovieClip Frame 38
stop();
Symbol 132 MovieClip Frame 39
stop();
Instance of Symbol 127 MovieClip in Symbol 132 MovieClip Frame 39
onClipEvent (enterFrame) {
if (!_root.lev5pass) {
_visible = false;
}
if (_root.lev5pass) {
_visible = true;
}
if (this.hitTest(_root.player.limita)) {
if (_root.lev5pass) {
_root.player._x = _root.player._x + 10;
}
}
}
Symbol 132 MovieClip Frame 40
stop();
Instance of Symbol 127 MovieClip in Symbol 132 MovieClip Frame 40
onClipEvent (enterFrame) {
if (!_root.lev5pass) {
_visible = false;
}
if (_root.lev5pass) {
_visible = true;
}
if (this.hitTest(_root.player.limita)) {
if (_root.lev5pass) {
_root.player._x = _root.player._x - 10;
}
}
}
Symbol 155 MovieClip Frame 1
stop();
Symbol 155 MovieClip Frame 9
gotoAndStop (1);
Symbol 159 MovieClip Frame 1
stop();
Symbol 159 MovieClip Frame 11
gotoAndStop (1);
Symbol 164 MovieClip Frame 1
stop();
Symbol 164 MovieClip Frame 13
gotoAndStop (1);
Symbol 170 MovieClip Frame 1
stop();
Symbol 170 MovieClip Frame 8
stop();
Instance of Symbol 175 MovieClip in Symbol 186 MovieClip Frame 1
onClipEvent (load) {
if (_root.pants) {
_visible = true;
}
if (!_root.pants) {
_visible = false;
}
}
onClipEvent (enterFrame) {
if (_root.pants) {
_visible = true;
}
if (!_root.pants) {
_visible = false;
}
}
Instance of Symbol 181 MovieClip in Symbol 186 MovieClip Frame 1
onClipEvent (load) {
if (_root.shirt) {
_visible = true;
}
if (!_root.shirt) {
_visible = false;
}
}
onClipEvent (enterFrame) {
if (_root.shirt) {
_visible = true;
}
if (!_root.shirt) {
_visible = false;
}
}
Symbol 186 MovieClip Frame 2
stop();
Symbol 187 MovieClip Frame 1
stop();
Symbol 187 MovieClip Frame 2
stop();
Symbol 187 MovieClip Frame 3
stop();
Symbol 197 MovieClip Frame 11
stop();
Symbol 198 MovieClip Frame 1
stop();
Symbol 198 MovieClip Frame 2
stop();
Instance of Symbol 218 MovieClip in Symbol 222 MovieClip Frame 1
onClipEvent (load) {
if (_root.pants) {
_visible = true;
}
if (!_root.pants) {
_visible = false;
}
}
onClipEvent (enterFrame) {
if (_root.pants) {
_visible = true;
}
if (!_root.pants) {
_visible = false;
}
}
Instance of Symbol 220 MovieClip in Symbol 222 MovieClip Frame 1
onClipEvent (load) {
if (_root.shirt) {
_visible = true;
}
if (!_root.shirt) {
_visible = false;
}
}
onClipEvent (enterFrame) {
if (_root.shirt) {
_visible = true;
}
if (!_root.shirt) {
_visible = false;
}
}
Instance of Symbol 201 MovieClip in Symbol 223 MovieClip Frame 1
onClipEvent (load) {
if (_root.pants) {
_visible = true;
}
if (!_root.pants) {
_visible = false;
}
}
onClipEvent (enterFrame) {
if (_root.pants) {
_visible = true;
}
if (!_root.pants) {
_visible = false;
}
}
Instance of Symbol 205 MovieClip in Symbol 223 MovieClip Frame 1
onClipEvent (load) {
if (_root.shirt) {
_visible = true;
}
if (!_root.shirt) {
_visible = false;
}
}
onClipEvent (enterFrame) {
if (_root.shirt) {
_visible = true;
}
if (!_root.shirt) {
_visible = false;
}
}
Symbol 223 MovieClip Frame 201
stop();
Symbol 225 MovieClip Frame 1
stop();
Symbol 235 MovieClip Frame 15
stop();
Symbol 244 MovieClip Frame 17
stop();
Symbol 245 MovieClip Frame 1
stop();
Symbol 245 MovieClip Frame 2
stop();
Symbol 245 MovieClip Frame 3
stop();
Instance of Symbol 261 MovieClip in Symbol 297 MovieClip Frame 1
onClipEvent (load) {
if (_root.pants) {
_visible = true;
}
if (!_root.pants) {
_visible = false;
}
}
onClipEvent (enterFrame) {
if (_root.pants) {
_visible = true;
}
if (!_root.pants) {
_visible = false;
}
}
Instance of Symbol 271 MovieClip in Symbol 297 MovieClip Frame 1
onClipEvent (load) {
if (_root.shirt) {
_visible = true;
}
if (!_root.shirt) {
_visible = false;
}
}
onClipEvent (enterFrame) {
if (_root.shirt) {
_visible = true;
}
if (!_root.shirt) {
_visible = false;
}
}
Instance of Symbol 225 MovieClip "cum1" in Symbol 297 MovieClip Frame 1
onClipEvent (load) {
if (_root.cum1) {
_visible = true;
}
if (!_root.cum1) {
_visible = false;
}
}
onClipEvent (enterFrame) {
if (_root.cum1) {
_visible = true;
}
if (!_root.cum1) {
_visible = false;
}
}
Instance of Symbol 227 MovieClip in Symbol 297 MovieClip Frame 1
onClipEvent (load) {
if (_root.cum2) {
_visible = true;
}
if (!_root.cum2) {
_visible = false;
}
}
onClipEvent (enterFrame) {
if (_root.cum2) {
_visible = true;
}
if (!_root.cum2) {
_visible = false;
}
}
Instance of Symbol 300 MovieClip in Symbol 304 MovieClip Frame 1
onClipEvent (load) {
if (_root.shirt) {
_visible = true;
}
if (!_root.shirt) {
_visible = false;
}
}
onClipEvent (enterFrame) {
if (_root.shirt) {
_visible = true;
}
if (!_root.shirt) {
_visible = false;
}
}
Instance of Symbol 303 MovieClip in Symbol 304 MovieClip Frame 1
onClipEvent (load) {
if (_root.pants) {
_visible = true;
}
if (!_root.pants) {
_visible = false;
}
}
onClipEvent (enterFrame) {
if (_root.pants) {
_visible = true;
}
if (!_root.pants) {
_visible = false;
}
}
Instance of Symbol 205 MovieClip in Symbol 310 MovieClip Frame 1
onClipEvent (load) {
if (_root.shirt) {
_visible = true;
}
if (!_root.shirt) {
_visible = false;
}
}
onClipEvent (enterFrame) {
if (_root.shirt) {
_visible = true;
}
if (!_root.shirt) {
_visible = false;
}
}
Instance of Symbol 309 MovieClip in Symbol 310 MovieClip Frame 1
onClipEvent (load) {
if (_root.pants) {
_visible = true;
}
if (!_root.pants) {
_visible = false;
}
}
onClipEvent (enterFrame) {
if (_root.pants) {
_visible = true;
}
if (!_root.pants) {
_visible = false;
}
}
Instance of Symbol 314 MovieClip in Symbol 321 MovieClip Frame 1
onClipEvent (load) {
if (_root.pants) {
_visible = true;
}
if (!_root.pants) {
_visible = false;
}
}
onClipEvent (enterFrame) {
if (_root.pants) {
_visible = true;
}
if (!_root.pants) {
_visible = false;
}
}
Instance of Symbol 316 MovieClip in Symbol 321 MovieClip Frame 1
onClipEvent (load) {
if (_root.shirt) {
_visible = true;
}
if (!_root.shirt) {
_visible = false;
}
}
onClipEvent (enterFrame) {
if (_root.shirt) {
_visible = true;
}
if (!_root.shirt) {
_visible = false;
}
}
Instance of Symbol 320 MovieClip in Symbol 321 MovieClip Frame 3
onClipEvent (load) {
if (_root.shirt) {
_visible = true;
}
if (!_root.shirt) {
_visible = false;
}
}
onClipEvent (enterFrame) {
if (_root.shirt) {
_visible = true;
}
if (!_root.shirt) {
_visible = false;
}
}
Symbol 321 MovieClip Frame 5
_root.player.gotoAndStop("stand");
Instance of Symbol 332 MovieClip in Symbol 364 MovieClip Frame 1
onClipEvent (load) {
if (_root.pants) {
_visible = true;
}
if (!_root.pants) {
_visible = false;
}
}
onClipEvent (enterFrame) {
if (_root.pants) {
_visible = true;
}
if (!_root.pants) {
_visible = false;
}
}
Instance of Symbol 339 MovieClip in Symbol 364 MovieClip Frame 1
onClipEvent (load) {
if (_root.shirt) {
_visible = true;
}
if (!_root.shirt) {
_visible = false;
}
}
onClipEvent (enterFrame) {
if (_root.shirt) {
_visible = true;
}
if (!_root.shirt) {
_visible = false;
}
}
Symbol 364 MovieClip Frame 13
_root.player.attack1 = false;
_root.player.gotoAndStop("stand");
Symbol 369 MovieClip Frame 1
stop();
Instance of Symbol 198 MovieClip in Symbol 369 MovieClip Frame 1
onClipEvent (load) {
cumtimer = 0;
_visible = false;
}
onClipEvent (enterFrame) {
if (_root.cum3) {
_visible = true;
cumtimer++;
if ((cumtimer >= 290) and (cumtimer < 300)) {
gotoAndStop (2);
}
if (cumtimer >= 300) {
cumtimer = 0;
_root.cum3 = false;
}
}
if (!_root.cum3) {
gotoAndStop (1);
_visible = false;
}
}
Symbol 369 MovieClip Frame 2
stop();
Instance of Symbol 225 MovieClip "cum1" in Symbol 369 MovieClip Frame 2
onClipEvent (load) {
if (_root.cum1) {
_visible = true;
}
if (!_root.cum1) {
_visible = false;
}
}
onClipEvent (enterFrame) {
if (_root.cum1) {
_visible = true;
}
if (!_root.cum1) {
_visible = false;
}
}
Instance of Symbol 227 MovieClip in Symbol 369 MovieClip Frame 2
onClipEvent (load) {
if (_root.cum2) {
_visible = true;
}
if (!_root.cum2) {
_visible = false;
}
}
onClipEvent (enterFrame) {
if (_root.cum2) {
_visible = true;
}
if (!_root.cum2) {
_visible = false;
}
}
Symbol 369 MovieClip Frame 3
stop();
Symbol 369 MovieClip Frame 4
stop();
Instance of Symbol 304 MovieClip in Symbol 369 MovieClip Frame 4
onClipEvent (load) {
speed = 50;
}
onClipEvent (enterFrame) {
_rotation = (_rotation - speed);
}
Symbol 369 MovieClip Frame 5
stop();
Instance of Symbol 225 MovieClip "cum1" in Symbol 369 MovieClip Frame 5
onClipEvent (load) {
if (_root.cum1) {
_visible = true;
}
if (!_root.cum1) {
_visible = false;
}
}
onClipEvent (enterFrame) {
if (_root.cum1) {
_visible = true;
}
if (!_root.cum1) {
_visible = false;
}
}
Instance of Symbol 227 MovieClip in Symbol 369 MovieClip Frame 5
onClipEvent (load) {
if (_root.cum2) {
_visible = true;
}
if (!_root.cum2) {
_visible = false;
}
}
onClipEvent (enterFrame) {
if (_root.cum2) {
_visible = true;
}
if (!_root.cum2) {
_visible = false;
}
}
Symbol 369 MovieClip Frame 6
stop();
Symbol 369 MovieClip Frame 7
stop();
Symbol 369 MovieClip Frame 8
stop();
Symbol 369 MovieClip Frame 9
stop();
Symbol 380 MovieClip Frame 1
stop();
Instance of Symbol 388 MovieClip in Symbol 389 MovieClip Frame 1
onClipEvent (enterFrame) {
speed = 3;
}
onClipEvent (enterFrame) {
_rotation = (_rotation + speed);
}
Symbol 390 MovieClip Frame 32
stop();
Instance of Symbol 388 MovieClip in Symbol 392 MovieClip Frame 1
onClipEvent (enterFrame) {
speed = 3;
}
onClipEvent (enterFrame) {
_rotation = (_rotation + speed);
}
Instance of Symbol 388 MovieClip in Symbol 403 MovieClip Frame 1
onClipEvent (enterFrame) {
speed = 3;
}
onClipEvent (enterFrame) {
_rotation = (_rotation + speed);
}
Symbol 403 MovieClip Frame 6
_root.player.victim.sex.body.gotoAndPlay(2);
Symbol 403 MovieClip Frame 7
_root.player.victim.sex.tits.gotoAndPlay(2);
Symbol 403 MovieClip Frame 23
_root.player.victim.sex.body.gotoAndPlay(2);
Symbol 403 MovieClip Frame 24
_root.player.victim.sex.tits.gotoAndPlay(2);
Symbol 403 MovieClip Frame 39
_root.player.victim.sex.body.gotoAndPlay(2);
Symbol 403 MovieClip Frame 40
_root.player.victim.sex.tits.gotoAndPlay(2);
Symbol 403 MovieClip Frame 55
_root.player.victim.sex.body.gotoAndPlay(2);
Symbol 403 MovieClip Frame 56
_root.player.victim.sex.tits.gotoAndPlay(2);
Symbol 403 MovieClip Frame 85
_root.cum2 = true;
stop();
Symbol 404 MovieClip Frame 1
stop();
Symbol 404 MovieClip Frame 2
_root.score = _root.score + 250;
stop();
Symbol 404 MovieClip Frame 3
stop();
Symbol 404 MovieClip Frame 4
stop();
Symbol 407 MovieClip Frame 1
stopAllSounds();
Symbol 407 MovieClip Frame 2
stop();
Symbol 409 MovieClip Frame 1
stopAllSounds();
Symbol 409 MovieClip Frame 2
stop();
Symbol 411 MovieClip Frame 1
stopAllSounds();
Symbol 411 MovieClip Frame 2
stop();
Symbol 413 MovieClip Frame 1
stopAllSounds();
Symbol 413 MovieClip Frame 2
stop();
Symbol 415 MovieClip Frame 1
stopAllSounds();
Symbol 415 MovieClip Frame 2
stop();
Symbol 416 MovieClip Frame 1
stop();
Symbol 416 MovieClip Frame 2
stop();
Symbol 416 MovieClip Frame 3
stop();
Symbol 416 MovieClip Frame 4
stop();
Symbol 416 MovieClip Frame 5
stop();
Symbol 416 MovieClip Frame 6
stop();
stopAllSounds();
Symbol 420 MovieClip Frame 1
stopAllSounds();
Symbol 420 MovieClip Frame 215
stop();
_root.gotoAndStop("loader");
Symbol 421 MovieClip Frame 1
stop();
Symbol 421 MovieClip Frame 2
stop();
Symbol 422 MovieClip Frame 21
stop();
Symbol 431 MovieClip Frame 1
stop();
Symbol 431 MovieClip Frame 3
gotoAndStop (1);
Symbol 447 MovieClip Frame 9
stop();
Symbol 448 MovieClip Frame 9
stop();
Symbol 449 MovieClip Frame 9
stop();
Symbol 457 MovieClip Frame 16
stop();
Symbol 486 MovieClip Frame 11
_root.player.victim.sex.ass.gotoAndPlay(2);
Symbol 486 MovieClip Frame 12
_root.player.victim.sex.t1.gotoAndPlay(2);
_root.player.victim.sex.t2.gotoAndPlay(2);
Symbol 486 MovieClip Frame 27
_root.player.victim.sex.ass.gotoAndPlay(2);
Symbol 486 MovieClip Frame 28
_root.player.victim.sex.t1.gotoAndPlay(2);
_root.player.victim.sex.t2.gotoAndPlay(2);
Symbol 486 MovieClip Frame 52
_root.player.victim.sex.ass.gotoAndPlay(2);
Symbol 486 MovieClip Frame 53
_root.player.victim.sex.t1.gotoAndPlay(2);
_root.player.victim.sex.t2.gotoAndPlay(2);
Symbol 486 MovieClip Frame 71
_root.player.victim.sex.ass.gotoAndPlay(2);
Symbol 486 MovieClip Frame 72
_root.player.victim.sex.t1.gotoAndPlay(2);
_root.player.victim.sex.t2.gotoAndPlay(2);
Symbol 486 MovieClip Frame 88
stop();
Symbol 487 MovieClip Frame 1
stop();
Symbol 487 MovieClip Frame 2
stop();
Symbol 487 MovieClip Frame 3
stop();
Symbol 487 MovieClip Frame 4
stop();
Symbol 520 MovieClip Frame 10
_root.player.victim.sex.body.gotoAndPlay(2);
Symbol 520 MovieClip Frame 11
_root.player.victim.sex.tits.gotoAndPlay(2);
Symbol 520 MovieClip Frame 18
_root.player.victim.sex.body.gotoAndPlay(2);
Symbol 520 MovieClip Frame 19
_root.player.victim.sex.tits.gotoAndPlay(2);
Symbol 520 MovieClip Frame 24
_root.player.victim.sex.body.gotoAndPlay(2);
Symbol 520 MovieClip Frame 25
_root.player.victim.sex.tits.gotoAndPlay(2);
Symbol 520 MovieClip Frame 30
_root.player.victim.sex.body.gotoAndPlay(2);
Symbol 520 MovieClip Frame 31
_root.player.victim.sex.tits.gotoAndPlay(2);
Symbol 520 MovieClip Frame 36
_root.player.victim.sex.body.gotoAndPlay(2);
Symbol 520 MovieClip Frame 37
_root.player.victim.sex.tits.gotoAndPlay(2);
Symbol 520 MovieClip Frame 68
_root.cum1 = true;
stop();
Symbol 529 MovieClip Frame 32
_root.cum1 = true;
stop();
Symbol 530 MovieClip Frame 1
stop();
Symbol 530 MovieClip Frame 2
_root.score = _root.score + 500;
stop();
Symbol 530 MovieClip Frame 3
stop();
Symbol 530 MovieClip Frame 4
stop();
Symbol 578 MovieClip Frame 1
stop();
Symbol 578 MovieClip Frame 3
gotoAndStop (1);
Symbol 726 MovieClip Frame 106
stop();
Symbol 733 MovieClip Frame 20
stop();
Symbol 734 MovieClip Frame 1
stop();
Instance of Symbol 576 MovieClip "limit" in Symbol 734 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ship.limit)) {
_root.ship.dead = true;
}
}
Instance of Symbol 576 MovieClip "limitb" in Symbol 734 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ship.limit)) {
_root.ship.dead = true;
}
}
Symbol 734 MovieClip Frame 2
stop();
Symbol 734 MovieClip Frame 3
stop();
Symbol 734 MovieClip Frame 4
stop();
Symbol 734 MovieClip Frame 5
_root.score = _root.score + 1000;
stop();
Symbol 740 MovieClip Frame 1
stop();
Symbol 740 MovieClip Frame 2
stop();
Symbol 744 MovieClip Frame 1
stop();
Symbol 744 MovieClip Frame 2
stop();
Symbol 756 MovieClip Frame 1
stop();
Symbol 756 MovieClip Frame 2
stop();
Symbol 756 MovieClip Frame 3
stop();
Symbol 756 MovieClip Frame 4
stop();
Symbol 763 MovieClip Frame 1
stop();
Symbol 763 MovieClip Frame 2
mouth.gotoAndStop(2);
penis.gotoAndStop(2);
Symbol 763 MovieClip Frame 15
stop();
Symbol 776 MovieClip Frame 1
stop();
Symbol 776 MovieClip Frame 2
stop();
Symbol 787 MovieClip Frame 1
stop();
Symbol 787 MovieClip Frame 3
gotoAndStop (1);
Symbol 789 MovieClip Frame 1
stop();
Symbol 789 MovieClip Frame 3
gotoAndStop (1);
Symbol 835 MovieClip Frame 145
_root.cum3 = true;
Symbol 835 MovieClip Frame 153
stop();
Symbol 852 MovieClip Frame 66
stop();
Symbol 855 MovieClip Frame 40
if (_root.level == 2) {
_root.gotoAndPlay("tinastage2thirteen");
}
if (_root.level == 5) {
}
stop();
Symbol 858 MovieClip Frame 21
stop();
Symbol 859 MovieClip Frame 1
stop();
Symbol 859 MovieClip Frame 2
stop();
Symbol 859 MovieClip Frame 3
stop();
Symbol 859 MovieClip Frame 4
stop();
Symbol 859 MovieClip Frame 5
stop();
Instance of Symbol 852 MovieClip "hand" in Symbol 859 MovieClip Frame 5
onClipEvent (enterFrame) {
if (hand.hitTest(_root.player.limita)) {
_root.enemy10.rape = true;
}
}
Instance of Symbol 785 MovieClip "limit" in Symbol 859 MovieClip Frame 5
onClipEvent (enterFrame) {
if (this.hitTest(_root.ship.animate.limit)) {
if (_root.tina) {
_root.ship.animate.gotoAndPlay("hit");
_root.life = _root.life - 40;
}
if (_root.tang) {
_root.ship.animate.hit = true;
_root.life = _root.life - 50;
}
if (_root.tanner) {
_root.ship.animate.gotoAndPlay("hit");
_root.life = _root.life - 35;
}
if (_root.xod) {
_root.ship.animate.gotoAndPlay("hit");
_root.life = _root.life - 30;
}
}
if (this.hitTest(_root.ship.animate.barrier.limit)) {
_parent.life = _parent.life - 50;
_root.ship.animate.barrier.health = _root.ship.animate.barrier.health - 20;
}
}
Symbol 859 MovieClip Frame 6
_root.score = _root.score + 5000;
stop();
Symbol 860 MovieClip Frame 59
_root.gotoAndStop("bonus");
Symbol 861 MovieClip Frame 1
stop();
Symbol 861 MovieClip Frame 2
stop();
Symbol 883 MovieClip Frame 1
stop();
Symbol 883 MovieClip Frame 2
stop();
Symbol 883 MovieClip Frame 3
stop();
Symbol 883 MovieClip Frame 4
stop();