Frame 1
loadedbytes = getBytesLoaded();
totalbytes = getBytesTotal();
percentbytes = int(loadedbytes / (totalbytes / 100));
trace(percentbytes);
loader.gotoAndStop(percentbytes);
Frame 2
if (loadedbytes == totalbytes) {
gotoAndPlay (3);
} else {
gotoAndPlay (1);
}
Frame 3
stop();
Frame 4
_global.done = false;
Frame 5
stopAllSounds();
_global.soundEffects = true;
_global.muzic = new Sound();
_global.muzic.attachSound("song");
_global.muzic.start(0, 10000);
gotoAndStop (6);
if (_global.done == false) {
trace("fire");
__com_mochibot__("cf627ac4", this, 10301, true);
_global.done = true;
}
Frame 6
_global.music = true;
stop();
Frame 7
function shoot() {
if (!_root.paused) {
if (_root.md && (_root.rifleuse)) {
if (_global.soundEffects) {
_root.my_sound.start();
}
i = 1;
while (i < (_root.shots + 1)) {
_root.cannon.c.gotoAndPlay(1);
mc = _root.attachMovie("bullet", "b" + _root.getNextHighestDepth(), _root.getNextHighestDepth() + 10);
mc.swapDepths(_root.cannon);
mc._x = _root.cannon._x;
mc._y = _root.cannon._y;
if (_root.shots == 1) {
mc._rotation = _root.cannon.c._rotation;
} else {
mc._rotation = ((_root.cannon.c._rotation - (_root.shots * 7.5)) + ((i - 1) * 15)) + 7.5;
}
mc.onEnterFrame = function () {
if (!_root.paused) {
if (this.hitTest(_root.powerup)) {
this._rotation = 360 - this._rotation;
}
i = 0;
while (i < _root.enemies.length) {
if (this.hitTest(_root.enemies[i]) && (this.canthit != _root.enemies[i])) {
if (_root.enemies[i].iron != true) {
_root.enemies[i].health = _root.enemies[i].health - _root.dmg;
} else {
_root.enemies[i].health = _root.enemies[i].health - 1;
this._rotation = 360 - this._rotation;
this.canthit = _root.enemies[i];
}
if (_root.enemies[i].health <= 0) {
_root.enemies[i].play();
_root.gold = _root.gold + 5;
} else {
_root.enemies[i].h._xscale = 100 * (_root.enemies[i].health / _root.enemies[i].totalHealth);
}
if (_root.enemies[i].iron != true) {
removeMovieClip(this);
}
}
i++;
}
if (_rotation > 180) {
this._y = this._y + (_root.spd * Math.cos((Math.PI/180) * this._rotation));
this._x = this._x - (_root.spd * Math.sin((Math.PI/180) * this._rotation));
} else {
this._y = this._y - (_root.spd * Math.cos((Math.PI/180) * this._rotation));
this._x = this._x + (_root.spd * Math.sin((Math.PI/180) * this._rotation));
}
(((((this._x > 600) || (this._x < 0)) || (this._y > 600)) || (this._y < 0)) ? (removeMovieClip(this)) : null);
}
};
i++;
}
}
}
}
function Find(whichArray, what) {
h = 0;
while (h < whichArray.length) {
if (whichArray[h] == what) {
return(h);
}
h++;
}
return(-1);
}
function order(a, b) {
if (a._y > b._y) {
return(-1);
}
if (a._y == b._y) {
return(0);
}
return(1);
}
var diffmod;
if (_global.diff == "easy") {
_root.diffmod = 0;
}
if (_global.diff == "medium") {
_root.diffmod = 1;
}
if (_global.diff == "hard") {
_root.diffmod = 2;
}
var pauseDisabled = false;
var paused = false;
_global.livesBought = 0;
var prev;
var dmg = (6 - _root.diffmod);
var gold = 0;
var spd = 11;
var shots = 1;
var normshots = 1;
var bombs = 1;
var buying = false;
var frames = 0;
var countdown = 20;
var oldCountdown = 20;
_global.level = 1;
var missile = false;
var missileuse = false;
var normal = true;
var normaluse = true;
var cold = false;
var colduse = false;
var rifle = false;
var rifleuse = false;
var powerup = undefined;
var x2 = false;
var my_sound = new Sound();
var poweruptype;
my_sound.attachSound("cannon6");
var bombsound = new Sound();
bombsound.attachSound("boom");
dialog._visible = false;
var md = false;
setInterval(_root.shoot, 120);
_root.powerup = undefined;
_root.id = undefined;
var enemies = new Array();
_root.onMouseDown = function () {
if (!_root.paused) {
var _local6 = {x:_root.cannon.c.point._x, y:_root.cannon.c.point._y};
_root.cannon.c.localToGlobal(_local6);
md = true;
if (_root.dialog._visible == false) {
if (_root.missileuse) {
if (_global.soundEffects) {
_root.my_sound.start();
}
_root.cannon.c.gotoAndPlay(1);
mc = _root.attachMovie("missile", "b" + _root.getNextHighestDepth(), _root.getNextHighestDepth() + 10);
mc.swapDepths(_root.cannon);
mc._x = _local6.x;
mc._y = _local6.y;
mc._rotation = _root.cannon.c._rotation;
mc.onEnterFrame = function () {
if (!_root.paused) {
i = 0;
while (i < _root.enemies.length) {
if (this.hitTest(_root.enemies[i])) {
_root.enemies[i].health = _root.enemies[i].health - (_root.dmg + 4);
if (_root.enemies[i].health <= 0) {
_root.enemies[i].play();
_root.gold = _root.gold + 5;
} else {
_root.enemies[i].h._xscale = 100 * (_root.enemies[i].health / _root.enemies[i].totalHealth);
}
removeMovieClip(this);
}
i++;
}
}
_root.enemies.sort(order);
Xd = _root.enemies[0]._x - this._x;
Yd = _root.enemies[0]._y - this._y;
radAngle = Math.atan2(Yd, Xd);
this.er = int(((radAngle * 360) / (Math.PI*2)) + 90);
if (((this.er - this._rotation) / 7) > 10) {
this.goStraight = true;
} else {
this._rotation = this._rotation + ((this.er - this._rotation) / 7);
}
if (_rotation > 180) {
this._y = this._y + (_root.spd * Math.cos((Math.PI/180) * this._rotation));
this._x = this._x - (_root.spd * Math.sin((Math.PI/180) * this._rotation));
} else {
this._y = this._y - (_root.spd * Math.cos((Math.PI/180) * this._rotation));
this._x = this._x + (_root.spd * Math.sin((Math.PI/180) * this._rotation));
}
(((((this._x > 600) || (this._x < 0)) || (this._y > 600)) || (this._y < 0)) ? (removeMovieClip(this)) : null);
};
} else if (_root.normaluse) {
if (_global.soundEffects) {
_root.my_sound.start();
}
i = 1;
while (i < (_root.shots + 1)) {
_root.cannon.c.gotoAndPlay(1);
mc = _root.attachMovie("bullet", "b" + _root.getNextHighestDepth(), _root.getNextHighestDepth() + 10);
mc.swapDepths(_root.cannon);
mc._x = _local6.x;
mc._y = _local6.y;
if (_root.shots == 1) {
mc._rotation = _root.cannon.c._rotation;
} else {
mc._rotation = ((_root.cannon.c._rotation - (_root.shots * 7.5)) + ((i - 1) * 15)) + 7.5;
}
mc.onEnterFrame = function () {
if (!_root.paused) {
if (this.hitTest(_root.powerup)) {
if (_root.powerup._currentframe == 1) {
bombs = bombs + 3;
}
clearInterval(_root.id);
_root.id = undefined;
_root.poweruptype = _root.powerup._currentframe;
if (_root.powerup._currentframe == 2) {
powerupbox.text = "Powerup: Multishot";
_root.normshots = _root.shots;
_root.shots = _root.shots + 2;
_root.bar.play();
}
if (_root.powerup._currentframe == 3) {
_root.bar.play();
powerupbox.text = "Powerup: Missile";
if (_root.missile == false) {
_root.missile = true;
_root.missileuse = true;
_root.normaluse = false;
_root.colduse = false;
_root.rifleuse = false;
}
}
if (_root.powerup._currentframe == 4) {
_root.bar.play();
_root.powerupbox.text = "Powerup: 2x Gold";
_root.x2 = true;
}
removeMovieClip(_root.powerup);
_root.powerup = 6;
}
i = 0;
while (i < _root.enemies.length) {
if (this.hitTest(_root.enemies[i]) && (this.canthit != _root.enemies[i])) {
if (_root.enemies[i].iron != true) {
_root.enemies[i].health = _root.enemies[i].health - _root.dmg;
} else {
_root.enemies[i].health = _root.enemies[i].health - 1;
this._rotation = 360 - this._rotation;
this.canthit = _root.enemies[i];
}
if (_root.enemies[i].health <= 0) {
_root.enemies[i].play();
_root.gold = _root.gold + 5;
} else {
_root.enemies[i].h._xscale = 100 * (_root.enemies[i].health / _root.enemies[i].totalHealth);
}
if (_root.enemies[i].iron != true) {
removeMovieClip(this);
}
}
i++;
}
if (_rotation > 180) {
this._y = this._y + (_root.spd * Math.cos((Math.PI/180) * this._rotation));
this._x = this._x - (_root.spd * Math.sin((Math.PI/180) * this._rotation));
} else {
this._y = this._y - (_root.spd * Math.cos((Math.PI/180) * this._rotation));
this._x = this._x + (_root.spd * Math.sin((Math.PI/180) * this._rotation));
}
(((((this._x > 600) || (this._x < 0)) || (this._y > 600)) || (this._y < 0)) ? (removeMovieClip(this)) : null);
}
};
i++;
}
} else if (_root.colduse) {
i = 1;
while (i < (_root.shots + 1)) {
_root.cannon.c.gotoAndPlay(1);
mc = _root.attachMovie("coldbullet", "b" + _root.getNextHighestDepth(), _root.getNextHighestDepth() + 10);
mc.swapDepths(_root.cannon);
mc._x = _local6.x;
mc._y = _local6.y;
if (_root.shots == 1) {
mc._rotation = _root.cannon.c._rotation;
} else {
mc._rotation = ((_root.cannon.c._rotation - (_root.shots * 7.5)) + ((i - 1) * 15)) + 7.5;
}
mc.onEnterFrame = function () {
if (!_root.paused) {
if (this.hitTest(_root.powerup)) {
this._rotation = 360 - this._rotation;
}
i = 0;
while (i < _root.enemies.length) {
if (this.hitTest(_root.enemies[i]) && (this.canthit != _root.enemies[i])) {
var _local3 = new flash.geom.ColorTransform();
_local3.blueMultiplier = 8;
var _local4 = new flash.geom.Transform(enemies[i]);
_local4.colorTransform = _local3;
_root.enemies[i].health = 1;
_root.enemies[i].totalHealth = 1;
_root.enemies[i].onEnterFrame = function () {
this._y = this._y + 1;
};
removeMovieClip(this);
}
i++;
}
if (_rotation > 180) {
this._y = this._y + (_root.spd * Math.cos((Math.PI/180) * this._rotation));
this._x = this._x - (_root.spd * Math.sin((Math.PI/180) * this._rotation));
} else {
this._y = this._y - (_root.spd * Math.cos((Math.PI/180) * this._rotation));
this._x = this._x + (_root.spd * Math.sin((Math.PI/180) * this._rotation));
}
(((((this._x > 600) || (this._x < 0)) || (this._y > 600)) || (this._y < 0)) ? (removeMovieClip(this)) : null);
}
};
i++;
}
}
}
}
};
_root.onMouseUp = function () {
_root.md = false;
};
_root.onEnterFrame = function () {
_root.livez.text = _global.lives;
if (_global.lives < 0) {
removeMovieClip(_root.cannon);
delete _root.onEnterFrame;
removeMovieClip(_root.bar);
i = 0;
while (i < _root.enemies.length) {
removeMovieClip(_root.enemies[i]);
i++;
}
_root.gotoAndStop(9);
}
if (!_root.paused) {
_root.enemies = new Array();
var i = 0;
for (var _local4 in _root) {
if (_local4.indexOf("monster") == -1) {
continue;
}
_root.enemies[i] = _root[_local4];
i++;
}
if ((((Math.random() * 350) > 349) && (_root.powerup == undefined)) && (_root.id == undefined)) {
mc = _root.attachMovie("powerup", p + _root.getNextHighestDepth(), _root.getNextHighestDepth() + 10);
mc._x = -10;
mc._y = 400 - ((Math.random() * 100) + 300);
mc.gotoAndStop(Math.floor(Math.random() * 4) + 1);
mc.onEnterFrame = function () {
if (!_root.paused) {
this._x = this._x + 4;
this._rotation = this._rotation + 5;
if (this._x > 650) {
_root.powerup = undefined;
removeMovieClip(this);
}
}
};
powerup = mc;
}
_root.frames++;
if ((frames % 26) == 0) {
_root.countdown--;
if (_root.countdown == 0) {
if (_root.oldCountdown != 20) {
_root.countdown = _root.oldCountdown - 2;
_root.oldCountdown = _root.oldCountdown - 2;
} else {
_root.countdown = 20;
}
_global.level++;
_root.lvlanim.play();
if ((_global.level % 5) == 0) {
_root.bg.play();
}
}
}
if (!buying) {
_root.goldTxt.text = _root.gold;
}
if (_global.level < 10) {
if ((Math.random() * 520) > ((513 - (_global.level * 2)) - (_root.diffmod * 3))) {
var mc;
if ((Math.random() * 10) > 8) {
mc = _root.attachMovie("e3", "monster" + _root.getNextHighestDepth(), _root.getNextHighestDepth() + 10);
mc.health = Math.round(((Math.random() * _global.level) * 2) + 6) * 3;
mc.green = true;
} else if ((Math.random() * 10) > 5) {
mc = _root.attachMovie("e1", "monster" + _root.getNextHighestDepth(), _root.getNextHighestDepth() + 10);
mc.health = Math.round(((Math.random() * _global.level) * 2) + 6);
mc.green = false;
} else {
mc = _root.attachMovie("e5", "monster" + _root.getNextHighestDepth(), _root.getNextHighestDepth() + 10);
mc.health = Math.round(((Math.random() * _global.level) * 2) + 6);
mc.green = false;
mc.speedy = true;
}
mc._x = Math.random() * 550;
mc._y = Math.random() * 25;
mc.totalHealth = mc.health;
_root.bar.swapDepths(mc);
mc.onEnterFrame = function () {
if (!_root.paused) {
if (this.speedy) {
this._y = this._y + 5;
} else if (this.green) {
this._y = this._y + 0.8;
} else {
this._y = this._y + 3;
}
if (this._y > 420) {
if (this.getDepth() < 0) {
this._name = "ASdasdasdas";
unloadMovie (this);
} else {
removeMovieClip(this);
}
_global.lives--;
}
}
};
}
} else if ((Math.random() * 520) > (504 - (_root.diffmod * 3))) {
var mc;
if ((Math.random() * 5) > 4) {
mc = _root.attachMovie("e2", "monster" + _root.getNextHighestDepth(), _root.getNextHighestDepth() + 10);
mc.iron = true;
mc.health = Math.round(((Math.random() * _global.level) * 2) + 6);
} else {
if ((Math.random() * 4) > 3) {
mc = _root.attachMovie("e3", "monster" + _root.getNextHighestDepth(), _root.getNextHighestDepth() + 10);
mc.health = Math.round(((Math.random() * _global.level) * 2) + 6) * 3;
mc.green = true;
} else if ((Math.random() * 20) > 19) {
mc = _root.attachMovie("e4", "monster" + _root.getNextHighestDepth(), _root.getNextHighestDepth() + 10);
mc.health = Math.round(((Math.random() * _global.level) * 2) + 6) * 6;
} else if ((Math.random() * 10) > 8) {
mc = _root.attachMovie("e1", "monster" + _root.getNextHighestDepth(), _root.getNextHighestDepth() + 10);
mc.health = Math.round(((Math.random() * _global.level) * 2) + 6);
mc.green = false;
} else {
mc = _root.attachMovie("e5", "monster" + _root.getNextHighestDepth(), _root.getNextHighestDepth() + 10);
mc.health = Math.round(((Math.random() * _global.level) * 2) + 6);
mc.green = false;
mc.speedy = true;
}
mc.iron = false;
}
mc._x = Math.random() * 550;
mc._y = Math.random() * 25;
mc.totalHealth = mc.health;
mc.h._xscale = 100;
mc.swapped = false;
mc.onEnterFrame = function () {
if (!_root.paused) {
if ((!this.swapped) && (this.hitTest(_root.bar))) {
this.swapDepths(_root.bar);
this.swapped = true;
}
if (this.speedy) {
this._y = this._y + 5;
} else if (this.green) {
this._y = this._y + 0.8;
} else {
this._y = this._y + 3;
}
if (this._y > 420) {
removeMovieClip(this);
_global.lives--;
}
}
};
}
}
};
_root.cannon.c.gotoAndPlay(1);
mc = _root.attachMovie("bomb", ("b" + _root.getNextHighestDepth()) + 1, _root.getNextHighestDepth() + 10);
mc.swapDepths(_root.cannon);
mc._x = 900;
mc._y = 900;
mc.spd = 11;
mc._rotation = _root.cannon.c._rotation;
mc.onEnterFrame = function () {
i = 0;
while (i < _root.enemies.length) {
if (this.hitTest(_root.enemies[i])) {
_root.enemies[i].health = _root.enemies[i].health - 200;
if (_root.enemies[i].health <= 0) {
_root.enemies[i].play();
_root.gold = _root.gold + 5;
} else {
_root.enemies[i].h._xscale = 100 * (_root.enemies[i].health / _root.enemies[i].totalHealth);
}
this.play();
this.spd = 0;
}
i++;
}
if (_rotation > 180) {
this._y = this._y + (this.spd * Math.cos((Math.PI/180) * this._rotation));
this._x = this._x - (this.spd * Math.sin((Math.PI/180) * this._rotation));
} else {
this._y = this._y - (this.spd * Math.cos((Math.PI/180) * this._rotation));
this._x = this._x + (this.spd * Math.sin((Math.PI/180) * this._rotation));
}
(((((this._x > 600) || (this._x < 0)) || (this._y > 600)) || (this._y < 0)) ? (removeMovieClip(this)) : null);
};
var mc;
mc = _root.attachMovie("e1", "monster" + _root.getNextHighestDepth(), _root.getNextHighestDepth() + 10);
mc._x = -5000;
_root.bar.swapDepths(mc);
Instance of Symbol 59 MovieClip [bar] "bar" in Frame 7
onClipEvent (enterFrame) {
if (this._currentframe > 1) {
if (_root.paused) {
this.stop();
} else {
this.play();
}
}
}
Instance of Symbol 230 MovieClip "cannon" in Frame 7
onClipEvent (mouseMove) {
if (!_root.paused) {
Xd = _root._xmouse - _x;
Yd = _root._ymouse - _y;
radAngle = Math.atan2(Yd, Xd);
this.c._rotation = int(((radAngle * 360) / (Math.PI*2)) + 90);
updateAfterEvent();
}
}
on (rollOver) {
_root.dialog._visible = true;
}
on (rollOut) {
if (!_root.paused) {
_root.dialog._visible = false;
}
}
onClipEvent (keyDown) {
if (Key.isDown(80)) {
if ((_root.psd._currentframe == 1) || (_root.psd._currentframe == 32)) {
if (!_root.pauseDisabled) {
_root.paused = !_root.paused;
if (_root.paused) {
_root.psd.gotoAndPlay(1);
} else {
_root.psd.gotoAndPlay(32);
}
}
}
}
if (!_root.paused) {
if (_root.bombs > 0) {
if (Key.isDown(32)) {
_root.bombs--;
if (_global.soundEffects) {
_root.bombsound.start();
}
i = 1;
while (i < (_root.shots + 1)) {
_root.cannon.c.gotoAndPlay(1);
mc = _root.attachMovie("bomb", ("b" + _root.getNextHighestDepth()) + 1, _root.getNextHighestDepth());
mc.swapDepths(_root.cannon);
mc._x = _root.cannon._x;
mc._y = _root.cannon._y;
mc.spd = 11;
mc._rotation = _root.cannon.c._rotation;
mc.onEnterFrame = function () {
i = 0;
while (i < _root.enemies.length) {
if (this.hitTest(_root.enemies[i])) {
_root.enemies[i].health = _root.enemies[i].health - 200;
if (_root.enemies[i].health <= 0) {
_root.enemies[i].play();
_root.enemies.splice(i, 1);
_root.gold = _root.gold + 5;
} else {
_root.enemies[i].h._xscale = 100 * (_root.enemies[i].health / _root.enemies[i].totalHealth);
}
this.play();
this.spd = 0;
}
i++;
}
if (_rotation > 180) {
this._y = this._y + (this.spd * Math.cos((Math.PI/180) * this._rotation));
this._x = this._x - (this.spd * Math.sin((Math.PI/180) * this._rotation));
} else {
this._y = this._y - (this.spd * Math.cos((Math.PI/180) * this._rotation));
this._x = this._x + (this.spd * Math.sin((Math.PI/180) * this._rotation));
}
(((((this._x > 600) || (this._x < 0)) || (this._y > 600)) || (this._y < 0)) ? (removeMovieClip(this)) : null);
};
i++;
}
}
}
}
}
onClipEvent (keyDown) {
trace(Key.getCode());
if (!_root.paused) {
if (Key.isDown(65)) {
_root.dialog.a.cost = ((_root.spd - 11) * 150) + 50;
if (_root.gold > _root.dialog.a.cost) {
_root.gold = _root.gold - _root.dialog.a.cost;
_root.spd = _root.spd + 2;
}
_root.dialog.a.cost = ((_root.spd - 11) * 150) + 50;
_root.buying = true;
_root.goldTxt.text = _root.gold - _root.dialog.a.cost;
if (_root.goldTxt.text > 0) {
_root.goldTxt.textColor = 255;
} else {
_root.goldTxt.textColor = 16711680 /* 0xFF0000 */;
}
}
if (Key.isDown(70)) {
this.cost = 45;
if (_root.gold > this.cost) {
_root.gold = _root.gold - this.cost;
_root.bombs = _root.bombs + 1;
}
_root.buying = true;
_root.goldTxt.text = _root.gold - this.cost;
if (_root.goldTxt.text > 0) {
_root.goldTxt.textColor = 255;
} else {
_root.goldTxt.textColor = 16711680 /* 0xFF0000 */;
}
}
if (Key.isDown(83)) {
_root.dialog.b.cost = ((_root.normshots - 1) * 400) + 250;
if (_root.gold > _root.dialog.b.cost) {
_root.gold = _root.gold - _root.dialog.b.cost;
_root.shots = _root.shots + 1;
_root.normshots = _root.normshots + 1;
}
_root.dialog.b.cost = ((_root.normshots - 1) * 400) + 250;
_root.buying = true;
_root.goldTxt.text = _root.gold - _root.dialog.b.cost;
if (_root.goldTxt.text > 0) {
_root.goldTxt.textColor = 255;
} else {
_root.goldTxt.textColor = 16711680 /* 0xFF0000 */;
}
}
if (Key.isDown(68)) {
_root.dialog.c.cost = ((_root.dmg - 4) * 75) + 50;
if (_root.gold > _root.dialog.c.cost) {
_root.gold = _root.gold - _root.dialog.c.cost;
_root.dmg = _root.dmg + 2;
}
_root.dialog.c.cost = ((_root.dmg - 4) * 150) + 50;
_root.buying = true;
_root.goldTxt.text = _root.gold - _root.dialog.c.cost;
if (_root.goldTxt.text > 0) {
_root.goldTxt.textColor = 255;
} else {
_root.goldTxt.textColor = 16711680 /* 0xFF0000 */;
}
}
if (Key.isDown(90)) {
if (_root.normaluse) {
_root.normaluse = false;
if (_root.rifle) {
_root.rifleuse = true;
return(undefined);
}
if (_root.cold) {
_root.colduse = true;
return(undefined);
}
if (_root.missile) {
_root.missileuse = true;
return(undefined);
}
_root.normaluse = true;
return(undefined);
}
if (_root.rifleuse) {
_root.rifleuse = false;
if (_root.cold) {
_root.colduse = true;
return(undefined);
}
if (_root.missile) {
_root.missileuse = true;
return(undefined);
}
_root.normaluse = true;
return(undefined);
}
if (_root.colduse) {
_root.colduse = false;
if (_root.missile) {
_root.missileuse = true;
return(undefined);
}
_root.normaluse = true;
return(undefined);
}
if (_root.missileuse) {
_root.missileuse = false;
_root.normaluse = true;
}
}
}
}
Instance of Symbol 297 MovieClip "dialog" in Frame 7
on (rollOver) {
this._visible = true;
}
on (rollOut) {
this._visible = false;
_root.buying = false;
_root.goldTxt.text = _root.gold;
_root.goldTxt.textColor = 0;
}
onClipEvent (enterFrame) {
if ((((!this.a.hitTest(_root._xmouse, _root._ymouse)) && (!this.b.hitTest(_root._xmouse, _root._ymouse))) && (!this.c.hitTest(_root._xmouse, _root._ymouse))) && (!this.d.hitTest(_root._xmouse, _root._ymouse))) {
_root.buying = false;
_root.goldTxt.text = _root.gold;
_root.goldTxt.textColor = 0;
}
}
Instance of Symbol 301 MovieClip "riflebtn" in Frame 7
onClipEvent (enterFrame) {
if (_root.rifleuse) {
gotoAndStop (2);
return(undefined);
}
if (_root.rifle) {
gotoAndStop (3);
return(undefined);
}
gotoAndStop (1);
}
on (press) {
if (_root.rifle) {
_root.normaluse = false;
_root.colduse = false;
_root.rifleuse = true;
_root.missileuse = false;
}
}
Instance of Symbol 304 MovieClip "normalbtn" in Frame 7
onClipEvent (enterFrame) {
if (_root.normaluse) {
gotoAndStop (2);
return(undefined);
}
if (_root.normal) {
gotoAndStop (3);
return(undefined);
}
gotoAndStop (1);
}
on (press) {
_root.normaluse = true;
_root.colduse = false;
_root.rifleuse = false;
_root.missileuse = false;
}
Instance of Symbol 307 MovieClip "coldbtn" in Frame 7
onClipEvent (enterFrame) {
if (_root.colduse) {
gotoAndStop (2);
return(undefined);
}
if (_root.cold) {
gotoAndStop (3);
return(undefined);
}
gotoAndStop (1);
}
on (press) {
if (_root.cold) {
_root.normaluse = false;
_root.colduse = true;
_root.rifleuse = false;
_root.missileuse = false;
}
}
Instance of Symbol 311 MovieClip "rocketbtn" in Frame 7
onClipEvent (enterFrame) {
if (_root.missileuse) {
gotoAndStop (2);
return(undefined);
}
if (_root.missile) {
gotoAndStop (3);
return(undefined);
}
gotoAndStop (1);
}
on (press) {
if (_root.missile) {
_root.normaluse = false;
_root.colduse = false;
_root.rifleuse = false;
_root.missileuse = true;
}
}
Frame 8
_root.onEnterFrame = function () {
if (_global.soundEffects) {
_root.sfx.text = "ON";
} else {
_root.sfx.text = "OFF";
}
if (_global.music) {
_root.music.text = "ON";
} else {
_root.music.text = "OFF";
}
_root.qual.text = _quality;
};
Instance of Symbol 316 MovieClip in Frame 8
on (press) {
_global.soundEffects = !_global.soundEffects;
}
Instance of Symbol 319 MovieClip in Frame 8
on (press) {
_global.music = !_global.music;
if (!_global.music) {
_global.muzic.stop();
} else {
_global.muzic.start(0, 10000);
}
}
Instance of Symbol 322 MovieClip in Frame 8
on (press) {
if (_quality == "HIGH") {
_quality = "MEDIUM";
} else if (_quality == "MEDIUM") {
_quality = "LOW";
} else if (_quality == "LOW") {
_quality = "HIGH";
}
}
Frame 9
stop();
_root.lvltext.text = ("You survived until level " + _global.level) + ".";
Instance of Symbol 334 MovieClip in Frame 9
on (press) {
_global.lives = 25;
_global.level = 1;
_root.gotoAndStop(7);
}
Instance of Symbol 336 MovieClip in Frame 9
on (press) {
_root.gotoAndStop(6);
}
Instance of Symbol 340 MovieClip in Frame 10
on (press) {
_root.gotoAndStop(6);
}
Instance of Symbol 342 MovieClip in Frame 10
on (press) {
getURL ("http://www.google.com", "_blank");
}
Symbol 5 MovieClip Frame 1
_root.prev = _root.paused;
_root.paused = true;
_root.pauseDisabled = true;
Symbol 5 MovieClip Frame 74
_root.paused = _root.prev;
_root.pauseDisabled = false;
stop();
Symbol 14 MovieClip [exp] Frame 29
removeMovieClip(this);
Symbol 15 MovieClip Frame 29
removeMovieClip(this._parent);
Symbol 24 MovieClip Frame 29
removeMovieClip(this._parent);
Symbol 46 MovieClip [e5] Frame 1
stop();
Symbol 46 MovieClip [e5] Frame 2
mc = _root.attachMovie("redexp", "grayexp" + _root.getNextHighestDepth(), _root.getNextHighestDepth());
mc._x = this._x;
mc._y = this._y - 15;
Symbol 46 MovieClip [e5] Frame 3
if (_root.x2) {
_root.gold = _root.gold + 5;
gotoAndPlay (14);
}
Symbol 46 MovieClip [e5] Frame 13
removeMovieClip(this);
Symbol 46 MovieClip [e5] Frame 23
removeMovieClip(this);
Symbol 48 MovieClip [e4] Frame 1
stop();
Symbol 48 MovieClip [e4] Frame 2
mc = _root.attachMovie("orangeexp", "exp" + _root.getNextHighestDepth(), _root.getNextHighestDepth());
mc._x = this._x;
mc._y = this._y - 15;
Symbol 48 MovieClip [e4] Frame 3
if (_root.x2) {
_root.gold = _root.gold + 5;
gotoAndPlay (14);
}
Symbol 48 MovieClip [e4] Frame 13
removeMovieClip(this);
Symbol 48 MovieClip [e4] Frame 23
removeMovieClip(this);
Symbol 50 MovieClip [e3] Frame 1
stop();
Symbol 50 MovieClip [e3] Frame 2
mc = _root.attachMovie("greenexp", "exp" + _root.getNextHighestDepth(), _root.getNextHighestDepth());
mc._x = this._x;
mc._y = this._y - 15;
Symbol 50 MovieClip [e3] Frame 3
if (_root.x2) {
_root.gold = _root.gold + 5;
gotoAndPlay (14);
}
Symbol 50 MovieClip [e3] Frame 13
removeMovieClip(this);
Symbol 50 MovieClip [e3] Frame 23
removeMovieClip(this);
Symbol 52 MovieClip [e2] Frame 1
stop();
Symbol 52 MovieClip [e2] Frame 2
mc = _root.attachMovie("exp", "grayexp" + _root.getNextHighestDepth(), _root.getNextHighestDepth());
mc._x = this._x;
mc._y = this._y - 15;
Symbol 52 MovieClip [e2] Frame 3
if (_root.x2) {
_root.gold = _root.gold + 5;
gotoAndPlay (14);
}
Symbol 52 MovieClip [e2] Frame 13
removeMovieClip(this);
Symbol 52 MovieClip [e2] Frame 23
removeMovieClip(this);
Symbol 54 MovieClip [e1] Frame 1
stop();
Symbol 54 MovieClip [e1] Frame 2
mc = _root.attachMovie("exp", "exp" + _root.getNextHighestDepth(), _root.getNextHighestDepth());
mc._x = this._x;
mc._y = this._y - 15;
Symbol 54 MovieClip [e1] Frame 3
if (_root.x2) {
_root.gold = _root.gold + 5;
gotoAndPlay (14);
}
Symbol 54 MovieClip [e1] Frame 13
if (this.getDepth() < 0) {
unloadMovie (this);
this._name = "ASdasdasdas";
} else {
removeMovieClip(this);
}
Symbol 54 MovieClip [e1] Frame 23
if (this.getDepth() < 0) {
this._name = "ASdasdasdas";
unloadMovie (this);
} else {
removeMovieClip(this);
this._name = "ASdasdasdas";
}
Symbol 57 MovieClip [bomb] Frame 1
stop();
Symbol 57 MovieClip [bomb] Frame 20
removeMovieClip(this);
Symbol 59 MovieClip [bar] Frame 1
stop();
Symbol 59 MovieClip [bar] Frame 520
if (_root.poweruptype == 2) {
_root.shots = _root.shots - 2;
_root.powerupbox.text = "";
}
if (_root.poweruptype == 3) {
_root.missile = false;
_root.missileuse = false;
_root.normaluse = true;
_root.powerupbox.text = "";
}
if (_root.poweruptype == 4) {
_root.x2 = false;
_root.powerupbox.text = "";
}
_root.powerup = undefined;
_root.id = undefined;
Symbol 64 MovieClip Frame 1
stop();
Symbol 64 MovieClip Frame 2
stop();
Instance of Symbol 64 MovieClip in Symbol 65 MovieClip [preloaderexplosion] Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y + yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Instance of Symbol 64 MovieClip in Symbol 65 MovieClip [preloaderexplosion] Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y + yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Instance of Symbol 64 MovieClip in Symbol 65 MovieClip [preloaderexplosion] Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y + yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Instance of Symbol 64 MovieClip in Symbol 65 MovieClip [preloaderexplosion] Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y + yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Instance of Symbol 64 MovieClip in Symbol 65 MovieClip [preloaderexplosion] Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y + yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Instance of Symbol 64 MovieClip in Symbol 65 MovieClip [preloaderexplosion] Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y + yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Instance of Symbol 64 MovieClip in Symbol 65 MovieClip [preloaderexplosion] Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y + yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Instance of Symbol 64 MovieClip in Symbol 65 MovieClip [preloaderexplosion] Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y + yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Instance of Symbol 64 MovieClip in Symbol 65 MovieClip [preloaderexplosion] Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y + yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Instance of Symbol 64 MovieClip in Symbol 65 MovieClip [preloaderexplosion] Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y + yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Instance of Symbol 64 MovieClip in Symbol 65 MovieClip [preloaderexplosion] Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y + yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Instance of Symbol 64 MovieClip in Symbol 65 MovieClip [preloaderexplosion] Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y + yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Instance of Symbol 64 MovieClip in Symbol 65 MovieClip [preloaderexplosion] Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y + yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Instance of Symbol 64 MovieClip in Symbol 65 MovieClip [preloaderexplosion] Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y + yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Instance of Symbol 64 MovieClip in Symbol 65 MovieClip [preloaderexplosion] Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y + yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Instance of Symbol 64 MovieClip in Symbol 65 MovieClip [preloaderexplosion] Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y + yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Instance of Symbol 64 MovieClip in Symbol 65 MovieClip [preloaderexplosion] Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y + yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Instance of Symbol 64 MovieClip in Symbol 65 MovieClip [preloaderexplosion] Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y + yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Instance of Symbol 64 MovieClip in Symbol 65 MovieClip [preloaderexplosion] Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y + yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Instance of Symbol 64 MovieClip in Symbol 65 MovieClip [preloaderexplosion] Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y + yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Instance of Symbol 64 MovieClip in Symbol 65 MovieClip [preloaderexplosion] Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y + yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Instance of Symbol 64 MovieClip in Symbol 65 MovieClip [preloaderexplosion] Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y + yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Instance of Symbol 64 MovieClip in Symbol 65 MovieClip [preloaderexplosion] Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y + yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Instance of Symbol 64 MovieClip in Symbol 65 MovieClip [preloaderexplosion] Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y + yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Instance of Symbol 64 MovieClip in Symbol 65 MovieClip [preloaderexplosion] Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y + yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Instance of Symbol 64 MovieClip in Symbol 65 MovieClip [preloaderexplosion] Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y + yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Instance of Symbol 64 MovieClip in Symbol 65 MovieClip [preloaderexplosion] Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y + yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Instance of Symbol 64 MovieClip in Symbol 65 MovieClip [preloaderexplosion] Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y + yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Instance of Symbol 64 MovieClip in Symbol 65 MovieClip [preloaderexplosion] Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y + yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Instance of Symbol 64 MovieClip in Symbol 65 MovieClip [preloaderexplosion] Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y + yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Instance of Symbol 64 MovieClip in Symbol 65 MovieClip [preloaderexplosion] Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y + yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Instance of Symbol 64 MovieClip in Symbol 65 MovieClip [preloaderexplosion] Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y + yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Symbol 73 MovieClip Frame 100
trace("fire2");
_root.gotoAndStop(3);
Symbol 81 MovieClip Frame 1
stop();
Symbol 90 MovieClip Frame 1
stop();
Symbol 90 MovieClip Frame 2
stop();
Instance of Symbol 90 MovieClip in Symbol 91 MovieClip Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y - yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Instance of Symbol 90 MovieClip in Symbol 91 MovieClip Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y - yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Instance of Symbol 90 MovieClip in Symbol 91 MovieClip Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y - yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Instance of Symbol 90 MovieClip in Symbol 91 MovieClip Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y - yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Instance of Symbol 90 MovieClip in Symbol 91 MovieClip Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y - yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Instance of Symbol 90 MovieClip in Symbol 91 MovieClip Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y - yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Instance of Symbol 90 MovieClip in Symbol 91 MovieClip Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y - yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Instance of Symbol 90 MovieClip in Symbol 91 MovieClip Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y - yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Instance of Symbol 90 MovieClip in Symbol 91 MovieClip Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y - yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Instance of Symbol 90 MovieClip in Symbol 91 MovieClip Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y - yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Instance of Symbol 90 MovieClip in Symbol 91 MovieClip Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y - yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Instance of Symbol 90 MovieClip in Symbol 91 MovieClip Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y - yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Instance of Symbol 64 MovieClip in Symbol 94 MovieClip Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y - yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Instance of Symbol 64 MovieClip in Symbol 94 MovieClip Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y - yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Instance of Symbol 64 MovieClip in Symbol 94 MovieClip Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y - yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Instance of Symbol 64 MovieClip in Symbol 94 MovieClip Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y - yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Instance of Symbol 64 MovieClip in Symbol 94 MovieClip Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y - yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Instance of Symbol 64 MovieClip in Symbol 94 MovieClip Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y - yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Instance of Symbol 64 MovieClip in Symbol 94 MovieClip Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y - yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Instance of Symbol 64 MovieClip in Symbol 94 MovieClip Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y - yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Instance of Symbol 64 MovieClip in Symbol 94 MovieClip Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y - yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Instance of Symbol 64 MovieClip in Symbol 94 MovieClip Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y - yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Instance of Symbol 64 MovieClip in Symbol 94 MovieClip Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y - yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Instance of Symbol 64 MovieClip in Symbol 94 MovieClip Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y - yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Instance of Symbol 64 MovieClip in Symbol 94 MovieClip Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y - yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Instance of Symbol 64 MovieClip in Symbol 94 MovieClip Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y - yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Instance of Symbol 64 MovieClip in Symbol 94 MovieClip Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y - yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Instance of Symbol 64 MovieClip in Symbol 94 MovieClip Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y - yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Instance of Symbol 64 MovieClip in Symbol 94 MovieClip Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y - yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Instance of Symbol 64 MovieClip in Symbol 94 MovieClip Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y - yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Instance of Symbol 64 MovieClip in Symbol 94 MovieClip Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y - yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Symbol 101 MovieClip Frame 222
trace("fire");
_root.play();
Symbol 119 MovieClip Frame 34
stop();
Symbol 122 Button
on (press) {
_root.gotoAndStop(10);
}
Symbol 138 MovieClip Frame 11
stop();
Symbol 139 Button
on (press) {
_global.lives = 25;
_global.diff = "easy";
_root.gotoAndStop(7);
}
Symbol 140 MovieClip Frame 1
stop();
Symbol 140 MovieClip Frame 14
stop();
Symbol 150 MovieClip Frame 34
stop();
Symbol 153 Button
on (press) {
_root.gotoAndStop(11);
}
Symbol 171 Button
on (press) {
_global.lives = 15;
_global.diff = "medium";
_root.gotoAndStop(7);
}
Symbol 172 MovieClip Frame 1
stop();
Symbol 172 MovieClip Frame 14
stop();
Symbol 183 MovieClip Frame 32
stop();
Symbol 185 Button
on (press) {
_root.gotoAndStop(8);
}
Symbol 200 MovieClip Frame 34
stop();
Symbol 201 Button
on (press) {
_global.lives = 5;
_global.diff = "hard";
_root.gotoAndStop(7);
}
Symbol 202 MovieClip Frame 1
stop();
Symbol 202 MovieClip Frame 12
stop();
Symbol 210 MovieClip Frame 32
stop();
Symbol 212 Button
on (press) {
_root.a.play();
_root.b.play();
_root.c.play();
}
Symbol 218 Button
on (press) {
getURL ("http://www.hallpass.com", "_blank");
}
Symbol 222 MovieClip Frame 1
_root.pauseDisabled = false;
stop();
Symbol 222 MovieClip Frame 2
_root.pauseDisabled = true;
Symbol 222 MovieClip Frame 46
_root.pauseDisabled = false;
stop();
Symbol 222 MovieClip Frame 47
_root.pauseDisabled = true;
Symbol 222 MovieClip Frame 95
_root.pauseDisabled = false;
stop();
Symbol 222 MovieClip Frame 96
_root.pauseDisabled = true;
Symbol 222 MovieClip Frame 131
_root.pauseDisabled = false;
stop();
Symbol 222 MovieClip Frame 164
stop();
Symbol 222 MovieClip Frame 194
stop();
Symbol 228 MovieClip Frame 1
stop();
Symbol 237 MovieClip Frame 1
stop();
Symbol 237 MovieClip Frame 32
stop();
Symbol 265 MovieClip Frame 171
_root.prev = _root.paused;
_root.paused = true;
_root.pauseDisabled = true;
Symbol 265 MovieClip Frame 257
_root.paused = _root.prev;
_root.pauseDisabled = false;
Symbol 265 MovieClip Frame 594
stop();
Symbol 268 MovieClip Frame 1
stop();
Instance of Symbol 267 MovieClip "tween" in Symbol 268 MovieClip Frame 3
onClipEvent (enterFrame) {
this.lvltxt.text = "Level " + _global.level;
}
Symbol 297 MovieClip Frame 1
stop();
Instance of Symbol 273 MovieClip "b" in Symbol 297 MovieClip Frame 1
onClipEvent (mouseMove) {
this.cost = ((_root.normshots - 1) * 400) + 250;
if (this.hitTest(_root._xmouse, _root._ymouse) && (_root.dialog._visible == true)) {
_root.buying = true;
_root.goldTxt.text = _root.gold - this.cost;
if (_root.goldTxt.text > 0) {
_root.goldTxt.textColor = 255;
} else {
_root.goldTxt.textColor = 16711680 /* 0xFF0000 */;
}
}
}
onClipEvent (mouseDown) {
if (this.hitTest(_root._xmouse, _root._ymouse) && (_root.dialog._visible == true)) {
this.cost = ((_root.normshots - 1) * 400) + 250;
if (_root.gold > this.cost) {
_root.gold = _root.gold - this.cost;
_root.shots = _root.shots + 1;
_root.normshots = _root.normshots + 1;
}
this.cost = ((_root.normshots - 1) * 400) + 250;
_root.buying = true;
_root.goldTxt.text = _root.gold - this.cost;
if (_root.goldTxt.text > 0) {
_root.goldTxt.textColor = 255;
} else {
_root.goldTxt.textColor = 16711680 /* 0xFF0000 */;
}
}
}
Instance of Symbol 275 MovieClip "c" in Symbol 297 MovieClip Frame 1
onClipEvent (mouseMove) {
this.cost = ((_root.dmg - 4) * 75) + 50;
if (this.hitTest(_root._xmouse, _root._ymouse) && (_root.dialog._visible == true)) {
_root.buying = true;
_root.goldTxt.text = _root.gold - this.cost;
if (_root.goldTxt.text > 0) {
_root.goldTxt.textColor = 255;
} else {
_root.goldTxt.textColor = 16711680 /* 0xFF0000 */;
}
}
}
onClipEvent (mouseDown) {
if (this.hitTest(_root._xmouse, _root._ymouse) && (_root.dialog._visible == true)) {
this.cost = ((_root.dmg - 4) * 75) + 50;
if (_root.gold > this.cost) {
_root.gold = _root.gold - this.cost;
_root.dmg = _root.dmg + 2;
}
this.cost = ((_root.dmg - 4) * 150) + 50;
_root.buying = true;
_root.goldTxt.text = _root.gold - this.cost;
if (_root.goldTxt.text > 0) {
_root.goldTxt.textColor = 255;
} else {
_root.goldTxt.textColor = 16711680 /* 0xFF0000 */;
}
}
}
Instance of Symbol 277 MovieClip "d" in Symbol 297 MovieClip Frame 1
onClipEvent (mouseMove) {
this.cost = 45;
if (this.hitTest(_root._xmouse, _root._ymouse) && (_root.dialog._visible == true)) {
_root.buying = true;
_root.goldTxt.text = _root.gold - this.cost;
if (_root.goldTxt.text > 0) {
_root.goldTxt.textColor = 255;
} else {
_root.goldTxt.textColor = 16711680 /* 0xFF0000 */;
}
}
}
onClipEvent (mouseDown) {
if (this.hitTest(_root._xmouse, _root._ymouse) && (_root.dialog._visible == true)) {
this.cost = 45;
if (_root.gold > this.cost) {
_root.gold = _root.gold - this.cost;
_root.bombs = _root.bombs + 1;
}
this.cost = 45;
_root.buying = true;
_root.goldTxt.text = _root.gold - this.cost;
if (_root.goldTxt.text > 0) {
_root.goldTxt.textColor = 255;
} else {
_root.goldTxt.textColor = 16711680 /* 0xFF0000 */;
}
}
}
Instance of Symbol 279 MovieClip in Symbol 297 MovieClip Frame 1
onClipEvent (mouseDown) {
if (this.hitTest(_root._xmouse, _root._ymouse) && (_root.dialog._visible == true)) {
_root.dialog.gotoAndStop(2);
}
}
Instance of Symbol 285 MovieClip "a" in Symbol 297 MovieClip Frame 1
onClipEvent (mouseMove) {
this.cost = ((_root.spd - 11) * 150) + 50;
if (this.hitTest(_root._xmouse, _root._ymouse) && (_root.dialog._visible == true)) {
_root.buying = true;
_root.goldTxt.text = _root.gold - this.cost;
if (_root.goldTxt.text > 0) {
_root.goldTxt.textColor = 255;
} else {
_root.goldTxt.textColor = 16711680 /* 0xFF0000 */;
}
}
}
onClipEvent (mouseDown) {
if (this.hitTest(_root._xmouse, _root._ymouse) && (_root.dialog._visible == true)) {
this.cost = ((_root.spd - 11) * 150) + 50;
if (_root.gold > this.cost) {
_root.gold = _root.gold - this.cost;
_root.spd = _root.spd + 2;
}
this.cost = ((_root.spd - 11) * 150) + 50;
_root.buying = true;
_root.goldTxt.text = _root.gold - this.cost;
if (_root.goldTxt.text > 0) {
_root.goldTxt.textColor = 255;
} else {
_root.goldTxt.textColor = 16711680 /* 0xFF0000 */;
}
}
}
Symbol 297 MovieClip Frame 2
stop();
Instance of Symbol 289 MovieClip "b" in Symbol 297 MovieClip Frame 2
onClipEvent (mouseMove) {
this.cost = 400;
if (this.hitTest(_root._xmouse, _root._ymouse) && (_root.dialog._visible == true)) {
_root.buying = true;
_root.goldTxt.text = _root.gold - this.cost;
if (_root.goldTxt.text > 0) {
_root.goldTxt.textColor = 255;
} else {
_root.goldTxt.textColor = 16711680 /* 0xFF0000 */;
}
}
}
onClipEvent (mouseDown) {
if (this.hitTest(_root._xmouse, _root._ymouse) && (_root.dialog._visible == true)) {
this.cost = 400;
if (_root.gold > this.cost) {
_root.gold = _root.gold - this.cost;
_root.normaluse = false;
_root.rifleuse = false;
_root.cold = true;
_root.colduse = true;
_root.missileuse = false;
if (_root.duh == undefined) {
_root.attachMovie("zbtn", "duh", _root.getNextHighestDepth());
_root.duh._x = 200;
_root.duh._y = 200;
}
}
}
removeMovieClip(this);
}
Instance of Symbol 279 MovieClip in Symbol 297 MovieClip Frame 2
onClipEvent (mouseDown) {
if (this.hitTest(_root._xmouse, _root._ymouse) && (_root.dialog._visible == true)) {
_root.dialog.gotoAndStop(1);
}
}
Instance of Symbol 293 MovieClip "c" in Symbol 297 MovieClip Frame 2
onClipEvent (mouseMove) {
this.cost = (_global.livesBought * 200) + 200;
if (this.hitTest(_root._xmouse, _root._ymouse) && (_root.dialog._visible == true)) {
_root.buying = true;
_root.goldTxt.text = _root.gold - this.cost;
if (_root.goldTxt.text > 0) {
_root.goldTxt.textColor = 255;
} else {
_root.goldTxt.textColor = 16711680 /* 0xFF0000 */;
}
}
}
onClipEvent (mouseDown) {
if (this.hitTest(_root._xmouse, _root._ymouse) && (_root.dialog._visible == true)) {
this.cost = (_global.livesBought * 200) + 200;
_global.livesBought++;
if (_root.gold > this.cost) {
_global.lives++;
}
}
}
Instance of Symbol 296 MovieClip "a" in Symbol 297 MovieClip Frame 2
onClipEvent (mouseMove) {
this.cost = 500;
if (this.hitTest(_root._xmouse, _root._ymouse) && (_root.dialog._visible == true)) {
_root.buying = true;
_root.goldTxt.text = _root.gold - this.cost;
if (_root.goldTxt.text > 0) {
_root.goldTxt.textColor = 255;
} else {
_root.goldTxt.textColor = 16711680 /* 0xFF0000 */;
}
}
}
onClipEvent (mouseDown) {
if (this.hitTest(_root._xmouse, _root._ymouse) && (_root.dialog._visible == true)) {
this.cost = 500;
if (_root.gold > this.cost) {
_root.weaponhelp.play();
_root.gold = _root.gold - this.cost;
_root.rifle = true;
_root.rifleuse = true;
_root.normaluse = false;
_root.colduse = false;
_root.missileuse = false;
if (_root.duh == undefined) {
_root.attachMovie("zbtn", "duh", _root.getNextHighestDepth());
_root.duh._x = 200;
_root.duh._y = 200;
}
}
}
removeMovieClip(this);
}
Symbol 301 MovieClip Frame 1
stop();
Symbol 304 MovieClip Frame 2
stop();
Symbol 307 MovieClip Frame 1
stop();
Symbol 311 MovieClip Frame 1
stop();
Symbol 325 Button
on (press) {
gotoAndStop (6);
}