Frame 2
stop();
Frame 3
var body = 8;
var spirit = 8;
var health = (body * 10);
var maxhealth = health;
var armor = 1;
var armorh = 100;
var playshapes = 1;
var dirtyc101 = 1;
var level = 0;
var maxbg = 0;
var held = 0;
var moved = 0;
var combo = 0;
var grapple = 0;
var GBG1 = ((GBG2 = 0));
var cumchest = ((cumface = 5));
var BGtype = new Array();
BGtype.push(["lizman", 11, 5, 3]);
BGtype.push(["lizgirl", 9, 9, 4]);
var BGA = new Array();
var myMenu = new ContextMenu();
myMenu.hideBuiltInItems();
_root.menu = myMenu;
Frame 5
codes.text = "";
codemsg = "";
stop();
Instance of Symbol 435 MovieClip "hero" in Frame 11
onClipEvent (load) {
var kl = 37;
var kr = 39;
var a = ((b = (i = 0)));
var hityes = false;
var bg = ((bghb = 0));
var regen = 0;
var delay = 0;
var hitsound = new Sound();
var hitsound2 = new Sound();
var hitsound3 = new Sound();
var hitsound4 = new Sound();
_root.health = (_root.maxhealth = _root.body * 10);
_root.box.healthbarback._xscale = _root.maxhealth;
_root.box.healthbarblock._x = _root.box.healthbarblock._x + ((_root.maxhealth - 100) * 1.74);
_root.box.healthbarblock._xscale = _root.maxhealth - _root.health;
_root.box.armorbarback._xscale = 100;
_root.box.armorbarblock._xscale = 100 - _root.armorh;
_root.attachMovie("heightbox", "topbox", 9999);
this.swapDepths(_root.topbox);
unloadMovie (_root.topbox);
}
onClipEvent (enterFrame) {
if (_root.held < 1000) {
if (_root.BGA.length == 0) {
if (delay == 20) {
_root.level++;
i = 0;
while (i < _root.level) {
b = Math.round(Math.random());
_root.attachMovie(_root.BGtype[b][0], "bg" + i, i);
a = Math.round(Math.random() * 2000);
a = a - 200;
if (Math.abs(a - _root.hero._x) < 250) {
if (a <= _root.hero._x) {
a = a - 500;
} else {
a = a + 500;
}
}
_root["bg" + i]._x = a;
_root["bg" + i]._y = 180 + (4 * i);
_root.BGA.push([_root.BGtype[b][0], _root.BGtype[b][1], _root.BGtype[b][2], _root.BGtype[b][3], 50 + (_root.BGtype[b][1] * 5), "bg" + i, "bghb" + i, 0]);
_root.attachMovie("badguyhealthbar", "bghb" + i, i + 100);
_root["bghb" + i]._x = a;
_root["bghb" + i]._y = 480 + (4 * i);
_root["bghb" + i]._xscale = _root.BGA[i][4];
i++;
}
delay = 0;
} else {
delay++;
}
}
}
_root.maxbg = _root.BGA.length;
if (_root.health < 0) {
_root.health = 0;
}
_root.box.healthbarblock._xscale = _root.maxhealth - _root.health;
_root.box.armorbarblock._xscale = 100 - _root.armorh;
if (_root.held < 49) {
if (_root.health <= 0) {
_root.held = 1000;
_root.moved = 0;
_root.hero.gotoAndStop(41);
}
}
if (_root.health > 0) {
if (_root.health < _root.maxhealth) {
regen = regen + ((_root.spirit * 0.005) * _root.dirtyc101);
if (regen >= 1) {
_root.health++;
regen--;
}
}
}
if (_root.held <= 40) {
if (Key.isDown(83)) {
this.gotoAndStop(26);
_root.held = 50;
_root.health = _root.health - 5;
_root.moved = _root.moved + 5;
_root.combo = 0;
hitsound4.attachSound("hit5");
hitsound4.start(0, 1);
}
}
if (_root.held <= 30) {
if (Key.isDown(68)) {
this.gotoAndStop(31);
_root.held = 41;
_root.moved = _root.moved + 10;
_root.combo = 0;
}
}
if (_root.held <= 20) {
if (Key.isDown(65)) {
if (_root.combo == 2) {
this.gotoAndStop(21);
_root.held = 30;
_root.combo = 0;
}
}
}
if (_root.held <= 10) {
if (Key.isDown(65)) {
if (_root.combo == 1) {
this.gotoAndStop(16);
_root.held = 20;
_root.moved = _root.moved + 4;
_root.combo = 0;
}
}
}
if (_root.held == 0) {
if (Key.isDown(65)) {
this.gotoAndStop(11);
_root.held = 10;
_root.moved = _root.moved + 5;
} else if (Key.isDown(kl)) {
this.gotoAndStop(6);
this._xscale = -100;
if (!_root.hero.chesthitbox.hitTest(_root.leftwall)) {
this._x = this._x - 10;
_root.camframe._x = _root.camframe._x - 10;
_root.box._x = _root.box._x - 10;
}
} else if (Key.isDown(kr)) {
this.gotoAndStop(6);
this._xscale = 100;
if (!_root.hero.chesthitbox.hitTest(_root.rightwall)) {
this._x = this._x + 10;
_root.camframe._x = _root.camframe._x + 10;
_root.box._x = _root.box._x + 10;
}
} else {
this.gotoAndStop(1);
}
}
if (_root.moved > 0) {
if (this._xscale == -100) {
if (!_root.hero.chesthitbox.hitTest(_root.leftwall)) {
this._x = this._x - (2.5 * (_root.held / 10));
_root.camframe._x = _root.camframe._x - (2.5 * (_root.held / 10));
_root.box._x = _root.box._x - (2.5 * (_root.held / 10));
}
} else if (!_root.hero.chesthitbox.hitTest(_root.rightwall)) {
this._x = this._x + (2.5 * (_root.held / 10));
_root.camframe._x = _root.camframe._x + (2.5 * (_root.held / 10));
_root.box._x = _root.box._x + (2.5 * (_root.held / 10));
}
_root.moved--;
}
i = 0;
while (i < _root.BGA.length) {
bg = _root.BGA[i][5];
bghb = _root.BGA[i][6];
if (!(this._xscale === _root[bg]._xscale)) {
switch (_root.held) {
case 10 :
if (_root[bg].hitTest(_root.hero.heroattack1.fisthitbox)) {
_root.BGA[i][4] = _root.BGA[i][4] - (_root.body * 1.5);
_root[bghb]._xscale = _root.BGA[i][4];
_root.BGA[i][7]++;
hityes = true;
hitsound.attachSound("hit1");
hitsound.start(0, 1);
}
break;
case 20 :
if (_root[bg].hitTest(_root.hero.heroattack2.fisthitbox)) {
_root.BGA[i][4] = _root.BGA[i][4] - (_root.body * 1.5);
_root[bghb]._xscale = _root.BGA[i][4];
_root.BGA[i][7]++;
hityes = true;
hitsound2.attachSound("hit1");
hitsound2.start(0, 1);
}
break;
case 30 :
if (_root[bg].hitTest(_root.hero.heroattack3.foothitbox)) {
_root.BGA[i][4] = _root.BGA[i][4] - (_root.body * 2);
_root[bghb]._xscale = _root.BGA[i][4];
_root.BGA[i][7]++;
hityes = true;
hitsound3.attachSound("hit2");
hitsound3.start(0, 1);
}
break;
case 40 :
if (_root[bg].hitTest(_root.hero.heroattacksex.fisthitbox)) {
_root.moved = 0;
_root.held = 200;
_root.combo = 0;
_root.GBG1 = i;
if (_root[bg]._x > this._x) {
this._xscale = 100;
} else {
this._xscale = -100;
}
if (_root.BGA[i][0] == "lizman") {
this.gotoAndStop(32);
} else {
this.gotoAndStop(33);
}
_root[bg]._y = _root[bg]._y + 2000;
_root.grapple = 50 + (0.25 * (_root.health - _root.BGA[i][4]));
_root.gbar._x = this._x;
_root.gbar._y = 0;
_root.gbar.grapplebargood._xscale = _root.grapple;
}
break;
case 50 :
if (!_root[bg].hitTest(_root.hero.herospecialattack.foothitbox)) {
break;
}
_root.BGA[i][4] = _root.BGA[i][4] - ((_root.body * 1.5) + _root.spirit);
_root[bghb]._xscale = _root.BGA[i][4];
_root.BGA[i][7] = _root.BGA[i][7] + 5;
hityes = true;
}
}
if (_root.BGA[i][7] == 0) {
if (Math.abs(_root[bg]._x - _root.hero._x) > (_root.held + (5 * i))) {
_root[bg].gotoAndStop(6);
if (_root[bg]._x < _root.hero._x) {
_root[bg]._x = _root[bg]._x + _root.BGA[i][3];
_root[bg]._xscale = 100;
_root[bghb]._x = _root[bghb]._x + _root.BGA[i][3];
_root[bg].gotoAndStop(6);
}
if (_root[bg]._x > _root.hero._x) {
_root[bg]._x = _root[bg]._x - _root.BGA[i][3];
_root[bg]._xscale = -100;
_root[bghb]._x = _root[bghb]._x - _root.BGA[i][3];
}
} else {
_root[bg].gotoAndStop(1);
}
if (_root.held == 100) {
if (!(_root.BGA[_root.GBG1][0] === _root.BGA[i][0])) {
if (_root[bg].hitTest(_root.hero.doublehitbox)) {
_root.held = 110;
_root.GBG2 = i;
this.gotoAndStop(61);
_root[bg]._y = _root[bg]._y + 2000;
_root.grapple = _root.grapple - (0.25 * _root.BGA[i][4]);
_root.gbar.grapplebargood._xscale = _root.grapple;
}
}
}
if (_root.held < 90) {
if (_root[bg].hitTest(_root.hero.chesthitbox)) {
_root.held = 100;
_root.combo = 0;
_root.moved = 0;
_root.GBG1 = i;
if (_root[bg]._x > this._x) {
this._xscale = 100;
} else {
this._xscale = -100;
}
if (_root.BGA[i][0] == "lizman") {
this.gotoAndStop(51);
} else {
this.gotoAndStop(52);
}
_root[bg]._y = _root[bg]._y + 2000;
_root.grapple = 50 + ((_root.health - _root.BGA[i][4]) * 0.25);
_root.gbar._x = this._x;
_root.gbar._y = 0;
_root.gbar.grapplebargood._xscale = _root.grapple;
}
}
} else {
_root[bg]._x = _root[bg]._x - (0.25 * _root[bg]._xscale);
_root[bghb]._x = _root[bghb]._x - (0.25 * _root[bg]._xscale);
_root.BGA[i][7]--;
if (_root.BGA[i][7] < 0) {
_root.BGA[i][7] = 0;
}
}
if (_root.held < 100) {
if (_root.BGA[i][4] <= 0) {
_root[bg].gotoAndStop(21);
unloadMovie (_root[bghb]);
_root.BGA.splice([i][0], 1);
if (i > 0) {
i--;
}
}
}
i++;
}
if (hityes == true) {
_root.held--;
hityes = false;
}
}
Symbol 50 MovieClip Frame 1
this._alpha = this._alpha - 20;
Symbol 50 MovieClip Frame 2
this._alpha = this._alpha - 20;
Symbol 50 MovieClip Frame 3
this._alpha = this._alpha - 20;
Symbol 50 MovieClip Frame 4
this._alpha = this._alpha - 20;
Symbol 50 MovieClip Frame 5
unloadMovie (this);
Symbol 51 MovieClip [lizman] Frame 1
stop();
Symbol 94 MovieClip Frame 1
this._alpha = this._alpha - 20;
Symbol 94 MovieClip Frame 2
this._alpha = this._alpha - 20;
Symbol 94 MovieClip Frame 3
this._alpha = this._alpha - 20;
Symbol 94 MovieClip Frame 4
this._alpha = this._alpha - 20;
Symbol 94 MovieClip Frame 5
unloadMovie (this);
Symbol 95 MovieClip [lizgirl] Frame 1
stop();
Symbol 142 Button
on (release) {
getURL ("http://www.newgrounds.com", "_blank");
}
Symbol 151 Button
on (release) {
startMovie();
}
Symbol 153 MovieClip Frame 1
function timerHandler() {
if (!loadingComplete) {
var _local4 = _root.getBytesLoaded() / _root.getBytesTotal();
bar._xscale = 100 * _local4;
if (_local4 == 1) {
loadingComplete = true;
if (AUTO_PLAY) {
startMovie();
} else {
gotoAndStop ("loaded");
}
return(undefined);
}
}
dt = getTimer() - time;
time = time + dt;
frameAccum = frameAccum + dt;
var _local3 = 0;
while ((frameAccum >= FRAME_TIME) && (_local3 < MAX_FRAME_SKIP)) {
advanceFrame(tankLogo, true, true);
advanceFrame(loadingText, false, true);
advanceFrame(barGfx, false, true);
if (loadingComplete) {
advanceFrame(this, false, false);
}
(frameAccum = frameAccum - FRAME_TIME);
_local3++;
}
updateAfterEvent();
}
function advanceFrame(clip, recurse, loop) {
if (!clip) {
return(undefined);
}
clip.stop();
if (clip._currentframe == clip._totalframes) {
if (loop) {
clip.gotoAndStop(1);
}
} else {
clip.nextFrame();
}
if (recurse) {
for (childName in clip) {
if (typeof(clip[childName]) == "movieclip") {
advanceFrame(clip[childName], recurse, loop);
}
}
}
}
function startMovie() {
clearInterval(intervalId);
_root.play();
}
_root.stop();
stop();
var FRAME_TIME = 33.3333333333333;
var AUTO_PLAY = true;
var MAX_FRAME_SKIP = 5;
var loadingComplete;
var intervalId;
var time;
var frameAccum;
loadingComplete = false;
intervalId = setInterval(this, "timerHandler", FRAME_TIME / 2);
frameAccum = 0;
time = getTimer();
timerHandler();
Symbol 153 MovieClip Frame 2
stop();
Symbol 158 Button
on (release) {
gotoAndPlay ("vars");
}
Symbol 166 Button
on (release) {
switch (codes.text) {
case "playshapes" :
if (_root.playshapes == 1) {
_root.playshapes = 0;
_root.body = _root.body + 4;
_root.spirit = _root.spirit + 4;
codemsg = "code playshapes accepted";
} else {
codemsg = "code playshapes already entered";
}
break;
case "dirtyc101" :
if (_root.dirtyc101 == 1) {
_root.dirtyc101 = 4;
codemsg = "code dirtyc101 accepted";
} else {
codemsg = "code dirtyc101 already entered";
}
break;
case "knowledgeispower" :
_root.body = _root.body + 1;
_root.spirit = _root.spirit + 1;
codemsg = "code knowledgeispower accepted";
break;
default :
codemsg = "";
}
codes.text = "";
}
Symbol 173 Button
on (release) {
gotoAndStop ("game");
}
Symbol 174 Button
on (release) {
gotoAndStop((_root._currentframe = _root._currentframe + 3));
}
Symbol 175 Button
on (release) {
gotoAndStop((_root._currentframe = _root._currentframe + 1));
}
Symbol 184 Button
on (release) {
gotoAndStop ("mainmenu");
}
Symbol 203 MovieClip Frame 1
gotoAndStop(1 + (_root.playshapes * 5));
Symbol 206 MovieClip Frame 1
gotoAndStop(1 + (_root.playshapes * 5));
Symbol 209 MovieClip Frame 1
gotoAndStop(1 + Math.floor((100 - _root.armorh) / 25));
Symbol 212 MovieClip Frame 1
gotoAndStop(1 + (_root.playshapes * 5));
Symbol 215 MovieClip Frame 1
gotoAndStop(1 + Math.floor((100 - _root.armorh) / 25));
Symbol 218 MovieClip Frame 1
gotoAndStop(1 + (_root.playshapes * 5));
Symbol 223 MovieClip Frame 1
gotoAndStop(1 + (_root.playshapes * 5));
Symbol 225 MovieClip Frame 1
gotoAndStop(1 + Math.floor((100 - _root.armorh) / 25));
Symbol 228 MovieClip Frame 1
gotoAndStop(1 + (_root.playshapes * 5));
Symbol 230 MovieClip Frame 1
gotoAndStop(1 + Math.floor((100 - _root.armorh) / 25));
Symbol 235 MovieClip Frame 1
gotoAndStop(_root.cumchest);
Symbol 240 MovieClip Frame 1
gotoAndStop(1 + (_root.playshapes * 5));
Symbol 243 MovieClip Frame 1
gotoAndStop(1 + Math.floor((100 - _root.armorh) / 25));
Symbol 245 MovieClip Frame 1
gotoAndStop(1 + Math.floor((100 - _root.armorh) / 25));
Symbol 249 MovieClip Frame 1
gotoAndStop(_root.cumchest);
Symbol 254 MovieClip Frame 1
gotoAndStop(1 + (_root.playshapes * 5));
Symbol 257 MovieClip Frame 1
gotoAndStop(1 + (_root.playshapes * 5));
Symbol 262 MovieClip Frame 1
gotoAndStop(1 + (_root.playshapes * 5));
Symbol 265 MovieClip Frame 1
gotoAndStop(1 + (_root.playshapes * 5));
Symbol 267 MovieClip Frame 1
gotoAndStop(1 + Math.floor((100 - _root.armorh) / 25));
Symbol 272 MovieClip Frame 1
gotoAndStop(_root.cumface);
Symbol 275 MovieClip Frame 1
gotoAndStop(1 + (_root.playshapes * 5));
Symbol 278 MovieClip Frame 1
gotoAndStop(1 + (_root.playshapes * 5));
Symbol 286 MovieClip Frame 1
gotoAndStop(1 + (_root.playshapes * 5));
Symbol 296 MovieClip Frame 1
gotoAndStop(1 + (_root.playshapes * 5));
Symbol 301 MovieClip Frame 1
gotoAndStop(_root.cumface);
Symbol 306 MovieClip Frame 1
gotoAndStop(1 + (_root.playshapes * 5));
Symbol 308 MovieClip Frame 1
gotoAndStop(1 + Math.floor((100 - _root.armorh) / 25));
Symbol 311 MovieClip Frame 1
gotoAndStop(1 + (_root.playshapes * 5));
Symbol 314 MovieClip Frame 5
_root.combo = 1;
Symbol 314 MovieClip Frame 10
_root.combo = 0;
Symbol 314 MovieClip Frame 15
_root.held = 0;
_root.hero.gotoAndStop(1);
Symbol 315 MovieClip Frame 5
_root.combo = 2;
Symbol 315 MovieClip Frame 10
_root.combo = 0;
Symbol 315 MovieClip Frame 15
_root.held = 0;
_root.hero.gotoAndStop(1);
Symbol 316 MovieClip Frame 11
_root.held = 0;
_root.hero.gotoAndStop(1);
Symbol 317 MovieClip Frame 5
_root.held = 50;
Symbol 317 MovieClip Frame 10
_root.hero.gotoAndStop(_root.hero._currentframe + 1);
Symbol 318 MovieClip Frame 7
_root.held = 0;
_root.hero.gotoAndStop(1);
Symbol 319 MovieClip Frame 3
if (_root.held == 41) {
_root.held = 40;
}
Symbol 319 MovieClip Frame 10
_root.held = 0;
_root.hero.gotoAndStop(1);
Symbol 335 MovieClip Frame 60
gotoAndPlay (1);
Symbol 335 MovieClip Frame 61
stop();
Symbol 351 MovieClip Frame 1
var moan = new Sound();
var plish = new Sound();
var cum = new Sound();
var ml = 0;
plish.attachSound("plish1");
plish.start(0, 1);
Symbol 351 MovieClip Frame 6
if (Key.isDown(83)) {
_root.grapple = _root.grapple + _root.body;
gotoAndPlay ("BJ");
} else {
_root.grapple = _root.grapple - ((_root.BGA[_root.GBG1][1] - (_root.body / 2)) / (4 * _root.dirtyc101));
if (_root.grapple < 0) {
_root.grapple = 0;
}
_root.gbar.grapplebargood._xscale = _root.grapple;
_root.BGA[_root.GBG1][4] = _root.BGA[_root.GBG1][4] - (_root.spirit / (8 * _root.dirtyc101));
_root[_root.BGA[_root.GBG1][6]]._xscale = _root.BGA[_root.GBG1][4];
}
Symbol 351 MovieClip Frame 11
if (Key.isDown(83)) {
_root.grapple = _root.grapple + _root.body;
gotoAndPlay ("BJ");
} else {
_root.grapple = _root.grapple - ((_root.BGA[_root.GBG1][1] - (_root.body / 2)) / (4 * _root.dirtyc101));
if (_root.grapple < 0) {
_root.grapple = 0;
}
_root.gbar.grapplebargood._xscale = _root.grapple;
_root.BGA[_root.GBG1][4] = _root.BGA[_root.GBG1][4] - (_root.spirit / (8 * _root.dirtyc101));
_root[_root.BGA[_root.GBG1][6]]._xscale = _root.BGA[_root.GBG1][4];
}
Symbol 351 MovieClip Frame 16
if (Key.isDown(83)) {
_root.grapple = _root.grapple + _root.body;
gotoAndPlay ("BJ");
} else {
_root.grapple = _root.grapple - ((_root.BGA[_root.GBG1][1] - (_root.body / 2)) / (4 * _root.dirtyc101));
if (_root.grapple < 0) {
_root.grapple = 0;
}
_root.gbar.grapplebargood._xscale = _root.grapple;
_root.BGA[_root.GBG1][4] = _root.BGA[_root.GBG1][4] - (_root.spirit / (8 * _root.dirtyc101));
_root[_root.BGA[_root.GBG1][6]]._xscale = _root.BGA[_root.GBG1][4];
}
Symbol 351 MovieClip Frame 20
if (Key.isDown(83)) {
_root.grapple = _root.grapple + _root.body;
gotoAndPlay ("BJ");
} else {
_root.grapple = _root.grapple - ((_root.BGA[_root.GBG1][1] - (_root.body / 2)) / (4 * _root.dirtyc101));
if (_root.grapple < 0) {
_root.grapple = 0;
}
_root.gbar.grapplebargood._xscale = _root.grapple;
_root.BGA[_root.GBG1][4] = _root.BGA[_root.GBG1][4] - (_root.spirit / (8 * _root.dirtyc101));
_root[_root.BGA[_root.GBG1][6]]._xscale = _root.BGA[_root.GBG1][4];
if (_root.BGA[_root.GBG1][4] <= 25) {
_root.gbar._y = 2000;
gotoAndPlay (21);
} else if (_root.grapple <= 0) {
_root.gbar._y = 2000;
_root[_root.BGA[_root.GBG1][5]]._y = 200;
_root.BGA[_root.GBG1][7] = _root.BGA[_root.GBG1][7] + _root.body;
_root.held = 99;
_root.hero.gotoAndStop(46);
} else {
gotoAndPlay (1);
}
}
Symbol 351 MovieClip Frame 21
plish.attachSound("plish1");
plish.start(0, 1);
Symbol 351 MovieClip Frame 26
_root.BGA[_root.GBG1][4] = _root.BGA[_root.GBG1][4] - (_root.spirit / (4 * _root.dirtyc101));
if (_root.BGA[_root.GBG1][4] < 0) {
_root.BGA[_root.GBG1][4] = 0;
}
_root[_root.BGA[_root.GBG1][6]]._xscale = _root.BGA[_root.GBG1][4];
Symbol 351 MovieClip Frame 30
_root.BGA[_root.GBG1][4] = _root.BGA[_root.GBG1][4] - (_root.spirit / (4 * _root.dirtyc101));
if (_root.BGA[_root.GBG1][4] < 0) {
_root.BGA[_root.GBG1][4] = 0;
}
_root[_root.BGA[_root.GBG1][6]]._xscale = _root.BGA[_root.GBG1][4];
if (_root.BGA[_root.GBG1][4] > 0) {
gotoAndPlay (21);
}
Symbol 351 MovieClip Frame 34
cum.attachSound("cum2");
cum.start(0, 1);
Symbol 351 MovieClip Frame 46
cum.attachSound("cum1");
cum.start(0, 1);
Symbol 351 MovieClip Frame 66
if (_root.cumchest > 1) {
_root.cumchest--;
}
_root.BGA[_root.GBG1][4] = 0;
_root[_root.BGA[_root.GBG1][5]]._y = 200;
_root.held = 99;
_root.hero.gotoAndStop(46);
Symbol 351 MovieClip Frame 71
plish.attachSound("plish4");
plish.start(0, 1);
Symbol 351 MovieClip Frame 76
_root.grapple = _root.grapple - ((_root.BGA[_root.GBG1][1] - _root.body) / (4 * _root.dirtyc101));
if (_root.grapple < 0) {
_root.grapple = 0;
}
_root.gbar.grapplebargood._xscale = _root.grapple;
_root.health = _root.health - (_root.BGA[_root.GBG1][2] / (16 * _root.dirtyc101));
_root.BGA[_root.GBG1][4] = _root.BGA[_root.GBG1][4] - (_root.spirit / (4 * _root.dirtyc101));
_root[_root.BGA[_root.GBG1][6]]._xscale = _root.BGA[_root.GBG1][4];
Symbol 351 MovieClip Frame 81
_root.grapple = _root.grapple - ((_root.BGA[_root.GBG1][1] - _root.body) / (4 * _root.dirtyc101));
if (_root.grapple < 0) {
_root.grapple = 0;
}
_root.gbar.grapplebargood._xscale = _root.grapple;
_root.health = _root.health - (_root.BGA[_root.GBG1][2] / (16 * _root.dirtyc101));
_root.BGA[_root.GBG1][4] = _root.BGA[_root.GBG1][4] - (_root.spirit / (4 * _root.dirtyc101));
_root[_root.BGA[_root.GBG1][6]]._xscale = _root.BGA[_root.GBG1][4];
Symbol 351 MovieClip Frame 86
_root.grapple = _root.grapple - ((_root.BGA[_root.GBG1][1] - _root.body) / (4 * _root.dirtyc101));
if (_root.grapple < 0) {
_root.grapple = 0;
}
_root.gbar.grapplebargood._xscale = _root.grapple;
_root.health = _root.health - (_root.BGA[_root.GBG1][2] / (16 * _root.dirtyc101));
_root.BGA[_root.GBG1][4] = _root.BGA[_root.GBG1][4] - (_root.spirit / (4 * _root.dirtyc101));
_root[_root.BGA[_root.GBG1][6]]._xscale = _root.BGA[_root.GBG1][4];
Symbol 351 MovieClip Frame 90
_root.grapple = _root.grapple - ((_root.BGA[_root.GBG1][1] - _root.body) / (4 * _root.dirtyc101));
if (_root.grapple < 0) {
_root.grapple = 0;
}
_root.gbar.grapplebargood._xscale = _root.grapple;
_root.health = _root.health - (_root.BGA[_root.GBG1][2] / (16 * _root.dirtyc101));
_root.BGA[_root.GBG1][4] = _root.BGA[_root.GBG1][4] - (_root.spirit / (4 * _root.dirtyc101));
_root[_root.BGA[_root.GBG1][6]]._xscale = _root.BGA[_root.GBG1][4];
if (_root.BGA[_root.GBG1][4] <= 25) {
_root.gbar._y = 2000;
gotoAndPlay (91);
} else if (_root.grapple <= 0) {
_root.gbar._y = 2000;
_root[_root.BGA[_root.GBG1][5]]._y = 200;
_root.BGA[_root.GBG1][7] = _root.BGA[_root.GBG1][7] + _root.body;
_root.held = 99;
_root.hero.gotoAndStop(46);
} else {
gotoAndPlay ("BJ");
}
Symbol 351 MovieClip Frame 91
plish.attachSound("plish4");
plish.start(0, 1);
Symbol 351 MovieClip Frame 96
_root.health = _root.health - (_root.BGA[_root.GBG1][2] / (8 * _root.dirtyc101));
if (_root.BGA[_root.GBG1][4] < 0) {
_root.BGA[_root.GBG1][4] = 0;
}
_root.BGA[_root.GBG1][4] = _root.BGA[_root.GBG1][4] - (_root.spirit / (2 * _root.dirtyc101));
_root[_root.BGA[_root.GBG1][6]]._xscale = _root.BGA[_root.GBG1][4];
Symbol 351 MovieClip Frame 101
_root.health = _root.health - (_root.BGA[_root.GBG1][2] / (8 * _root.dirtyc101));
if (_root.BGA[_root.GBG1][4] < 0) {
_root.BGA[_root.GBG1][4] = 0;
}
_root.BGA[_root.GBG1][4] = _root.BGA[_root.GBG1][4] - (_root.spirit / (2 * _root.dirtyc101));
_root[_root.BGA[_root.GBG1][6]]._xscale = _root.BGA[_root.GBG1][4];
if (_root.BGA[_root.GBG1][4] > 0) {
gotoAndPlay (91);
}
Symbol 351 MovieClip Frame 104
cum.attachSound("cum2");
cum.start(0, 1);
Symbol 351 MovieClip Frame 119
cum.attachSound("cum1");
cum.start(0, 1);
Symbol 351 MovieClip Frame 136
if (_root.cumface > 1) {
_root.cumface--;
}
_root.BGA[_root.GBG1][4] = 0;
_root[_root.BGA[_root.GBG1][5]]._y = 200;
_root.held = 99;
_root.hero.gotoAndStop(46);
Symbol 359 MovieClip Frame 1
gotoAndStop(1 + (_root.playshapes * 5));
Symbol 368 MovieClip Frame 1
var moan = new Sound();
var plish = new Sound();
var cum = new Sound();
Symbol 368 MovieClip Frame 6
if (Key.isDown(83)) {
_root.grapple = _root.grapple + _root.body;
gotoAndPlay (55);
} else {
_root.grapple = _root.grapple - ((_root.BGA[_root.GBG1][1] - (_root.body / 2)) / (4 * _root.dirtyc101));
if (_root.grapple < 0) {
_root.grapple = 0;
}
_root.gbar.grapplebargood._xscale = _root.grapple;
_root.BGA[_root.GBG1][4] = _root.BGA[_root.GBG1][4] - (_root.spirit / (8 * _root.dirtyc101));
_root[_root.BGA[_root.GBG1][6]]._xscale = _root.BGA[_root.GBG1][4];
}
Symbol 368 MovieClip Frame 11
if (Key.isDown(83)) {
_root.grapple = _root.grapple + _root.body;
gotoAndPlay (55);
} else {
_root.grapple = _root.grapple - ((_root.BGA[_root.GBG1][1] - (_root.body / 2)) / (4 * _root.dirtyc101));
if (_root.grapple < 0) {
_root.grapple = 0;
}
_root.gbar.grapplebargood._xscale = _root.grapple;
_root.BGA[_root.GBG1][4] = _root.BGA[_root.GBG1][4] - (_root.spirit / (8 * _root.dirtyc101));
_root[_root.BGA[_root.GBG1][6]]._xscale = _root.BGA[_root.GBG1][4];
}
Symbol 368 MovieClip Frame 16
if (Key.isDown(83)) {
_root.grapple = _root.grapple + _root.body;
gotoAndPlay (55);
} else {
_root.grapple = _root.grapple - ((_root.BGA[_root.GBG1][1] - (_root.body / 2)) / (4 * _root.dirtyc101));
if (_root.grapple < 0) {
_root.grapple = 0;
}
_root.gbar.grapplebargood._xscale = _root.grapple;
_root.BGA[_root.GBG1][4] = _root.BGA[_root.GBG1][4] - (_root.spirit / (8 * _root.dirtyc101));
_root[_root.BGA[_root.GBG1][6]]._xscale = _root.BGA[_root.GBG1][4];
}
Symbol 368 MovieClip Frame 20
if (Key.isDown(83)) {
_root.grapple = _root.grapple + _root.body;
gotoAndPlay (55);
} else {
_root.grapple = _root.grapple - ((_root.BGA[_root.GBG1][1] - (_root.body / 2)) / (4 * _root.dirtyc101));
if (_root.grapple < 0) {
_root.grapple = 0;
}
_root.gbar.grapplebargood._xscale = _root.grapple;
_root.BGA[_root.GBG1][4] = _root.BGA[_root.GBG1][4] - (_root.spirit / (8 * _root.dirtyc101));
_root[_root.BGA[_root.GBG1][6]]._xscale = _root.BGA[_root.GBG1][4];
if (_root.BGA[_root.GBG1][4] <= 25) {
_root.gbar._y = 2000;
gotoAndPlay (21);
} else if (_root.grapple <= 0) {
_root.gbar._y = 2000;
_root[_root.BGA[_root.GBG1][5]]._y = 200;
_root.BGA[_root.GBG1][7] = _root.BGA[_root.GBG1][7] + _root.body;
_root.held = 99;
_root.hero.gotoAndStop(46);
} else {
gotoAndPlay (1);
}
}
Symbol 368 MovieClip Frame 25
plish.attachSound("plish3");
plish.start(0, 1);
Symbol 368 MovieClip Frame 29
_root.BGA[_root.GBG1][4] = _root.BGA[_root.GBG1][4] - (_root.spirit / (4 * _root.dirtyc101));
if (_root.BGA[_root.GBG1][4] < 0) {
_root.BGA[_root.GBG1][4] = 0;
}
_root[_root.BGA[_root.GBG1][6]]._xscale = _root.BGA[_root.GBG1][4];
Symbol 368 MovieClip Frame 33
_root.BGA[_root.GBG1][4] = _root.BGA[_root.GBG1][4] - (_root.spirit / (4 * _root.dirtyc101));
if (_root.BGA[_root.GBG1][4] < 0) {
_root.BGA[_root.GBG1][4] = 0;
}
_root[_root.BGA[_root.GBG1][6]]._xscale = _root.BGA[_root.GBG1][4];
if (_root.BGA[_root.GBG1][4] > 0) {
gotoAndPlay ("fingers");
}
Symbol 368 MovieClip Frame 34
cum.attachSound("cum3");
cum.start(0, 1);
Symbol 368 MovieClip Frame 50
_root[_root.BGA[_root.GBG1][5]]._y = 200;
_root.held = 99;
_root.hero.gotoAndStop(46);
Symbol 368 MovieClip Frame 61
plish.attachSound("plish2");
plish.start(0, 1);
Symbol 368 MovieClip Frame 66
_root.grapple = _root.grapple - ((_root.BGA[_root.GBG1][1] - _root.body) / (4 * _root.dirtyc101));
if (_root.grapple < 0) {
_root.grapple = 0;
}
_root.gbar.grapplebargood._xscale = _root.grapple;
_root.health = _root.health - (_root.BGA[_root.GBG1][2] / (16 * _root.dirtyc101));
_root.BGA[_root.GBG1][4] = _root.BGA[_root.GBG1][4] - (_root.spirit / (4 * _root.dirtyc101));
_root[_root.BGA[_root.GBG1][6]]._xscale = _root.BGA[_root.GBG1][4];
Symbol 368 MovieClip Frame 71
_root.grapple = _root.grapple - ((_root.BGA[_root.GBG1][1] - _root.body) / (4 * _root.dirtyc101));
if (_root.grapple < 0) {
_root.grapple = 0;
}
_root.gbar.grapplebargood._xscale = _root.grapple;
_root.health = _root.health - (_root.BGA[_root.GBG1][2] / (16 * _root.dirtyc101));
_root.BGA[_root.GBG1][4] = _root.BGA[_root.GBG1][4] - (_root.spirit / (4 * _root.dirtyc101));
_root[_root.BGA[_root.GBG1][6]]._xscale = _root.BGA[_root.GBG1][4];
Symbol 368 MovieClip Frame 76
_root.grapple = _root.grapple - ((_root.BGA[_root.GBG1][1] - _root.body) / (4 * _root.dirtyc101));
if (_root.grapple < 0) {
_root.grapple = 0;
}
_root.gbar.grapplebargood._xscale = _root.grapple;
_root.health = _root.health - (_root.BGA[_root.GBG1][2] / (16 * _root.dirtyc101));
_root.BGA[_root.GBG1][4] = _root.BGA[_root.GBG1][4] - (_root.spirit / (4 * _root.dirtyc101));
_root[_root.BGA[_root.GBG1][6]]._xscale = _root.BGA[_root.GBG1][4];
Symbol 368 MovieClip Frame 80
_root.grapple = _root.grapple - ((_root.BGA[_root.GBG1][1] - _root.body) / (4 * _root.dirtyc101));
if (_root.grapple < 0) {
_root.grapple = 0;
}
_root.gbar.grapplebargood._xscale = _root.grapple;
_root.health = _root.health - (_root.BGA[_root.GBG1][2] / (16 * _root.dirtyc101));
_root.BGA[_root.GBG1][4] = _root.BGA[_root.GBG1][4] - (_root.spirit / (4 * _root.dirtyc101));
_root[_root.BGA[_root.GBG1][6]]._xscale = _root.BGA[_root.GBG1][4];
if (_root.BGA[_root.GBG1][4] <= 25) {
_root.gbar._y = 2000;
gotoAndPlay (81);
} else if (_root.grapple <= 0) {
_root.gbar._y = 2000;
_root[_root.BGA[_root.GBG1][5]]._y = 200;
_root.BGA[_root.GBG1][7] = _root.BGA[_root.GBG1][7] + _root.body;
_root.held = 99;
_root.hero.gotoAndStop(46);
} else {
gotoAndPlay (61);
}
Symbol 368 MovieClip Frame 81
plish.attachSound("plish2");
plish.start(0, 1);
Symbol 368 MovieClip Frame 86
_root.health = _root.health - (_root.BGA[_root.GBG1][2] / (8 * _root.dirtyc101));
if (_root.BGA[_root.GBG1][4] < 0) {
_root.BGA[_root.GBG1][4] = 0;
}
_root.BGA[_root.GBG1][4] = _root.BGA[_root.GBG1][4] - (_root.spirit / (2 * _root.dirtyc101));
_root[_root.BGA[_root.GBG1][6]]._xscale = _root.BGA[_root.GBG1][4];
Symbol 368 MovieClip Frame 90
_root.health = _root.health - (_root.BGA[_root.GBG1][2] / (8 * _root.dirtyc101));
if (_root.BGA[_root.GBG1][4] < 0) {
_root.BGA[_root.GBG1][4] = 0;
}
_root.BGA[_root.GBG1][4] = _root.BGA[_root.GBG1][4] - (_root.spirit / (2 * _root.dirtyc101));
_root[_root.BGA[_root.GBG1][6]]._xscale = _root.BGA[_root.GBG1][4];
if (_root.BGA[_root.GBG1][4] > 0) {
gotoAndPlay (81);
}
Symbol 368 MovieClip Frame 91
cum.attachSound("cum3");
cum.start(0, 1);
Symbol 368 MovieClip Frame 100
_root[_root.BGA[_root.GBG1][5]]._y = 200;
_root.held = 99;
_root.hero.gotoAndStop(46);
Symbol 374 MovieClip Frame 1
gotoAndStop(1 + (_root.playshapes * 5));
Symbol 375 MovieClip Frame 1
gotoAndStop(1 + (_root.playshapes * 5));
Symbol 378 MovieClip Frame 80
i = 0;
while (i < _root.BGA.length) {
unloadMovie (_root[_root.BGA[i][5]]);
unloadMovie (_root[_root.BGA[i][6]]);
i++;
}
_root.BGA.splice([0][0], _root.BGA.length);
removeMovieClip(_root.camframe);
removeMovieClip(_root.hero);
_root.gotoAndStop("gameover");
Symbol 381 MovieClip Frame 3
_root.held = 0;
_root.hero.gotoAndStop(1);
Symbol 382 MovieClip Frame 1
_root.held = 40;
Symbol 382 MovieClip Frame 6
_root.held = 0;
_root.hero.gotoAndStop(1);
Symbol 385 MovieClip Frame 1
if (!Key.isDown(83)) {
splash.gotoAndStop(61);
}
if (_root.armorh > 75) {
gotoAndPlay ("ar75");
} else if (_root.armorh > 50) {
gotoAndPlay ("ar50");
} else if (_root.armorh <= 25) {
_root.hero.gotoAndStop(_root.hero._currentframe + 5);
}
var clothesrip = new Sound();
Symbol 385 MovieClip Frame 5
_root.armorh = _root.armorh - (_root.BGA[_root.GBG1][2] / (8 * _root.dirtyc101));
if (Key.isDown(83)) {
_root.grapple = _root.grapple + (((_root.body * 2) - (_root.BGA[_root.GBG1][1] / 2)) / (2 * _root.dirtyc101));
_root.health = _root.health - (1 / _root.dirtyc101);
splash.gotoAndPlay(1);
} else {
_root.grapple = _root.grapple + ((_root.body - (_root.BGA[_root.GBG1][1] / 2)) / (2 * _root.dirtyc101));
splash.gotoAndStop(61);
}
if (_root.grapple > 100) {
_root.grapple = 100;
}
_root.gbar.grapplebargood._xscale = _root.grapple;
Symbol 385 MovieClip Frame 11
_root.armorh = _root.armorh - (_root.BGA[_root.GBG1][2] / (8 * _root.dirtyc101));
if (Key.isDown(83)) {
_root.grapple = _root.grapple + (((_root.body * 2) - (_root.BGA[_root.GBG1][1] / 2)) / (2 * _root.dirtyc101));
_root.health = _root.health - (1 / _root.dirtyc101);
splash.gotoAndPlay(1);
} else {
_root.grapple = _root.grapple + ((_root.body - (_root.BGA[_root.GBG1][1] / 2)) / (2 * _root.dirtyc101));
splash.gotoAndStop(61);
}
if (_root.grapple > 100) {
_root.grapple = 100;
}
_root.gbar.grapplebargood._xscale = _root.grapple;
Symbol 385 MovieClip Frame 16
_root.armorh = _root.armorh - (_root.BGA[_root.GBG1][2] / (8 * _root.dirtyc101));
if (Key.isDown(83)) {
_root.grapple = _root.grapple + (((_root.body * 2) - (_root.BGA[_root.GBG1][1] / 2)) / (2 * _root.dirtyc101));
_root.health = _root.health - (1 / _root.dirtyc101);
splash.gotoAndPlay(1);
} else {
_root.grapple = _root.grapple + ((_root.body - (_root.BGA[_root.GBG1][1] / 2)) / (2 * _root.dirtyc101));
splash.gotoAndStop(61);
}
if (_root.grapple > 100) {
_root.grapple = 100;
}
_root.gbar.grapplebargood._xscale = _root.grapple;
Symbol 385 MovieClip Frame 21
_root.armorh = _root.armorh - (_root.BGA[_root.GBG1][2] / (8 * _root.dirtyc101));
if (Key.isDown(83)) {
_root.grapple = _root.grapple + (((_root.body * 2) - (_root.BGA[_root.GBG1][1] / 2)) / (2 * _root.dirtyc101));
_root.health = _root.health - (1 / _root.dirtyc101);
splash.gotoAndPlay(1);
} else {
_root.grapple = _root.grapple + ((_root.body - (_root.BGA[_root.GBG1][1] / 2)) / (2 * _root.dirtyc101));
splash.gotoAndStop(61);
}
if (_root.grapple > 100) {
_root.grapple = 100;
}
_root.gbar.grapplebargood._xscale = _root.grapple;
if (_root.grapple >= 100) {
_root.gbar._y = 2000;
_root[_root.BGA[_root.GBG1][5]]._y = 200;
_root.BGA[_root.GBG1][7] = _root.BGA[_root.GBG1][7] + _root.body;
_root.held = 99;
_root.hero.gotoAndStop(46);
} else if (_root.armorh <= 25) {
_root.gbar._y = 2000;
_currentframe = (_currentframe+1);
gotoAndPlay(_currentframe);
} else {
gotoAndPlay ("ar25");
}
Symbol 385 MovieClip Frame 22
clothesrip.attachSound("tear");
clothesrip.start(0, 1);
Symbol 385 MovieClip Frame 30
_root[_root.BGA[_root.GBG1][5]]._y = 200;
_root.BGA[_root.GBG1][7] = _root.BGA[_root.GBG1][7] + _root.body;
_root.held = 99;
_root.hero.gotoAndStop(46);
Symbol 385 MovieClip Frame 36
_root.armorh = _root.armorh - (_root.BGA[_root.GBG1][2] / (8 * _root.dirtyc101));
if (Key.isDown(83)) {
_root.grapple = _root.grapple + (((_root.body * 2) - (_root.BGA[_root.GBG1][1] / 2)) / (4 * _root.dirtyc101));
_root.health = _root.health - (1 / _root.dirtyc101);
splash.gotoAndPlay(1);
} else {
_root.grapple = _root.grapple + ((_root.body - (_root.BGA[_root.GBG1][1] / 2)) / (4 * _root.dirtyc101));
splash.gotoAndStop(61);
}
if (_root.grapple > 100) {
_root.grapple = 100;
}
_root.gbar.grapplebargood._xscale = _root.grapple;
Symbol 385 MovieClip Frame 41
_root.armorh = _root.armorh - (_root.BGA[_root.GBG1][2] / (8 * _root.dirtyc101));
if (Key.isDown(83)) {
_root.grapple = _root.grapple + (((_root.body * 2) - (_root.BGA[_root.GBG1][1] / 2)) / (4 * _root.dirtyc101));
_root.health = _root.health - (1 / _root.dirtyc101);
splash.gotoAndPlay(1);
} else {
_root.grapple = _root.grapple + ((_root.body - (_root.BGA[_root.GBG1][1] / 2)) / (4 * _root.dirtyc101));
splash.gotoAndStop(61);
}
if (_root.grapple > 100) {
_root.grapple = 100;
}
_root.gbar.grapplebargood._xscale = _root.grapple;
Symbol 385 MovieClip Frame 46
_root.armorh = _root.armorh - (_root.BGA[_root.GBG1][2] / (8 * _root.dirtyc101));
if (Key.isDown(83)) {
_root.grapple = _root.grapple + (((_root.body * 2) - (_root.BGA[_root.GBG1][1] / 2)) / (4 * _root.dirtyc101));
_root.health = _root.health - (1 / _root.dirtyc101);
splash.gotoAndPlay(1);
} else {
_root.grapple = _root.grapple + ((_root.body - (_root.BGA[_root.GBG1][1] / 2)) / (4 * _root.dirtyc101));
splash.gotoAndStop(61);
}
if (_root.grapple > 100) {
_root.grapple = 100;
}
_root.gbar.grapplebargood._xscale = _root.grapple;
Symbol 385 MovieClip Frame 51
_root.armorh = _root.armorh - (_root.BGA[_root.GBG1][2] / (8 * _root.dirtyc101));
if (Key.isDown(83)) {
_root.grapple = _root.grapple + (((_root.body * 2) - (_root.BGA[_root.GBG1][1] / 2)) / (4 * _root.dirtyc101));
_root.health = _root.health - (1 / _root.dirtyc101);
splash.gotoAndPlay(1);
} else {
_root.grapple = _root.grapple + ((_root.body - (_root.BGA[_root.GBG1][1] / 2)) / (4 * _root.dirtyc101));
splash.gotoAndStop(61);
}
if (_root.grapple > 100) {
_root.grapple = 100;
}
_root.gbar.grapplebargood._xscale = _root.grapple;
if (_root.grapple >= 100) {
_root.gbar._y = 2000;
_root[_root.BGA[_root.GBG1][5]]._y = 200;
_root.BGA[_root.GBG1][7] = _root.BGA[_root.GBG1][7] + _root.body;
_root.held = 99;
_root.hero.gotoAndStop(46);
} else if (_root.armorh <= 50) {
_root.gbar._y = 2000;
_currentframe = (_currentframe+1);
gotoAndPlay(_currentframe);
} else {
gotoAndPlay ("ar50");
}
Symbol 385 MovieClip Frame 52
clothesrip.attachSound("tear");
clothesrip.start(0, 1);
Symbol 385 MovieClip Frame 60
_root[_root.BGA[_root.GBG1][5]]._y = 200;
_root.BGA[_root.GBG1][7] = _root.BGA[_root.GBG1][7] + _root.body;
_root.held = 99;
_root.hero.gotoAndStop(46);
Symbol 385 MovieClip Frame 66
_root.armorh = _root.armorh - (_root.BGA[_root.GBG1][2] / (8 * _root.dirtyc101));
if (Key.isDown(83)) {
_root.grapple = _root.grapple + (((_root.body * 2) - (_root.BGA[_root.GBG1][1] / 2)) / (4 * _root.dirtyc101));
_root.health = _root.health - (1 / _root.dirtyc101);
splash.gotoAndPlay(1);
} else {
_root.grapple = _root.grapple + ((_root.body - (_root.BGA[_root.GBG1][1] / 2)) / (4 * _root.dirtyc101));
splash.gotoAndStop(61);
}
if (_root.grapple > 100) {
_root.grapple = 100;
}
_root.gbar.grapplebargood._xscale = _root.grapple;
Symbol 385 MovieClip Frame 71
_root.armorh = _root.armorh - (_root.BGA[_root.GBG1][2] / (8 * _root.dirtyc101));
if (Key.isDown(83)) {
_root.grapple = _root.grapple + (((_root.body * 2) - (_root.BGA[_root.GBG1][1] / 2)) / (4 * _root.dirtyc101));
_root.health = _root.health - (1 / _root.dirtyc101);
splash.gotoAndPlay(1);
} else {
_root.grapple = _root.grapple + ((_root.body - (_root.BGA[_root.GBG1][1] / 2)) / (4 * _root.dirtyc101));
splash.gotoAndStop(61);
}
if (_root.grapple > 100) {
_root.grapple = 100;
}
_root.gbar.grapplebargood._xscale = _root.grapple;
Symbol 385 MovieClip Frame 76
_root.armorh = _root.armorh - (_root.BGA[_root.GBG1][2] / (8 * _root.dirtyc101));
if (Key.isDown(83)) {
_root.grapple = _root.grapple + (((_root.body * 2) - (_root.BGA[_root.GBG1][1] / 2)) / (4 * _root.dirtyc101));
_root.health = _root.health - (1 / _root.dirtyc101);
splash.gotoAndPlay(1);
} else {
_root.grapple = _root.grapple + ((_root.body - (_root.BGA[_root.GBG1][1] / 2)) / (4 * _root.dirtyc101));
splash.gotoAndStop(61);
}
if (_root.grapple > 100) {
_root.grapple = 100;
}
_root.gbar.grapplebargood._xscale = _root.grapple;
Symbol 385 MovieClip Frame 81
_root.armorh = _root.armorh - (_root.BGA[_root.GBG1][2] / (8 * _root.dirtyc101));
if (Key.isDown(83)) {
_root.grapple = _root.grapple + (((_root.body * 2) - (_root.BGA[_root.GBG1][1] / 2)) / (4 * _root.dirtyc101));
_root.health = _root.health - (1 / _root.dirtyc101);
splash.gotoAndPlay(1);
} else {
_root.grapple = _root.grapple + ((_root.body - (_root.BGA[_root.GBG1][1] / 2)) / (4 * _root.dirtyc101));
splash.gotoAndStop(61);
}
if (_root.grapple > 100) {
_root.grapple = 100;
}
_root.gbar.grapplebargood._xscale = _root.grapple;
if (_root.grapple >= 100) {
_root.gbar._y = 2000;
_root[_root.BGA[_root.GBG1][5]]._y = 200;
_root.BGA[_root.GBG1][7] = _root.BGA[_root.GBG1][7] + _root.body;
_root.held = 99;
_root.hero.gotoAndStop(46);
} else if (_root.armorh <= 75) {
_root.gbar._y = 2000;
_currentframe = (_currentframe+1);
gotoAndPlay(_currentframe);
} else {
gotoAndPlay ("ar75");
}
Symbol 385 MovieClip Frame 82
clothesrip.attachSound("tear");
clothesrip.start(0, 1);
Symbol 385 MovieClip Frame 90
_root[_root.BGA[_root.GBG1][5]]._y = 200;
_root.BGA[_root.GBG1][7] = _root.BGA[_root.GBG1][7] + _root.body;
_root.held = 99;
_root.hero.gotoAndStop(46);
Symbol 386 MovieClip Frame 1
if (!Key.isDown(83)) {
splash.gotoAndStop(61);
}
if (_root.armorh > 75) {
gotoAndPlay ("ar75");
} else if (_root.armorh > 50) {
gotoAndPlay ("ar50");
} else if (_root.armorh <= 25) {
_root.hero.gotoAndStop(_root.hero._currentframe + 5);
}
var clothesrip = new Sound();
Symbol 386 MovieClip Frame 6
_root.armorh = _root.armorh - (_root.BGA[_root.GBG1][2] / (8 * _root.dirtyc101));
if (Key.isDown(83)) {
_root.grapple = _root.grapple + (((_root.body * 2) - (_root.BGA[_root.GBG1][1] / 2)) / (4 * _root.dirtyc101));
_root.health = _root.health - (1 / _root.dirtyc101);
splash.gotoAndPlay(1);
} else {
_root.grapple = _root.grapple + ((_root.body - (_root.BGA[_root.GBG1][1] / 2)) / (4 * _root.dirtyc101));
splash.gotoAndStop(61);
}
if (_root.grapple > 100) {
_root.grapple = 100;
}
_root.gbar.grapplebargood._xscale = _root.grapple;
Symbol 386 MovieClip Frame 11
_root.armorh = _root.armorh - (_root.BGA[_root.GBG1][2] / (8 * _root.dirtyc101));
if (Key.isDown(83)) {
_root.grapple = _root.grapple + (((_root.body * 2) - (_root.BGA[_root.GBG1][1] / 2)) / (4 * _root.dirtyc101));
_root.health = _root.health - (1 / _root.dirtyc101);
splash.gotoAndPlay(1);
} else {
_root.grapple = _root.grapple + ((_root.body - (_root.BGA[_root.GBG1][1] / 2)) / (4 * _root.dirtyc101));
splash.gotoAndStop(61);
}
if (_root.grapple > 100) {
_root.grapple = 100;
}
_root.gbar.grapplebargood._xscale = _root.grapple;
Symbol 386 MovieClip Frame 16
_root.armorh = _root.armorh - (_root.BGA[_root.GBG1][2] / (8 * _root.dirtyc101));
if (Key.isDown(83)) {
_root.grapple = _root.grapple + (((_root.body * 2) - (_root.BGA[_root.GBG1][1] / 2)) / (4 * _root.dirtyc101));
_root.health = _root.health - (1 / _root.dirtyc101);
splash.gotoAndPlay(1);
} else {
_root.grapple = _root.grapple + ((_root.body - (_root.BGA[_root.GBG1][1] / 2)) / (4 * _root.dirtyc101));
splash.gotoAndStop(61);
}
if (_root.grapple > 100) {
_root.grapple = 100;
}
_root.gbar.grapplebargood._xscale = _root.grapple;
Symbol 386 MovieClip Frame 21
_root.armorh = _root.armorh - (_root.BGA[_root.GBG1][2] / (8 * _root.dirtyc101));
if (Key.isDown(83)) {
_root.grapple = _root.grapple + (((_root.body * 2) - (_root.BGA[_root.GBG1][1] / 2)) / (4 * _root.dirtyc101));
_root.health = _root.health - (1 / _root.dirtyc101);
splash.gotoAndPlay(1);
} else {
_root.grapple = _root.grapple + ((_root.body - (_root.BGA[_root.GBG1][1] / 2)) / (4 * _root.dirtyc101));
splash.gotoAndStop(61);
}
if (_root.grapple > 100) {
_root.grapple = 100;
}
_root.gbar.grapplebargood._xscale = _root.grapple;
if (_root.grapple >= 100) {
_root.gbar._y = 2000;
_root[_root.BGA[_root.GBG1][5]]._y = 200;
_root.BGA[_root.GBG1][7] = _root.BGA[_root.GBG1][7] + _root.body;
_root.held = 99;
_root.hero.gotoAndStop(46);
} else if (_root.armorh <= 25) {
_root.gbar._y = 2000;
_currentframe = (_currentframe+1);
gotoAndPlay(_currentframe);
} else {
gotoAndPlay ("ar25");
}
Symbol 386 MovieClip Frame 22
clothesrip.attachSound("tear");
clothesrip.start(0, 1);
Symbol 386 MovieClip Frame 30
_root[_root.BGA[_root.GBG1][5]]._y = 200;
_root.BGA[_root.GBG1][7] = _root.BGA[_root.GBG1][7] + _root.body;
_root.held = 99;
_root.hero.gotoAndStop(46);
Symbol 386 MovieClip Frame 36
_root.armorh = _root.armorh - (_root.BGA[_root.GBG1][2] / (8 * _root.dirtyc101));
if (Key.isDown(83)) {
_root.grapple = _root.grapple + (((_root.body * 2) - (_root.BGA[_root.GBG1][1] / 2)) / (4 * _root.dirtyc101));
_root.health = _root.health - (1 / _root.dirtyc101);
splash.gotoAndPlay(1);
} else {
_root.grapple = _root.grapple + ((_root.body - (_root.BGA[_root.GBG1][1] / 2)) / (4 * _root.dirtyc101));
splash.gotoAndStop(61);
}
if (_root.grapple > 100) {
_root.grapple = 100;
}
_root.gbar.grapplebargood._xscale = _root.grapple;
Symbol 386 MovieClip Frame 41
_root.armorh = _root.armorh - (_root.BGA[_root.GBG1][2] / (8 * _root.dirtyc101));
if (Key.isDown(83)) {
_root.grapple = _root.grapple + (((_root.body * 2) - (_root.BGA[_root.GBG1][1] / 2)) / (4 * _root.dirtyc101));
_root.health = _root.health - (1 / _root.dirtyc101);
splash.gotoAndPlay(1);
} else {
_root.grapple = _root.grapple + ((_root.body - (_root.BGA[_root.GBG1][1] / 2)) / (4 * _root.dirtyc101));
splash.gotoAndStop(61);
}
if (_root.grapple > 100) {
_root.grapple = 100;
}
_root.gbar.grapplebargood._xscale = _root.grapple;
Symbol 386 MovieClip Frame 46
_root.armorh = _root.armorh - (_root.BGA[_root.GBG1][2] / (8 * _root.dirtyc101));
if (Key.isDown(83)) {
_root.grapple = _root.grapple + (((_root.body * 2) - (_root.BGA[_root.GBG1][1] / 2)) / (4 * _root.dirtyc101));
_root.health = _root.health - (1 / _root.dirtyc101);
splash.gotoAndPlay(1);
} else {
_root.grapple = _root.grapple + ((_root.body - (_root.BGA[_root.GBG1][1] / 2)) / (4 * _root.dirtyc101));
splash.gotoAndStop(61);
}
if (_root.grapple > 100) {
_root.grapple = 100;
}
_root.gbar.grapplebargood._xscale = _root.grapple;
Symbol 386 MovieClip Frame 51
_root.armorh = _root.armorh - (_root.BGA[_root.GBG1][2] / (8 * _root.dirtyc101));
if (Key.isDown(83)) {
_root.grapple = _root.grapple + (((_root.body * 2) - (_root.BGA[_root.GBG1][1] / 2)) / (4 * _root.dirtyc101));
_root.health = _root.health - (1 / _root.dirtyc101);
splash.gotoAndPlay(1);
} else {
_root.grapple = _root.grapple + ((_root.body - (_root.BGA[_root.GBG1][1] / 2)) / (4 * _root.dirtyc101));
splash.gotoAndStop(61);
}
if (_root.grapple > 100) {
_root.grapple = 100;
}
_root.gbar.grapplebargood._xscale = _root.grapple;
if (_root.grapple >= 100) {
_root.gbar._y = 2000;
_root[_root.BGA[_root.GBG1][5]]._y = 200;
_root.BGA[_root.GBG1][7] = _root.BGA[_root.GBG1][7] + _root.body;
_root.held = 99;
_root.hero.gotoAndStop(46);
} else if (_root.armorh <= 50) {
_root.gbar._y = 2000;
_currentframe = (_currentframe+1);
gotoAndPlay(_currentframe);
} else {
gotoAndPlay ("ar50");
}
Symbol 386 MovieClip Frame 52
clothesrip.attachSound("tear");
clothesrip.start(0, 1);
Symbol 386 MovieClip Frame 60
_root[_root.BGA[_root.GBG1][5]]._y = 200;
_root.BGA[_root.GBG1][7] = _root.BGA[_root.GBG1][7] + _root.body;
_root.held = 99;
_root.hero.gotoAndStop(46);
Symbol 386 MovieClip Frame 66
_root.armorh = _root.armorh - (_root.BGA[_root.GBG1][2] / (8 * _root.dirtyc101));
if (Key.isDown(83)) {
_root.grapple = _root.grapple + (((_root.body * 2) - (_root.BGA[_root.GBG1][1] / 2)) / (4 * _root.dirtyc101));
_root.health = _root.health - (1 / _root.dirtyc101);
splash.gotoAndPlay(1);
} else {
_root.grapple = _root.grapple + ((_root.body - (_root.BGA[_root.GBG1][1] / 2)) / (4 * _root.dirtyc101));
splash.gotoAndStop(61);
}
if (_root.grapple > 100) {
_root.grapple = 100;
}
_root.gbar.grapplebargood._xscale = _root.grapple;
Symbol 386 MovieClip Frame 71
_root.armorh = _root.armorh - (_root.BGA[_root.GBG1][2] / (8 * _root.dirtyc101));
if (Key.isDown(83)) {
_root.grapple = _root.grapple + (((_root.body * 2) - (_root.BGA[_root.GBG1][1] / 2)) / (4 * _root.dirtyc101));
_root.health = _root.health - (1 / _root.dirtyc101);
splash.gotoAndPlay(1);
} else {
_root.grapple = _root.grapple + ((_root.body - (_root.BGA[_root.GBG1][1] / 2)) / (4 * _root.dirtyc101));
splash.gotoAndStop(61);
}
if (_root.grapple > 100) {
_root.grapple = 100;
}
_root.gbar.grapplebargood._xscale = _root.grapple;
Symbol 386 MovieClip Frame 76
_root.armorh = _root.armorh - (_root.BGA[_root.GBG1][2] / (8 * _root.dirtyc101));
if (Key.isDown(83)) {
_root.grapple = _root.grapple + (((_root.body * 2) - (_root.BGA[_root.GBG1][1] / 2)) / (4 * _root.dirtyc101));
_root.health = _root.health - (1 / _root.dirtyc101);
splash.gotoAndPlay(1);
} else {
_root.grapple = _root.grapple + ((_root.body - (_root.BGA[_root.GBG1][1] / 2)) / (4 * _root.dirtyc101));
splash.gotoAndStop(61);
}
if (_root.grapple > 100) {
_root.grapple = 100;
}
_root.gbar.grapplebargood._xscale = _root.grapple;
Symbol 386 MovieClip Frame 81
_root.armorh = _root.armorh - (_root.BGA[_root.GBG1][2] / (8 * _root.dirtyc101));
if (Key.isDown(83)) {
_root.grapple = _root.grapple + (((_root.body * 2) - (_root.BGA[_root.GBG1][1] / 2)) / (4 * _root.dirtyc101));
_root.health = _root.health - (1 / _root.dirtyc101);
splash.gotoAndPlay(1);
} else {
_root.grapple = _root.grapple + ((_root.body - (_root.BGA[_root.GBG1][1] / 2)) / (4 * _root.dirtyc101));
splash.gotoAndStop(61);
}
if (_root.grapple > 100) {
_root.grapple = 100;
}
_root.gbar.grapplebargood._xscale = _root.grapple;
if (_root.grapple >= 100) {
_root.gbar._y = 2000;
_root[_root.BGA[_root.GBG1][5]]._y = 200;
_root.BGA[_root.GBG1][7] = _root.BGA[_root.GBG1][7] + _root.body;
_root.held = 99;
_root.hero.gotoAndStop(46);
} else if (_root.armorh <= 75) {
_root.gbar._y = 2000;
_currentframe = (_currentframe+1);
gotoAndPlay(_currentframe);
} else {
gotoAndPlay ("ar75");
}
Symbol 386 MovieClip Frame 82
clothesrip.attachSound("tear");
clothesrip.start(0, 1);
Symbol 386 MovieClip Frame 90
_root[_root.BGA[_root.GBG1][5]]._y = 200;
_root.BGA[_root.GBG1][7] = _root.BGA[_root.GBG1][7] + _root.body;
_root.held = 99;
_root.hero.gotoAndStop(46);
Symbol 409 MovieClip Frame 1
if (!Key.isDown(83)) {
splash.gotoAndStop(61);
}
var moan = new Sound();
var plish = new Sound();
var cum = new Sound();
var ml = 0;
plish.attachSound("plish7");
plish.start(0, 1);
Symbol 409 MovieClip Frame 6
if (_root.armorh > 0) {
_root.armorh = _root.armorh - (1 / (4 * _root.dirtyc101));
}
if (Key.isDown(83)) {
_root.grapple = _root.grapple + (((_root.body * 2) - (_root.BGA[_root.GBG1][1] / 2)) / (4 * _root.dirtyc101));
_root.health--;
splash.gotoAndPlay(1);
} else {
_root.grapple = _root.grapple + ((_root.body - (_root.BGA[_root.GBG1][1] / 2)) / (4 * _root.dirtyc101));
splash.gotoAndStop(61);
}
if (_root.grapple > 100) {
_root.grapple = 100;
}
_root.gbar.grapplebargood._xscale = _root.grapple;
_root.health = _root.health - (_root.BGA[_root.GBG1][2] / (4 * _root.dirtyc101));
_root.BGA[_root.GBG1][4] = _root.BGA[_root.GBG1][4] - (_root.spirit / (4 * _root.dirtyc101));
_root[_root.BGA[_root.GBG1][6]]._xscale = _root.BGA[_root.GBG1][4];
Symbol 409 MovieClip Frame 11
if (_root.armorh > 0) {
_root.armorh = _root.armorh - (1 / (4 * _root.dirtyc101));
}
if (Key.isDown(83)) {
_root.grapple = _root.grapple + (((_root.body * 2) - (_root.BGA[_root.GBG1][1] / 2)) / (4 * _root.dirtyc101));
_root.health--;
splash.gotoAndPlay(1);
} else {
_root.grapple = _root.grapple + ((_root.body - (_root.BGA[_root.GBG1][1] / 2)) / (4 * _root.dirtyc101));
splash.gotoAndStop(61);
}
if (_root.grapple > 100) {
_root.grapple = 100;
}
_root.gbar.grapplebargood._xscale = _root.grapple;
_root.health = _root.health - (_root.BGA[_root.GBG1][2] / (4 * _root.dirtyc101));
_root.BGA[_root.GBG1][4] = _root.BGA[_root.GBG1][4] - (_root.spirit / (4 * _root.dirtyc101));
_root[_root.BGA[_root.GBG1][6]]._xscale = _root.BGA[_root.GBG1][4];
moan.attachSound("moan7");
moan.start(0, 1);
Symbol 409 MovieClip Frame 16
if (_root.armorh > 0) {
_root.armorh = _root.armorh - (1 / (4 * _root.dirtyc101));
}
if (Key.isDown(83)) {
_root.grapple = _root.grapple + (((_root.body * 2) - (_root.BGA[_root.GBG1][1] / 2)) / (4 * _root.dirtyc101));
_root.health--;
splash.gotoAndPlay(1);
} else {
_root.grapple = _root.grapple + ((_root.body - (_root.BGA[_root.GBG1][1] / 2)) / (4 * _root.dirtyc101));
splash.gotoAndStop(61);
}
if (_root.grapple > 100) {
_root.grapple = 100;
}
_root.gbar.grapplebargood._xscale = _root.grapple;
_root.health = _root.health - (_root.BGA[_root.GBG1][2] / (4 * _root.dirtyc101));
_root.BGA[_root.GBG1][4] = _root.BGA[_root.GBG1][4] - (_root.spirit / (4 * _root.dirtyc101));
_root[_root.BGA[_root.GBG1][6]]._xscale = _root.BGA[_root.GBG1][4];
Symbol 409 MovieClip Frame 20
if (_root.armorh > 0) {
_root.armorh = _root.armorh - (1 / (4 * _root.dirtyc101));
}
if (Key.isDown(83)) {
_root.grapple = _root.grapple + (((_root.body * 2) - (_root.BGA[_root.GBG1][1] / 2)) / (4 * _root.dirtyc101));
_root.health--;
splash.gotoAndPlay(1);
} else {
_root.grapple = _root.grapple + ((_root.body - (_root.BGA[_root.GBG1][1] / 2)) / (4 * _root.dirtyc101));
splash.gotoAndStop(61);
}
if (_root.grapple > 100) {
_root.grapple = 100;
}
_root.gbar.grapplebargood._xscale = _root.grapple;
_root.health = _root.health - (_root.BGA[_root.GBG1][2] / (4 * _root.dirtyc101));
_root.BGA[_root.GBG1][4] = _root.BGA[_root.GBG1][4] - (_root.spirit / (4 * _root.dirtyc101));
_root[_root.BGA[_root.GBG1][6]]._xscale = _root.BGA[_root.GBG1][4];
if (_root.BGA[_root.GBG1][4] <= 25) {
_root.gbar._y = 2000;
_root.held = 101;
gotoAndPlay (21);
} else if (_root.grapple >= 100) {
_root.gbar._y = 2000;
_root[_root.BGA[_root.GBG1][5]]._y = 200;
_root.BGA[_root.GBG1][7] = _root.BGA[_root.GBG1][7] + _root.body;
_root.hero.gotoAndStop(46);
} else {
gotoAndPlay (1);
}
Symbol 409 MovieClip Frame 21
plish.attachSound("plish7");
plish.start(0, 1);
Symbol 409 MovieClip Frame 26
_root.health = _root.health - (_root.BGA[_root.GBG1][2] / (2 * _root.dirtyc101));
_root.BGA[_root.GBG1][4] = _root.BGA[_root.GBG1][4] - (_root.spirit / (2 * _root.dirtyc101));
if (_root.BGA[_root.GBG1][4] < 0) {
_root.BGA[_root.GBG1][4] = 0;
}
_root[_root.BGA[_root.GBG1][6]]._xscale = _root.BGA[_root.GBG1][4];
moan.attachSound("moan6");
moan.start(0, 1);
Symbol 409 MovieClip Frame 31
_root.health = _root.health - (_root.BGA[_root.GBG1][2] / (2 * _root.dirtyc101));
_root.BGA[_root.GBG1][4] = _root.BGA[_root.GBG1][4] - (_root.spirit / (2 * _root.dirtyc101));
if (_root.BGA[_root.GBG1][4] < 0) {
_root.BGA[_root.GBG1][4] = 0;
}
_root[_root.BGA[_root.GBG1][6]]._xscale = _root.BGA[_root.GBG1][4];
if (_root.BGA[_root.GBG1][4] > 0) {
gotoAndPlay (21);
}
Symbol 409 MovieClip Frame 32
plish.attachSound("plish7");
plish.start(0, 1);
Symbol 409 MovieClip Frame 35
cum.attachSound("cum2");
cum.start(0, 1);
Symbol 409 MovieClip Frame 36
moan.attachSound("moan6");
moan.start(0, 1);
Symbol 409 MovieClip Frame 67
if (_root.cumchest > 1) {
_root.cumchest--;
}
_root[_root.BGA[_root.GBG1][5]]._y = 200;
_root[_root.BGA[_root.GBG2][5]]._y = 200;
_root.BGA[_root.GBG1][4] = 0;
_root.BGA[_root.GBG2][4] = 0;
_root.held = 99;
_root.hero.gotoAndStop(47);
Symbol 422 MovieClip Frame 1
if (!Key.isDown(83)) {
splash.gotoAndStop(61);
}
var moan = new Sound();
var plish = new Sound();
var cum = new Sound();
var ml = 0;
plish.attachSound("plish2");
plish.start(0, 1);
Symbol 422 MovieClip Frame 6
if (_root.armorh > 0) {
_root.armorh = _root.armorh - (1 / (4 * _root.dirtyc101));
}
if (Key.isDown(83)) {
_root.grapple = _root.grapple + (((_root.body * 2) - (_root.BGA[_root.GBG1][1] / 2)) / (4 * _root.dirtyc101));
_root.health--;
splash.gotoAndPlay(1);
} else {
_root.grapple = _root.grapple + ((_root.body - (_root.BGA[_root.GBG1][1] / 2)) / (4 * _root.dirtyc101));
splash.gotoAndStop(61);
}
if (_root.grapple > 100) {
_root.grapple = 100;
}
_root.gbar.grapplebargood._xscale = _root.grapple;
_root.health = _root.health - (_root.BGA[_root.GBG1][2] / (4 * _root.dirtyc101));
_root.BGA[_root.GBG1][4] = _root.BGA[_root.GBG1][4] - (_root.spirit / (4 * _root.dirtyc101));
_root[_root.BGA[_root.GBG1][6]]._xscale = _root.BGA[_root.GBG1][4];
Symbol 422 MovieClip Frame 11
if (_root.armorh > 0) {
_root.armorh = _root.armorh - (1 / (4 * _root.dirtyc101));
}
if (Key.isDown(83)) {
_root.grapple = _root.grapple + (((_root.body * 2) - (_root.BGA[_root.GBG1][1] / 2)) / (4 * _root.dirtyc101));
_root.health--;
splash.gotoAndPlay(1);
} else {
_root.grapple = _root.grapple + ((_root.body - (_root.BGA[_root.GBG1][1] / 2)) / (4 * _root.dirtyc101));
splash.gotoAndStop(61);
}
if (_root.grapple > 100) {
_root.grapple = 100;
}
_root.gbar.grapplebargood._xscale = _root.grapple;
_root.health = _root.health - (_root.BGA[_root.GBG1][2] / (4 * _root.dirtyc101));
_root.BGA[_root.GBG1][4] = _root.BGA[_root.GBG1][4] - (_root.spirit / (4 * _root.dirtyc101));
_root[_root.BGA[_root.GBG1][6]]._xscale = _root.BGA[_root.GBG1][4];
moan.attachSound("moan1");
moan.start(0, 1);
Symbol 422 MovieClip Frame 16
if (_root.armorh > 0) {
_root.armorh = _root.armorh - (1 / (4 * _root.dirtyc101));
}
if (Key.isDown(83)) {
_root.grapple = _root.grapple + (((_root.body * 2) - (_root.BGA[_root.GBG1][1] / 2)) / (4 * _root.dirtyc101));
_root.health--;
splash.gotoAndPlay(1);
} else {
_root.grapple = _root.grapple + ((_root.body - (_root.BGA[_root.GBG1][1] / 2)) / (4 * _root.dirtyc101));
splash.gotoAndStop(61);
}
if (_root.grapple > 100) {
_root.grapple = 100;
}
_root.gbar.grapplebargood._xscale = _root.grapple;
_root.health = _root.health - (_root.BGA[_root.GBG1][2] / (4 * _root.dirtyc101));
_root.BGA[_root.GBG1][4] = _root.BGA[_root.GBG1][4] - (_root.spirit / (4 * _root.dirtyc101));
_root[_root.BGA[_root.GBG1][6]]._xscale = _root.BGA[_root.GBG1][4];
Symbol 422 MovieClip Frame 20
if (_root.armorh > 0) {
_root.armorh = _root.armorh - (1 / (4 * _root.dirtyc101));
}
if (Key.isDown(83)) {
_root.grapple = _root.grapple + (((_root.body * 2) - (_root.BGA[_root.GBG1][1] / 2)) / (4 * _root.dirtyc101));
_root.health--;
splash.gotoAndPlay(1);
} else {
_root.grapple = _root.grapple + ((_root.body - (_root.BGA[_root.GBG1][1] / 2)) / (4 * _root.dirtyc101));
splash.gotoAndStop(61);
}
if (_root.grapple > 100) {
_root.grapple = 100;
}
_root.gbar.grapplebargood._xscale = _root.grapple;
_root.health = _root.health - (_root.BGA[_root.GBG1][2] / (4 * _root.dirtyc101));
_root.BGA[_root.GBG1][4] = _root.BGA[_root.GBG1][4] - (_root.spirit / (4 * _root.dirtyc101));
_root[_root.BGA[_root.GBG1][6]]._xscale = _root.BGA[_root.GBG1][4];
if (_root.BGA[_root.GBG1][4] <= 25) {
_root.gbar._y = 2000;
_root.held = 101;
gotoAndPlay (21);
} else if (_root.grapple >= 100) {
_root.gbar._y = 2000;
_root[_root.BGA[_root.GBG1][5]]._y = 200;
_root.BGA[_root.GBG1][7] = _root.BGA[_root.GBG1][7] + _root.body;
_root.hero.gotoAndStop(46);
} else {
gotoAndPlay (1);
}
Symbol 422 MovieClip Frame 21
plish.attachSound("plish2");
plish.start(0, 1);
Symbol 422 MovieClip Frame 27
_root.health = _root.health - (_root.BGA[_root.GBG1][2] / (2 * _root.dirtyc101));
_root.BGA[_root.GBG1][4] = _root.BGA[_root.GBG1][4] - (_root.spirit / (2 * _root.dirtyc101));
if (_root.BGA[_root.GBG1][4] < 0) {
_root.BGA[_root.GBG1][4] = 0;
}
_root[_root.BGA[_root.GBG1][6]]._xscale = _root.BGA[_root.GBG1][4];
moan.attachSound("moan4");
moan.start(0, 1);
Symbol 422 MovieClip Frame 32
_root.health = _root.health - (_root.BGA[_root.GBG1][2] / (2 * _root.dirtyc101));
_root.BGA[_root.GBG1][4] = _root.BGA[_root.GBG1][4] - (_root.spirit / (2 * _root.dirtyc101));
if (_root.BGA[_root.GBG1][4] < 0) {
_root.BGA[_root.GBG1][4] = 0;
}
_root[_root.BGA[_root.GBG1][6]]._xscale = _root.BGA[_root.GBG1][4];
if (_root.BGA[_root.GBG1][4] > 0) {
gotoAndPlay (21);
}
Symbol 422 MovieClip Frame 33
plish.attachSound("plish2");
plish.start(0, 1);
Symbol 422 MovieClip Frame 34
cum.attachSound("cum3");
cum.start(0, 1);
Symbol 422 MovieClip Frame 71
_root[_root.BGA[_root.GBG1][5]]._y = 200;
_root[_root.BGA[_root.GBG2][5]]._y = 200;
_root.BGA[_root.GBG1][4] = 0;
_root.BGA[_root.GBG2][4] = 0;
_root.held = 99;
_root.hero.gotoAndStop(47);
Symbol 434 MovieClip Frame 1
if (!Key.isDown(83)) {
splash.gotoAndStop(61);
}
var moan = new Sound();
var plish = new Sound();
var cum = new Sound();
plish.attachSound("plish7");
plish.start(0, 1);
Symbol 434 MovieClip Frame 6
if (_root.armorh > 0) {
_root.armorh = _root.armorh - (1 / (2 * _root.dirtyc101));
}
if (Key.isDown(83)) {
_root.grapple = _root.grapple + (((_root.body * 2) - ((_root.BGA[_root.GBG1][1] + _root.BGA[_root.GBG2][1]) / 2)) / (4 * _root.dirtyc101));
_root.health--;
splash.gotoAndPlay(1);
} else {
_root.grapple = _root.grapple + ((_root.body - ((_root.BGA[_root.GBG1][1] + _root.BGA[_root.GBG2][1]) / 2)) / (4 * _root.dirtyc101));
splash.gotoAndStop(61);
}
if (_root.grapple < 0) {
_root.grapple = 0;
}
if (_root.grapple > 100) {
_root.grapple = 100;
}
_root.gbar.grapplebargood._xscale = _root.grapple;
_root.health = _root.health - ((_root.BGA[_root.GBG1][2] + _root.BGA[_root.GBG2][2]) / (4 * _root.dirtyc101));
_root.BGA[_root.GBG1][4] = _root.BGA[_root.GBG1][4] - (_root.spirit / (4 * _root.dirtyc101));
_root.BGA[_root.GBG2][4] = _root.BGA[_root.GBG2][4] - (_root.spirit / (4 * _root.dirtyc101));
_root[_root.BGA[_root.GBG1][6]]._xscale = _root.BGA[_root.GBG1][4];
_root[_root.BGA[_root.GBG2][6]]._xscale = _root.BGA[_root.GBG1][4];
Symbol 434 MovieClip Frame 11
if (_root.armorh > 0) {
_root.armorh = _root.armorh - (1 / (2 * _root.dirtyc101));
}
if (Key.isDown(83)) {
_root.grapple = _root.grapple + (((_root.body * 2) - ((_root.BGA[_root.GBG1][1] + _root.BGA[_root.GBG2][1]) / 2)) / (4 * _root.dirtyc101));
_root.health--;
splash.gotoAndPlay(1);
} else {
_root.grapple = _root.grapple + ((_root.body - ((_root.BGA[_root.GBG1][1] + _root.BGA[_root.GBG2][1]) / 2)) / (4 * _root.dirtyc101));
splash.gotoAndStop(61);
}
if (_root.grapple < 0) {
_root.grapple = 0;
}
if (_root.grapple > 100) {
_root.grapple = 100;
}
_root.gbar.grapplebargood._xscale = _root.grapple;
_root.health = _root.health - ((_root.BGA[_root.GBG1][2] + _root.BGA[_root.GBG2][2]) / (4 * _root.dirtyc101));
_root.BGA[_root.GBG1][4] = _root.BGA[_root.GBG1][4] - (_root.spirit / (4 * _root.dirtyc101));
_root.BGA[_root.GBG2][4] = _root.BGA[_root.GBG2][4] - (_root.spirit / (4 * _root.dirtyc101));
_root[_root.BGA[_root.GBG1][6]]._xscale = _root.BGA[_root.GBG1][4];
_root[_root.BGA[_root.GBG2][6]]._xscale = _root.BGA[_root.GBG1][4];
moan.attachSound("moan5");
moan.start(0, 1);
Symbol 434 MovieClip Frame 16
if (_root.armorh > 0) {
_root.armorh = _root.armorh - (1 / (2 * _root.dirtyc101));
}
if (Key.isDown(83)) {
_root.grapple = _root.grapple + (((_root.body * 2) - ((_root.BGA[_root.GBG1][1] + _root.BGA[_root.GBG2][1]) / 2)) / (4 * _root.dirtyc101));
_root.health--;
splash.gotoAndPlay(1);
} else {
_root.grapple = _root.grapple + ((_root.body - ((_root.BGA[_root.GBG1][1] + _root.BGA[_root.GBG2][1]) / 2)) / (4 * _root.dirtyc101));
splash.gotoAndStop(61);
}
if (_root.grapple < 0) {
_root.grapple = 0;
}
if (_root.grapple > 100) {
_root.grapple = 100;
}
_root.gbar.grapplebargood._xscale = _root.grapple;
_root.health = _root.health - ((_root.BGA[_root.GBG1][2] + _root.BGA[_root.GBG2][2]) / (4 * _root.dirtyc101));
_root.BGA[_root.GBG1][4] = _root.BGA[_root.GBG1][4] - (_root.spirit / (4 * _root.dirtyc101));
_root.BGA[_root.GBG2][4] = _root.BGA[_root.GBG2][4] - (_root.spirit / (4 * _root.dirtyc101));
_root[_root.BGA[_root.GBG1][6]]._xscale = _root.BGA[_root.GBG1][4];
_root[_root.BGA[_root.GBG2][6]]._xscale = _root.BGA[_root.GBG1][4];
Symbol 434 MovieClip Frame 20
if (_root.armorh > 0) {
_root.armorh = _root.armorh - (1 / (2 * _root.dirtyc101));
}
if (Key.isDown(83)) {
_root.grapple = _root.grapple + (((_root.body * 2) - ((_root.BGA[_root.GBG1][1] + _root.BGA[_root.GBG2][1]) / 2)) / (4 * _root.dirtyc101));
_root.health--;
splash.gotoAndPlay(1);
} else {
_root.grapple = _root.grapple + ((_root.body - ((_root.BGA[_root.GBG1][1] + _root.BGA[_root.GBG2][1]) / 2)) / (4 * _root.dirtyc101));
splash.gotoAndStop(61);
}
if (_root.grapple < 0) {
_root.grapple = 0;
}
if (_root.grapple > 100) {
_root.grapple = 100;
}
_root.gbar.grapplebargood._xscale = _root.grapple;
_root.health = _root.health - ((_root.BGA[_root.GBG1][2] + _root.BGA[_root.GBG2][2]) / (4 * _root.dirtyc101));
_root.BGA[_root.GBG1][4] = _root.BGA[_root.GBG1][4] - (_root.spirit / (4 * _root.dirtyc101));
_root.BGA[_root.GBG2][4] = _root.BGA[_root.GBG2][4] - (_root.spirit / (4 * _root.dirtyc101));
_root[_root.BGA[_root.GBG1][6]]._xscale = _root.BGA[_root.GBG1][4];
_root[_root.BGA[_root.GBG2][6]]._xscale = _root.BGA[_root.GBG1][4];
if ((_root.BGA[_root.GBG1][4] <= 25) and (_root.BGA[_root.GBG2][4] <= 25)) {
_root.gbar._y = 2000;
gotoAndPlay (21);
} else if (_root.grapple >= 100) {
_root.gbar._y = 2000;
_root[_root.BGA[_root.GBG1][5]]._y = 200;
_root.BGA[_root.GBG1][7] = _root.BGA[_root.GBG1][7] + _root.body;
_root[_root.BGA[_root.GBG2][5]]._y = 200;
_root.BGA[_root.GBG2][7] = _root.BGA[_root.GBG2][7] + _root.body;
_root.hero.gotoAndStop(46);
} else {
gotoAndPlay (1);
}
Symbol 434 MovieClip Frame 21
plish.attachSound(plish7);
plish.start(0, 1);
Symbol 434 MovieClip Frame 26
if (_root.armorh > 0) {
_root.armorh = _root.armorh - (1 / _root.dirtyc101);
}
_root.health = _root.health - ((_root.BGA[_root.GBG1][2] + _root.BGA[_root.GBG2][2]) / (2 * _root.dirtyc101));
_root.BGA[_root.GBG1][4] = _root.BGA[_root.GBG1][4] - (_root.spirit / (2 * _root.dirtyc101));
_root.BGA[_root.GBG2][4] = _root.BGA[_root.GBG2][4] - (_root.spirit / (2 * _root.dirtyc101));
if (_root.BGA[_root.GBG1][4] < 0) {
_root.BGA[_root.GBG1][4] = 0;
}
if (_root.BGA[_root.GBG2][4] < 0) {
_root.BGA[_root.GBG2][4] = 0;
}
_root[_root.BGA[_root.GBG1][6]]._xscale = _root.BGA[_root.GBG1][4];
_root[_root.BGA[_root.GBG2][6]]._xscale = _root.BGA[_root.GBG1][4];
moan.attachSound("moan3");
moan.start(0, 1);
Symbol 434 MovieClip Frame 31
if (_root.armorh > 0) {
_root.armorh = _root.armorh - (1 / _root.dirtyc101);
}
_root.health = _root.health - ((_root.BGA[_root.GBG1][2] + _root.BGA[_root.GBG2][2]) / (2 * _root.dirtyc101));
_root.BGA[_root.GBG1][4] = _root.BGA[_root.GBG1][4] - (_root.spirit / (2 * _root.dirtyc101));
_root.BGA[_root.GBG2][4] = _root.BGA[_root.GBG2][4] - (_root.spirit / (2 * _root.dirtyc101));
if (_root.BGA[_root.GBG1][4] < 0) {
_root.BGA[_root.GBG1][4] = 0;
}
if (_root.BGA[_root.GBG2][4] < 0) {
_root.BGA[_root.GBG2][4] = 0;
}
_root[_root.BGA[_root.GBG1][6]]._xscale = _root.BGA[_root.GBG1][4];
_root[_root.BGA[_root.GBG2][6]]._xscale = _root.BGA[_root.GBG1][4];
if ((_root.BGA[_root.GBG1][4] > 0) or (_root.BGA[_root.GBG2][4] > 0)) {
gotoAndPlay (21);
}
Symbol 434 MovieClip Frame 32
plish.attachSound("plish7");
plish.start(0, 1);
Symbol 434 MovieClip Frame 35
cum.attachSound("cum2");
cum.start(0, 1);
Symbol 434 MovieClip Frame 36
pliash.attachSound("cum3");
plish.start(0, 1);
Symbol 434 MovieClip Frame 38
moan.attachSound("moan8");
moan.start(0, 1);
Symbol 434 MovieClip Frame 73
if (_root.cumchest > 1) {
_root.cumchest--;
}
_root[_root.BGA[_root.GBG1][5]]._y = 200;
_root[_root.BGA[_root.GBG2][5]]._y = 200;
_root.BGA[_root.GBG1][4] = 0;
_root.BGA[_root.GBG2][4] = 0;
_root.held = 99;
_root.hero.gotoAndStop(47);
Symbol 435 MovieClip Frame 1
stop();
Symbol 437 MovieClip Frame 1
function camControl() {
parentColor.setTransform(camColor.getTransform());
var _local4 = sX / this._width;
var _local3 = sY / this._height;
_parent._x = cX - (this._x * _local4);
_parent._y = cY - (this._y * _local3);
_parent._xscale = 100 * _local4;
_parent._yscale = 100 * _local3;
}
function resetStage() {
var _local2 = {ra:100, rb:0, ga:100, gb:0, ba:100, bb:0, aa:100, ab:0};
parentColor.setTransform(_local2);
_parent._xscale = 100;
_parent._yscale = 100;
_parent._x = 0;
_parent._y = 0;
}
var oldMode = Stage.scaleMode;
Stage.scaleMode = "exactFit";
var cX = (Stage.width / 2);
var cY = (Stage.height / 2);
var sX = Stage.width;
var sY = Stage.height;
Stage.scaleMode = oldMode;
this._visible = false;
var camColor = new Color(this);
var parentColor = new Color(_parent);
this.onEnterFrame = camControl;
camControl();
this.onUnload = resetStage;
Symbol 454 Button
on (release) {
gotoAndPlay ("vars");
}
Symbol 461 MovieClip Frame 1
if (_root.level > 10) {
gotoAndStop (2);
}
stop();
Symbol 464 MovieClip Frame 1
if (_root.level > 20) {
gotoAndStop (2);
}
stop();
Symbol 467 MovieClip Frame 1
if (_root.level > 30) {
gotoAndStop (2);
}
stop();