[Tools][Expand/Collapse All]Note that automatic extraction of ActionScript 3 is still pretty much unsupported by swfchan. AS1/AS2 works okay most of the time.Frame 1 (95 B)
percent = Math.floor((getBytesLoaded() / getBytesTotal()) * 100);
myout.text = "%" + percent;
Frame 2 (76 B)
if (percent >= 100) {
gotoAndPlay (3);
} else {
gotoAndPlay (1);
}
Frame 3 (23 B)
Set("/:InitsDone", 0);
Frame 768 (20 B)
gotoAndPlay (1538);
Frame 1538 (32 B)
stop();
Set("/:InitsDone", 0);
Frame 1539 (4.22 KiB) ●
function pause() {
if (/:Paused == 0) {
gotoAndStop (1540);
Set("/:Paused", 1);
_root.rof0.stop("rof0");
_root.rof1.stop("rof1");
_root.rof2.stop("rof2");
_root.rof3.stop("rof3");
_root.rof4.stop("rof4");
_root.hum.stop("hum");
} else {
if (/:TweakGotArray[16] == 1) {
_root.hum.start(0, 9999);
}
gotoAndStop (1539);
Set("/:Paused", 0);
if (((/:GunShooting == 1) && (/:Reloading == 0)) && (/:GunOverHeated == 0)) {
if (/:rof == 0) {
_root.rof0.start(0, 999);
} else if (/:rof == 1) {
_root.rof1.start(0, 999);
} else if (/:rof == 2) {
_root.rof2.start(0, 999);
} else if (/:rof == 3) {
_root.rof3.start(0, 999);
} else if (/:rof == 4) {
_root.rof4.start(0, 999);
}
}
}
}
function die() {
_root.attachMovie("blank", "dead", 1001);
_root.attachMovie("blank", "power1", 601);
_root.attachMovie("blank", "power2", 602);
_root.attachMovie("blank", "power3", 603);
_root.attachMovie("blank", "power4", 604);
_root.attachMovie("blank", "tractorzone", 270);
_root.attachMovie("blank", "staticzone", 250);
_root.attachMovie("blank", "bulletzone", 200);
_root.attachMovie("blank", "spritezone", 400);
_root.attachMovie("blank", "enemyzone", 100);
_root.attachMovie("blank", "powerupzone", 90);
_root.attachMovie("blank", "gun", 300);
_root.attachMovie("blank", "gunstand", 299);
_root.attachMovie("blank", "taval", 500);
_root.attachMovie("blank", "tweakmenu", 510);
gotoAndStop (1541);
}
stop();
function MakeEnemy1(MyX, MyY, special) {
i = 0;
while ((/:EnemyArray[i] != 0) && (i < 15)) {
i++;
}
if (special > 0) {
/:special++;
i = /:special;
}
if (special > 14) {
Set("/:special", 0);
}
if (i != 15) {
/:EnemyArray[i] = 1;
_root.enemyzone.attachMovie("enemy1", "enemy" + i, i);
setProperty("_root.enemyzone.enemy" + i, _x , MyX);
setProperty("_root.enemyzone.enemy" + i, _y , MyY);
Set(("_root.enemyzone.enemy" + i) + ":health", /:Enemy1Health);
Set(("_root.enemyzone.enemy" + i) + ":special", special);
Set(("_root.enemyzone.enemy" + i) + ":i", i);
}
}
function MakePowerup(MyX, MyY, Type) {
i = 0;
while ((/:PowerUpArray[i] != 0) && (i < 4)) {
i++;
}
if (i != 4) {
/:PowerUpArray[i] = 1;
_root.powerupzone.attachMovie("powerup", "powerup" + i, i);
setProperty("_root.powerupzone.powerup" + i, _x , MyX);
setProperty("_root.powerupzone.powerup" + i, _y , MyY);
Set(("_root.powerupzone.powerup" + i) + ":type", Type);
Set(("_root.powerupzone.powerup" + i) + ":i", i);
}
}
function LUpTest() {
if (/:XPER > /:LevelMax[/:XPLevel]) {
/:XPLevel++;
/:TweaksAvaliable++;
thave = -1;
done = 0;
do {
randomtweak = random(21);
} while (/:TweakValueArray[randomtweak] == 1);
do {
thave++;
if (/:TweakHaveArray[thave] == -1) {
/:TweakHaveArray[thave] = randomtweak;
/:TweakValueArray[randomtweak] = 1;
done = 1;
}
/:tweakstotal++;
} while (((/:TweakHaveArray[thave] > -1) && (thave < 21)) && (done == 0));
}
_root.experience._xscale = ((/:XPER - /:LevelMax[/:XPLevel - 1]) / (/:LevelMax[/:XPLevel] - /:LevelMax[/:XPLevel - 1])) * 100;
}
function maketractor(make) {
if (make == 1) {
_root.tractorzone.attachMovie("tractor", "tractor", 20);
setProperty(_root.tractorzone.tractor, _x , _root.gun._x);
setProperty(_root.tractorzone.tractor, _y , _root.gun._y);
}
if (make == 0) {
_root.tractorzone.attachMovie("blank", "tractor", 20);
setProperty(_root.tractorzone.tractor, _x , _root.gun._x);
setProperty(_root.tractorzone.tractor, _y , _root.gun._y);
}
}
function makebullet(MyX, MyY, Shell) {
/:bulletnumber++;
_root.bulletzone.attachMovie("bullet", "bullet" + /:bulletnumber, /:bulletnumber);
setProperty("_root.bulletzone.bullet" + /:bulletnumber, _x , _root.gun._x);
setProperty("_root.bulletzone.bullet" + /:bulletnumber, _y , _root.gun._y);
if (Shell == 1) {
/:bulletnumber++;
_root.spritezone.attachMovie("shell", "shell" + /:bulletnumber, /:bulletnumber);
setProperty("_root.spritezone.shell" + /:bulletnumber, _x , _root.gun._x);
setProperty("_root.spritezone.shell" + /:bulletnumber, _y , _root.gun._y);
}
}
Instance of Symbol 175 MovieClip [blank] in Frame 1539 (2.46 KiB) ●
onClipEvent (keyDown) {
if (/:dead == 0) {
Set("/:keydown", Key.getCode());
if (/:keydown == 16) {
Set("/:Ammo", -1);
} else if (/:keydown == 37) {
Set("/:GunRotatingLeft", 1);
Set("/:GunRotatingRight", 0);
} else if (/:keydown == 39) {
Set("/:GunRotatingRight", 1);
Set("/:GunRotatingLeft", 0);
} else if (/:keydown == 32) {
if (((/:Reloading == 1) && (/:TweakGotArray[17] == 1)) && (/:AnxiousReloaderSwitch == 0)) {
Set("/:AnxiousReloaderSwitch", 1);
Set("/:ReloadingTimer", /:ReloadingTimer + 1);
}
if ((/:GunShooting == 0) && (/:paused == 1)) {
Set("/:GunShooting", 1);
} else if (/:GunShooting == 0) {
Set("/:rofpos", 0);
Set("/:GunShooting", 1);
if ((/:Reloading == 0) && (/:GunOverHeated == 0)) {
if (/:rof == 0) {
_root.rof0.start(0, 999);
} else if ((/:rof == 1) && (/:Reloading == 0)) {
_root.rof1.start(0, 999);
} else if ((/:rof == 2) && (/:Reloading == 0)) {
_root.rof2.start(0, 999);
} else if ((/:rof == 3) && (/:Reloading == 0)) {
_root.rof3.start(0, 999);
} else if ((/:rof == 4) && (/:Reloading == 0)) {
_root.rof4.start(0, 999);
}
}
}
} else if (/:keydown == 84) {
_root.MakeEnemy1(random(1000) - 250, -30);
} else if (/:keydown == 17) {
if ((/:paused == 1) && (/:Tractorbeaming == 0)) {
Set("/:Tractorbeaming", 1);
} else if ((/:Tractorbeaming == 0) && (/:paused == 0)) {
Set("/:Tractorbeaming", 1);
_root.maketractor(1);
}
}
}
}
onClipEvent (keyUp) {
if (/:dead == 0) {
Set("/:keyup", Key.getCode());
if (/:keyup == 37) {
Set("/:GunRotatingLeft", 0);
} else if (/:keyup == 39) {
Set("/:GunRotatingRight", 0);
} else if ((/:keyup == 32) && (/:GunShooting == 1)) {
if (/:AnxiousReloaderSwitch == 1) {
Set("/:AnxiousReloaderSwitch", 0);
}
if (/:Paused == 0) {
Set("/:GunShooting", 0);
if ((((/:rof != /:shotgunspeed) && (/:Reloading == 0)) && (/:GunOverHeated == 0)) && (/:rof != 5)) {
_root.rof0.stop("rof0");
_root.rof1.stop("rof1");
_root.rof2.stop("rof2");
_root.rof3.stop("rof3");
_root.rof4.stop("rof4");
_root.shotfadeSound.start(0, 1);
}
} else {
Set("/:GunShooting", 0);
}
} else if ((/:keyup == 17) && (/:Tractorbeaming == 1)) {
Set("/:Tractorbeaming", 0);
Set("/:TargetLock", -1);
Set("/:TargetType", "none");
}
}
}
Instance of Symbol 175 MovieClip [blank] in Frame 1539 (19.81 KiB) ● ● ●
onClipEvent (load) {
if (/:InitsDone == 0) {
Set("/:special", 0);
Set("/:lucky", 1);
Set("/:enemybasespeed", 0);
Set("/:deadtimer", 120);
Set("/:shotoverheat", 0);
Set("/:dead", 0);
Set("/:health", 100);
Set("/:realpaused", -1);
Set("/:fakepaused", -1);
Set("/:sdynamic", 0);
Set("/:plasmabullets", 0);
Set("/:uberbullets", 0);
Set("/:shrooms", 0);
Set("/:nukelevel", 0);
Set("/:TargetX", -1);
Set("/:TargetY", -1);
Set("/:TargetLock", -1);
Set("/:TargetType", "none");
Set("/:Tractorbeaming", 0);
Set("/:AnxiousReloaderSwitch", 0);
Set("/:Jinxtimer", -1);
Set("/:Reloading", 0);
Set("/:ReloadingTimer", 0);
Set("/:XPMultiplier", 1);
Set("/:ConstantXP", 0);
Set("/:GunRotationSpeedMultiplier", 1);
Set("/:DamageMultiplier", 1);
Set("/:DamageBase", 10);
Set("/:Ammo", 200);
Set("/:AmmoBase", 200);
Set("/:AmmoMultiplier", 1);
Set("/:GunShotSpeedBase", 8.5);
Set("/:GunShotSpeedMultiplier", 1);
Set("/:GunReloadSpeed", 2);
Set("/:GunReloadSpeedBase", 2);
Set("/:GunReloadSpeedMultiplier", 1);
Set("/:GunAccuracyBase", 10);
Set("/:GunAccuracyMultiplier", 1);
Set("/:shotgunspeed", 17);
enemytrigger = 0;
Set("/:TimeElapsed", 0);
Set("/:EnemyArray", [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]);
Set("/:PowerUpArray", [0, 0, 0, 0]);
Set("/:PowerUpHaveArray", [0, 0, 0, 0, 0, 0]);
Set("/:PowerUpHaveIsArray", [0, 0, 0, 0, 0, 0]);
Set("/:TweakHaveArray", [-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1]);
Set("/:TweakValueArray", [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]);
Set("/:TweakGotArray", [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]);
Set("/:TweakNamesArray", ["0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0"]);
/:TweakNamesArray[0] = "100 XP";
/:TweakNamesArray[1] = "50/50";
/:TweakNamesArray[2] = "Accuracy";
/:TweakNamesArray[3] = "Fast Reload";
/:TweakNamesArray[4] = "Fast Shot";
/:TweakNamesArray[5] = "Radioactive";
/:TweakNamesArray[6] = "FireStarter";
/:TweakNamesArray[7] = "Final Revenge";
/:TweakNamesArray[8] = "More Ammo";
/:TweakNamesArray[9] = "Faster Rotation Speed";
/:TweakNamesArray[10] = "Lucky (more bonuses)";
/:TweakNamesArray[11] = "Auto Xp";
/:TweakNamesArray[12] = "Doctor";
/:TweakNamesArray[13] = "666 Points, but you die";
/:TweakNamesArray[14] = "Frozen Stare";
/:TweakNamesArray[15] = "Tweak Expert";
/:TweakNamesArray[16] = "Electric Static";
/:TweakNamesArray[17] = "Anxious Loader";
/:TweakNamesArray[18] = "Big Explosions";
/:TweakNamesArray[19] = "Infernal Contract";
/:TweakNamesArray[20] = "Jinxed";
Set("/:TweaksTriggered", 0);
tt = 0;
thave = 0;
thaverandom = 0;
done = 0;
truerandom = 0;
while (tt < 5) {
do {
randomtweak = random(21);
} while (/:TweakValueArray[randomtweak] == 1);
do {
if (/:TweakHaveArray[thave] == -1) {
/:TweakHaveArray[thave] = randomtweak;
/:TweakValueArray[randomtweak] = 1;
done = 1;
}
thave++;
} while (((/:TweakHaveArray[thave] > -1) && (thave < 21)) && (done == 0));
done = 0;
tt++;
}
Set("/:Enemy1Health", 10);
Set("/:GunShooting", 0);
Set("/:XPER", 0);
Set("/:XPLevel", 1);
Set("/:LevelMax", [0, "100", "300", "600", "1400", "2300", "3300", "4400", "5600", "6700", "7800", "8900", "12000"]);
Set("/:Paused", 0);
Set("/:InitsDone", 1);
Set("/:GunOverHeated", 0);
_root.heat._xscale = 0;
_root.xper._xscale = 0;
Set("/:GunAccuracy", 5);
Set("/:GunCoolingSpeed", 0.5);
Set("/:GunHeatingSpeed", 1.7);
Set("/:rofpos", 0);
Set("/:floor", 580);
Set("/:BulletSpeed", 8.5);
Set("/:bulletnumber", 0);
Set("/:GunShooting", 0);
/:gun.rotating.right = 0;
/:gun.rotating.left = 0;
_root.attachMovie("powerupbar", "power1", 601);
_root.power1._x = 550;
_root.power1._y = 480;
tellTarget (_root.power1) {
time = 0;
maxtime = 100;
};
_root.attachMovie("powerupbar", "power2", 602);
_root.power2._x = 550;
_root.power2._y = 460;
tellTarget (_root.power2) {
time = 0;
maxtime = 100;
};
_root.attachMovie("powerupbar", "power3", 603);
_root.power3._x = 550;
_root.power3._y = 440;
tellTarget (_root.power3) {
time = 0;
maxtime = 100;
};
_root.attachMovie("powerupbar", "power4", 604);
_root.power4._x = 550;
_root.power4._y = 420;
tellTarget (_root.power4) {
time = 0;
maxtime = 100;
};
_root.attachMovie("blank", "tractorzone", 270);
_root.attachMovie("blank", "staticzone", 250);
_root.attachMovie("blank", "bulletzone", 200);
_root.attachMovie("blank", "spritezone", 400);
_root.attachMovie("blank", "enemyzone", 100);
_root.attachMovie("blank", "powerupzone", 90);
_root.attachMovie("gun", "gun", 300);
_root.attachMovie("gunstand", "gunstand", 299);
_root.attachMovie("taval", "taval", 500);
_root.attachMovie("tweakmenu", "tweakmenu", 510);
_root.tweakmenu._x = 275;
_root.tweakmenu._y = 680;
_root.taval._x = 550;
_root.taval._y = 520;
_root.gun._x = 275;
_root.gun._y = 550;
_root.gun._xscale = 20.5;
_root.gun._yscale = 20.5;
_root.gunstand._x = 275;
_root.gunstand._y = 550;
_root.gunstand._xscale = 20.5;
_root.gunstand._yscale = 20.5;
_root.nuke = new Sound();
_root.nuke.attachSound("nuke2");
_root.rof0 = new Sound();
_root.rof0.attachSound("rof0");
_root.rof1 = new Sound();
_root.rof1.attachSound("rof1");
_root.rof2 = new Sound();
_root.rof2.attachSound("rof2");
_root.rof3 = new Sound();
_root.rof3.attachSound("rof3");
_root.rof4 = new Sound();
_root.rof4.attachSound("rof4");
_root.rof5 = new Sound();
_root.rof5.attachSound("rof5");
_root.enemyboom = new Sound();
_root.enemyboom.attachSound("enemyboom");
_root.hiss = new Sound();
_root.hiss.attachSound("hiss");
_root.hum = new Sound();
_root.hum.attachSound("hum");
_root.zap = new Sound();
_root.zap.attachSound("zap");
_root.shotgun = new Sound();
_root.shotgun.attachSound("shotgun");
_root.reload = new Sound();
_root.reload.attachSound("reload");
_root.shotfadeSound = new Sound();
_root.shotfadeSound.attachSound("shotfade");
Set("/:rof", 4);
Set("/:GunAccuracyBase", 3);
}
_root.MakeEnemy1(random(1000) - 250, -30);
_root.MakeEnemy1(random(1000) - 250, -30);
_root.MakeEnemy1(random(1000) - 250, -30);
_root.MakeEnemy1(random(1000) - 250, -30);
_root.MakeEnemy1(random(1000) - 250, -30);
if (/:rush == 1) {
Set("/:AmmoMax", 8);
Set("/:Ammo", 8);
Set("/:rof", /:shotgunspeed);
}
}
onClipEvent (enterFrame) {
if (/:dead == 1) {
_root.rof0.stop("rof0");
_root.rof1.stop("rof1");
_root.rof2.stop("rof2");
_root.rof3.stop("rof3");
_root.rof4.stop("rof4");
/:deadtimer--;
if (/:deadtimer < 0) {
_root.die();
}
} else {
if (((/:TweakGotArray[7] == 1) && (/:health < 0)) && (/:dead == 0)) {
_root.spritezone.attachMovie("nuke", "nuke" + /:nukelevel, 3000);
setProperty("_root.spritezone.nuke" + /:nukelevel, _x , _root.gun._x);
setProperty("_root.spritezone.nuke" + /:nukelevel, _y , _root.gun._y);
setProperty("_root.spritezone.nuke" + /:nukelevel, _xscale , 300);
setProperty("_root.spritezone.nuke" + /:nukelevel, _yscale , 300);
_root.attachMovie("blank", "tractorzone", 270);
_root.attachMovie("blank", "staticzone", 250);
_root.attachMovie("dead", "dead", 1001);
tellTarget (_root.gunstand) {
gotoAndStop (2);
};
tellTarget (_root.gun) {
gotoAndPlay (2);
};
}
_root.healthbar._xscale = /:health;
if (/:health < 0) {
tellTarget (_root.gun) {
gotoAndPlay (2);
};
tellTarget (_root.gunstand) {
gotoAndStop (2);
};
_root.attachMovie("dead", "dead", 1001);
_root.attachMovie("blank", "tractorzone", 270);
_root.attachMovie("blank", "staticzone", 250);
_root.spritezone.attachMovie("nuke", "nuke" + /:nukelevel, 3000);
setProperty("_root.spritezone.nuke" + /:nukelevel, _x , _root.gun._x);
setProperty("_root.spritezone.nuke" + /:nukelevel, _y , _root.gun._y);
setProperty("_root.spritezone.nuke" + /:nukelevel, _xscale , 20);
setProperty("_root.spritezone.nuke" + /:nukelevel, _yscale , 20);
Set("/:dead", 1);
_root.healthbar._xscale = 0;
} else if (/:health > 100) {
_root.healthbar._xscale = 100;
}
if (/:rof == 0) {
Set("/:AmmoBase", 200);
Set("/:GunCoolingSpeed", 0.7);
Set("/:GunHeatingSpeed", 1.7);
_root.rof1.stop("rof1");
_root.rof2.stop("rof2");
_root.rof3.stop("rof3");
_root.rof4.stop("rof4");
} else if (/:rof == 1) {
Set("/:GunCoolingSpeed", 0.5);
Set("/:GunHeatingSpeed", 1.7);
Set("/:AmmoBase", 100);
_root.rof0.stop("rof0");
_root.rof2.stop("rof2");
_root.rof3.stop("rof3");
_root.rof4.stop("rof4");
} else if (/:rof == 2) {
Set("/:GunCoolingSpeed", 0.5);
Set("/:GunHeatingSpeed", 2);
Set("/:AmmoBase", 50);
_root.rof0.stop("rof0");
_root.rof1.stop("rof1");
_root.rof3.stop("rof3");
_root.rof4.stop("rof4");
} else if (/:rof == 3) {
Set("/:GunCoolingSpeed", 0.5);
Set("/:GunHeatingSpeed", 3);
Set("/:AmmoBase", 40);
_root.rof0.stop("rof0");
_root.rof1.stop("rof1");
_root.rof2.stop("rof2");
_root.rof4.stop("rof4");
} else if (/:rof == 4) {
Set("/:GunCoolingSpeed", 0.5);
Set("/:GunHeatingSpeed", 4);
Set("/:AmmoBase", 30);
_root.rof0.stop("rof0");
_root.rof1.stop("rof1");
_root.rof2.stop("rof2");
_root.rof3.stop("rof3");
} else if (/:rof == 5) {
Set("/:GunCoolingSpeed", 3);
Set("/:GunHeatingSpeed", 20);
Set("/:AmmoBase", 10);
_root.rof0.stop("rof0");
_root.rof1.stop("rof1");
_root.rof2.stop("rof2");
_root.rof3.stop("rof3");
_root.rof4.stop("rof4");
} else if (/:rof == /:shotgunspeed) {
Set("/:GunCoolingSpeed", 0.9);
Set("/:GunHeatingSpeed", 20);
Set("/:AmmoBase", 8);
_root.rof0.stop("rof0");
_root.rof1.stop("rof1");
_root.rof2.stop("rof2");
_root.rof3.stop("rof3");
_root.rof4.stop("rof4");
}
if ((/:uberbullets == 0) && (/:rof != 5)) {
Set("/:plasmabullets", 0);
}
Set("/:t1", /:PowerUpHaveArray[0]);
Set("/:t2", /:PowerUpHaveArray[1]);
Set("/:t3", /:PowerUpHaveArray[2]);
Set("/:t4", /:PowerUpHaveArray[3]);
Set("/:t5", /:PowerUpHaveArray[4]);
if (((/:Tractorbeaming == 1) && (/:TargetType == "enemy")) && (/:EnemyArray[/:TargetLock] == 0)) {
_root.tractorzone.clear();
_root.maketractor(1);
Set("/:TargetLock", -1);
Set("/:TargetType", "none");
}
if (((/:Tractorbeaming == 1) && (/:TargetType == "powerup")) && (/:PowerUpArray[/:TargetLock] == 0)) {
_root.tractorzone.clear();
_root.maketractor(1);
Set("/:TargetLock", -1);
Set("/:TargetType", "none");
}
if (((/:paused == 0) && (/:Tractorbeaming == 0)) && (/:TargetLock == -1)) {
_root.maketractor(0);
_root.tractorzone.clear();
}
if (/:Tractorbeaming == 1) {
if ((/:TargetType == "enemy") || (/:TargetType == "powerup")) {
_root.tractorzone.clear();
a = random(100) - 50;
b = random(100);
c = random(100) - 50;
d = random(100);
e = random(100) - 50;
f = random(100);
_root.tractorzone.lineStyle(random(10) / 2, 11599861, 60);
_root.tractorzone.moveTo(_root.gun._x, _root.gun._y);
_root.tractorzone.curveTo(_root.gun._x + a, _root.gun._y - b, /:TargetX + (random(10) - 5), /:TargetY + (random(10) - 5));
_root.tractorzone.lineStyle(random(10) / 2, 11599861, 60);
_root.tractorzone.moveTo(_root.gun._x, _root.gun._y);
_root.tractorzone.curveTo(_root.gun._x + c, _root.gun._y - d, /:TargetX + (random(10) - 5), /:TargetY + (random(10) - 5));
_root.tractorzone.lineStyle(random(10) / 2, 11599861, 60);
_root.tractorzone.moveTo(_root.gun._x, _root.gun._y);
_root.tractorzone.curveTo(_root.gun._x + e, _root.gun._y - f, /:TargetX + (random(10) - 5), /:TargetY + (random(10) - 5));
} else if (/:TargetType == "none") {
_root.tractorzone.clear();
a = random(100) - 50;
b = random(100) - 50;
c = random(100) - 50;
d = random(100) - 50;
e = random(100) - 50;
f = random(100) - 50;
_root.tractorzone.lineStyle(random(10) / 2, 11599861, 60);
_root.tractorzone.moveTo(_root.gun._x, _root.gun._y);
_root.tractorzone.curveTo(_root.gun._x + a, _root.gun._y - b, _root.tractorzone.tractor._x + (random(10) - 5), _root.tractorzone.tractor._y + (random(10) - 5));
_root.tractorzone.lineStyle(random(10) / 2, 11599861, 60);
_root.tractorzone.moveTo(_root.gun._x, _root.gun._y);
_root.tractorzone.curveTo(_root.gun._x + c, _root.gun._y - d, _root.tractorzone.tractor._x + (random(10) - 5), _root.tractorzone.tractor._y + (random(10) - 5));
_root.tractorzone.lineStyle(random(10) / 2, 11599861, 60);
_root.tractorzone.moveTo(_root.gun._x, _root.gun._y);
_root.tractorzone.curveTo(_root.gun._x + e, _root.gun._y - f, _root.tractorzone.tractor._x + (random(10) - 5), _root.tractorzone.tractor._y + (random(10) - 5));
}
}
if (/:StaticTrigger < 0) {
_root.staticzone.clear();
}
/:StaticTrigger--;
if ((/:TweakGotArray[20] == 1) && (/:Jinxtimer <= 0)) {
Set("/:Jinxtimer", random(150) + 100);
i = random(14);
if (/:EnemyArray[i] == 1) {
_root.enemyboom.start();
tellTarget ("_root.enemyzone.enemy" + i) {
health = health - 200;
};
}
} else if ((/:TweakGotArray[20] == 1) && (/:Jinxtimer > 0)) {
/:Jinxtimer--;
}
/:TimeElapsed++;
enemytrigger++;
if ((/:TimeElapsed == 300) || (/:TimeElapsed == 1000)) {
_root.MakeEnemy1(100, -30, 1);
_root.MakeEnemy1(450, -30, 1);
}
if (((/:TimeElapsed == 700) || (/:TimeElapsed == 1500)) || (/:TimeElapsed == 3000)) {
_root.MakeEnemy1(random(1000) - 250, -30, 2);
}
if (/:TimeElapsed == 4000) {
_root.MakeEnemy1(random(1000) - 250, -30, 2);
_root.MakeEnemy1(random(1000) - 250, -30, 2);
_root.MakeEnemy1(random(1000) - 250, -30, 2);
_root.MakeEnemy1(random(1000) - 250, -30, 2);
_root.MakeEnemy1(random(1000) - 250, -30, 2);
}
if (/:rush == 1) {
if (enemytrigger > (100 - ((/:TimeElapsed / 600) * 100))) {
enemytrigger = 0;
_root.MakeEnemy1(random(1000) - 250, -30);
}
Set("/:enemybasespeed", (((/:TimeElapsed / 3000) * 100) / 2) + 25);
} else {
Set("/:enemybasespeed", (((/:TimeElapsed / 5000) * 100) / 2) + 25);
if (enemytrigger > (100 - ((/:TimeElapsed / 3000) * 100))) {
enemytrigger = 0;
_root.MakeEnemy1(random(1000) - 250, -30);
}
}
if ((/:TweaksAvaliable > 0) && (/:TweaksTriggered == 0)) {
Set("/:TweaksTriggered", 1);
tellTarget (_root.taval) {
play();
};
} else if (/:TweaksAvaliable == 0) {
Set("/:TweaksTriggered", 0);
}
Set("/:temp2", /:EnemyArray[2]);
_root.LUpTest();
Set("/:XPER", /:XPER + /:ConstantXP);
Set("/:temp", _root.heat._xscale);
_root.heat._xscale = _root.heat._xscale - /:GunCoolingSpeed;
if (_root.heat._xscale > 100) {
_root.hiss.start();
_root.heat._xscale = 100;
Set("/:GunOverHeated", 1);
_root.rof0.stop("rof0");
_root.rof1.stop("rof1");
_root.rof2.stop("rof2");
_root.rof3.stop("rof3");
_root.rof4.stop("rof4");
_root.shotfadeSound.start(0, 1);
}
if (_root.heat._xscale < 0) {
_root.heat._xscale = 0;
}
if ((_root.heat._xscale < 65) && (/:GunOverHeated == 1)) {
Set("/:GunOverHeated", 0);
if ((/:GunShooting == 1) && (/:GunOverHeated == 0)) {
if (/:rof == 0) {
_root.rof0.start(0, 999);
} else if (/:rof == 1) {
_root.rof1.start(0, 999);
} else if (/:rof == 2) {
_root.rof2.start(0, 999);
} else if (/:rof == 3) {
_root.rof3.start(0, 999);
} else if (/:rof == 4) {
_root.rof4.start(0, 999);
}
}
}
if (/:Ammo > /:AmmoMax) {
Set("/:Ammo", /:AmmoMax);
}
Set("/:GunAccuracy", /:GunAccuracyBase * /:GunAccuracyMultiplier);
Set("/:GunReloadSpeed", /:GunReloadSpeedBase * /:GunReloadSpeedMultiplier);
Set("/:bulletspeed", /:GunShotSpeedBase * /:GunShotSpeedMultiplier);
Set("/:AmmoMax", /:AmmoBase * /:AmmoMultiplier);
Set("/:Damage", /:DamageBase * /:DamageMultiplier);
if (/:Reloading == 0) {
Set("/:ReloadingTimer", 0);
}
if (/:Ammo < 1) {
Set("/:Reloading", 1);
_root.reload.start();
if (/:rof != /:shotgunspeed) {
_root.rof0.stop("rof0");
_root.rof1.stop("rof1");
_root.rof2.stop("rof2");
_root.rof3.stop("rof3");
_root.rof4.stop("rof4");
_root.shotfadeSound.start(0, 1);
}
}
if ((/:Reloading == 1) && (/:ReloadingTimer < /:AmmoMax)) {
Set("/:ReloadingTimer", /:ReloadingTimer + /:GunReloadSpeed);
Set("/:Ammo", /:ReloadingTimer);
} else if ((/:Reloading == 1) && (/:ReloadingTimer >= /:AmmoMax)) {
Set("/:Ammo", /:AmmoMax);
Set("/:Reloading", 0);
if ((/:GunShooting == 1) && (/:GunOverHeated == 0)) {
if (/:rof == 0) {
_root.rof0.start(0, 999);
} else if (/:rof == 1) {
_root.rof1.start(0, 999);
} else if (/:rof == 2) {
_root.rof2.start(0, 999);
} else if (/:rof == 3) {
_root.rof3.start(0, 999);
} else if (/:rof == 4) {
_root.rof4.start(0, 999);
}
}
}
setProperty("_root.ammo", _xscale , (/:Ammo / /:AmmoMax) * 100);
if (/:GunRotatingLeft == 1) {
if (/:GunRotatingSpeed < 4) {
Set("/:GunRotatingSpeed", /:GunRotatingSpeed + 0.2);
} else {
Set("/:GunRotatingSpeed", 4);
}
} else if (/:GunRotatingRight == 1) {
if (/:GunRotatingSpeed > -4) {
Set("/:GunRotatingSpeed", /:GunRotatingSpeed - 0.2);
} else {
Set("/:GunRotatingSpeed", -4);
}
} else {
Set("/:GunRotatingSpeed", /:GunRotatingSpeed / 1.1);
}
if (_root.gun._rotation < -90) {
_root.gun._rotation = -90;
Set("/:GunRotatingSpeed", /:GunRotatingSpeed * -1);
} else if (_root.gun._rotation > 90) {
_root.gun._rotation = 90;
Set("/:GunRotatingSpeed", /:GunRotatingSpeed * -1);
}
_root.gun._rotation = _root.gun._rotation - (/:GunRotatingSpeed * /:GunRotationSpeedMultiplier);
if ((((/:GunShooting == 1) && (/:rofpos == 0)) && (/:GunOverHeated == 0)) && (/:Reloading == 0)) {
if (/:rof == /:shotgunspeed) {
Set("/:GunAccuracyBase", 20);
_root.makebullet(_root.gun._x, _root.gun._y, 1);
_root.makebullet(_root.gun._x, _root.gun._y, 0);
_root.makebullet(_root.gun._x, _root.gun._y, 0);
_root.makebullet(_root.gun._x, _root.gun._y, 0);
_root.makebullet(_root.gun._x, _root.gun._y, 0);
_root.makebullet(_root.gun._x, _root.gun._y, 0);
_root.makebullet(_root.gun._x, _root.gun._y, 0);
_root.makebullet(_root.gun._x, _root.gun._y, 0);
_root.makebullet(_root.gun._x, _root.gun._y, 0);
_root.shotgun.start();
Set("/:Ammo", /:Ammo - 1);
} else {
if (/:rof == 5) {
_root.rof5.start();
}
_root.makebullet(_root.gun._x, _root.gun._y, 0);
Set("/:Ammo", /:Ammo - 1);
}
_root.heat._xscale = _root.heat._xscale + /:GunHeatingSpeed;
if (/:rof == /:shotgunspeed) {
if (_root.heat._xscale > (/:shotoverheat + 15)) {
_root.heat._xscale = _root.heat._xscale + 20;
}
}
if (/:rof == 5) {
if (_root.heat._xscale > (/:shotoverheat + 10)) {
_root.heat._xscale = _root.heat._xscale + 20;
}
}
Set("/:shotoverheat", _root.heat._xscale);
with (_root.gun.guntip) {
gotoAndPlay(1);
}
_root.gun.frontflare._xscale = random(350) + 100;
_root.gun.sideflare1._xscale = random(150) + 100;
_root.gun.sideflare2._xscale = random(150) + 100;
_root.gun.sideflare3._xscale = random(150) + 100;
_root.gun.frontflare._yscale = 300;
_root.gun.sideflare1._yscale = 300;
_root.gun.sideflare2._yscale = 300;
_root.gun.sideflare3._yscale = 300;
} else {
_root.gun.frontflare._xscale = 0;
_root.gun.sideflare1._xscale = 0;
_root.gun.sideflare2._xscale = 0;
_root.gun.sideflare3._xscale = 0;
_root.gun.frontflare._yscale = 0;
_root.gun.sideflare1._yscale = 0;
_root.gun.sideflare2._yscale = 0;
_root.gun.sideflare3._yscale = 0;
}
/:rofpos++;
if (/:rofpos > /:rof) {
Set("/:rofpos", 0);
} else if (/:shooting == 0) {
Set("/:rofpos", 0);
}
}
}
Frame 1541 (8 B)
play();
Frame 2199 (20 B)
gotoAndPlay (1538);
Symbol 18 MovieClip [tractor] Frame 1 (610 B)
if ((_root.gun._rotation > 1) && (_root.gun._rotation < 30)) {
GunRot = _root.gun._rotation - ((_root.gun._rotation / -10) * 1.8);
} else if ((_root.gun._rotation < -1) && (_root.gun._rotation > -30)) {
GunRot = _root.gun._rotation + ((_root.gun._rotation / -10) * -1.8);
} else {
GunRot = _root.gun._rotation;
}
totalspeed = 10;
if ((GunRot > -90) && (GunRot <= 0)) {
yspeed = ((GunRot / 90) * 5) + 5;
xspeed = 5 - yspeed;
} else if ((GunRot > 0) && (GunRot < 90)) {
yspeed = ((GunRot / -90) * 5) + 5;
xspeed = (5 - yspeed) * -1;
}
Symbol 18 MovieClip [tractor] Frame 2 (1.05 KiB) ●
if (/:Paused == 0) {
dot._yscale = random(60) + 60;
dot._xscale = dot._yscale;
this._x = this._x + ((-xspeed) * totalspeed);
this._y = this._y + ((-yspeed) * totalspeed);
if (((this._y < -10) or (this._x > 560)) or (this._x < -10)) {
_root.tractorzone.clear();
_root.maketractor(1);
Set("/:TargetLock", -1);
Set("/:TargetType", "none");
removeMovieClip("");
} else if (this._y > /:floor) {
this._y = (/:floor + (Math.random(10) * 10)) - 5;
gotoAndPlay (8);
this._rotation = 0;
}
}
i = 0;
while (i < 4) {
if (/:PowerUpArray[i] == 1) {
if (this.hitTest(("_root.powerupzone.powerup" + i) + ".icons")) {
Set("/:TargetLock", i);
Set("/:TargetType", "powerup");
this.removeMovieClip();
}
}
i++;
}
i = 0;
while (i < 16) {
if (/:EnemyArray[i] == 1) {
if (this.hitTest(("_root.enemyzone.enemy" + i) + ".body.source")) {
tellTarget (("_root.enemyzone.enemy" + i) + ".body") {
};
Set("/:TargetLock", i);
Set("/:TargetType", "enemy");
this.removeMovieClip();
}
}
i++;
}
Symbol 18 MovieClip [tractor] Frame 3 (148 B)
if (this._y < /:floor) {
gotoAndPlay (2);
}
if (/:Paused == 0) {
times = times + 1;
if (times == 30) {
this.removeMovieClip();
}
}
Symbol 31 MovieClip [bullet] Frame 1 (798 B)
if ((_root.gun._rotation > 1) && (_root.gun._rotation < 30)) {
GunRot = _root.gun._rotation - ((_root.gun._rotation / -10) * 1.8);
} else if ((_root.gun._rotation < -1) && (_root.gun._rotation > -30)) {
GunRot = _root.gun._rotation + ((_root.gun._rotation / -10) * -1.8);
} else {
GunRot = _root.gun._rotation;
}
GunRot = (GunRot + ((Math.random(100) * /:GunAccuracy) - 1)) - (/:GunAccuracy / 2);
colour = new Object();
totalspeed = /:bulletspeed;
setProperty(this, _rotation , GunRot);
if ((GunRot > -90) && (GunRot <= 0)) {
yspeed = ((GunRot / 90) * 5) + 5;
xspeed = 5 - yspeed;
} else if ((GunRot > 0) && (GunRot < 90)) {
yspeed = ((GunRot / -90) * 5) + 5;
xspeed = (5 - yspeed) * -1;
}
ran = Math.random(10) + 1;
Symbol 31 MovieClip [bullet] Frame 2 (1.23 KiB) ●
if (/:plasmabullets == 1) {
tellTarget ("bullet") {
gotoAndStop (2);
};
} else {
tellTarget ("bullet") {
gotoAndStop (1);
};
}
if (/:Paused == 0) {
this._x = this._x + (((-xspeed) * totalspeed) * ran);
this._y = this._y + (((-yspeed) * totalspeed) * ran);
totalspeed = totalspeed * 0.95;
this._xscale = this._xscale - 3;
colour.aa = 100 - (times * 3);
if (times < 2) {
colour.aa = 0;
}
ThisAlpha = new Color(this);
ThisAlpha.setTransform(colour);
if (((this._y < -10) or (this._x > 560)) or (this._x < -10)) {
removeMovieClip("");
} else if (this._y > /:floor) {
this._y = (/:floor + (Math.random(10) * 10)) - 5;
gotoAndPlay (8);
this._rotation = 0;
}
}
i = 0;
while (i < 16) {
if (/:EnemyArray[i] == 1) {
if (this.hitTest(("_root.enemyzone.enemy" + i) + ".body.source")) {
tellTarget (("_root.enemyzone.enemy" + i) + ".body") {
gotoAndPlay(damage);
};
tellTarget ("_root.enemyzone.enemy" + i) {
if (/:rof == 5) {
health = health - (/:Damage * 4);
} else {
health = health - /:Damage;
}
};
if (/:uberbullets == 0) {
gotoAndPlay (4);
}
Set("/:XPER", /:XPER + ((/:Damage / 3) * /:XPMultiplier));
}
}
i++;
}
Symbol 31 MovieClip [bullet] Frame 3 (148 B)
if (this._y < /:floor) {
gotoAndPlay (2);
}
if (/:Paused == 0) {
times = times + 1;
if (times == 30) {
this.removeMovieClip();
}
}
Symbol 31 MovieClip [bullet] Frame 7 (24 B)
this.removeMovieClip();
Symbol 31 MovieClip [bullet] Frame 11 (24 B)
this.removeMovieClip();
Symbol 34 MovieClip [gunstand] Frame 1 (8 B)
stop();
Symbol 34 MovieClip [gunstand] Frame 2 (8 B)
stop();
Symbol 43 MovieClip Frame 3 (8 B)
stop();
Symbol 46 MovieClip [gun] Frame 1 (8 B)
stop();
Symbol 46 MovieClip [gun] Frame 16 (8 B)
stop();
Symbol 48 MovieClip [shell] Frame 1 (126 B)
xspeed = (random(5) - 2.5) / 2;
yspeed = (random(10) - 10) / 2;
rspeed = random(10) - 5;
_rotation = _root.gun._rotation;
Symbol 48 MovieClip [shell] Frame 12 (209 B)
this._x = this._x + xspeed;
this._y = this._y + yspeed;
this._rotation = this._rotation + rspeed;
yspeed = yspeed + 0.8;
if (this._y > /:floor) {
this._y = /:floor - 0.5;
yspeed = yspeed * -0.5;
}
Symbol 48 MovieClip [shell] Frame 13 (87 B)
gotoAndPlay (12);
times = times + 1;
if (times == 30) {
this.removeMovieClip();
}
Symbol 56 Button (214 B)
on (release) {
if ((/:realpaused == -1) && (/:dead == 0)) {
_root.pause();
Set("/:fakepaused", /:fakepaused * -1);
tellTarget (_root.tweakmenu) {
play();
};
play();
/:TweaksAvaliable--;
}
}
Symbol 57 MovieClip [taval] Frame 1 (8 B)
stop();
Symbol 57 MovieClip [taval] Frame 20 (8 B)
stop();
Symbol 57 MovieClip [taval] Frame 21 (8 B)
stop();
Symbol 57 MovieClip [taval] Frame 22 (40 B)
Set("/:fakepaused", /:fakepaused * -1);
Symbol 57 MovieClip [taval] Frame 41 (17 B)
gotoAndStop (1);
Symbol 63 MovieClip Frame 1 (19 B)
stop();
loop = 0;
Symbol 63 MovieClip Frame 2 (1.03 KiB) ●
tt = 0;
done = 0;
tarray = [-1, -1, -1, -1, -1];
while (tt < 5) {
do {
randomtweak = random(21);
if ((/:TweakGotArray[/:TweakHaveArray[randomtweak]] == 0) && (/:TweakHaveArray[randomtweak] > -1)) {
if (((((/:tweakhavearray[randomtweak] != tarray[0]) && (/:tweakhavearray[randomtweak] != tarray[1])) && (/:tweakhavearray[randomtweak] != tarray[2])) && (/:tweakhavearray[randomtweak] != tarray[3])) && (/:tweakhavearray[randomtweak] != tarray[4])) {
tarray[tt] = /:TweakHaveArray[randomtweak];
this.attachMovie("tweakbutton" + /:TweakHaveArray[randomtweak], "tweakbutton" + tt, tt + 1);
setProperty("tweakbutton" + tt, _x , -60);
setProperty("tweakbutton" + tt, _y , -25 + (tt * 12));
done = 1;
loop++;
/:tweakstotal1++;
}
}
} while ((done == 0) && (loop < 300));
loop = 0;
done = 0;
tt++;
}
Set("/:tempA", tarray[0]);
Set("/:tempB", tarray[1]);
Set("/:tempC", tarray[2]);
Set("/:tempD", tarray[3]);
Set("/:tempE", tarray[4]);
Symbol 64 MovieClip [tweakmenu] Frame 1 (17 B)
stop();
tt = 0;
Symbol 64 MovieClip [tweakmenu] Frame 2 (48 B)
tellTarget (this.menu) {
gotoAndStop (2);
};
Symbol 64 MovieClip [tweakmenu] Frame 25 (8 B)
stop();
Symbol 64 MovieClip [tweakmenu] Frame 41 (48 B)
tellTarget (this.menu) {
gotoAndStop (1);
};
Symbol 64 MovieClip [tweakmenu] Frame 42 (103 B)
gotoAndStop (1);
if (/:TweaksAvaliable > 0) {
tellTarget (_root.taval) {
prevFrame();
};
}
Symbol 76 MovieClip Frame 1 (8 B)
stop();
Symbol 79 MovieClip Frame 1 (83 B)
ran = random(4);
damage = 3;
if (ran == 2) {
gotoAndStop (5);
damage = 6;
}
Symbol 79 MovieClip Frame 2 (8 B)
stop();
Symbol 79 MovieClip Frame 3 (8 B)
play();
Symbol 79 MovieClip Frame 4 (17 B)
gotoAndPlay (2);
Symbol 79 MovieClip Frame 5 (66 B)
ran = random(4);
if (ran == 2) {
gotoAndStop (5);
}
stop();
Symbol 79 MovieClip Frame 6 (8 B)
play();
Symbol 79 MovieClip Frame 7 (17 B)
gotoAndPlay (5);
Symbol 84 MovieClip [enemy1] Frame 1 (2.66 KiB) ●
stopped = 0;
damage = 1;
ran = random(40);
colour = new Object();
colour2 = new Object();
colour3 = new Object();
z = (_root.gun._x + (random(40) - 20)) - _x;
r = (_root.gun._y + 34) - _y;
a = z;
b = r;
e = z / r;
k = Math.atan(e);
g = (k * 180) / Math.PI;
body._rotation = g;
if (_root.gun._y > _parent._y) {
body._rotation = 90 - body._rotation;
} else if (_root.gun._y < _y) {
body._rotation = 180 - (body._rotation - 90);
}
speed = (random(50) + /:enemybasespeed) / 100;
oldspeed = speed;
shroomspeed = speed / 3;
body._xscale = random(50) + 50;
body._yscale = body._xscale;
if ((ran > 0) && (ran < 6)) {
colour.ra = 100;
colour.rb = random(100) + 70;
colour.ga = 100;
colour.gb = 0;
colour.ba = 100;
colour.bb = 0;
health = 5;
} else if ((ran > 7) && (ran < 10)) {
colour.ra = 50;
colour.rb = 0;
colour.ga = 100;
colour.gb = 0;
colour.ba = 100;
colour.bb = random(100) + 70;
health = health + (body._xscale / 3);
} else if (ran == 10) {
colour.ra = 100;
colour.rb = 0;
colour.ga = random(100) + 70;
colour.gb = 0;
colour.ba = 100;
colour.bb = 0;
health = health + (body._xscale / 2);
} else if (ran == 15) {
colour.ra = 100;
colour.rb = random(100) + 70;
colour.ga = 100;
colour.gb = random(20) + 100;
colour.ba = 100;
colour.bb = random(0) + 1;
health = health + (body._xscale * 4);
speed = 0.5;
body._xscale = random(50) + 250;
body._yscale = body._xscale;
} else {
colour.ra = 100;
colour.rb = random(100) + 70;
colour.ga = 100;
colour.gb = random(20) + 100;
colour.ba = 100;
colour.bb = random(0) + 1;
health = health + (body._xscale / 3);
damage = 3;
}
if (special == 1) {
colour.ra = 100;
colour.rb = 220;
colour.ga = 100;
colour.gb = 0;
colour.ba = 100;
colour.bb = 0;
health = 1;
speed = 3;
oldspeed = speed;
shroomspeed = speed / 3;
damage = 1.6;
body._xscale = 50;
body._yscale = body._xscale;
} else if (special == 2) {
colour.ra = 100;
colour.rb = 0;
colour.ga = 100;
colour.gb = 255;
colour.ba = 70;
colour.bb = 0;
health = health + 550;
speed = 0.4;
oldspeed = speed;
shroomspeed = speed / 3;
damage = 1.6;
body._xscale = 450;
body._yscale = body._xscale;
}
ThisColor = new Color(this.body.source);
ThisColor.setTransform(colour);
colour3.ra = random(200) - 50;
colour3.rb = random(510) - 100;
colour3.ga = random(200) - 50;
colour3.gb = random(510) - 100;
colour3.ba = random(200) - 50;
colour3.bb = random(510) - 0;
body.healthtext._xscale = 100 / (body._xscale * 0.01);
body.healthtext._yscale = body.healthtext._xscale;
body.healthtext._rotation = body._rotation * -1;
gotoAndPlay (2);
Symbol 84 MovieClip [enemy1] Frame 2 (3.14 KiB) ●
if ((_root.gun.ray.hitTest(this._x, this._y, true) == true) && (/:TweakGotArray[14] == 1)) {
stopped = 1;
} else {
stopped = 0;
}
if ((_root.gun.ray.hitTest(this._x, this._y, true) == true) && (/:TweakGotArray[6] == 1)) {
health--;
}
if (((/:shrooms == 1) && (i != /:TargetLock)) && (/:TargetType != "enemy")) {
ThisColor3 = new Color(this.body.source);
ThisColor3.setTransform(colour3);
}
if (((/:shrooms == 0) && (i != /:TargetLock)) && (/:TargetType != "enemy")) {
ThisColor = new Color(this.body.source);
ThisColor.setTransform(colour);
if (speed < oldspeed) {
speed = speed * 1.05;
}
}
if ((i == /:TargetLock) && (/:TargetType == "enemy")) {
Set("/:TargetX", _x);
Set("/:TargetY", _y);
if (speed < 2) {
speed = speed * 1.15;
}
if (speed > 2) {
speed = 2;
}
} else if (/:shrooms == 1) {
if (speed > shroomspeed) {
speed = speed * 0.95;
}
} else {
if (speed > oldspeed) {
speed = speed * 0.95;
}
if (speed < oldspeed) {
speed = oldspeed;
}
}
if (/:Paused == 0) {
if (/:TweakGotArray[12] == 1) {
body.healthtext.healthtext.text = health;
if (colour2.aa < 100) {
colour2.aa = 100;
ThisColor2 = new Color(this.body.healthtext);
ThisColor2.setTransform(colour2);
}
} else {
colour2.aa = 0;
ThisColor2 = new Color(this.body.healthtext);
ThisColor2.setTransform(colour2);
}
g = body._rotation * 0.01745;
z = Math.cos(g);
n = Math.sin(g);
if (stopped == 0) {
_x = (_x + ((z * 3) * speed));
_y = (_y + ((n * 3) * speed));
}
if (health <= 0) {
gotoAndPlay (4);
_root.enemyboom.start();
}
if ((/:TweakGotArray[5] == 1) && (_y > (_root.gun._y - 100))) {
health = health - 0.5;
Set("/:XPER", /:XPER + 0.05);
}
if ((/:TweakGotArray[16] == 1) && (_y > (_root.gun._y - 220))) {
ran = random(100);
if (ran == 1) {
Set("/:StaticTrigger", 1);
a = random(100) - 50;
b = random(100);
c = random(100) - 50;
d = random(100);
e = random(100) - 50;
f = random(100);
_root.staticzone.lineStyle(4, 16776671, 100);
_root.staticzone.moveTo(_root.gun._x, _root.gun._y);
_root.staticzone.lineTo(_root.gun._x + a, _root.gun._y - b);
_root.staticzone.lineStyle(3, 16776671, 90);
_root.staticzone.moveTo(_root.gun._x + a, _root.gun._y - b);
_root.staticzone.lineTo((_root.gun._x + a) + c, (_root.gun._y - b) - d);
_root.staticzone.lineStyle(2, 16776671, 80);
_root.staticzone.moveTo((_root.gun._x + a) + c, (_root.gun._y - b) - d);
_root.staticzone.lineTo(((_root.gun._x + a) + c) + e, ((_root.gun._y - b) - d) - f);
_root.staticzone.lineStyle(0.5, 16776671, 70);
_root.staticzone.moveTo(((_root.gun._x + a) + c) + e, ((_root.gun._y - b) - d) - f);
_root.staticzone.lineTo(this._x, this._y);
health = health - 20;
Set("/:XPER", /:XPER + 2);
_root.zap.start();
tellTarget (body) {
gotoAndPlay(damage);
};
}
}
if (_y > (_root.gun._y - 40)) {
Set("/:health", /:health - (random(20) * damage));
/:EnemyArray[i] = 0;
gotoAndPlay (4);
_root.enemyboom.start();
}
}
Symbol 84 MovieClip [enemy1] Frame 3 (17 B)
gotoAndPlay (2);
Symbol 84 MovieClip [enemy1] Frame 4 (194 B)
_y = (_y + speed);
if (/:TweakGotArray[18] == 1) {
boom._xscale = 150;
boom._yscale = 150;
}
ran = random(/:lucky * 21);
if (ran == 1) {
_root.MakePowerUp(_x, _y, random(10) + 1);
}
Symbol 84 MovieClip [enemy1] Frame 5 (20 B)
_y = (_y + speed);
Symbol 84 MovieClip [enemy1] Frame 6 (20 B)
_y = (_y + speed);
Symbol 84 MovieClip [enemy1] Frame 7 (46 B)
/:EnemyArray[i] = 0;
this.removeMovieClip();
Symbol 90 Button (349 B)
on (rollOver) {
_root.tweakmenu.menu.info.text = "Things just happen to explode all around you.";
}
on (rollOut, dragOut) {
_root.tweakmenu.menu.info.text = " ";
}
on (release) {
/:TweakGotArray[20] = 1;
tellTarget (_root.tweakmenu) {
play();
};
if (/:TweaksAvaliable == 0) {
tellTarget (_root.taval) {
play();
};
}
_root.pause();
}
Symbol 94 Button (431 B)
on (rollOver) {
_root.tweakmenu.menu.info.text = "600 XP, but your life goes down to 1. So you die, but you'll score higher.";
}
on (rollOut, dragOut) {
_root.tweakmenu.menu.info.text = " ";
}
on (release) {
Set("/:health", 0.1);
Set("/:XPER", /:XPER + 600);
/:TweakGotArray[19] = 1;
tellTarget (_root.tweakmenu) {
play();
};
if (/:TweaksAvaliable == 0) {
tellTarget (_root.taval) {
play();
};
}
_root.pause();
}
Symbol 98 Button (376 B)
on (rollOver) {
_root.tweakmenu.menu.info.text = "More explosions, more XP.";
}
on (rollOut, dragOut) {
_root.tweakmenu.menu.info.text = " ";
}
on (release) {
Set("/:XPMultiplier", /:XPMultiplier * 1.05);
/:TweakGotArray[18] = 1;
tellTarget (_root.tweakmenu) {
play();
};
if (/:TweaksAvaliable == 0) {
tellTarget (_root.taval) {
play();
};
}
_root.pause();
}
Symbol 102 Button (381 B)
on (rollOver) {
_root.tweakmenu.menu.info.text = "Trying to fire while reloading speeds the process along, you twitchy bastard,";
}
on (rollOut, dragOut) {
_root.tweakmenu.menu.info.text = " ";
}
on (release) {
/:TweakGotArray[17] = 1;
tellTarget (_root.tweakmenu) {
play();
};
if (/:TweaksAvaliable == 0) {
tellTarget (_root.taval) {
play();
};
}
_root.pause();
}
Symbol 106 Button (396 B)
on (rollOver) {
_root.tweakmenu.menu.info.text = "Arcs of energy stab at anything close enough";
}
on (rollOut, dragOut) {
_root.tweakmenu.menu.info.text = " ";
}
on (release) {
_root.gun.attachMovie("static", "static", 50);
/:TweakGotArray[16] = 1;
tellTarget (_root.tweakmenu) {
play();
};
if (/:TweaksAvaliable == 0) {
tellTarget (_root.taval) {
play();
};
}
_root.pause();
}
Symbol 110 Button (434 B)
on (rollOver) {
_root.tweakmenu.menu.info.text = "Man, you sure know how to pick them. Newest tweaks appear at the top of the list.";
}
on (rollOut, dragOut) {
_root.tweakmenu.menu.info.text = " ";
}
on (release) {
_root.gun.attachMovie("static", "static", 50);
/:TweakGotArray[15] = 1;
tellTarget (_root.tweakmenu) {
play();
};
if (/:TweaksAvaliable == 0) {
tellTarget (_root.taval) {
play();
};
}
_root.pause();
}
Symbol 114 Button (343 B)
on (rollOver) {
_root.tweakmenu.menu.info.text = "Enemies freeze in your creepy ass gaze.";
}
on (rollOut, dragOut) {
_root.tweakmenu.menu.info.text = " ";
}
on (release) {
/:TweakGotArray[14] = 1;
tellTarget (_root.tweakmenu) {
play();
};
if (/:TweaksAvaliable == 0) {
tellTarget (_root.taval) {
play();
};
}
_root.pause();
}
Symbol 118 Button (428 B)
on (rollOver) {
_root.tweakmenu.menu.info.text = "You give me your soul, for 300 XP.";
}
on (rollOut, dragOut) {
_root.tweakmenu.menu.info.text = " ";
}
on (release) {
Set("/:health", -10);
Set("/:XPER", /:XPER + 300);
/:TweakGotArray[13] = 1;
_root.LUpTest();
Set("/:Dead", 1);
tellTarget (_root.tweakmenu) {
play();
};
if (/:TweaksAvaliable == 0) {
tellTarget (_root.taval) {
play();
};
}
_root.pause();
}
Symbol 122 Button (453 B)
on (rollOver) {
_root.tweakmenu.menu.info.text = "With a single glance you can tell the condition of any machine. You also know the weak spots...";
}
on (rollOut, dragOut) {
_root.tweakmenu.menu.info.text = " ";
}
on (release) {
Set("/:DamageMultiplier", /:DamageMultiplier * 1.2);
/:TweakGotArray[12] = 1;
tellTarget (_root.tweakmenu) {
play();
};
if (/:TweaksAvaliable == 0) {
tellTarget (_root.taval) {
play();
};
}
_root.pause();
}
Symbol 128 Button (384 B)
on (rollOver) {
_root.tweakmenu.menu.info.text = "XP just keeps coming, without you having to do shit.";
}
on (rollOut, dragOut) {
_root.tweakmenu.menu.info.text = " ";
}
on (release) {
Set("/:ConstantXP", 0.09);
/:TweakGotArray[11] = 1;
tellTarget (_root.tweakmenu) {
play();
};
if (/:TweaksAvaliable == 0) {
tellTarget (_root.taval) {
play();
};
}
_root.pause();
}
Symbol 132 Button (342 B)
on (rollOver) {
_root.tweakmenu.menu.info.text = "Powerups love you.";
}
on (rollOut, dragOut) {
_root.tweakmenu.menu.info.text = " ";
}
on (release) {
Set("/:lucky", 1);
/:TweakGotArray[10] = 1;
tellTarget (_root.tweakmenu) {
play();
};
if (/:TweaksAvaliable == 0) {
tellTarget (_root.taval) {
play();
};
}
_root.pause();
}
Symbol 136 Button (421 B)
on (rollOver) {
_root.tweakmenu.menu.info.text = "Upgrades your gears.";
}
on (rollOut, dragOut) {
_root.tweakmenu.menu.info.text = " ";
}
on (release) {
_root.gunstand.attachMovie("rotater", "rotater", 60);
Set("/:GunRotationSpeedMultiplier", 1.9);
/:TweakGotArray[9] = 1;
tellTarget (_root.tweakmenu) {
play();
};
if (/:TweaksAvaliable == 0) {
tellTarget (_root.taval) {
play();
};
}
_root.pause();
}
Symbol 140 Button (370 B)
on (rollOver) {
_root.tweakmenu.menu.info.text = "Increases the size of your magazine.";
}
on (rollOut, dragOut) {
_root.tweakmenu.menu.info.text = " ";
}
on (release) {
Set("/:AmmoMultiplier", 1.4);
/:TweakGotArray[8] = 1;
tellTarget (_root.tweakmenu) {
play();
};
if (/:TweaksAvaliable == 0) {
tellTarget (_root.taval) {
play();
};
}
_root.pause();
}
Symbol 144 Button (336 B)
on (rollOver) {
_root.tweakmenu.menu.info.text = "You will have your final revenge.";
}
on (rollOut, dragOut) {
_root.tweakmenu.menu.info.text = " ";
}
on (release) {
/:TweakGotArray[7] = 1;
tellTarget (_root.tweakmenu) {
play();
};
if (/:TweaksAvaliable == 0) {
tellTarget (_root.taval) {
play();
};
}
_root.pause();
}
Symbol 148 Button (343 B)
on (rollOver) {
_root.tweakmenu.menu.info.text = "Things heat up simply by aiming at them.";
}
on (rollOut, dragOut) {
_root.tweakmenu.menu.info.text = " ";
}
on (release) {
/:TweakGotArray[6] = 1;
tellTarget (_root.tweakmenu) {
play();
};
if (/:TweaksAvaliable == 0) {
tellTarget (_root.taval) {
play();
};
}
_root.pause();
}
Symbol 152 Button (501 B)
on (rollOver) {
_root.tweakmenu.menu.info.text = "You are surrounded in a healthy green glow.";
}
on (rollOut, dragOut) {
_root.tweakmenu.menu.info.text = " ";
}
on (release) {
_root.attachMovie("radioactivebubble", "radioactivebubble", 298);
_root.radioactivebubble._x = _root.gun._x;
_root.radioactivebubble._y = _root.gun._y;
/:TweakGotArray[5] = 1;
tellTarget (_root.tweakmenu) {
play();
};
if (/:TweaksAvaliable == 0) {
tellTarget (_root.taval) {
play();
};
}
_root.pause();
}
Symbol 156 Button (584 B)
on (rollOver) {
_root.tweakmenu.menu.info.text = "Strapping an electromagnet to the base of your gun sure pays off. However, speed cuts down accuracy.";
}
on (rollOut, dragOut) {
_root.tweakmenu.menu.info.text = " ";
}
on (release) {
_root.gun.attachMovie("electro", "electro", 60);
Set("/:GunShotSpeedMultiplier", /:GunShotSpeedMultiplier * 1.2);
Set("/:GunAccuracyMultiplier", /:GunAccuracyMultiplier * 1.2);
/:TweakGotArray[4] = 1;
tellTarget (_root.tweakmenu) {
play();
};
if (/:TweaksAvaliable == 0) {
tellTarget (_root.taval) {
play();
};
}
_root.pause();
}
Symbol 160 Button (378 B)
on (rollOver) {
_root.tweakmenu.menu.info.text = "Man, you sure know how to load a gun";
}
on (rollOut, dragOut) {
_root.tweakmenu.menu.info.text = " ";
}
on (release) {
Set("/:GunReloadSpeedMultiplier", 2);
/:TweakGotArray[3] = 1;
tellTarget (_root.tweakmenu) {
play();
};
if (/:TweaksAvaliable == 0) {
tellTarget (_root.taval) {
play();
};
}
_root.pause();
}
Symbol 164 Button (738 B)
on (rollOver) {
_root.tweakmenu.menu.info.text = "This extended barrel will double your accuracy";
}
on (rollOut, dragOut) {
_root.tweakmenu.menu.info.text = " ";
}
on (release) {
_root.gun.attachMovie("barrel", "barrel", 40);
_root.gun.guntip._y = _root.gun.guntip._y - 50;
_root.gun.frontflare._y = _root.gun.frontflare._y - 50;
_root.gun.sideflare1._y = _root.gun.sideflare1._y - 50;
_root.gun.sideflare2._y = _root.gun.sideflare2._y - 50;
_root.gun.sideflare3._y = _root.gun.sideflare3._y - 50;
Set("/:GunAccuracyMultiplier", /:GunAccuracyMultiplier * 0.5);
/:TweakGotArray[2] = 1;
tellTarget (_root.tweakmenu) {
play();
};
if (/:TweaksAvaliable == 0) {
tellTarget (_root.taval) {
play();
};
}
_root.pause();
}
Symbol 168 Button (661 B)
on (rollOver) {
_root.tweakmenu.menu.info.text = "A coin toss. Either you get 250 XP... or you die";
}
on (rollOut, dragOut) {
_root.tweakmenu.menu.info.text = " ";
}
on (release) {
rand = random(2);
if (rand == 0) {
Set("/:XPER", /:XPER + 200);
/:TweakGotArray[1] = 1;
_root.LUpTest();
tellTarget (_root.tweakmenu) {
play();
};
if (/:TweaksAvaliable == 0) {
tellTarget (_root.taval) {
play();
};
}
_root.pause();
} else {
/:TweakGotArray[1] = 1;
tellTarget (_root.tweakmenu) {
play();
};
if (/:TweaksAvaliable == 0) {
tellTarget (_root.taval) {
play();
};
}
_root.pause();
Set("/:health", -10);
}
}
Symbol 173 Button (390 B)
on (rollOver) {
_root.tweakmenu.menu.info.text = "100 XP. Right now. Take it or leave it.";
}
on (rollOut, dragOut) {
_root.tweakmenu.menu.info.text = " ";
}
on (release) {
Set("/:XPER", /:XPER + 100);
/:TweakGotArray[0] = 1;
_root.LUpTest();
tellTarget (_root.tweakmenu) {
play();
};
if (/:TweaksAvaliable == 0) {
tellTarget (_root.taval) {
play();
};
}
_root.pause();
}
Symbol 197 MovieClip [powerup] Frame 1 (280 B)
if (/:rof != 4) {
ran = random(10);
if (ran != 5) {
do {
type = random(10) + 1;
} while ((((((type == 4) || (type == 5)) || (type == 6)) || (type == 8)) || (type == 9)) || (type == 10));
}
}
with (icons) {
gotoAndStop(type);
}
speed = 1;
oldspeed = speed;
Symbol 197 MovieClip [powerup] Frame 2 (3.42 KiB) ●
if (/:paused == 0) {
if ((/:TargetLock == i) && (/:TargetType == "powerup")) {
if (type == 2) {
_root.spritezone.attachMovie("nuke", "nuke" + /:nukelevel, 1000 + /:nukelevel);
setProperty("_root.spritezone.nuke" + /:nukelevel, _x , _x);
setProperty("_root.spritezone.nuke" + /:nukelevel, _y , _y);
/:nukelevel++;
/:PowerUpArray[i] = 0;
this.removeMovieClip();
}
Set("/:TargetX", _x);
Set("/:TargetY", _y);
z = _root.gun._x - _x;
r = (_root.gun._y + 34) - _y;
a = z;
b = r;
e = z / r;
k = Math.atan(e);
g = (k * 180) / Math.PI;
body._rotation = g;
if (_root.gun._y > _parent._y) {
body._rotation = 90 - body._rotation;
} else if (_root.gun._y < _y) {
body._rotation = 180 - (body._rotation - 90);
}
g = body._rotation * 0.01745;
z = Math.cos(g);
n = Math.sin(g);
_x = (_x + ((z * 3) * speed));
_y = (_y + ((n * 3) * speed));
if (speed < 2) {
speed = speed * 1.15;
}
if (speed > 2) {
speed = 2;
}
} else {
_y = (_y + speed);
if (speed > oldspeed) {
speed = speed * 0.95;
}
if (speed < oldspeed) {
speed = oldspeed;
}
}
if ((this.hitTest(_root.gun.gun) && (/:TargetLock == i)) && (/:TargetType == "powerup")) {
Set("/:sdynamic", 0);
if (type == 1) {
Set("/:health", /:health + 30);
} else if (type == 3) {
Set("/:plasmabullets", 1);
do {
/:sdynamic++;
} while (/:PowerUpHaveArray[/:sdynamic] > 0);
/:PowerUpHaveArray[2] = 1;
if (/:PowerUpHaveIsArray[2] != "uberbullets") {
tellTarget ("_root.power2") {
play();
};
}
tellTarget ("_root.power2.bar") {
sa = 2;
go = 1;
time = 40;
maxtime = 100;
};
Set("/:uberbullets", 1);
/:PowerUpHaveIsArray[2] = "uberbullets";
_root.power2.bar.info.text = "uranium shells";
} else if (type == 4) {
Set(("_root.power" + s) + ".bar.info.text", "shotgun");
Set("/:AmmoMax", 8);
Set("/:Ammo", 8);
Set("/:rof", /:shotgunspeed);
} else if (type == 5) {
Set(("_root.power" + s) + ".bar.info.text", "minigun");
Set("/:AmmoMax", 200);
Set("/:Ammo", 200);
Set("/:rof", 0);
Set("/:GunAccuracyBase", 20);
} else if (type == 6) {
Set(("_root.power" + s) + ".bar.info.text", "plasmagun");
Set("/:AmmoMax", 10);
Set("/:Ammo", 10);
Set("/:plasmabullets", 1);
Set("/:rof", 5);
Set("/:GunAccuracyBase", 0);
} else if (type == 7) {
do {
/:sdynamic++;
} while (/:PowerUpHaveArray[/:sdynamic] > 0);
/:PowerUpHaveArray[3] = 1;
if (/:PowerUpHaveIsArray[3] != "shrooms") {
tellTarget ("_root.power3") {
play();
};
}
tellTarget ("_root.power3.bar") {
sa = 3;
go = 1;
time = 70;
maxtime = 100;
};
Set("/:shrooms", 1);
_root.power3.bar.info.text = "shrooms";
/:PowerUpHaveIsArray[3] = "shrooms";
} else if (type == 8) {
Set("/:AmmoMax", 50);
Set("/:Ammo", 50);
Set("/:rof", 2);
Set("/:GunAccuracyBase", 7);
} else if (type == 9) {
Set("/:AmmoMax", 100);
Set("/:Ammo", 100);
Set("/:rof", 1);
Set("/:GunAccuracyBase", 10);
} else if (type == 10) {
Set("/:AmmoMax", 40);
Set("/:Ammo", 40);
Set("/:rof", 3);
Set("/:GunAccuracyBase", 5);
}
/:PowerUpArray[i] = 0;
this.removeMovieClip();
}
}
if (this._y > (_root.gun._y + 40)) {
/:PowerUpArray[i] = 0;
this.removeMovieClip();
}
Symbol 197 MovieClip [powerup] Frame 3 (17 B)
gotoAndPlay (2);
Symbol 200 MovieClip [radioactivebubble] Frame 70 (18 B)
gotoAndPlay (31);
Symbol 224 MovieClip [nuke] Frame 1 (20 B)
_root.nuke.start();
Instance of Symbol 175 MovieClip [blank] in Symbol 224 MovieClip [nuke] Frame 1 (439 B)
onClipEvent (enterFrame) {
i = 0;
while (i < 16) {
if (/:EnemyArray[i] == 1) {
if (_parent.hitTest(("_root.enemyzone.enemy" + i) + ".body.source")) {
tellTarget (("_root.enemyzone.enemy" + i) + ".body") {
gotoAndPlay (2);
};
tellTarget ("_root.enemyzone.enemy" + i) {
health = health - /:Damage;
};
gotoAndPlay (4);
Set("/:XPER", /:XPER + ((/:Damage / 3) * /:XPMultiplier));
}
}
i++;
}
}
Symbol 224 MovieClip [nuke] Frame 30 (24 B)
this.removeMovieClip();
Symbol 230 MovieClip Frame 1 (8 B)
go = 0;
Symbol 230 MovieClip Frame 2 (457 B)
if (/:paused == 0) {
if (go == 1) {
time = time + 0.5;
timer._x = 68 + time;
}
if (time < 0) {
timer._x = 68;
}
if (time > (maxtime + 58)) {
if (info.text == "shrooms") {
/:PowerUpHaveIsArray[sa] = " ";
Set("/:shrooms", 0);
}
if (info.text == "uranium shells") {
/:PowerUpHaveIsArray[sa] = " ";
Set("/:uberbullets", 0);
}
/:PowerUpHaveArray[sa] = 0;
tellTarget (_parent) {
play();
};
}
}
Symbol 230 MovieClip Frame 3 (17 B)
gotoAndPlay (2);
Symbol 231 MovieClip [powerupbar] Frame 1 (8 B)
stop();
Symbol 231 MovieClip [powerupbar] Frame 6 (47 B)
stop();
tellTarget (this.bar) {
go = 1;
};
Symbol 249 Button (34 B)
on (release) {
gotoAndPlay (3);
}
Symbol 281 Button (37 B)
on (release) {
gotoAndPlay (1538);
}
Symbol 318 Button (44 B)
on (release) {
play();
Set("/:rush", 1);
}
Symbol 321 Button (44 B)
on (release) {
play();
Set("/:rush", 0);
}
Symbol 346 Button (34 B)
on (release) {
stopAllSounds();
}
Symbol 352 Button (105 B)
on (release) {
if (/:fakepaused == -1) {
_root.pause();
Set("/:realpaused", /:realpaused * -1);
}
}
Symbol 361 Button (62 B)
on (release) {
getURL ("http://www.crimsonland.com", "cr");
}
Symbol 362 Button (61 B)
on (release) {
getURL ("http://www.newgrounds.com", "nr");
}
Symbol 363 Button (60 B)
on (release) {
getURL ("http://www.osirusman.com", "os");
}
Symbol 365 Button (70 B)
on (release) {
getURL ("http://www.michaelmoore.com", "mmbrowser");
}
Symbol 376 Button (88 B)
on (release) {
getURL ("http://www.motherearth.org/bushwanted/laws.htm", "bushlaws");
}