Instance of Symbol 65 MovieClip "loader" in Frame 1
onClipEvent (enterFrame) {
bytes = ((int(_root.getBytesLoaded() / 1000) + "KB / ") + int(_root.getBytesTotal() / 1000)) + "KB";
pct = (_root.getBytesLoaded() / _root.getBytesTotal()) * 100;
percent = int(pct);
loader.bar._xscale = pct;
bar._xscale = pct;
px = bar._x + bar._width;
pc._x = px;
if (percent < 100) {
pc.percent = percent add "%";
} else {
tellTarget (_root) {
play();
};
pc.percent = "";
}
}
Frame 2
stop();
Frame 3
_root._quality = "LOW";
stop();
_root.life = 10;
_root.level = 0;
_root.oldlevel = 0;
_root.hiscore = 0;
_root.score = 0;
_root.pause = 1;
_root.levelchange = 1;
Instance of Symbol 81 MovieClip in Frame 3
onClipEvent (enterFrame) {
time = getTimer() / 1000;
thistime = time - oldtime;
if (thistime >= 1) {
fps = frames;
frames = 0;
oldtime++;
} else {
frames++;
}
}
Instance of Symbol 55 MovieClip [FCheckBoxSymbol] "autos" in Frame 3
//component parameters
onClipEvent (initialize) {
label = "Auto-Shoot";
initialValue = false;
labelPlacement = "right";
changeHandler = "";
}
Instance of Symbol 55 MovieClip [FCheckBoxSymbol] "autosw" in Frame 3
//component parameters
onClipEvent (initialize) {
label = "Auto-Sword";
initialValue = false;
labelPlacement = "right";
changeHandler = "";
}
on (press) {
trace(_root.autosw.getValue());
}
Frame 17
function ShootBullet() {
if ((_root.shoot != 1) and (_root.pause == 1)) {
if (n < 7) {
n++;
} else {
n = 0;
}
_root.man.play(2);
duplicateMovieClip ("_root.bullet", "bullet" + n, n);
_root["bullet" + n]._y = _root.man.yyy - 0;
_root["bullet" + n]._x = _root.man.xxx;
_root["bullet" + n].onEnterFrame = function () {
_root.MoveBullet(this._name);
};
_root.shoot = "1";
}
}
function MoveBullet(name) {
if (_root.pause == 1) {
myoldy = _root[name]._x;
if ((myoldy < 550) and (_root.levelchange < 1)) {
_root[name]._x = (myoldy + 15) + (_root.score / 500);
} else {
_root[name]._x = 900;
_root[name]._y = -700;
removeMovieClip(_root[name]);
}
}
}
function Bloodman(who) {
if (_root.pause == 1) {
_root.man.yyy = _root.man.yyy + ((_ymouse - _root.man.yyy) * 0.05);
_root.man._x = _root.man.xxx;
_root.man._y = _root.man.yyy;
if (_xmouse < _root.man.xxx) {
_root.man.xxx = _root.man.xxx + ((_xmouse - _root.man.xxx) * 0.05);
} else {
_root.man.xxx = _root.man.xxx + ((_xmouse - _root.man.xxx) * 0.04);
}
_root.man.bloodcount--;
if (_root.man.bloodcount > 0) {
_root.Bloodme("man");
}
}
_root.sword._x = _root.man.xxx - 58;
_root.sword._y = _root.man.yyy;
}
function Bloodme(who) {
smwait++;
if ((smwait > 1) and (_root.die < 1)) {
smoke++;
_root.attachMovie("smoke", "sm" + smoke, smoke + 1000);
_root["sm" + smoke]._y = _root[who]._y + 5;
_root["sm" + smoke]._x = _root[who]._x - 20;
_root["sm" + smoke].onEnterFrame = function () {
if (_root.pause == 1) {
if (this.smokespeed < 0.1) {
this._rotation = random(360);
this.smokespeed = 3;
}
this.smokespeed = this.smokespeed * 0.95;
this._alpha = this._alpha * 0.95;
if (who == "man") {
this._x = this._x - 4;
this._y = this._y + 2;
} else {
this._x = this._x - 2;
this._y = this._y + 1;
}
this._xscale = this._xscale + 25;
this._yscale = this._yscale + 25;
if ((this._alpha < 1) or (_root.levelchange == 1)) {
this.removeMovieClip();
}
}
};
smwait = 0;
}
}
function EnemyX(who, xspeed, xlife, xscore, xtype) {
if (_root.pause == 1) {
with (_root[who]) {
myspeed = xspeed + (_root.score / 150);
if (_root[who].lifeinit < 1) {
_root[who].health = xlife;
_root[who].life = 0;
_root[who].projectile = 0;
_x = 605;
_y = random(230) + 30;
_root[who].lifeinit = 1;
_root[who].gotoAndstop(1);
}
_root[who].deathcount--;
_root[who].hurtcount--;
if ((((_x > -150) and (_root[who].deathcount < 1)) and (_root[who].hurtcount < 1)) and (_root[who].life < 1)) {
_root[who].n = 0;
if (hitTest(_root.man.xxx - 30, _root.man.yyy, true) and (_root.man.hurt < 1)) {
_root[who].health = 0;
_root.life = _root.life - 1;
_root[who].n = 10;
_root[who].deathcount = 5;
_root.man.bloodcount = 80;
_root.man.gotoAndPlay("blow");
_root[who].gotoAndPlay("blow");
}
while (_root[who].n < 8) {
_root[who].gotoAndstop(1);
if (_root[who].hurtcount < 0) {
if (hitTest("_root.bullet" + n) or (hitTest("_root.sword") and (_root.sword.hit == 1))) {
_root["bullet" + n].removeMovieClip();
_root[who].health--;
_root.lasthurt = who;
if (_root[who].health < 0) {
_root.score = _root.score + xscore;
_root[who].n = 10;
_root[who].deathcount = 11;
_root[who].gotoAndPlay("blow");
} else {
_root[who].hurtcount = 3;
}
if (hitTest("_root.sword") and (_root.sword.hit == 1)) {
_x = _x + (myspeed * 5);
}
}
}
_root[who].n++;
}
if (xtype == 2) {
if (random(22) > 20) {
if (_y < _root.man.yyy) {
_y = _y + 10;
} else {
_y = _y - 10;
}
}
} else {
if (((_root[who].projectile < (_root.level / 10)) and (_x < 400)) and (random(100) > 96)) {
_root[who].projectile++;
makeBall(_name, 1);
}
if (random(10) > 8) {
if (_y > _root.man.yyy) {
_y--;
} else {
_y++;
}
}
}
if ((_x < 140) and (xtype == 1)) {
_x = _x - ((xspeed / 2) + (_root.score / 300));
} else {
_x = _x - myspeed;
}
if (_x > _root.man.xxx) {
_xscale = 100;
} else {
_xscale = -100;
}
} else if (_root[who].deathcount > 1) {
_root.Bloodme(who);
} else if (_root[who].hurtcount > 1) {
_root[who].gotoAndstop("hurt");
_root.Bloodme(who);
} else if (((_x <= -150) or (_root[who].life == 1)) and (_root[who].deathcount < 0)) {
_root[who].lifeinit = 0;
}
}
}
}
function scrollME(who, xspeed) {
if (_root.pause == 1) {
with (_root[who]) {
if ((_x + (_width / 1.5)) > 0) {
_x = _x - (xspeed + (_root.score / 300));
_visible = 1;
} else if (random(800) > 798) {
_x = stage.width + (_width / 1.5);
_y = random(300) + 30;
} else {
_visible = 0;
}
}
}
}
function calcangle(look, name, show) {
ballX = _root[name]._x;
ballY = _root[name]._y;
deltax = (_root[look]._x - 30) - ballX;
deltay = _root[look]._y - ballY;
angle = Math.atan2(deltay, deltax);
angle = (angle / (Math.pi / 180)) - 270;
if (show == 1) {
_root[name]._rotation = angle;
_root[name]._xscale = 100;
_root[name]._yscale = 100;
}
}
function makeBall(who, floorx) {
if (WW < 30) {
WW++;
} else {
WW = 0;
}
_root.attachMovie("bulle", "ball" + WW, WW + 100);
_root["ball" + WW]._y = _root[who]._y;
_root["ball" + WW]._x = _root[who]._x - 30;
_root["ball" + WW].onEnterFrame = function () {
if (_root.pause == 1) {
if (this.minit < 1) {
_root.calcangle("man", this._name, 1);
this.rotation = this._rotation;
this.xlration = 3;
this.minit = 1;
}
this.xpos = this._x;
this.ypos = this._y;
this.xspeed = Math.sin((Math.PI/180) * this.rotation) + this.xspeedinit;
this.yspeed = (-Math.cos((Math.PI/180) * this.rotation)) + this.yspeedinit;
this.xpos = this.xpos + (this.xspeed * this.xlration);
this.ypos = this.ypos + (this.yspeed * this.xlration);
this._x = this.xpos;
this._y = this.ypos;
this.distancetravelled = this.distancetravelled + 1;
if ((this.distancetravelled > 500) or (_root.levelchange == 1)) {
this.removeMovieClip();
}
if (_root.man.hurt < 1) {
if (_root.man.hitTest(this._x, this._y, true)) {
_root.life = _root.life - 1;
_root.man.bloodcount = 40;
_root.man.gotoAndPlay("blow");
this.removeMovieClip();
}
}
}
};
}
if (Key.isDown(80) and (_root.pausedoff < 1)) {
if (_root.pause == 1) {
_root.pause = 0;
_root.pauseclip.gotoandstop(2);
} else {
_root.pauseclip.gotoandstop(1);
_root.pause = 1;
}
_root.pausedoff = 10;
} else {
_root.pausedoff--;
}
_root.rspeed = 7 + (_root.score / 500);
if (_root.man.xxx < 100) {
_root.man.xxx = 100;
}
if (_root.man.xxx > 553) {
_root.man.xxx = 550;
}
if (_root.man.yyy < 50) {
_root.man.yyy = 50;
}
if (_root.man.yyy > 270) {
_root.man.yyy = 270;
}
if (((Key.isDown(32) or (_root.autosw.getValue() == true)) and (_root.sword.hit < 1)) and (_root.pause == 1)) {
_root.sword.gotoandplay(2);
}
_root.onMouseDown = function () {
_root.moused = 1;
};
_root.onMouseUp = function () {
_root.moused = 0;
};
if ((_root.moused == "1") or (_root.autos.getValue() == true)) {
_root.ShootBullet();
}
if (_root.init != "1") {
_root.init = 1;
}
if (_root.life < 1) {
gotoAndStop (101);
}
hclone = _root.life;
manclone = 0;
while (manclone < 11) {
manclone++;
if (manclone < (hclone + 1)) {
_root.attachMovie("health", "health" + manclone, manclone + 500);
_root["health" + manclone]._x = 20 + (manclone * 45);
_root["health" + manclone]._y = 15;
} else {
_root["health" + manclone]._y = -100;
}
}
_root.level = int(_root.score / 75) + 1;
if (_root.level > _root.oldlevel) {
_root.changewait = 1;
}
if ((_root[_root.lasthurt].deathcount < 1) and (_root.changewait == 1)) {
_root.changewait = 0;
_root.levelchange = 0;
if (_root.level == 10) {
_root.levelup.gotoandplay(1);
_root.gotoandplay("glevel10");
} else if (_root.level < 10) {
_root.levelup.gotoandplay(1);
_root.gotoandplay("glevel" + _root.level);
}
}
if (_root.changewait < 1) {
_root.oldlevel = int(_root.score / 75) + 1;
}
if (_root.level > 10) {
_root.leveltxt = "FINAL LEVEL";
} else {
_root.leveltxt = "LEVEL " + _root.level;
}
Frame 21
call("code");
Instance of Symbol 69 MovieClip in Frame 21
onClipEvent (enterFrame) {
if (_root.pause == 1) {
play();
} else {
stop();
}
}
Instance of Symbol 162 MovieClip in Frame 21
onClipEvent (enterFrame) {
_root.scrollme(_name, 0.01);
}
Instance of Symbol 162 MovieClip in Frame 21
onClipEvent (enterFrame) {
_root.scrollme(_name, 0.02);
}
Instance of Symbol 163 MovieClip in Frame 21
onClipEvent (enterFrame) {
_root.scrollme(_name, 0.5);
}
Instance of Symbol 163 MovieClip in Frame 21
onClipEvent (enterFrame) {
_root.scrollme(_name, 0.5);
}
Instance of Symbol 163 MovieClip in Frame 21
onClipEvent (enterFrame) {
_root.scrollme(_name, 3);
}
Instance of Symbol 139 MovieClip in Frame 21
onClipEvent (enterFrame) {
_root.EnemyX(_name, 2, math.max(5, 12 - int(_root.score / 200)), 4, 1);
}
Instance of Symbol 180 MovieClip in Frame 21
onClipEvent (enterFrame) {
_root.EnemyX(_name, 4, math.max(5, 19 - int(_root.score / 200)), 5, 2);
if (_root.pause == 1) {
play();
} else {
stop();
}
}
Instance of Symbol 143 MovieClip "man" in Frame 21
onClipEvent (enterFrame) {
_root.Bloodman(_name);
}
Frame 22
gotoAndPlay (21);
Frame 25
gotoAndPlay (3);
getURL ("http://sess.net", "scorepage");
Frame 28
call("code");
Instance of Symbol 69 MovieClip in Frame 28
onClipEvent (enterFrame) {
if (_root.pause == 1) {
play();
} else {
stop();
}
}
Instance of Symbol 209 MovieClip in Frame 28
onClipEvent (enterFrame) {
_root.scrollme(_name, 0.5);
}
Instance of Symbol 209 MovieClip in Frame 28
onClipEvent (enterFrame) {
_root.scrollme(_name, 1.5);
}
Instance of Symbol 209 MovieClip in Frame 28
onClipEvent (enterFrame) {
_root.scrollme(_name, 3);
}
Instance of Symbol 210 MovieClip in Frame 28
onClipEvent (enterFrame) {
_root.scrollme(_name, 0.2);
}
Instance of Symbol 139 MovieClip in Frame 28
onClipEvent (enterFrame) {
_root.EnemyX(_name, 3, math.max(5, 12 - int(_root.score / 200)), 4, 1);
}
Instance of Symbol 180 MovieClip in Frame 28
onClipEvent (enterFrame) {
_root.EnemyX(_name, 4, math.max(5, 19 - int(_root.score / 200)), 5, 2);
if (_root.pause == 1) {
play();
} else {
stop();
}
}
Instance of Symbol 139 MovieClip in Frame 28
onClipEvent (enterFrame) {
_root.EnemyX(_name, 4, math.max(5, 12 - int(_root.score / 200)), 4, 1);
}
Frame 29
gotoAndPlay (28);
Frame 32
gotoAndPlay (3);
getURL ("http://sess.net", "scorepage");
Frame 35
call("code");
Instance of Symbol 69 MovieClip in Frame 35
onClipEvent (enterFrame) {
if (_root.pause == 1) {
play();
} else {
stop();
}
}
Instance of Symbol 214 MovieClip in Frame 35
onClipEvent (enterFrame) {
_root.scrollme(_name, 0.01);
}
Instance of Symbol 214 MovieClip in Frame 35
onClipEvent (enterFrame) {
_root.scrollme(_name, 0.02);
}
Instance of Symbol 214 MovieClip in Frame 35
onClipEvent (enterFrame) {
_root.scrollme(_name, 0.5);
}
Instance of Symbol 214 MovieClip in Frame 35
onClipEvent (enterFrame) {
_root.scrollme(_name, 1.5);
}
Instance of Symbol 214 MovieClip in Frame 35
onClipEvent (enterFrame) {
_root.scrollme(_name, 3);
}
Instance of Symbol 215 MovieClip in Frame 35
onClipEvent (enterFrame) {
_root.scrollme(_name, 0.2);
}
Instance of Symbol 139 MovieClip in Frame 35
onClipEvent (enterFrame) {
_root.EnemyX(_name, 3, math.max(5, 12 - int(_root.score / 200)), 4, 1);
}
Instance of Symbol 180 MovieClip in Frame 35
onClipEvent (enterFrame) {
_root.EnemyX(_name, 4, math.max(5, 19 - int(_root.score / 200)), 5, 2);
if (_root.pause == 1) {
play();
} else {
stop();
}
}
Instance of Symbol 139 MovieClip in Frame 35
onClipEvent (enterFrame) {
_root.EnemyX(_name, 1, math.max(5, 12 - int(_root.score / 200)), 4, 1);
}
Frame 36
gotoAndPlay (35);
Frame 39
gotoAndPlay (3);
getURL ("http://sess.net", "scorepage");
Frame 42
call("code");
Instance of Symbol 69 MovieClip in Frame 42
onClipEvent (enterFrame) {
if (_root.pause == 1) {
play();
} else {
stop();
}
}
Instance of Symbol 209 MovieClip in Frame 42
onClipEvent (enterFrame) {
_root.scrollme(_name, 3);
}
Instance of Symbol 163 MovieClip in Frame 42
onClipEvent (enterFrame) {
_root.scrollme(_name, 0.5);
}
Instance of Symbol 209 MovieClip in Frame 42
onClipEvent (enterFrame) {
_root.scrollme(_name, 1.5);
}
Instance of Symbol 162 MovieClip in Frame 42
onClipEvent (enterFrame) {
_root.scrollme(_name, 0.2);
}
Instance of Symbol 139 MovieClip in Frame 42
onClipEvent (enterFrame) {
_root.EnemyX(_name, 3, math.max(5, 12 - int(_root.score / 200)), 4, 1);
}
Instance of Symbol 180 MovieClip in Frame 42
onClipEvent (enterFrame) {
_root.EnemyX(_name, 4, math.max(5, 19 - int(_root.score / 200)), 5, 2);
if (_root.pause == 1) {
play();
} else {
stop();
}
}
Instance of Symbol 139 MovieClip in Frame 42
onClipEvent (enterFrame) {
_root.EnemyX(_name, 2, math.max(5, 12 - int(_root.score / 200)), 4, 1);
}
Instance of Symbol 139 MovieClip in Frame 42
onClipEvent (enterFrame) {
_root.EnemyX(_name, 3, math.max(5, 12 - int(_root.score / 200)), 4, 1);
}
Frame 43
gotoAndPlay (42);
Frame 46
gotoAndPlay (3);
getURL ("http://sess.net", "scorepage");
Frame 49
call("code");
Instance of Symbol 69 MovieClip in Frame 49
onClipEvent (enterFrame) {
if (_root.pause == 1) {
play();
} else {
stop();
}
}
Instance of Symbol 209 MovieClip in Frame 49
onClipEvent (enterFrame) {
_root.scrollme(_name, 0.5);
}
Instance of Symbol 209 MovieClip in Frame 49
onClipEvent (enterFrame) {
_root.scrollme(_name, 1.5);
}
Instance of Symbol 209 MovieClip in Frame 49
onClipEvent (enterFrame) {
_root.scrollme(_name, 3);
}
Instance of Symbol 210 MovieClip in Frame 49
onClipEvent (enterFrame) {
_root.scrollme(_name, 0.2);
}
Instance of Symbol 139 MovieClip in Frame 49
onClipEvent (enterFrame) {
_root.EnemyX(_name, 4, math.max(5, 12 - int(_root.score / 200)), 4, 1);
}
Instance of Symbol 180 MovieClip in Frame 49
onClipEvent (enterFrame) {
_root.EnemyX(_name, 4, math.max(5, 19 - int(_root.score / 200)), 5, 2);
if (_root.pause == 1) {
play();
} else {
stop();
}
}
Instance of Symbol 180 MovieClip in Frame 49
onClipEvent (enterFrame) {
_root.EnemyX(_name, 4, math.max(5, 19 - int(_root.score / 200)), 5, 2);
if (_root.pause == 1) {
play();
} else {
stop();
}
}
Instance of Symbol 139 MovieClip in Frame 49
onClipEvent (enterFrame) {
_root.EnemyX(_name, 3, math.max(5, 12 - int(_root.score / 200)), 4, 1);
}
Instance of Symbol 139 MovieClip in Frame 49
onClipEvent (enterFrame) {
_root.EnemyX(_name, 4, math.max(5, 12 - int(_root.score / 200)), 4, 1);
}
Frame 50
gotoAndPlay (49);
Frame 53
gotoAndPlay (3);
getURL ("http://sess.net", "scorepage");
Frame 56
call("code");
Instance of Symbol 69 MovieClip in Frame 56
onClipEvent (enterFrame) {
if (_root.pause == 1) {
play();
} else {
stop();
}
}
Instance of Symbol 163 MovieClip in Frame 56
onClipEvent (enterFrame) {
_root.scrollme(_name, 0.5);
}
Instance of Symbol 163 MovieClip in Frame 56
onClipEvent (enterFrame) {
_root.scrollme(_name, 1.5);
}
Instance of Symbol 163 MovieClip in Frame 56
onClipEvent (enterFrame) {
_root.scrollme(_name, 3);
}
Instance of Symbol 162 MovieClip in Frame 56
onClipEvent (enterFrame) {
_root.scrollme(_name, 0.02);
}
Instance of Symbol 162 MovieClip in Frame 56
onClipEvent (enterFrame) {
_root.scrollme(_name, 0.005);
}
Instance of Symbol 139 MovieClip in Frame 56
onClipEvent (enterFrame) {
_root.EnemyX(_name, 4, math.max(5, 12 - int(_root.score / 200)), 4, 1);
}
Instance of Symbol 180 MovieClip in Frame 56
onClipEvent (enterFrame) {
_root.EnemyX(_name, 4, math.max(5, 19 - int(_root.score / 200)), 5, 2);
if (_root.pause == 1) {
play();
} else {
stop();
}
}
Instance of Symbol 180 MovieClip in Frame 56
onClipEvent (enterFrame) {
_root.EnemyX(_name, 4, math.max(5, 19 - int(_root.score / 200)), 5, 2);
if (_root.pause == 1) {
play();
} else {
stop();
}
}
Instance of Symbol 139 MovieClip in Frame 56
onClipEvent (enterFrame) {
_root.EnemyX(_name, 3, math.max(5, 12 - int(_root.score / 200)), 4, 1);
}
Instance of Symbol 139 MovieClip in Frame 56
onClipEvent (enterFrame) {
_root.EnemyX(_name, 4, math.max(5, 12 - int(_root.score / 200)), 4, 1);
}
Frame 57
gotoAndPlay (56);
Frame 60
gotoAndPlay (3);
getURL ("http://sess.net", "scorepage");
Frame 63
call("code");
Instance of Symbol 69 MovieClip in Frame 63
onClipEvent (enterFrame) {
if (_root.pause == 1) {
play();
} else {
stop();
}
}
Instance of Symbol 209 MovieClip in Frame 63
onClipEvent (enterFrame) {
_root.scrollme(_name, 0.5);
}
Instance of Symbol 209 MovieClip in Frame 63
onClipEvent (enterFrame) {
_root.scrollme(_name, 1.5);
}
Instance of Symbol 209 MovieClip in Frame 63
onClipEvent (enterFrame) {
_root.scrollme(_name, 3);
}
Instance of Symbol 210 MovieClip in Frame 63
onClipEvent (enterFrame) {
_root.scrollme(_name, 0.2);
}
Instance of Symbol 139 MovieClip in Frame 63
onClipEvent (enterFrame) {
_root.EnemyX(_name, 4, math.max(5, 12 - int(_root.score / 200)), 4, 1);
}
Instance of Symbol 180 MovieClip in Frame 63
onClipEvent (enterFrame) {
_root.EnemyX(_name, 4, math.max(5, 19 - int(_root.score / 200)), 5, 2);
if (_root.pause == 1) {
play();
} else {
stop();
}
}
Instance of Symbol 180 MovieClip in Frame 63
onClipEvent (enterFrame) {
_root.EnemyX(_name, 4, math.max(5, 19 - int(_root.score / 200)), 5, 2);
if (_root.pause == 1) {
play();
} else {
stop();
}
}
Instance of Symbol 139 MovieClip in Frame 63
onClipEvent (enterFrame) {
_root.EnemyX(_name, 3, math.max(5, 12 - int(_root.score / 200)), 4, 1);
}
Instance of Symbol 139 MovieClip in Frame 63
onClipEvent (enterFrame) {
_root.EnemyX(_name, 3, math.max(5, 12 - int(_root.score / 200)), 4, 1);
}
Instance of Symbol 139 MovieClip in Frame 63
onClipEvent (enterFrame) {
_root.EnemyX(_name, 4, math.max(5, 12 - int(_root.score / 200)), 4, 1);
}
Frame 64
gotoAndPlay (63);
Frame 67
gotoAndPlay (3);
getURL ("http://sess.net", "scorepage");
Frame 70
call("code");
Instance of Symbol 69 MovieClip in Frame 70
onClipEvent (enterFrame) {
if (_root.pause == 1) {
play();
} else {
stop();
}
}
Instance of Symbol 214 MovieClip in Frame 70
onClipEvent (enterFrame) {
_root.scrollme(_name, 0.5);
}
Instance of Symbol 214 MovieClip in Frame 70
onClipEvent (enterFrame) {
_root.scrollme(_name, 1.5);
}
Instance of Symbol 214 MovieClip in Frame 70
onClipEvent (enterFrame) {
_root.scrollme(_name, 3);
}
Instance of Symbol 215 MovieClip in Frame 70
onClipEvent (enterFrame) {
_root.scrollme(_name, 0.2);
}
Instance of Symbol 139 MovieClip in Frame 70
onClipEvent (enterFrame) {
_root.EnemyX(_name, 4, math.max(5, 12 - int(_root.score / 200)), 4, 1);
}
Instance of Symbol 180 MovieClip in Frame 70
onClipEvent (enterFrame) {
_root.EnemyX(_name, 4, math.max(5, 19 - int(_root.score / 200)), 5, 2);
if (_root.pause == 1) {
play();
} else {
stop();
}
}
Instance of Symbol 180 MovieClip in Frame 70
onClipEvent (enterFrame) {
_root.EnemyX(_name, 4, math.max(5, 19 - int(_root.score / 200)), 5, 2);
if (_root.pause == 1) {
play();
} else {
stop();
}
}
Instance of Symbol 139 MovieClip in Frame 70
onClipEvent (enterFrame) {
_root.EnemyX(_name, 3, math.max(5, 12 - int(_root.score / 200)), 4, 1);
}
Instance of Symbol 139 MovieClip in Frame 70
onClipEvent (enterFrame) {
_root.EnemyX(_name, 3, math.max(5, 12 - int(_root.score / 200)), 4, 1);
}
Instance of Symbol 139 MovieClip in Frame 70
onClipEvent (enterFrame) {
_root.EnemyX(_name, 4, math.max(5, 12 - int(_root.score / 200)), 4, 1);
}
Frame 71
gotoAndPlay (70);
Frame 74
gotoAndPlay (3);
getURL ("http://sess.net", "scorepage");
Frame 77
call("code");
Instance of Symbol 69 MovieClip in Frame 77
onClipEvent (enterFrame) {
if (_root.pause == 1) {
play();
} else {
stop();
}
}
Instance of Symbol 209 MovieClip in Frame 77
onClipEvent (enterFrame) {
_root.scrollme(_name, 3);
}
Instance of Symbol 163 MovieClip in Frame 77
onClipEvent (enterFrame) {
_root.scrollme(_name, 0.5);
}
Instance of Symbol 209 MovieClip in Frame 77
onClipEvent (enterFrame) {
_root.scrollme(_name, 1.5);
}
Instance of Symbol 162 MovieClip in Frame 77
onClipEvent (enterFrame) {
_root.scrollme(_name, 0.2);
}
Instance of Symbol 139 MovieClip in Frame 77
onClipEvent (enterFrame) {
_root.EnemyX(_name, 4, math.max(5, 12 - int(_root.score / 200)), 4, 1);
}
Instance of Symbol 180 MovieClip in Frame 77
onClipEvent (enterFrame) {
_root.EnemyX(_name, 4, math.max(5, 19 - int(_root.score / 200)), 5, 2);
if (_root.pause == 1) {
play();
} else {
stop();
}
}
Instance of Symbol 180 MovieClip in Frame 77
onClipEvent (enterFrame) {
_root.EnemyX(_name, 4, math.max(5, 19 - int(_root.score / 200)), 5, 2);
if (_root.pause == 1) {
play();
} else {
stop();
}
}
Instance of Symbol 139 MovieClip in Frame 77
onClipEvent (enterFrame) {
_root.EnemyX(_name, 3, math.max(5, 12 - int(_root.score / 200)), 4, 1);
}
Instance of Symbol 139 MovieClip in Frame 77
onClipEvent (enterFrame) {
_root.EnemyX(_name, 3, math.max(5, 12 - int(_root.score / 200)), 4, 1);
}
Instance of Symbol 139 MovieClip in Frame 77
onClipEvent (enterFrame) {
_root.EnemyX(_name, 3, math.max(5, 12 - int(_root.score / 200)), 4, 1);
}
Instance of Symbol 139 MovieClip in Frame 77
onClipEvent (enterFrame) {
_root.EnemyX(_name, 4, math.max(5, 12 - int(_root.score / 200)), 4, 1);
}
Frame 78
gotoAndPlay (77);
Frame 80
gotoAndPlay (3);
getURL ("http://sess.net", "scorepage");
Frame 84
call("code");
Instance of Symbol 69 MovieClip in Frame 84
onClipEvent (enterFrame) {
if (_root.pause == 1) {
play();
} else {
stop();
}
}
Instance of Symbol 163 MovieClip in Frame 84
onClipEvent (enterFrame) {
_root.scrollme(_name, 0.5);
}
Instance of Symbol 163 MovieClip in Frame 84
onClipEvent (enterFrame) {
_root.scrollme(_name, 1.5);
}
Instance of Symbol 163 MovieClip in Frame 84
onClipEvent (enterFrame) {
_root.scrollme(_name, 3);
}
Instance of Symbol 162 MovieClip in Frame 84
onClipEvent (enterFrame) {
_root.scrollme(_name, 0.2);
}
Instance of Symbol 139 MovieClip in Frame 84
onClipEvent (enterFrame) {
_root.EnemyX(_name, 4, math.max(5, 12 - int(_root.score / 200)), 4, 1);
}
Instance of Symbol 180 MovieClip in Frame 84
onClipEvent (enterFrame) {
_root.EnemyX(_name, 4, math.max(5, 19 - int(_root.score / 200)), 5, 2);
if (_root.pause == 1) {
play();
} else {
stop();
}
}
Instance of Symbol 180 MovieClip in Frame 84
onClipEvent (enterFrame) {
_root.EnemyX(_name, 4, math.max(5, 19 - int(_root.score / 200)), 5, 2);
if (_root.pause == 1) {
play();
} else {
stop();
}
}
Instance of Symbol 139 MovieClip in Frame 84
onClipEvent (enterFrame) {
_root.EnemyX(_name, 3, math.max(5, 12 - int(_root.score / 200)), 4, 1);
}
Instance of Symbol 139 MovieClip in Frame 84
onClipEvent (enterFrame) {
_root.EnemyX(_name, 3, math.max(5, 12 - int(_root.score / 200)), 4, 1);
}
Instance of Symbol 139 MovieClip in Frame 84
onClipEvent (enterFrame) {
_root.EnemyX(_name, 3, math.max(5, 12 - int(_root.score / 200)), 4, 1);
}
Instance of Symbol 180 MovieClip in Frame 84
onClipEvent (enterFrame) {
_root.EnemyX(_name, 4, math.max(5, 19 - int(_root.score / 200)), 5, 2);
if (_root.pause == 1) {
play();
} else {
stop();
}
}
Instance of Symbol 139 MovieClip in Frame 84
onClipEvent (enterFrame) {
_root.EnemyX(_name, 4, math.max(5, 12 - int(_root.score / 200)), 4, 1);
}
Frame 85
gotoAndPlay (84);
Frame 87
gotoAndPlay (3);
getURL ("http://sess.net", "scorepage");
Frame 101
hiscore = score;
_root.pause = 0;
Instance of Symbol 237 MovieClip in Frame 101
onClipEvent (enterFrame) {
_root.hiscore = _root.score;
_root.xgame = "matrixbeta";
}
Symbol 12 MovieClip Frame 1
var component = _parent._parent;
component.registerSkinElement(shadow_mc, "shadow");
component.registerSkinElement(darkshadow_mc, "darkshadow");
component.registerSkinElement(highlight_mc, "highlight");
component.registerSkinElement(highlight3D_mc, "highlight3D");
Symbol 15 MovieClip Frame 1
var component = _parent._parent;
component.registerSkinElement(background_mc, "background");
Symbol 18 MovieClip Frame 1
var component = _parent._parent;
component.registerSkinElement(background_mc, "backgroundDisabled");
Symbol 20 MovieClip Frame 1
var component = _parent._parent;
component.registerSkinElement(background_mc, "backgroundDisabled");
Symbol 23 MovieClip Frame 1
var component = _parent._parent;
component.registerSkinElement(check_mc, "foregroundDisabled");
Symbol 26 MovieClip Frame 1
var component = _parent._parent;
component.registerSkinElement(check_mc, "check");
Symbol 27 MovieClip [fcb_states] Frame 1
stop();
Symbol 27 MovieClip [fcb_states] Frame 2
stop();
Symbol 27 MovieClip [fcb_states] Frame 3
stop();
Symbol 27 MovieClip [fcb_states] Frame 4
stop();
Symbol 27 MovieClip [fcb_states] Frame 5
stop();
Symbol 27 MovieClip [fcb_states] Frame 6
stop();
Symbol 30 MovieClip [FLabelSymbol] Frame 1
#initclip 2
_global.FLabelClass = function () {
if (this.hostComponent == undefined) {
this.hostComponent = ((this._parent.controller == undefined) ? (this._parent) : (this._parent.controller));
}
if (this.customTextStyle == undefined) {
if (this.hostComponent.textStyle == undefined) {
this.hostComponent.textStyle = new TextFormat();
}
this.textStyle = this.hostComponent.textStyle;
this.enable = true;
}
};
FLabelClass.prototype = new MovieClip();
Object.registerClass("FLabelSymbol", FLabelClass);
FLabelClass.prototype.setLabel = function (label) {
var val = this.hostComponent.styleTable.embedFonts.value;
if (val != undefined) {
this.labelField.embedFonts = val;
}
this.labelField.setNewTextFormat(this.textStyle);
this.labelField.text = label;
this.labelField._height = this.labelField.textHeight + 2;
};
FLabelClass.prototype.setSize = function (width) {
this.labelField._width = width;
};
FLabelClass.prototype.setEnabled = function (enable) {
this.enable = enable;
var tmpColor = this.hostComponent.styleTable[(enable ? "textColor" : "textDisabled")].value;
if (tmpColor == undefined) {
tmpColor = (enable ? 0 : 8947848);
}
this.setColor(tmpColor);
};
FLabelClass.prototype.getLabel = function () {
return(this.labelField.text);
};
FLabelClass.prototype.setColor = function (col) {
this.labelField.textColor = col;
};
#endinitclip
Symbol 31 MovieClip [FUIComponentSymbol] Frame 1
#initclip 1
function FUIComponentClass() {
this.init();
}
FUIComponentClass.prototype = new MovieClip();
FUIComponentClass.prototype.init = function () {
this.enable = true;
this.focused = false;
this.useHandCursor = false;
this._accImpl = new Object();
this._accImpl.stub = true;
this.styleTable = new Array();
if (_global.globalStyleFormat == undefined) {
_global.globalStyleFormat = new FStyleFormat();
globalStyleFormat.isGlobal = true;
_global._focusControl = new Object();
_global._focusControl.onSetFocus = function (oldFocus, newFocus) {
oldFocus.myOnKillFocus();
newFocus.myOnSetFocus();
};
Selection.addListener(_global._focusControl);
}
if (this._name != undefined) {
this._focusrect = false;
this.tabEnabled = true;
this.focusEnabled = true;
this.tabChildren = false;
this.tabFocused = true;
if (this.hostStyle == undefined) {
globalStyleFormat.addListener(this);
} else {
this.styleTable = this.hostStyle;
}
this.deadPreview._visible = false;
this.deadPreview._width = (this.deadPreview._height = 1);
this.methodTable = new Object();
this.keyListener = new Object();
this.keyListener.controller = this;
this.keyListener.onKeyDown = function () {
this.controller.myOnKeyDown();
};
this.keyListener.onKeyUp = function () {
this.controller.myOnKeyUp();
};
for (var i in this.styleFormat_prm) {
this.setStyleProperty(i, this.styleFormat_prm[i]);
}
}
};
FUIComponentClass.prototype.setEnabled = function (enabledFlag) {
this.enable = ((arguments.length > 0) ? (enabledFlag) : true);
this.tabEnabled = (this.focusEnabled = enabledFlag);
if ((!this.enable) && (this.focused)) {
Selection.setFocus(undefined);
}
};
FUIComponentClass.prototype.getEnabled = function () {
return(this.enable);
};
FUIComponentClass.prototype.setSize = function (w, h) {
this.width = w;
this.height = h;
this.focusRect.removeMovieClip();
};
FUIComponentClass.prototype.setChangeHandler = function (chng, obj) {
this.handlerObj = ((obj == undefined) ? (this._parent) : (obj));
this.changeHandler = chng;
};
FUIComponentClass.prototype.invalidate = function (methodName) {
this.methodTable[methodName] = true;
this.onEnterFrame = this.cleanUI;
};
FUIComponentClass.prototype.cleanUI = function () {
if (this.methodTable.setSize) {
this.setSize(this.width, this.height);
} else {
this.cleanUINotSize();
}
this.methodTable = new Object();
delete this.onEnterFrame;
};
FUIComponentClass.prototype.cleanUINotSize = function () {
for (var funct in this.methodTable) {
this[funct]();
}
};
FUIComponentClass.prototype.drawRect = function (x, y, w, h) {
var inner = this.styleTable.focusRectInner.value;
var outer = this.styleTable.focusRectOuter.value;
if (inner == undefined) {
inner = 16777215 /* 0xFFFFFF */;
}
if (outer == undefined) {
outer = 0;
}
this.createEmptyMovieClip("focusRect", 1000);
this.focusRect.controller = this;
this.focusRect.lineStyle(1, outer);
this.focusRect.moveTo(x, y);
this.focusRect.lineTo(x + w, y);
this.focusRect.lineTo(x + w, y + h);
this.focusRect.lineTo(x, y + h);
this.focusRect.lineTo(x, y);
this.focusRect.lineStyle(1, inner);
this.focusRect.moveTo(x + 1, y + 1);
this.focusRect.lineTo((x + w) - 1, y + 1);
this.focusRect.lineTo((x + w) - 1, (y + h) - 1);
this.focusRect.lineTo(x + 1, (y + h) - 1);
this.focusRect.lineTo(x + 1, y + 1);
};
FUIComponentClass.prototype.pressFocus = function () {
this.tabFocused = false;
this.focusRect.removeMovieClip();
Selection.setFocus(this);
};
FUIComponentClass.prototype.drawFocusRect = function () {
this.drawRect(-2, -2, this.width + 4, this.height + 4);
};
FUIComponentClass.prototype.myOnSetFocus = function () {
this.focused = true;
Key.addListener(this.keyListener);
if (this.tabFocused) {
this.drawFocusRect();
}
};
FUIComponentClass.prototype.myOnKillFocus = function () {
this.tabFocused = true;
this.focused = false;
this.focusRect.removeMovieClip();
Key.removeListener(this.keyListener);
};
FUIComponentClass.prototype.executeCallBack = function () {
this.handlerObj[this.changeHandler](this);
};
FUIComponentClass.prototype.updateStyleProperty = function (styleFormat, propName) {
this.setStyleProperty(propName, styleFormat[propName], styleFormat.isGlobal);
};
FUIComponentClass.prototype.setStyleProperty = function (propName, value, isGlobal) {
if (value == "") {
return(undefined);
}
var tmpValue = parseInt(value);
if (!isNaN(tmpValue)) {
value = tmpValue;
}
var global = ((arguments.length > 2) ? (isGlobal) : false);
if (this.styleTable[propName] == undefined) {
this.styleTable[propName] = new Object();
this.styleTable[propName].useGlobal = true;
}
if (this.styleTable[propName].useGlobal || (!global)) {
this.styleTable[propName].value = value;
if (this.setCustomStyleProperty(propName, value)) {
} else if (propName == "embedFonts") {
this.invalidate("setSize");
} else if (propName.subString(0, 4) == "text") {
if (this.textStyle == undefined) {
this.textStyle = new TextFormat();
}
var textProp = propName.subString(4, propName.length);
this.textStyle[textProp] = value;
this.invalidate("setSize");
} else {
for (var j in this.styleTable[propName].coloredMCs) {
var myColor = new Color(this.styleTable[propName].coloredMCs[j]);
if (this.styleTable[propName].value == undefined) {
var myTObj = {ra:"100", rb:"0", ga:"100", gb:"0", ba:"100", bb:"0", aa:"100", ab:"0"};
myColor.setTransform(myTObj);
} else {
myColor.setRGB(value);
}
}
}
this.styleTable[propName].useGlobal = global;
}
};
FUIComponentClass.prototype.registerSkinElement = function (skinMCRef, propName) {
if (this.styleTable[propName] == undefined) {
this.styleTable[propName] = new Object();
this.styleTable[propName].useGlobal = true;
}
if (this.styleTable[propName].coloredMCs == undefined) {
this.styleTable[propName].coloredMCs = new Object();
}
this.styleTable[propName].coloredMCs[skinMCRef] = skinMCRef;
if (this.styleTable[propName].value != undefined) {
var myColor = new Color(skinMCRef);
myColor.setRGB(this.styleTable[propName].value);
}
};
_global.FStyleFormat = function () {
this.nonStyles = {listeners:true, isGlobal:true, isAStyle:true, addListener:true, removeListener:true, nonStyles:true, applyChanges:true};
this.listeners = new Object();
this.isGlobal = false;
if (arguments.length > 0) {
for (var i in arguments[0]) {
this[i] = arguments[0][i];
}
}
};
_global.FStyleFormat.prototype = new Object();
FStyleFormat.prototype.addListener = function () {
var arg = 0;
while (arg < arguments.length) {
var mcRef = arguments[arg];
this.listeners[arguments[arg]] = mcRef;
for (var i in this) {
if (this.isAStyle(i)) {
mcRef.updateStyleProperty(this, i.toString());
}
}
arg++;
}
};
FStyleFormat.prototype.removeListener = function (component) {
this.listeners[component] = undefined;
for (var prop in this) {
if (this.isAStyle(prop)) {
if (component.styleTable[prop].useGlobal == this.isGlobal) {
component.styleTable[prop].useGlobal = true;
var value = (this.isGlobal ? undefined : (globalStyleFormat[prop]));
component.setStyleProperty(prop, value, true);
}
}
}
};
FStyleFormat.prototype.applyChanges = function () {
var count = 0;
for (var i in this.listeners) {
var component = this.listeners[i];
if (arguments.length > 0) {
var j = 0;
while (j < arguments.length) {
if (this.isAStyle(arguments[j])) {
component.updateStyleProperty(this, arguments[j]);
}
j++;
}
} else {
for (var j in this) {
if (this.isAStyle(j)) {
component.updateStyleProperty(this, j.toString());
}
}
}
}
};
FStyleFormat.prototype.isAStyle = function (name) {
return((this.nonStyles[name] ? false : true));
};
#endinitclip
Symbol 40 MovieClip [bulle] Frame 1
Symbol 40 MovieClip [bulle] Frame 2
stop();
Instance of Symbol 45 MovieClip in Symbol 48 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.pause == 1) {
play();
} else {
stop();
}
}
Symbol 52 MovieClip [FBoundingBoxSymbol] Frame 1
var component = _parent;
component.registerSkinElement(boundingBox, "background");
stop();
Symbol 52 MovieClip [FBoundingBoxSymbol] Frame 2
component.registerSkinElement(boundingBox2, "backgroundDisabled");
stop();
Symbol 55 MovieClip [FCheckBoxSymbol] Frame 1
#initclip 3
function FCheckBoxClass() {
this.init();
}
FCheckBoxClass.prototype = new FUIComponentClass();
Object.registerClass("FCheckBoxSymbol", FCheckBoxClass);
FCheckBoxClass.prototype.init = function () {
super.setSize(this._width, this._height);
this.boundingBox_mc.unloadMovie();
this.attachMovie("fcb_hitArea", "fcb_hitArea_mc", 1);
this.attachMovie("fcb_states", "fcb_states_mc", 2);
this.attachMovie("FLabelSymbol", "fLabel_mc", 3);
super.init();
this.setChangeHandler(this.changeHandler);
this._xscale = 100;
this._yscale = 100;
this.setSize(this.width, this.height);
if (this.initialValue == undefined) {
this.setCheckState(false);
} else {
this.setCheckState(this.initialValue);
}
if (this.label != undefined) {
this.setLabel(this.label);
}
this.ROLE_SYSTEM_CHECKBUTTON = 44;
this.STATE_SYSTEM_CHECKED = 16;
this.EVENT_OBJECT_STATECHANGE = 32778;
this.EVENT_OBJECT_NAMECHANGE = 32780;
this._accImpl.master = this;
this._accImpl.stub = false;
this._accImpl.get_accRole = this.get_accRole;
this._accImpl.get_accName = this.get_accName;
this._accImpl.get_accState = this.get_accState;
this._accImpl.get_accDefaultAction = this.get_accDefaultAction;
this._accImpl.accDoDefaultAction = this.accDoDefaultAction;
};
FCheckBoxClass.prototype.setLabelPlacement = function (pos) {
this.setLabel(this.getLabel());
this.txtFormat(pos);
var halfLabelH = (this.fLabel_mc._height / 2);
var halfFrameH = (this.fcb_states_mc._height / 2);
var vertCenter = (halfFrameH - halfLabelH);
var checkWidth = this.fcb_states_mc._width;
var frame = this.fcb_states_mc;
var label = this.fLabel_mc;
var w = 0;
if (frame._width > this.width) {
w = 0;
} else {
w = this.width - frame._width;
}
this.fLabel_mc.setSize(w);
if ((pos == "right") || (pos == undefined)) {
this.labelPlacement = "right";
this.fcb_states_mc._x = 0;
this.fLabel_mc._x = checkWidth;
this.txtFormat("left");
} else if (pos == "left") {
this.labelPlacement = "left";
this.fLabel_mc._x = 0;
this.fcb_states_mc._x = this.width - checkWidth;
this.txtFormat("right");
}
this.fLabel_mc._y = vertCenter;
this.fcb_hitArea_mc._y = vertCenter;
};
FCheckBoxClass.prototype.txtFormat = function (pos) {
var txtS = this.textStyle;
var sTbl = this.styleTable;
txtS.align = ((sTbl.textAlign.value == undefined) ? ((txtS.align = pos)) : undefined);
txtS.leftMargin = ((sTbl.textLeftMargin.value == undefined) ? ((txtS.leftMargin = 0)) : undefined);
txtS.rightMargin = ((sTbl.textRightMargin.value == undefined) ? ((txtS.rightMargin = 0)) : undefined);
if (this.flabel_mc._height > this.height) {
super.setSize(this.width, this.flabel_mc._height);
} else {
super.setSize(this.width, this.height);
}
this.fLabel_mc.labelField.setTextFormat(this.textStyle);
this.setEnabled(this.enable);
};
FCheckBoxClass.prototype.setHitArea = function (w, h) {
var hit = this.fcb_hitArea_mc;
this.hitArea = hit;
if (this.fcb_states_mc._width > w) {
hit._width = this.fcb_states_mc._width;
} else {
hit._width = w;
}
hit._visible = false;
if (arguments.length > 1) {
hit._height = h;
}
};
FCheckBoxClass.prototype.setSize = function (w) {
this.setLabel(this.getLabel());
this.setLabelPlacement(this.labelPlacement);
if (this.fcb_states_mc._height < this.flabel_mc.labelField._height) {
super.setSize(w, this.flabel_mc.labelField._height);
}
this.setHitArea(this.width, this.height);
this.setLabelPlacement(this.labelPlacement);
};
FCheckBoxClass.prototype.drawFocusRect = function () {
this.drawRect(-2, -2, this._width + 6, this._height - 1);
};
FCheckBoxClass.prototype.onPress = function () {
this.pressFocus();
_root.focusRect.removeMovieClip();
var states = this.fcb_states_mc;
if (this.getValue()) {
states.gotoAndStop("checkedPress");
} else {
states.gotoAndStop("press");
}
};
FCheckBoxClass.prototype.onRelease = function () {
this.fcb_states_mc.gotoAndStop("up");
this.setValue(!this.checked);
};
FCheckBoxClass.prototype.onReleaseOutside = function () {
var states = this.fcb_states_mc;
if (this.getValue()) {
states.gotoAndStop("checkedEnabled");
} else {
states.gotoAndStop("up");
}
};
FCheckBoxClass.prototype.onDragOut = function () {
var states = this.fcb_states_mc;
if (this.getValue()) {
states.gotoAndStop("checkedEnabled");
} else {
states.gotoAndStop("up");
}
};
FCheckBoxClass.prototype.onDragOver = function () {
var states = this.fcb_states_mc;
if (this.getValue()) {
states.gotoAndStop("checkedPress");
} else {
states.gotoAndStop("press");
}
};
FCheckBoxClass.prototype.setValue = function (checkedValue) {
if (checkedValue || (checkedValue == undefined)) {
this.setCheckState(checkedValue);
} else if (checkedValue == false) {
this.setCheckState(checkedValue);
}
this.executeCallBack();
if (Accessibility.isActive()) {
Accessibility.sendEvent(this, 0, this.EVENT_OBJECT_STATECHANGE, true);
}
};
FCheckBoxClass.prototype.setCheckState = function (checkedValue) {
var states = this.fcb_states_mc;
if (this.enable) {
this.flabel_mc.setEnabled(true);
if (checkedValue || (checkedValue == undefined)) {
states.gotoAndStop("checkedEnabled");
this.enabled = true;
this.checked = true;
} else {
states.gotoAndStop("up");
this.enabled = true;
this.checked = false;
}
} else {
this.flabel_mc.setEnabled(false);
if (checkedValue || (checkedValue == undefined)) {
states.gotoAndStop("checkedDisabled");
this.enabled = false;
this.checked = true;
} else {
states.gotoAndStop("uncheckedDisabled");
this.enabled = false;
this.checked = false;
this.focusRect.removeMovieClip();
}
}
};
FCheckBoxClass.prototype.getValue = function () {
return(this.checked);
};
FCheckBoxClass.prototype.setEnabled = function (enable) {
if ((enable == true) || (enable == undefined)) {
this.enable = true;
Super.setEnabled(true);
} else {
this.enable = false;
Super.setEnabled(false);
}
this.setCheckState(this.checked);
};
FCheckBoxClass.prototype.getEnabled = function () {
return(this.enable);
};
FCheckBoxClass.prototype.setLabel = function (label) {
this.fLabel_mc.setLabel(label);
this.txtFormat();
if (Accessibility.isActive()) {
Accessibility.sendEvent(this, 0, this.EVENT_OBJECT_NAMECHANGE);
}
};
FCheckBoxClass.prototype.getLabel = function () {
return(this.fLabel_mc.labelField.text);
};
FCheckBoxClass.prototype.setTextColor = function (color) {
this.fLabel_mc.labelField.textColor = color;
};
FCheckBoxClass.prototype.myOnKeyDown = function () {
if (((Key.getCode() == 32) && (this.pressOnce == undefined)) && (this.enabled == true)) {
this.setValue(!this.getValue());
this.pressOnce = true;
}
};
FCheckBoxClass.prototype.myOnKeyUp = function () {
if (Key.getCode() == 32) {
this.pressOnce = undefined;
}
};
FCheckBoxClass.prototype.get_accRole = function (childId) {
return(this.master.ROLE_SYSTEM_CHECKBUTTON);
};
FCheckBoxClass.prototype.get_accName = function (childId) {
return(this.master.getLabel());
};
FCheckBoxClass.prototype.get_accState = function (childId) {
if (this.master.getValue()) {
return(this.master.STATE_SYSTEM_CHECKED);
}
return(0);
};
FCheckBoxClass.prototype.get_accDefaultAction = function (childId) {
if (this.master.getValue()) {
return("UnCheck");
}
return("Check");
};
FCheckBoxClass.prototype.accDoDefaultAction = function (childId) {
this.master.setValue(!this.master.getValue());
};
#endinitclip
boundingBox_mc._visible = false;
deadPreview._visible = false;
Symbol 69 MovieClip Frame 5
if (random(50) == 1) {
g = 7;
} else {
gotoAndPlay (1);
}
Symbol 87 Button
on (press) {
gotoAndStop (14);
}
Symbol 88 Button
on (press) {
gotoAndStop (7);
}
Symbol 89 Button
on (press) {
gotoAndPlay (21);
}
Symbol 139 MovieClip Frame 1
stop();
Instance of Symbol 124 MovieClip in Symbol 139 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.pause == 1) {
play();
} else {
stop();
}
}
Symbol 139 MovieClip Frame 8
Symbol 139 MovieClip Frame 21
life = 1;
Symbol 143 MovieClip Frame 1
if (_root.initman < 1) {
_root.initman = 1;
gotoAndPlay (18);
}
Symbol 143 MovieClip Frame 18
stop();
hurt = 0;
_root.shoot = 0;
Symbol 143 MovieClip Frame 23
gotoAndPlay (18);
Symbol 143 MovieClip Frame 27
hurt = 1;
Symbol 143 MovieClip Frame 28
call("hurth");
Symbol 143 MovieClip Frame 30
call("hurth");
Symbol 143 MovieClip Frame 32
call("hurth");
Symbol 143 MovieClip Frame 34
call("hurth");
Symbol 143 MovieClip Frame 36
call("hurth");
Symbol 143 MovieClip Frame 38
call("hurth");
Symbol 143 MovieClip Frame 40
call("hurth");
Symbol 143 MovieClip Frame 42
if (_root.pause == 1) {
_x = (_x + (random(30) - 15));
}
Symbol 152 MovieClip Frame 1
stop();
hit = 0;
Symbol 152 MovieClip Frame 2
play();
hit = 1;
play();
Symbol 152 MovieClip Frame 3
play();
Symbol 152 MovieClip Frame 4
play();
hit = 2;
Symbol 152 MovieClip Frame 5
play();
Symbol 152 MovieClip Frame 6
play();
Symbol 152 MovieClip Frame 7
play();
Symbol 152 MovieClip Frame 8
play();
Symbol 152 MovieClip Frame 9
hit = 0;
Symbol 154 Button
on (press) {
_root.gotoAndStop(1);
}
Instance of Symbol 115 MovieClip in Symbol 156 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.pause == 1) {
play();
} else {
stop();
}
}
Instance of Symbol 143 MovieClip "man" in Symbol 156 MovieClip Frame 1
onClipEvent (enterFrame) {
_root.Bloodman(_name);
}
Symbol 176 MovieClip Frame 6
stop();
Instance of Symbol 115 MovieClip in Symbol 180 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.pause == 1) {
play();
} else {
stop();
}
}
Instance of Symbol 176 MovieClip in Symbol 180 MovieClip Frame 6
onClipEvent (enterFrame) {
_x = (random(100) - 70);
_y = (random(100) - 50);
}
Symbol 180 MovieClip Frame 14
life = 1;
Symbol 188 MovieClip Frame 20
stop();
Symbol 205 MovieClip Frame 1
stop();
Symbol 205 MovieClip Frame 2
stop();
Symbol 224 Button
on (press) {
function movebuilds(pname, name, type) {
if (_root.map[pname][name].asd < 1) {
_root.map[pname][name].asd = 1;
_root.map[pname][name]._visible = 0;
}
with (_root.map[pname][name]) {
if (_root.map[pname]._visible == 1) {
if (type == 1) {
_yscale = (-((_root.map[pname]._y - _root.map.man1._y) / 2.3)) + 50;
_root.map[pname][name].gotoandstop(int(150 + (int(_root.map[pname]._x - _root.map.man1.myx) / 4)));
}
if (type == 3) {
_yscale = (-((_root.map[pname]._y - _root.map.man1._y) / 2.3)) - 50;
_root.map[pname][name].gotoandstop(int(150 + (int(_root.map[pname]._x - _root.map.man1.myx) / 4)));
}
if (type == 2) {
_yscale = ((_root.map[pname]._x - _root.map.man1.myx) / 2.3) + 50;
_root.map[pname][name].gotoandstop(int(150 + (int(_root.map[pname]._y - _root.map.man1.myy) / 4)));
}
if (type == 4) {
_yscale = ((_root.map[pname]._x - _root.map.man1.myx) / 2.3) - 50;
_root.map[pname][name].gotoandstop(int(150 + (int(_root.map[pname]._y - _root.map.man1.myy) / 4)));
}
} else {
_visible = 0;
}
if (((((_yscale < 0) and (type == 1)) or ((_yscale > 0) and (type == 3))) or ((_yscale < 0) and (type == 2))) or ((_yscale > 0) and (type == 4))) {
_visible = 1;
} else {
_visible = 0;
}
}
}
xxo = _root.xgame.charAt(3);
xxxo = _root.xgame.charAt(1);
xxxxo = _root.xgame.charAt(2);
xxxxxo = _root.xgame.charAt(0);
String.prototype.sendscorex = function () {
var temp;
var z = (this.length - 1);
while (z > -1) {
temp = temp + this.charAt(z);
z--;
}
return(temp);
};
String.prototype.xxxxx = function (xx, xxx) {
return(this.split(xx).join(xxx));
};
String.prototype.zzz = function (zz) {
return(random(123123));
};
_root.mystring = String((_root.hiscore * 9000) + 9321);
_root.mynewstring = _root.mystring.sendscorex();
trace(_root.mynewstring);
_root.mynewstring = Number(_root.mynewstring);
_root.mynewstring = String(_root.mynewstring);
trace(_root.mynewstring);
_root.thiscore = Number(_root.mynewstring);
trace(_root.thiscore);
axx = new Array("xxxxx", "xxx", "xxx", "xxx", "xxxxxxx", "xx", "xxxxxxxx", "xxxxuxxx", "xoxxx", "xxxxxxsxx");
axxx = new Array("xxxxxx", "xixxx", "xxexxxx", "xxxxxxxxxx", "xxxox", "xxxxxa", "xxxxxrx", "xxxx", "xxxxxxxxxx", "xxkxxxx");
axxxx = new Array("userll", "setll", "hourll", "dayll", "secll", "minll", "yearll", "ipll", "scorell", "sessionll");
aax = new Array("xxxx", "xxixx", "oxxxxx", "xwxxxx", "xxxx", "nxxx", "xxxyxxx", "xxxxuxxx", "xoxxxxxx", "xxxxxxsxx");
aaxx = new Array("xxxxx", "xxxxxx", "xxexxx", "xwxxxx", "xxxxx", "xxxxxa", "xxxxx", "xxxx", "xexxx", "xxkxxxx");
a = new Array(random(234), random(234), random(234), random(234));
xxxx = 10;
_root.thiscore = String(_root.thiscore);
_root.thiscore = _root.thiscore.split("");
_root.thiscore = _root.thiscore.join("_");
while (xxxx > -1) {
xxxx--;
_level0.thiscore = _root.thiscore.xxxxx("" + xxxx, axxxx[xxxx]);
_root.thisscore = _root.thisscore.xxxxxx("" + xxxx, axx[xxxx]);
_level0.thisscore = _root.thisscore.xxxxxx("" + xxxx, axxx[xxxx]);
_root.thisscore = _root.thisscore.xxxxxx("" + xxxx, axxx[xxxx]);
_level0.thisscore = _root.thisscore.xxxxxx("" + xxxx, axx[xxxx]);
}
trace(_root.thiscore);
var count = 0;
_root.thiscore = _root.thiscore.split("_");
trace("ARRAY 1: " + _root.thiscore);
this.alternateArray = new Array();
var i = 0;
while (i < _root.thiscore.length) {
this.alternateArray[count] = _root.thiscore[i];
count++;
this.alternateArray[count] = random(93) + 5;
count++;
i++;
}
_root.thiscore = this.alternateArray.join("");
_root.thiscore = String(_root.thiscore);
_root.thiscore = (((xxo + xxxo) + xxxxo) + xxxxxo) + _root.thiscore;
_root.hiscores = _root.thiscore;
getURL ((((((("http://sess.net/scoresender.php?hiscore=" + _root.hiscore) + "&xname=") + _root.xname) + "&xgame=") + _root.xgame) + "&date=") + _root.hiscores, "scorepage");
_root.tempxx = "";
_root.tempxxx = 0;
_root.tempxxxx = random(7);
while (_root.tempxxx < _root.tempxxxx) {
_root.tempxxx++;
_root.tempxx = _root.tempxx + random(10);
}
play();
}
Symbol 237 MovieClip Frame 4
stop();
if (_root.hiscore > _root.highestscore) {
_root.highestscore = _root.hiscore;
}
Symbol 237 MovieClip Frame 15
stop();
Symbol 238 Button
on (press) {
gotoAndStop (3);
}