Frame 2
stop();
Frame 3
var sound2 = new Sound();
sound2.attachSound("music");
sound2.start(0, 0);
sound2.onSoundComplete = function () {
sound2.start(0, 0);
};
Frame 4
_root.respawn = "wave1";
_root.hospital = true;
_root.gasstation = true;
_root.blizzardspeed = 0.2;
_root.timer.wave = "1";
_quality = "low";
stop();
_root.buildingssaved = 9;
_root.buildingslost = 0;
_root.treeslost = 0;
_root.yetisburnt = 0;
Instance of Symbol 132 MovieClip "player" in Frame 4
onClipEvent (enterFrame) {
this.speed = 3;
if (_root.health._xscale <= 0) {
_root.health._xscale = 0;
_root.attachMovie("death", "death", 0);
_root.everythingsfucked.play();
_root.death._x = _root.player._x;
_root.death._y = _root.player._y;
_root.player.swapDepths(0);
removeMovieClip(_root.player);
_root.gun.swapDepths(0);
removeMovieClip(_root.gun);
}
if ((leftmove == true) && (upmove == true)) {
this._xscale = -100;
this.gotoAndStop(2);
}
if ((leftmove == false) && (upmove == false)) {
this._xscale = 100;
this.gotoAndStop(3);
}
if ((leftmove == true) && (upmove == false)) {
this._xscale = -100;
this.gotoAndStop(3);
}
if ((leftmove == false) && (upmove == true)) {
this._xscale = 100;
this.gotoAndStop(2);
}
if (Key.isDown(87)) {
this._y = this._y - this.speed;
upmove = true;
}
if (Key.isDown(83)) {
this._y = this._y + this.speed;
upmove = false;
}
if (Key.isDown(68)) {
this._x = this._x + this.speed;
leftmove = false;
}
if (Key.isDown(65)) {
this._x = this._x - this.speed;
leftmove = true;
}
}
Instance of Symbol 136 MovieClip in Frame 4
onClipEvent (enterFrame) {
if (this.hitTest(_root.snowball)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard1.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard2.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard3.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard4.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard5.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard6.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard7.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard8.hit)) {
this.hp = this.hp - 1;
}
if (this.hp <= 0) {
this.nextFrame();
}
}
onClipEvent (load) {
this.hp = 30;
}
Instance of Symbol 139 MovieClip "gun" in Frame 4
onClipEvent (load) {
n = 1;
}
onClipEvent (enterFrame) {
this.speed = 3;
if (Key.isDown(87)) {
this._y = this._y - this.speed;
}
if (Key.isDown(83)) {
this._y = this._y + this.speed;
}
if (Key.isDown(68)) {
this._x = this._x + this.speed;
}
if (Key.isDown(65)) {
this._x = this._x - this.speed;
}
if (_root.gasoline._xscale >= 1) {
if (n == 30) {
n = 1;
_root.gasoline._xscale = _root.gasoline._xscale - 3;
}
radian = (Math.PI/180);
y = _root._ymouse - this._y;
x = _root._xmouse - this._x;
this._rotation = Math.atan(y / x) / radian;
if (x < 0) {
this.gotoAndStop(2);
this._rotation = this._rotation + 180;
} else {
this.gotoAndStop(1);
}
onMouseDown = function () {
mouseDown = true;
};
onMouseUp = function () {
mouseDown = false;
};
if (mouseDown) {
_root.attachMovie("blast", "blast" + n, n);
radian = (Math.PI/180);
_root["blast" + n]._x = this._x + (10 * Math.cos(this._rotation * radian));
_root["blast" + n]._y = this._y + (10 * Math.sin(this._rotation * radian));
_root["blast" + n]._rotation = this._rotation;
n = n + 1;
}
}
}
Instance of Symbol 151 MovieClip "hospital" in Frame 4
onClipEvent (enterFrame) {
if (_root.hospital == true) {
if (this.work == true) {
if (_root.health._xscale <= 99) {
if (this.hitTest(_root.player)) {
_root.health._xscale = _root.health._xscale + 1;
this.cross.play();
this.nextFrame();
}
}
}
} else {
this.gotoAndStop("dead");
}
}
onClipEvent (load) {
this.work = true;
this.gotoAndStop(2);
}
Instance of Symbol 159 MovieClip "gasstation" in Frame 4
onClipEvent (enterFrame) {
if (_root.gasstation == true) {
if (this.work == true) {
if (_root.gasoline._xscale <= 99) {
if (this.hitTest(_root.player)) {
_root.gasoline._xscale = _root.gasoline._xscale + 1;
this.drop.play();
this.nextFrame();
}
}
}
} else {
this.gotoAndStop("dead");
}
}
onClipEvent (load) {
this.work = true;
this.gotoAndStop(2);
}
Instance of Symbol 136 MovieClip in Frame 4
onClipEvent (enterFrame) {
if (this.hitTest(_root.snowball)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard1.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard2.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard3.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard4.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard5.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard6.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard7.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard8.hit)) {
this.hp = this.hp - 1;
}
if (this.hp <= 0) {
this.nextFrame();
}
}
onClipEvent (load) {
this.hp = 30;
}
Instance of Symbol 136 MovieClip in Frame 4
onClipEvent (enterFrame) {
if (this.hitTest(_root.snowball)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard1.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard2.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard3.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard4.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard5.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard6.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard7.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard8.hit)) {
this.hp = this.hp - 1;
}
if (this.hp <= 0) {
this.nextFrame();
}
}
onClipEvent (load) {
this.hp = 30;
}
Instance of Symbol 136 MovieClip in Frame 4
onClipEvent (enterFrame) {
if (this.hitTest(_root.snowball)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard1.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard2.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard3.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard4.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard5.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard6.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard7.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard8.hit)) {
this.hp = this.hp - 1;
}
if (this.hp <= 0) {
this.nextFrame();
}
}
onClipEvent (load) {
this.hp = 30;
}
Instance of Symbol 162 MovieClip in Frame 4
onClipEvent (enterFrame) {
if (this.hitTest(_root.snowball)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard1.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard2.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard3.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard4.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard5.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard6.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard7.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard8.hit)) {
this.hp = this.hp - 1;
}
if (this.hp <= 0) {
this.nextFrame();
}
}
onClipEvent (load) {
this.hp = 30;
}
Instance of Symbol 165 MovieClip in Frame 4
onClipEvent (enterFrame) {
if (this.hitTest(_root.snowball)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard1.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard2.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard3.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard4.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard5.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard6.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard7.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard8.hit)) {
this.hp = this.hp - 1;
}
if (this.hp <= 0) {
this.nextFrame();
}
}
onClipEvent (load) {
this.hp = 30;
}
Instance of Symbol 162 MovieClip in Frame 4
onClipEvent (enterFrame) {
if (this.hitTest(_root.snowball)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard1.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard2.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard3.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard4.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard5.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard6.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard7.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard8.hit)) {
this.hp = this.hp - 1;
}
if (this.hp <= 0) {
this.nextFrame();
}
}
onClipEvent (load) {
this.hp = 30;
}
Instance of Symbol 162 MovieClip in Frame 4
onClipEvent (enterFrame) {
if (this.hitTest(_root.snowball)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard1.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard2.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard3.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard4.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard5.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard6.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard7.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard8.hit)) {
this.hp = this.hp - 1;
}
if (this.hp <= 0) {
this.nextFrame();
}
}
onClipEvent (load) {
this.hp = 30;
}
Instance of Symbol 165 MovieClip in Frame 4
onClipEvent (enterFrame) {
if (this.hitTest(_root.snowball)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard1.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard2.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard3.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard4.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard5.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard6.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard7.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard8.hit)) {
this.hp = this.hp - 1;
}
if (this.hp <= 0) {
this.nextFrame();
}
}
onClipEvent (load) {
this.hp = 30;
}
Instance of Symbol 162 MovieClip in Frame 4
onClipEvent (enterFrame) {
if (this.hitTest(_root.snowball)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard1.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard2.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard3.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard4.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard5.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard6.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard7.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard8.hit)) {
this.hp = this.hp - 1;
}
if (this.hp <= 0) {
this.nextFrame();
}
}
onClipEvent (load) {
this.hp = 30;
}
Instance of Symbol 165 MovieClip in Frame 4
onClipEvent (enterFrame) {
if (this.hitTest(_root.snowball)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard1.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard2.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard3.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard4.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard5.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard6.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard7.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard8.hit)) {
this.hp = this.hp - 1;
}
if (this.hp <= 0) {
this.nextFrame();
}
}
onClipEvent (load) {
this.hp = 30;
}
Instance of Symbol 165 MovieClip in Frame 4
onClipEvent (enterFrame) {
if (this.hitTest(_root.snowball)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard1.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard2.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard3.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard4.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard5.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard6.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard7.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard8.hit)) {
this.hp = this.hp - 1;
}
if (this.hp <= 0) {
this.nextFrame();
}
}
onClipEvent (load) {
this.hp = 30;
}
Instance of Symbol 136 MovieClip in Frame 4
onClipEvent (enterFrame) {
if (this.hitTest(_root.snowball)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard1.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard2.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard3.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard4.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard5.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard6.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard7.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard8.hit)) {
this.hp = this.hp - 1;
}
if (this.hp <= 0) {
this.nextFrame();
}
}
onClipEvent (load) {
this.hp = 30;
}
Instance of Symbol 162 MovieClip in Frame 4
onClipEvent (enterFrame) {
if (this.hitTest(_root.snowball)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard1.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard2.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard3.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard4.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard5.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard6.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard7.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard8.hit)) {
this.hp = this.hp - 1;
}
if (this.hp <= 0) {
this.nextFrame();
}
}
onClipEvent (load) {
this.hp = 30;
}
Instance of Symbol 165 MovieClip in Frame 4
onClipEvent (enterFrame) {
if (this.hitTest(_root.snowball)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard1.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard2.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard3.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard4.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard5.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard6.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard7.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard8.hit)) {
this.hp = this.hp - 1;
}
if (this.hp <= 0) {
this.nextFrame();
}
}
onClipEvent (load) {
this.hp = 30;
}
Instance of Symbol 136 MovieClip in Frame 4
onClipEvent (enterFrame) {
if (this.hitTest(_root.snowball)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard1.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard2.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard3.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard4.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard5.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard6.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard7.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard8.hit)) {
this.hp = this.hp - 1;
}
if (this.hp <= 0) {
this.nextFrame();
}
}
onClipEvent (load) {
this.hp = 30;
}
Instance of Symbol 162 MovieClip in Frame 4
onClipEvent (enterFrame) {
if (this.hitTest(_root.snowball)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard1.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard2.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard3.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard4.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard5.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard6.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard7.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard8.hit)) {
this.hp = this.hp - 1;
}
if (this.hp <= 0) {
this.nextFrame();
}
}
onClipEvent (load) {
this.hp = 30;
}
Instance of Symbol 162 MovieClip in Frame 4
onClipEvent (enterFrame) {
if (this.hitTest(_root.snowball)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard1.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard2.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard3.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard4.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard5.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard6.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard7.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard8.hit)) {
this.hp = this.hp - 1;
}
if (this.hp <= 0) {
this.nextFrame();
}
}
onClipEvent (load) {
this.hp = 30;
}
Instance of Symbol 165 MovieClip in Frame 4
onClipEvent (enterFrame) {
if (this.hitTest(_root.snowball)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard1.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard2.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard3.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard4.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard5.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard6.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard7.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard8.hit)) {
this.hp = this.hp - 1;
}
if (this.hp <= 0) {
this.nextFrame();
}
}
onClipEvent (load) {
this.hp = 30;
}
Instance of Symbol 165 MovieClip in Frame 4
onClipEvent (enterFrame) {
if (this.hitTest(_root.snowball)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard1.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard2.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard3.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard4.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard5.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard6.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard7.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard8.hit)) {
this.hp = this.hp - 1;
}
if (this.hp <= 0) {
this.nextFrame();
}
}
onClipEvent (load) {
this.hp = 30;
}
Instance of Symbol 171 MovieClip "blizzard4" in Frame 4
onClipEvent (load) {
i = 1;
}
onClipEvent (enterFrame) {
this.speed = _root.blizzardspeed;
if (this.hit.hitTest(_root.player)) {
_root.health._xscale = _root.health._xscale - 1;
}
if (mouseDown) {
i = i + 1;
}
if (i == 30) {
i = 1;
}
if (!this.hitTest(_root["blast" + i])) {
if (this._x <= _root.town._x) {
this._x = this._x + this.speed;
}
if (this._x >= _root.town._x) {
this._x = this._x - this.speed;
}
if (this._y <= _root.town._y) {
this._y = this._y + this.speed;
}
if (this._y >= _root.town._y) {
this._y = this._y - this.speed;
}
} else {
if (this._x <= _root.town._x) {
this._x = this._x - (0.5 + random(4));
}
if (this._x >= _root.town._x) {
this._x = this._x + (0.5 + random(4));
}
if (this._y <= _root.town._y) {
this._y = this._y - (0.5 + random(4));
}
if (this._y >= _root.town._y) {
this._y = this._y + (0.5 + random(4));
}
}
}
Instance of Symbol 171 MovieClip "blizzard8" in Frame 4
onClipEvent (load) {
i = 1;
}
onClipEvent (enterFrame) {
this.speed = _root.blizzardspeed;
if (this.hit.hitTest(_root.player)) {
_root.health._xscale = _root.health._xscale - 1;
}
if (mouseDown) {
i = i + 1;
}
if (i == 30) {
i = 1;
}
if (!this.hitTest(_root["blast" + i])) {
if (this._x <= _root.town._x) {
this._x = this._x + this.speed;
}
if (this._x >= _root.town._x) {
this._x = this._x - this.speed;
}
if (this._y <= _root.town._y) {
this._y = this._y + this.speed;
}
if (this._y >= _root.town._y) {
this._y = this._y - this.speed;
}
} else {
if (this._x <= _root.town._x) {
this._x = this._x - (0.5 + random(4));
}
if (this._x >= _root.town._x) {
this._x = this._x + (0.5 + random(4));
}
if (this._y <= _root.town._y) {
this._y = this._y - (0.5 + random(4));
}
if (this._y >= _root.town._y) {
this._y = this._y + (0.5 + random(4));
}
}
}
Instance of Symbol 171 MovieClip "blizzard6" in Frame 4
onClipEvent (load) {
i = 1;
}
onClipEvent (enterFrame) {
this.speed = _root.blizzardspeed;
if (this.hit.hitTest(_root.player)) {
_root.health._xscale = _root.health._xscale - 1;
}
if (mouseDown) {
i = i + 1;
}
if (i == 30) {
i = 1;
}
if (!this.hitTest(_root["blast" + i])) {
if (this._x <= _root.town._x) {
this._x = this._x + this.speed;
}
if (this._x >= _root.town._x) {
this._x = this._x - this.speed;
}
if (this._y <= _root.town._y) {
this._y = this._y + this.speed;
}
if (this._y >= _root.town._y) {
this._y = this._y - this.speed;
}
} else {
if (this._x <= _root.town._x) {
this._x = this._x - (0.5 + random(4));
}
if (this._x >= _root.town._x) {
this._x = this._x + (0.5 + random(4));
}
if (this._y <= _root.town._y) {
this._y = this._y - (0.5 + random(4));
}
if (this._y >= _root.town._y) {
this._y = this._y + (0.5 + random(4));
}
}
}
Instance of Symbol 175 MovieClip in Frame 4
onClipEvent (enterFrame) {
if (this.hitTest(_root.snowball)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard1.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard2.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard3.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard4.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard5.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard6.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard7.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard8.hit)) {
this.hp = this.hp - 1;
}
if (this.hp <= 0) {
this.nextFrame();
}
}
onClipEvent (load) {
this.hp = 30;
}
Instance of Symbol 179 MovieClip "town" in Frame 4
onClipEvent (enterFrame) {
if (this.hitTest(_root.snowball)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard1.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard2.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard3.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard4.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard5.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard6.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard7.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard8.hit)) {
this.hp = this.hp - 1;
}
if (this.hp <= 0) {
this.nextFrame();
}
}
onClipEvent (load) {
this.hp = 90;
}
Instance of Symbol 175 MovieClip in Frame 4
onClipEvent (enterFrame) {
if (this.hitTest(_root.snowball)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard1.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard2.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard3.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard4.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard5.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard6.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard7.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard8.hit)) {
this.hp = this.hp - 1;
}
if (this.hp <= 0) {
this.nextFrame();
}
}
onClipEvent (load) {
this.hp = 30;
}
Instance of Symbol 175 MovieClip in Frame 4
onClipEvent (enterFrame) {
if (this.hitTest(_root.snowball)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard1.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard2.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard3.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard4.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard5.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard6.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard7.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard8.hit)) {
this.hp = this.hp - 1;
}
if (this.hp <= 0) {
this.nextFrame();
}
}
onClipEvent (load) {
this.hp = 30;
}
Instance of Symbol 183 MovieClip in Frame 4
onClipEvent (enterFrame) {
if (this.hitTest(_root.snowball)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard1.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard2.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard3.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard4.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard5.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard6.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard7.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard8.hit)) {
this.hp = this.hp - 1;
}
if (this.hp <= 0) {
this.nextFrame();
}
}
onClipEvent (load) {
this.hp = 30;
}
Instance of Symbol 183 MovieClip in Frame 4
onClipEvent (enterFrame) {
if (this.hitTest(_root.snowball)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard1.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard2.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard3.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard4.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard5.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard6.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard7.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard8.hit)) {
this.hp = this.hp - 1;
}
if (this.hp <= 0) {
this.nextFrame();
}
}
onClipEvent (load) {
this.hp = 30;
}
Instance of Symbol 187 MovieClip in Frame 4
onClipEvent (enterFrame) {
if (this.hitTest(_root.snowball)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard1.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard2.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard3.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard4.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard5.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard6.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard7.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard8.hit)) {
this.hp = this.hp - 1;
}
if (this.hp <= 0) {
this.nextFrame();
}
}
onClipEvent (load) {
this.hp = 30;
}
Instance of Symbol 191 MovieClip in Frame 4
onClipEvent (enterFrame) {
if (this.hitTest(_root.snowball)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard1.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard2.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard3.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard4.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard5.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard6.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard7.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard8.hit)) {
this.hp = this.hp - 1;
}
if (this.hp <= 0) {
this.nextFrame();
}
}
onClipEvent (load) {
this.hp = 30;
}
Instance of Symbol 191 MovieClip in Frame 4
onClipEvent (enterFrame) {
if (this.hitTest(_root.snowball)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard1.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard2.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard3.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard4.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard5.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard6.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard7.hit)) {
this.hp = this.hp - 1;
}
if (this.hitTest(_root.blizzard8.hit)) {
this.hp = this.hp - 1;
}
if (this.hp <= 0) {
this.nextFrame();
}
}
onClipEvent (load) {
this.hp = 30;
}
Instance of Symbol 171 MovieClip "blizzard2" in Frame 4
onClipEvent (load) {
i = 1;
}
onClipEvent (enterFrame) {
this.speed = _root.blizzardspeed;
if (this.hit.hitTest(_root.player)) {
_root.health._xscale = _root.health._xscale - 1;
}
if (mouseDown) {
i = i + 1;
}
if (i == 30) {
i = 1;
}
if (!this.hitTest(_root["blast" + i])) {
if (this._x <= _root.town._x) {
this._x = this._x + this.speed;
}
if (this._x >= _root.town._x) {
this._x = this._x - this.speed;
}
if (this._y <= _root.town._y) {
this._y = this._y + this.speed;
}
if (this._y >= _root.town._y) {
this._y = this._y - this.speed;
}
} else {
if (this._x <= _root.town._x) {
this._x = this._x - (0.5 + random(4));
}
if (this._x >= _root.town._x) {
this._x = this._x + (0.5 + random(4));
}
if (this._y <= _root.town._y) {
this._y = this._y - (0.5 + random(4));
}
if (this._y >= _root.town._y) {
this._y = this._y + (0.5 + random(4));
}
}
}
Instance of Symbol 193 MovieClip in Frame 4
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 4
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y - 3;
_root.gun._y = _root.gun._y - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 4
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x - 3;
_root.gun._x = _root.gun._x - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 4
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x + 3;
_root.gun._x = _root.gun._x + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 4
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 4
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 4
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y - 3;
_root.gun._y = _root.gun._y - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 4
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x - 3;
_root.gun._x = _root.gun._x - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 4
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x + 3;
_root.gun._x = _root.gun._x + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 4
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 4
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 4
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y - 3;
_root.gun._y = _root.gun._y - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 4
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x - 3;
_root.gun._x = _root.gun._x - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 4
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x + 3;
_root.gun._x = _root.gun._x + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 4
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 4
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 4
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y - 3;
_root.gun._y = _root.gun._y - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 4
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x - 3;
_root.gun._x = _root.gun._x - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 4
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x + 3;
_root.gun._x = _root.gun._x + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 4
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 4
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 4
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y - 3;
_root.gun._y = _root.gun._y - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 4
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x - 3;
_root.gun._x = _root.gun._x - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 4
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x + 3;
_root.gun._x = _root.gun._x + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 4
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 4
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 4
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y - 3;
_root.gun._y = _root.gun._y - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 4
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x - 3;
_root.gun._x = _root.gun._x - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 4
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x + 3;
_root.gun._x = _root.gun._x + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 4
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 4
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 4
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y - 3;
_root.gun._y = _root.gun._y - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 4
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x - 3;
_root.gun._x = _root.gun._x - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 4
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x + 3;
_root.gun._x = _root.gun._x + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 4
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 4
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 4
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y - 3;
_root.gun._y = _root.gun._y - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 4
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x - 3;
_root.gun._x = _root.gun._x - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 4
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x + 3;
_root.gun._x = _root.gun._x + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 4
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 4
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 4
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y - 3;
_root.gun._y = _root.gun._y - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 4
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x - 3;
_root.gun._x = _root.gun._x - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 4
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x + 3;
_root.gun._x = _root.gun._x + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 4
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 198 MovieClip "health" in Frame 4
onClipEvent (enterFrame) {
if (this._xscale >= 100) {
this._xscale = 100;
}
}
Instance of Symbol 216 MovieClip in Frame 4
onClipEvent (enterFrame) {
if (Key.isDown(87)) {
this.swapDepths(0);
removeMovieClip(this);
}
if (Key.isDown(83)) {
this.swapDepths(0);
removeMovieClip(this);
}
if (Key.isDown(68)) {
this.swapDepths(0);
removeMovieClip(this);
}
if (Key.isDown(65)) {
this.swapDepths(0);
removeMovieClip(this);
}
}
Instance of Symbol 219 MovieClip in Frame 4
onClipEvent (enterFrame) {
onMouseDown = function () {
this.swapDepths(0);
removeMovieClip(this);
};
}
Frame 5
_root.player.swapDepths(0);
removeMovieClip(_root.player);
_root.gun.swapDepths(0);
removeMovieClip(_root.gun);
Instance of Symbol 229 MovieClip in Frame 5
onClipEvent (enterFrame) {
if (Key.isDown(32)) {
_root.nextFrame();
}
}
Frame 6
_root.respawn = "wave2";
_root.hospital = true;
_root.gasstation = true;
_root.blizzardspeed = 0.3;
_root.timer.wave = "2";
_quality = "low";
stop();
Instance of Symbol 132 MovieClip "player" in Frame 6
onClipEvent (enterFrame) {
this.speed = 3;
if (_root.health._xscale <= 0) {
_root.health._xscale = 0;
_root.attachMovie("death", "death", 0);
_root.everythingsfucked.play();
_root.death._x = _root.player._x;
_root.death._y = _root.player._y;
_root.player.swapDepths(0);
removeMovieClip(_root.player);
_root.gun.swapDepths(0);
removeMovieClip(_root.gun);
}
if ((leftmove == true) && (upmove == true)) {
this._xscale = -100;
this.gotoAndStop(2);
}
if ((leftmove == false) && (upmove == false)) {
this._xscale = 100;
this.gotoAndStop(3);
}
if ((leftmove == true) && (upmove == false)) {
this._xscale = -100;
this.gotoAndStop(3);
}
if ((leftmove == false) && (upmove == true)) {
this._xscale = 100;
this.gotoAndStop(2);
}
if (Key.isDown(87)) {
this._y = this._y - this.speed;
upmove = true;
}
if (Key.isDown(83)) {
this._y = this._y + this.speed;
upmove = false;
}
if (Key.isDown(68)) {
this._x = this._x + this.speed;
leftmove = false;
}
if (Key.isDown(65)) {
this._x = this._x - this.speed;
leftmove = true;
}
}
Instance of Symbol 139 MovieClip "gun" in Frame 6
onClipEvent (load) {
n = 1;
}
onClipEvent (enterFrame) {
this.speed = 3;
if (Key.isDown(87)) {
this._y = this._y - this.speed;
}
if (Key.isDown(83)) {
this._y = this._y + this.speed;
}
if (Key.isDown(68)) {
this._x = this._x + this.speed;
}
if (Key.isDown(65)) {
this._x = this._x - this.speed;
}
if (_root.gasoline._xscale >= 1) {
if (n == 30) {
n = 1;
_root.gasoline._xscale = _root.gasoline._xscale - 3;
}
radian = (Math.PI/180);
y = _root._ymouse - this._y;
x = _root._xmouse - this._x;
this._rotation = Math.atan(y / x) / radian;
if (x < 0) {
this.gotoAndStop(2);
this._rotation = this._rotation + 180;
} else {
this.gotoAndStop(1);
}
onMouseDown = function () {
mouseDown = true;
};
onMouseUp = function () {
mouseDown = false;
};
if (mouseDown) {
_root.attachMovie("blast", "blast" + n, n);
radian = (Math.PI/180);
_root["blast" + n]._x = this._x + (10 * Math.cos(this._rotation * radian));
_root["blast" + n]._y = this._y + (10 * Math.sin(this._rotation * radian));
_root["blast" + n]._rotation = this._rotation;
n = n + 1;
}
}
}
Instance of Symbol 261 MovieClip in Frame 6
onClipEvent (enterFrame) {
this.speed = random(2) + 1;
if (mouseDown) {
i = i + 1;
}
if (i == 30) {
i = 1;
}
if (this.hitTest(_root.player)) {
_root.health._xscale = _root.health._xscale - 1;
}
if (this.hitTest(_root["blast" + i])) {
_root.attachMovie("flame", "flame", 0);
_root.flame._x = this._x;
_root.flame._y = this._y;
this.hp = this.hp - 1;
this.fire.play();
}
if (this.hp <= 0) {
i = 1;
_root.attachMovie("yetideath", "yetideath", 0);
_root.yetideath._x = this._x;
_root.yetideath._y = this._y;
this.swapDepths(0);
removeMovieClip(this);
}
if ((leftmove == true) && (upmove == true)) {
this._xscale = -100;
this.gotoAndStop(2);
}
if ((leftmove == false) && (upmove == false)) {
this._xscale = 100;
this.gotoAndStop(2);
}
if ((leftmove == true) && (upmove == false)) {
this._xscale = -100;
this.gotoAndStop(3);
}
if ((leftmove == false) && (upmove == true)) {
this._xscale = 100;
this.gotoAndStop(3);
}
if (this._x <= _root.player._x) {
this._x = this._x + this.speed;
this.leftmove = false;
this.rightmove = true;
}
if (this._x >= _root.player._x) {
this._x = this._x - this.speed;
this.leftmove = true;
this.rightmove = false;
}
if (this._y <= _root.player._y) {
this._y = this._y + this.speed;
this.upmove = true;
this.downmove = false;
}
if (this._y >= _root.player._y) {
this._y = this._y - this.speed;
this.upmove = false;
this.downmove = true;
}
}
onClipEvent (load) {
this.hp = 10;
i = 1;
}
Instance of Symbol 171 MovieClip "blizzard4" in Frame 6
onClipEvent (load) {
i = 1;
}
onClipEvent (enterFrame) {
this.speed = _root.blizzardspeed;
if (this.hit.hitTest(_root.player)) {
_root.health._xscale = _root.health._xscale - 1;
}
if (mouseDown) {
i = i + 1;
}
if (i == 30) {
i = 1;
}
if (!this.hitTest(_root["blast" + i])) {
if (this._x <= _root.town._x) {
this._x = this._x + this.speed;
}
if (this._x >= _root.town._x) {
this._x = this._x - this.speed;
}
if (this._y <= _root.town._y) {
this._y = this._y + this.speed;
}
if (this._y >= _root.town._y) {
this._y = this._y - this.speed;
}
} else {
if (this._x <= _root.town._x) {
this._x = this._x - (0.5 + random(4));
}
if (this._x >= _root.town._x) {
this._x = this._x + (0.5 + random(4));
}
if (this._y <= _root.town._y) {
this._y = this._y - (0.5 + random(4));
}
if (this._y >= _root.town._y) {
this._y = this._y + (0.5 + random(4));
}
}
}
Instance of Symbol 171 MovieClip "blizzard8" in Frame 6
onClipEvent (load) {
i = 1;
}
onClipEvent (enterFrame) {
this.speed = _root.blizzardspeed;
if (this.hit.hitTest(_root.player)) {
_root.health._xscale = _root.health._xscale - 1;
}
if (mouseDown) {
i = i + 1;
}
if (i == 30) {
i = 1;
}
if (!this.hitTest(_root["blast" + i])) {
if (this._x <= _root.town._x) {
this._x = this._x + this.speed;
}
if (this._x >= _root.town._x) {
this._x = this._x - this.speed;
}
if (this._y <= _root.town._y) {
this._y = this._y + this.speed;
}
if (this._y >= _root.town._y) {
this._y = this._y - this.speed;
}
} else {
if (this._x <= _root.town._x) {
this._x = this._x - (0.5 + random(4));
}
if (this._x >= _root.town._x) {
this._x = this._x + (0.5 + random(4));
}
if (this._y <= _root.town._y) {
this._y = this._y - (0.5 + random(4));
}
if (this._y >= _root.town._y) {
this._y = this._y + (0.5 + random(4));
}
}
}
Instance of Symbol 171 MovieClip "blizzard6" in Frame 6
onClipEvent (load) {
i = 1;
}
onClipEvent (enterFrame) {
this.speed = _root.blizzardspeed;
if (this.hit.hitTest(_root.player)) {
_root.health._xscale = _root.health._xscale - 1;
}
if (mouseDown) {
i = i + 1;
}
if (i == 30) {
i = 1;
}
if (!this.hitTest(_root["blast" + i])) {
if (this._x <= _root.town._x) {
this._x = this._x + this.speed;
}
if (this._x >= _root.town._x) {
this._x = this._x - this.speed;
}
if (this._y <= _root.town._y) {
this._y = this._y + this.speed;
}
if (this._y >= _root.town._y) {
this._y = this._y - this.speed;
}
} else {
if (this._x <= _root.town._x) {
this._x = this._x - (0.5 + random(4));
}
if (this._x >= _root.town._x) {
this._x = this._x + (0.5 + random(4));
}
if (this._y <= _root.town._y) {
this._y = this._y - (0.5 + random(4));
}
if (this._y >= _root.town._y) {
this._y = this._y + (0.5 + random(4));
}
}
}
Instance of Symbol 171 MovieClip "blizzard2" in Frame 6
onClipEvent (load) {
i = 1;
}
onClipEvent (enterFrame) {
this.speed = _root.blizzardspeed;
if (this.hit.hitTest(_root.player)) {
_root.health._xscale = _root.health._xscale - 1;
}
if (mouseDown) {
i = i + 1;
}
if (i == 30) {
i = 1;
}
if (!this.hitTest(_root["blast" + i])) {
if (this._x <= _root.town._x) {
this._x = this._x + this.speed;
}
if (this._x >= _root.town._x) {
this._x = this._x - this.speed;
}
if (this._y <= _root.town._y) {
this._y = this._y + this.speed;
}
if (this._y >= _root.town._y) {
this._y = this._y - this.speed;
}
} else {
if (this._x <= _root.town._x) {
this._x = this._x - (0.5 + random(4));
}
if (this._x >= _root.town._x) {
this._x = this._x + (0.5 + random(4));
}
if (this._y <= _root.town._y) {
this._y = this._y - (0.5 + random(4));
}
if (this._y >= _root.town._y) {
this._y = this._y + (0.5 + random(4));
}
}
}
Instance of Symbol 261 MovieClip in Frame 6
onClipEvent (enterFrame) {
this.speed = random(2) + 1;
if (mouseDown) {
i = i + 1;
}
if (i == 30) {
i = 1;
}
if (this.hitTest(_root.player)) {
_root.health._xscale = _root.health._xscale - 1;
}
if (this.hitTest(_root["blast" + i])) {
_root.attachMovie("flame", "flame", 0);
_root.flame._x = this._x;
_root.flame._y = this._y;
this.hp = this.hp - 1;
this.fire.play();
}
if (this.hp <= 0) {
i = 1;
_root.attachMovie("yetideath", "yetideath", 1, 1);
_root.yetideath1._x = this._x;
_root.yetideath1._y = this._y;
this.swapDepths(0);
removeMovieClip(this);
}
if ((leftmove == true) && (upmove == true)) {
this._xscale = -100;
this.gotoAndStop(2);
}
if ((leftmove == false) && (upmove == false)) {
this._xscale = 100;
this.gotoAndStop(2);
}
if ((leftmove == true) && (upmove == false)) {
this._xscale = -100;
this.gotoAndStop(3);
}
if ((leftmove == false) && (upmove == true)) {
this._xscale = 100;
this.gotoAndStop(3);
}
if (this._x <= _root.player._x) {
this._x = this._x + this.speed;
this.leftmove = false;
this.rightmove = true;
}
if (this._x >= _root.player._x) {
this._x = this._x - this.speed;
this.leftmove = true;
this.rightmove = false;
}
if (this._y <= _root.player._y) {
this._y = this._y + this.speed;
this.upmove = true;
this.downmove = false;
}
if (this._y >= _root.player._y) {
this._y = this._y - this.speed;
this.upmove = false;
this.downmove = true;
}
}
onClipEvent (load) {
this.hp = 10;
i = 1;
}
Instance of Symbol 24 MovieClip [snowball] "snowball" in Frame 6
onClipEvent (enterFrame) {
this._x = this._x + 1;
if (this._xscale <= 20) {
this.swapDepths(0);
removeMovieClip(this);
}
if (mouseDown) {
i = i + 1;
}
if (i == 30) {
i = 1;
}
if (this.hitTest(_root["blast" + i])) {
_root.attachMovie("puddle", "puddle", 0);
_root.puddle._x = this._x;
_root.puddle._y = this._y;
this._xscale = this._xscale - 10;
this._yscale = this._yscale - 10;
}
}
onClipEvent (load) {
i = 1;
}
Instance of Symbol 261 MovieClip in Frame 6
onClipEvent (enterFrame) {
this.speed = random(2) + 1;
if (mouseDown) {
i = i + 1;
}
if (i == 30) {
i = 1;
}
if (this.hitTest(_root.player)) {
_root.health._xscale = _root.health._xscale - 1;
}
if (this.hitTest(_root["blast" + i])) {
_root.attachMovie("flame", "flame", 0);
_root.flame._x = this._x;
_root.flame._y = this._y;
this.hp = this.hp - 1;
this.fire.play();
}
if (this.hp <= 0) {
i = 1;
_root.attachMovie("yetideath", "yetideath", 0);
_root.yetideath._x = this._x;
_root.yetideath._y = this._y;
this.swapDepths(0);
removeMovieClip(this);
}
if ((leftmove == true) && (upmove == true)) {
this._xscale = -100;
this.gotoAndStop(2);
}
if ((leftmove == false) && (upmove == false)) {
this._xscale = 100;
this.gotoAndStop(2);
}
if ((leftmove == true) && (upmove == false)) {
this._xscale = -100;
this.gotoAndStop(3);
}
if ((leftmove == false) && (upmove == true)) {
this._xscale = 100;
this.gotoAndStop(3);
}
if (this._x <= _root.player._x) {
this._x = this._x + this.speed;
this.leftmove = false;
this.rightmove = true;
}
if (this._x >= _root.player._x) {
this._x = this._x - this.speed;
this.leftmove = true;
this.rightmove = false;
}
if (this._y <= _root.player._y) {
this._y = this._y + this.speed;
this.upmove = true;
this.downmove = false;
}
if (this._y >= _root.player._y) {
this._y = this._y - this.speed;
this.upmove = false;
this.downmove = true;
}
}
onClipEvent (load) {
this.hp = 20;
i = 1;
}
Instance of Symbol 193 MovieClip in Frame 6
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 6
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y - 3;
_root.gun._y = _root.gun._y - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 6
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x - 3;
_root.gun._x = _root.gun._x - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 6
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x + 3;
_root.gun._x = _root.gun._x + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 6
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 6
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 6
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y - 3;
_root.gun._y = _root.gun._y - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 6
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x - 3;
_root.gun._x = _root.gun._x - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 6
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x + 3;
_root.gun._x = _root.gun._x + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 6
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 6
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 6
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y - 3;
_root.gun._y = _root.gun._y - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 6
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x - 3;
_root.gun._x = _root.gun._x - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 6
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x + 3;
_root.gun._x = _root.gun._x + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 6
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 6
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 6
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y - 3;
_root.gun._y = _root.gun._y - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 6
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x - 3;
_root.gun._x = _root.gun._x - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 6
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x + 3;
_root.gun._x = _root.gun._x + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 6
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 6
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 6
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y - 3;
_root.gun._y = _root.gun._y - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 6
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x - 3;
_root.gun._x = _root.gun._x - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 6
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x + 3;
_root.gun._x = _root.gun._x + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 6
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 6
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 6
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y - 3;
_root.gun._y = _root.gun._y - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 6
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x - 3;
_root.gun._x = _root.gun._x - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 6
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x + 3;
_root.gun._x = _root.gun._x + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 6
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 6
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 6
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y - 3;
_root.gun._y = _root.gun._y - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 6
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x - 3;
_root.gun._x = _root.gun._x - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 6
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x + 3;
_root.gun._x = _root.gun._x + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 6
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 6
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 6
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y - 3;
_root.gun._y = _root.gun._y - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 6
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x - 3;
_root.gun._x = _root.gun._x - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 6
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x + 3;
_root.gun._x = _root.gun._x + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 6
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 6
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 6
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y - 3;
_root.gun._y = _root.gun._y - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 6
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x - 3;
_root.gun._x = _root.gun._x - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 6
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x + 3;
_root.gun._x = _root.gun._x + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 6
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 198 MovieClip "health" in Frame 6
onClipEvent (enterFrame) {
if (this._xscale >= 100) {
this._xscale = 100;
}
}
Frame 7
_root.player.swapDepths(0);
removeMovieClip(_root.player);
_root.gun.swapDepths(0);
removeMovieClip(_root.gun);
Instance of Symbol 229 MovieClip in Frame 7
onClipEvent (enterFrame) {
if (Key.isDown(32)) {
_root.nextFrame();
}
}
Frame 8
_root.respawn = "wave3";
_root.hospital = true;
_root.gasstation = true;
_root.blizzardspeed = 0.3;
_root.timer.wave = "3";
_quality = "low";
stop();
Instance of Symbol 132 MovieClip "player" in Frame 8
onClipEvent (enterFrame) {
this.speed = 3;
if (_root.health._xscale <= 0) {
_root.health._xscale = 0;
_root.attachMovie("death", "death", 0);
_root.everythingsfucked.play();
_root.death._x = _root.player._x;
_root.death._y = _root.player._y;
_root.player.swapDepths(0);
removeMovieClip(_root.player);
_root.gun.swapDepths(0);
removeMovieClip(_root.gun);
}
if ((leftmove == true) && (upmove == true)) {
this._xscale = -100;
this.gotoAndStop(2);
}
if ((leftmove == false) && (upmove == false)) {
this._xscale = 100;
this.gotoAndStop(3);
}
if ((leftmove == true) && (upmove == false)) {
this._xscale = -100;
this.gotoAndStop(3);
}
if ((leftmove == false) && (upmove == true)) {
this._xscale = 100;
this.gotoAndStop(2);
}
if (Key.isDown(87)) {
this._y = this._y - this.speed;
upmove = true;
}
if (Key.isDown(83)) {
this._y = this._y + this.speed;
upmove = false;
}
if (Key.isDown(68)) {
this._x = this._x + this.speed;
leftmove = false;
}
if (Key.isDown(65)) {
this._x = this._x - this.speed;
leftmove = true;
}
}
Instance of Symbol 139 MovieClip "gun" in Frame 8
onClipEvent (load) {
n = 1;
}
onClipEvent (enterFrame) {
this.speed = 3;
if (Key.isDown(87)) {
this._y = this._y - this.speed;
}
if (Key.isDown(83)) {
this._y = this._y + this.speed;
}
if (Key.isDown(68)) {
this._x = this._x + this.speed;
}
if (Key.isDown(65)) {
this._x = this._x - this.speed;
}
if (_root.gasoline._xscale >= 1) {
if (n == 30) {
n = 1;
_root.gasoline._xscale = _root.gasoline._xscale - 3;
}
radian = (Math.PI/180);
y = _root._ymouse - this._y;
x = _root._xmouse - this._x;
this._rotation = Math.atan(y / x) / radian;
if (x < 0) {
this.gotoAndStop(2);
this._rotation = this._rotation + 180;
} else {
this.gotoAndStop(1);
}
onMouseDown = function () {
mouseDown = true;
};
onMouseUp = function () {
mouseDown = false;
};
if (mouseDown) {
_root.attachMovie("blast", "blast" + n, n);
radian = (Math.PI/180);
_root["blast" + n]._x = this._x + (10 * Math.cos(this._rotation * radian));
_root["blast" + n]._y = this._y + (10 * Math.sin(this._rotation * radian));
_root["blast" + n]._rotation = this._rotation;
n = n + 1;
}
}
}
Instance of Symbol 171 MovieClip "blizzard4" in Frame 8
onClipEvent (load) {
i = 1;
}
onClipEvent (enterFrame) {
this.speed = _root.blizzardspeed;
if (this.hit.hitTest(_root.player)) {
_root.health._xscale = _root.health._xscale - 1;
}
if (mouseDown) {
i = i + 1;
}
if (i == 30) {
i = 1;
}
if (!this.hitTest(_root["blast" + i])) {
if (this._x <= _root.town._x) {
this._x = this._x + this.speed;
}
if (this._x >= _root.town._x) {
this._x = this._x - this.speed;
}
if (this._y <= _root.town._y) {
this._y = this._y + this.speed;
}
if (this._y >= _root.town._y) {
this._y = this._y - this.speed;
}
} else {
if (this._x <= _root.town._x) {
this._x = this._x - (0.5 + random(4));
}
if (this._x >= _root.town._x) {
this._x = this._x + (0.5 + random(4));
}
if (this._y <= _root.town._y) {
this._y = this._y - (0.5 + random(4));
}
if (this._y >= _root.town._y) {
this._y = this._y + (0.5 + random(4));
}
}
}
Instance of Symbol 171 MovieClip "blizzard8" in Frame 8
onClipEvent (load) {
i = 1;
}
onClipEvent (enterFrame) {
this.speed = _root.blizzardspeed;
if (this.hit.hitTest(_root.player)) {
_root.health._xscale = _root.health._xscale - 1;
}
if (mouseDown) {
i = i + 1;
}
if (i == 30) {
i = 1;
}
if (!this.hitTest(_root["blast" + i])) {
if (this._x <= _root.town._x) {
this._x = this._x + this.speed;
}
if (this._x >= _root.town._x) {
this._x = this._x - this.speed;
}
if (this._y <= _root.town._y) {
this._y = this._y + this.speed;
}
if (this._y >= _root.town._y) {
this._y = this._y - this.speed;
}
} else {
if (this._x <= _root.town._x) {
this._x = this._x - (0.5 + random(4));
}
if (this._x >= _root.town._x) {
this._x = this._x + (0.5 + random(4));
}
if (this._y <= _root.town._y) {
this._y = this._y - (0.5 + random(4));
}
if (this._y >= _root.town._y) {
this._y = this._y + (0.5 + random(4));
}
}
}
Instance of Symbol 171 MovieClip "blizzard6" in Frame 8
onClipEvent (load) {
i = 1;
}
onClipEvent (enterFrame) {
this.speed = _root.blizzardspeed;
if (this.hit.hitTest(_root.player)) {
_root.health._xscale = _root.health._xscale - 1;
}
if (mouseDown) {
i = i + 1;
}
if (i == 30) {
i = 1;
}
if (!this.hitTest(_root["blast" + i])) {
if (this._x <= _root.town._x) {
this._x = this._x + this.speed;
}
if (this._x >= _root.town._x) {
this._x = this._x - this.speed;
}
if (this._y <= _root.town._y) {
this._y = this._y + this.speed;
}
if (this._y >= _root.town._y) {
this._y = this._y - this.speed;
}
} else {
if (this._x <= _root.town._x) {
this._x = this._x - (0.5 + random(4));
}
if (this._x >= _root.town._x) {
this._x = this._x + (0.5 + random(4));
}
if (this._y <= _root.town._y) {
this._y = this._y - (0.5 + random(4));
}
if (this._y >= _root.town._y) {
this._y = this._y + (0.5 + random(4));
}
}
}
Instance of Symbol 171 MovieClip "blizzard2" in Frame 8
onClipEvent (load) {
i = 1;
}
onClipEvent (enterFrame) {
this.speed = _root.blizzardspeed;
if (this.hit.hitTest(_root.player)) {
_root.health._xscale = _root.health._xscale - 1;
}
if (mouseDown) {
i = i + 1;
}
if (i == 30) {
i = 1;
}
if (!this.hitTest(_root["blast" + i])) {
if (this._x <= _root.town._x) {
this._x = this._x + this.speed;
}
if (this._x >= _root.town._x) {
this._x = this._x - this.speed;
}
if (this._y <= _root.town._y) {
this._y = this._y + this.speed;
}
if (this._y >= _root.town._y) {
this._y = this._y - this.speed;
}
} else {
if (this._x <= _root.town._x) {
this._x = this._x - (0.5 + random(4));
}
if (this._x >= _root.town._x) {
this._x = this._x + (0.5 + random(4));
}
if (this._y <= _root.town._y) {
this._y = this._y - (0.5 + random(4));
}
if (this._y >= _root.town._y) {
this._y = this._y + (0.5 + random(4));
}
}
}
Instance of Symbol 261 MovieClip in Frame 8
onClipEvent (enterFrame) {
this.speed = random(2) + 1;
if (mouseDown) {
i = i + 1;
}
if (i == 30) {
i = 1;
}
if (this.hitTest(_root.player)) {
_root.health._xscale = _root.health._xscale - 1;
}
if (this.hitTest(_root["blast" + i])) {
_root.attachMovie("flame", "flame", 0);
_root.flame._x = this._x;
_root.flame._y = this._y;
this.hp = this.hp - 1;
this.fire.play();
}
if (this.hp <= 0) {
i = 1;
_root.attachMovie("yetideath", "yetideath", 1, 1);
_root.yetideath1._x = this._x;
_root.yetideath1._y = this._y;
this.swapDepths(0);
removeMovieClip(this);
}
if ((leftmove == true) && (upmove == true)) {
this._xscale = -100;
this.gotoAndStop(2);
}
if ((leftmove == false) && (upmove == false)) {
this._xscale = 100;
this.gotoAndStop(2);
}
if ((leftmove == true) && (upmove == false)) {
this._xscale = -100;
this.gotoAndStop(3);
}
if ((leftmove == false) && (upmove == true)) {
this._xscale = 100;
this.gotoAndStop(3);
}
if (this._x <= _root.player._x) {
this._x = this._x + this.speed;
this.leftmove = false;
this.rightmove = true;
}
if (this._x >= _root.player._x) {
this._x = this._x - this.speed;
this.leftmove = true;
this.rightmove = false;
}
if (this._y <= _root.player._y) {
this._y = this._y + this.speed;
this.upmove = true;
this.downmove = false;
}
if (this._y >= _root.player._y) {
this._y = this._y - this.speed;
this.upmove = false;
this.downmove = true;
}
}
onClipEvent (load) {
this.hp = 10;
i = 1;
}
Instance of Symbol 24 MovieClip [snowball] "snowball" in Frame 8
onClipEvent (enterFrame) {
this._x = this._x - 1;
if (this._xscale <= 20) {
this.swapDepths(0);
removeMovieClip(this);
}
if (mouseDown) {
i = i + 1;
}
if (i == 30) {
i = 1;
}
if (this.hitTest(_root["blast" + i])) {
_root.attachMovie("puddle", "puddle", 0);
_root.puddle._x = this._x;
_root.puddle._y = this._y;
this._xscale = this._xscale - 10;
this._yscale = this._yscale - 10;
}
}
onClipEvent (load) {
i = 1;
}
Instance of Symbol 261 MovieClip in Frame 8
onClipEvent (enterFrame) {
this.speed = random(2) + 1;
if (mouseDown) {
i = i + 1;
}
if (i == 30) {
i = 1;
}
if (this.hitTest(_root.player)) {
_root.health._xscale = _root.health._xscale - 1;
}
if (this.hitTest(_root["blast" + i])) {
_root.attachMovie("flame", "flame", 0);
_root.flame._x = this._x;
_root.flame._y = this._y;
this.hp = this.hp - 1;
this.fire.play();
}
if (this.hp <= 0) {
i = 1;
_root.attachMovie("yetideath", "yetideath", 0);
_root.yetideath._x = this._x;
_root.yetideath._y = this._y;
this.swapDepths(0);
removeMovieClip(this);
}
if ((leftmove == true) && (upmove == true)) {
this._xscale = -100;
this.gotoAndStop(2);
}
if ((leftmove == false) && (upmove == false)) {
this._xscale = 100;
this.gotoAndStop(2);
}
if ((leftmove == true) && (upmove == false)) {
this._xscale = -100;
this.gotoAndStop(3);
}
if ((leftmove == false) && (upmove == true)) {
this._xscale = 100;
this.gotoAndStop(3);
}
if (this._x <= _root.player._x) {
this._x = this._x + this.speed;
this.leftmove = false;
this.rightmove = true;
}
if (this._x >= _root.player._x) {
this._x = this._x - this.speed;
this.leftmove = true;
this.rightmove = false;
}
if (this._y <= _root.player._y) {
this._y = this._y + this.speed;
this.upmove = true;
this.downmove = false;
}
if (this._y >= _root.player._y) {
this._y = this._y - this.speed;
this.upmove = false;
this.downmove = true;
}
}
onClipEvent (load) {
this.hp = 10;
i = 1;
}
Instance of Symbol 193 MovieClip in Frame 8
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 8
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y - 3;
_root.gun._y = _root.gun._y - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 8
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x - 3;
_root.gun._x = _root.gun._x - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 8
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x + 3;
_root.gun._x = _root.gun._x + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 8
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 8
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 8
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y - 3;
_root.gun._y = _root.gun._y - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 8
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x - 3;
_root.gun._x = _root.gun._x - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 8
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x + 3;
_root.gun._x = _root.gun._x + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 8
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 8
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 8
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y - 3;
_root.gun._y = _root.gun._y - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 8
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x - 3;
_root.gun._x = _root.gun._x - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 8
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x + 3;
_root.gun._x = _root.gun._x + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 8
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 8
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 8
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y - 3;
_root.gun._y = _root.gun._y - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 8
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x - 3;
_root.gun._x = _root.gun._x - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 8
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x + 3;
_root.gun._x = _root.gun._x + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 8
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 8
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 8
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y - 3;
_root.gun._y = _root.gun._y - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 8
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x - 3;
_root.gun._x = _root.gun._x - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 8
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x + 3;
_root.gun._x = _root.gun._x + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 8
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 8
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 8
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y - 3;
_root.gun._y = _root.gun._y - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 8
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x - 3;
_root.gun._x = _root.gun._x - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 8
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x + 3;
_root.gun._x = _root.gun._x + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 8
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 8
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 8
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y - 3;
_root.gun._y = _root.gun._y - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 8
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x - 3;
_root.gun._x = _root.gun._x - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 8
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x + 3;
_root.gun._x = _root.gun._x + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 8
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 8
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 8
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y - 3;
_root.gun._y = _root.gun._y - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 8
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x - 3;
_root.gun._x = _root.gun._x - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 8
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x + 3;
_root.gun._x = _root.gun._x + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 8
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 8
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 8
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y - 3;
_root.gun._y = _root.gun._y - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 8
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x - 3;
_root.gun._x = _root.gun._x - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 8
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x + 3;
_root.gun._x = _root.gun._x + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 8
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 198 MovieClip "health" in Frame 8
onClipEvent (enterFrame) {
if (this._xscale >= 100) {
this._xscale = 100;
}
}
Frame 9
_root.player.swapDepths(0);
removeMovieClip(_root.player);
_root.gun.swapDepths(0);
removeMovieClip(_root.gun);
Instance of Symbol 229 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (Key.isDown(32)) {
_root.nextFrame();
}
}
Frame 10
_root.respawn = "wave4";
_root.blizzardspeed = 0.3;
_root.timer.wave = "4";
_quality = "low";
stop();
trace(_root.hospital);
Instance of Symbol 132 MovieClip "player" in Frame 10
onClipEvent (enterFrame) {
this.speed = 3;
if (_root.health._xscale <= 0) {
_root.health._xscale = 0;
_root.attachMovie("death", "death", 0);
_root.everythingsfucked.play();
_root.death._x = _root.player._x;
_root.death._y = _root.player._y;
_root.player.swapDepths(0);
removeMovieClip(_root.player);
_root.gun.swapDepths(0);
removeMovieClip(_root.gun);
}
if ((leftmove == true) && (upmove == true)) {
this._xscale = -100;
this.gotoAndStop(2);
}
if ((leftmove == false) && (upmove == false)) {
this._xscale = 100;
this.gotoAndStop(3);
}
if ((leftmove == true) && (upmove == false)) {
this._xscale = -100;
this.gotoAndStop(3);
}
if ((leftmove == false) && (upmove == true)) {
this._xscale = 100;
this.gotoAndStop(2);
}
if (Key.isDown(87)) {
this._y = this._y - this.speed;
upmove = true;
}
if (Key.isDown(83)) {
this._y = this._y + this.speed;
upmove = false;
}
if (Key.isDown(68)) {
this._x = this._x + this.speed;
leftmove = false;
}
if (Key.isDown(65)) {
this._x = this._x - this.speed;
leftmove = true;
}
}
Instance of Symbol 139 MovieClip "gun" in Frame 10
onClipEvent (load) {
n = 1;
}
onClipEvent (enterFrame) {
this.speed = 3;
if (Key.isDown(87)) {
this._y = this._y - this.speed;
}
if (Key.isDown(83)) {
this._y = this._y + this.speed;
}
if (Key.isDown(68)) {
this._x = this._x + this.speed;
}
if (Key.isDown(65)) {
this._x = this._x - this.speed;
}
if (_root.gasoline._xscale >= 1) {
if (n == 30) {
n = 1;
_root.gasoline._xscale = _root.gasoline._xscale - 3;
}
radian = (Math.PI/180);
y = _root._ymouse - this._y;
x = _root._xmouse - this._x;
this._rotation = Math.atan(y / x) / radian;
if (x < 0) {
this.gotoAndStop(2);
this._rotation = this._rotation + 180;
} else {
this.gotoAndStop(1);
}
onMouseDown = function () {
mouseDown = true;
};
onMouseUp = function () {
mouseDown = false;
};
if (mouseDown) {
_root.attachMovie("blast", "blast" + n, n);
radian = (Math.PI/180);
_root["blast" + n]._x = this._x + (10 * Math.cos(this._rotation * radian));
_root["blast" + n]._y = this._y + (10 * Math.sin(this._rotation * radian));
_root["blast" + n]._rotation = this._rotation;
n = n + 1;
}
}
}
Instance of Symbol 151 MovieClip "hospital" in Frame 10
onClipEvent (enterFrame) {
if (_root.hospital == true) {
trace(this);
if (this.work == true) {
if (_root.health._xscale <= 99) {
if (this.hitTest(_root.player)) {
_root.health._xscale = _root.health._xscale + 1;
this.cross.play();
this.nextFrame();
}
}
}
} else {
this.gotoAndStop("dead");
}
}
onClipEvent (load) {
this.work = true;
this.gotoAndStop(2);
}
Instance of Symbol 159 MovieClip "gasstation" in Frame 10
onClipEvent (enterFrame) {
if (_root.gasstation == true) {
trace(this);
if (this.work == true) {
if (_root.gasoline._xscale <= 99) {
if (this.hitTest(_root.player)) {
_root.gasoline._xscale = _root.gasoline._xscale + 1;
this.drop.play();
this.nextFrame();
}
}
}
} else {
this.gotoAndStop("dead");
}
}
onClipEvent (load) {
this.work = true;
this.gotoAndStop(2);
}
Instance of Symbol 171 MovieClip "blizzard3" in Frame 10
onClipEvent (load) {
i = 1;
}
onClipEvent (enterFrame) {
this.speed = _root.blizzardspeed;
if (this.hit.hitTest(_root.player)) {
_root.health._xscale = _root.health._xscale - 1;
}
if (mouseDown) {
i = i + 1;
}
if (i == 30) {
i = 1;
}
if (!this.hitTest(_root["blast" + i])) {
if (this._x <= _root.town._x) {
this._x = this._x + this.speed;
}
if (this._x >= _root.town._x) {
this._x = this._x - this.speed;
}
if (this._y <= _root.town._y) {
this._y = this._y + this.speed;
}
if (this._y >= _root.town._y) {
this._y = this._y - this.speed;
}
} else {
if (this._x <= _root.town._x) {
this._x = this._x - (0.5 + random(4));
}
if (this._x >= _root.town._x) {
this._x = this._x + (0.5 + random(4));
}
if (this._y <= _root.town._y) {
this._y = this._y - (0.5 + random(4));
}
if (this._y >= _root.town._y) {
this._y = this._y + (0.5 + random(4));
}
}
}
Instance of Symbol 171 MovieClip "blizzard8" in Frame 10
onClipEvent (load) {
i = 1;
}
onClipEvent (enterFrame) {
this.speed = _root.blizzardspeed;
if (this.hit.hitTest(_root.player)) {
_root.health._xscale = _root.health._xscale - 1;
}
if (mouseDown) {
i = i + 1;
}
if (i == 30) {
i = 1;
}
if (!this.hitTest(_root["blast" + i])) {
if (this._x <= _root.town._x) {
this._x = this._x + this.speed;
}
if (this._x >= _root.town._x) {
this._x = this._x - this.speed;
}
if (this._y <= _root.town._y) {
this._y = this._y + this.speed;
}
if (this._y >= _root.town._y) {
this._y = this._y - this.speed;
}
} else {
if (this._x <= _root.town._x) {
this._x = this._x - (0.5 + random(4));
}
if (this._x >= _root.town._x) {
this._x = this._x + (0.5 + random(4));
}
if (this._y <= _root.town._y) {
this._y = this._y - (0.5 + random(4));
}
if (this._y >= _root.town._y) {
this._y = this._y + (0.5 + random(4));
}
}
}
Instance of Symbol 171 MovieClip "blizzard6" in Frame 10
onClipEvent (load) {
i = 1;
}
onClipEvent (enterFrame) {
this.speed = _root.blizzardspeed;
if (this.hit.hitTest(_root.player)) {
_root.health._xscale = _root.health._xscale - 1;
}
if (mouseDown) {
i = i + 1;
}
if (i == 30) {
i = 1;
}
if (!this.hitTest(_root["blast" + i])) {
if (this._x <= _root.town._x) {
this._x = this._x + this.speed;
}
if (this._x >= _root.town._x) {
this._x = this._x - this.speed;
}
if (this._y <= _root.town._y) {
this._y = this._y + this.speed;
}
if (this._y >= _root.town._y) {
this._y = this._y - this.speed;
}
} else {
if (this._x <= _root.town._x) {
this._x = this._x - (0.5 + random(4));
}
if (this._x >= _root.town._x) {
this._x = this._x + (0.5 + random(4));
}
if (this._y <= _root.town._y) {
this._y = this._y - (0.5 + random(4));
}
if (this._y >= _root.town._y) {
this._y = this._y + (0.5 + random(4));
}
}
}
Instance of Symbol 171 MovieClip "blizzard2" in Frame 10
onClipEvent (load) {
i = 1;
}
onClipEvent (enterFrame) {
this.speed = _root.blizzardspeed;
if (this.hit.hitTest(_root.player)) {
_root.health._xscale = _root.health._xscale - 1;
}
if (mouseDown) {
i = i + 1;
}
if (i == 30) {
i = 1;
}
if (!this.hitTest(_root["blast" + i])) {
if (this._x <= _root.town._x) {
this._x = this._x + this.speed;
}
if (this._x >= _root.town._x) {
this._x = this._x - this.speed;
}
if (this._y <= _root.town._y) {
this._y = this._y + this.speed;
}
if (this._y >= _root.town._y) {
this._y = this._y - this.speed;
}
} else {
if (this._x <= _root.town._x) {
this._x = this._x - (0.5 + random(4));
}
if (this._x >= _root.town._x) {
this._x = this._x + (0.5 + random(4));
}
if (this._y <= _root.town._y) {
this._y = this._y - (0.5 + random(4));
}
if (this._y >= _root.town._y) {
this._y = this._y + (0.5 + random(4));
}
}
}
Instance of Symbol 261 MovieClip in Frame 10
onClipEvent (enterFrame) {
this.speed = random(2) + 1;
if (mouseDown) {
i = i + 1;
}
if (i == 30) {
i = 1;
}
if (this.hitTest(_root.player)) {
_root.health._xscale = _root.health._xscale - 1;
}
if (this.hitTest(_root["blast" + i])) {
_root.attachMovie("flame", "flame", 0);
_root.flame._x = this._x;
_root.flame._y = this._y;
this.hp = this.hp - 1;
this.fire.play();
}
if (this.hp <= 0) {
i = 1;
_root.attachMovie("yetideath", "yetideath", 0);
_root.yetideath._x = this._x;
_root.yetideath._y = this._y;
this.swapDepths(0);
removeMovieClip(this);
}
if ((leftmove == true) && (upmove == true)) {
this._xscale = -100;
this.gotoAndStop(2);
}
if ((leftmove == false) && (upmove == false)) {
this._xscale = 100;
this.gotoAndStop(2);
}
if ((leftmove == true) && (upmove == false)) {
this._xscale = -100;
this.gotoAndStop(3);
}
if ((leftmove == false) && (upmove == true)) {
this._xscale = 100;
this.gotoAndStop(3);
}
if (this._x <= _root.player._x) {
this._x = this._x + this.speed;
this.leftmove = false;
this.rightmove = true;
}
if (this._x >= _root.player._x) {
this._x = this._x - this.speed;
this.leftmove = true;
this.rightmove = false;
}
if (this._y <= _root.player._y) {
this._y = this._y + this.speed;
this.upmove = true;
this.downmove = false;
}
if (this._y >= _root.player._y) {
this._y = this._y - this.speed;
this.upmove = false;
this.downmove = true;
}
}
onClipEvent (load) {
this.hp = 20;
i = 1;
}
Instance of Symbol 171 MovieClip "blizzard4" in Frame 10
onClipEvent (load) {
i = 1;
}
onClipEvent (enterFrame) {
this.speed = _root.blizzardspeed;
if (this.hit.hitTest(_root.player)) {
_root.health._xscale = _root.health._xscale - 1;
}
if (mouseDown) {
i = i + 1;
}
if (i == 30) {
i = 1;
}
if (!this.hitTest(_root["blast" + i])) {
if (this._x <= _root.town._x) {
this._x = this._x + this.speed;
}
if (this._x >= _root.town._x) {
this._x = this._x - this.speed;
}
if (this._y <= _root.town._y) {
this._y = this._y + this.speed;
}
if (this._y >= _root.town._y) {
this._y = this._y - this.speed;
}
} else {
if (this._x <= _root.town._x) {
this._x = this._x - (0.5 + random(4));
}
if (this._x >= _root.town._x) {
this._x = this._x + (0.5 + random(4));
}
if (this._y <= _root.town._y) {
this._y = this._y - (0.5 + random(4));
}
if (this._y >= _root.town._y) {
this._y = this._y + (0.5 + random(4));
}
}
}
Instance of Symbol 171 MovieClip "blizzard7" in Frame 10
onClipEvent (load) {
i = 1;
}
onClipEvent (enterFrame) {
this.speed = _root.blizzardspeed;
if (this.hit.hitTest(_root.player)) {
_root.health._xscale = _root.health._xscale - 1;
}
if (mouseDown) {
i = i + 1;
}
if (i == 30) {
i = 1;
}
if (!this.hitTest(_root["blast" + i])) {
if (this._x <= _root.town._x) {
this._x = this._x + this.speed;
}
if (this._x >= _root.town._x) {
this._x = this._x - this.speed;
}
if (this._y <= _root.town._y) {
this._y = this._y + this.speed;
}
if (this._y >= _root.town._y) {
this._y = this._y - this.speed;
}
} else {
if (this._x <= _root.town._x) {
this._x = this._x - (0.5 + random(4));
}
if (this._x >= _root.town._x) {
this._x = this._x + (0.5 + random(4));
}
if (this._y <= _root.town._y) {
this._y = this._y - (0.5 + random(4));
}
if (this._y >= _root.town._y) {
this._y = this._y + (0.5 + random(4));
}
}
}
Instance of Symbol 193 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y - 3;
_root.gun._y = _root.gun._y - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x - 3;
_root.gun._x = _root.gun._x - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x + 3;
_root.gun._x = _root.gun._x + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y - 3;
_root.gun._y = _root.gun._y - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x - 3;
_root.gun._x = _root.gun._x - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x + 3;
_root.gun._x = _root.gun._x + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y - 3;
_root.gun._y = _root.gun._y - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x - 3;
_root.gun._x = _root.gun._x - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x + 3;
_root.gun._x = _root.gun._x + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y - 3;
_root.gun._y = _root.gun._y - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x - 3;
_root.gun._x = _root.gun._x - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x + 3;
_root.gun._x = _root.gun._x + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y - 3;
_root.gun._y = _root.gun._y - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x - 3;
_root.gun._x = _root.gun._x - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x + 3;
_root.gun._x = _root.gun._x + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y - 3;
_root.gun._y = _root.gun._y - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x - 3;
_root.gun._x = _root.gun._x - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x + 3;
_root.gun._x = _root.gun._x + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y - 3;
_root.gun._y = _root.gun._y - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x - 3;
_root.gun._x = _root.gun._x - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x + 3;
_root.gun._x = _root.gun._x + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y - 3;
_root.gun._y = _root.gun._y - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x - 3;
_root.gun._x = _root.gun._x - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x + 3;
_root.gun._x = _root.gun._x + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y - 3;
_root.gun._y = _root.gun._y - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x - 3;
_root.gun._x = _root.gun._x - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x + 3;
_root.gun._x = _root.gun._x + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 198 MovieClip "health" in Frame 10
onClipEvent (enterFrame) {
if (this._xscale >= 100) {
this._xscale = 100;
}
}
Frame 11
_root.player.swapDepths(0);
removeMovieClip(_root.player);
_root.gun.swapDepths(0);
removeMovieClip(_root.gun);
Instance of Symbol 151 MovieClip "hospital" in Frame 11
onClipEvent (enterFrame) {
if (_root.hospital == true) {
if (this.work == true) {
if (_root.health._xscale <= 99) {
if (this.hitTest(_root.player)) {
_root.health._xscale = _root.health._xscale + 1;
this.cross.play();
this.nextFrame();
}
}
}
} else {
this.gotoAndStop("dead");
}
}
onClipEvent (load) {
this.work = true;
this.gotoAndStop(2);
}
Instance of Symbol 159 MovieClip "gasstation" in Frame 11
onClipEvent (enterFrame) {
if (_root.gasstation == true) {
if (this.work == true) {
if (_root.gasoline._xscale <= 99) {
if (this.hitTest(_root.player)) {
_root.gasoline._xscale = _root.gasoline._xscale + 1;
this.drop.play();
this.nextFrame();
}
}
}
} else {
this.gotoAndStop("dead");
}
}
onClipEvent (load) {
this.work = true;
this.gotoAndStop(2);
}
Instance of Symbol 229 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (Key.isDown(32)) {
_root.nextFrame();
}
}
Frame 12
_root.respawn = "wave5";
_root.blizzardspeed = 0.3;
_root.timer.wave = "5";
_quality = "low";
stop();
Instance of Symbol 132 MovieClip "player" in Frame 12
onClipEvent (enterFrame) {
this.speed = 3;
if (_root.health._xscale <= 0) {
_root.health._xscale = 0;
_root.attachMovie("death", "death", 0);
_root.everythingsfucked.play();
_root.death._x = _root.player._x;
_root.death._y = _root.player._y;
_root.player.swapDepths(0);
removeMovieClip(_root.player);
_root.gun.swapDepths(0);
removeMovieClip(_root.gun);
}
if ((leftmove == true) && (upmove == true)) {
this._xscale = -100;
this.gotoAndStop(2);
}
if ((leftmove == false) && (upmove == false)) {
this._xscale = 100;
this.gotoAndStop(3);
}
if ((leftmove == true) && (upmove == false)) {
this._xscale = -100;
this.gotoAndStop(3);
}
if ((leftmove == false) && (upmove == true)) {
this._xscale = 100;
this.gotoAndStop(2);
}
if (Key.isDown(87)) {
this._y = this._y - this.speed;
upmove = true;
}
if (Key.isDown(83)) {
this._y = this._y + this.speed;
upmove = false;
}
if (Key.isDown(68)) {
this._x = this._x + this.speed;
leftmove = false;
}
if (Key.isDown(65)) {
this._x = this._x - this.speed;
leftmove = true;
}
}
Instance of Symbol 139 MovieClip "gun" in Frame 12
onClipEvent (load) {
n = 1;
}
onClipEvent (enterFrame) {
this.speed = 3;
if (Key.isDown(87)) {
this._y = this._y - this.speed;
}
if (Key.isDown(83)) {
this._y = this._y + this.speed;
}
if (Key.isDown(68)) {
this._x = this._x + this.speed;
}
if (Key.isDown(65)) {
this._x = this._x - this.speed;
}
if (_root.gasoline._xscale >= 1) {
if (n == 30) {
n = 1;
_root.gasoline._xscale = _root.gasoline._xscale - 3;
}
radian = (Math.PI/180);
y = _root._ymouse - this._y;
x = _root._xmouse - this._x;
this._rotation = Math.atan(y / x) / radian;
if (x < 0) {
this.gotoAndStop(2);
this._rotation = this._rotation + 180;
} else {
this.gotoAndStop(1);
}
onMouseDown = function () {
mouseDown = true;
};
onMouseUp = function () {
mouseDown = false;
};
if (mouseDown) {
_root.attachMovie("blast", "blast" + n, n);
radian = (Math.PI/180);
_root["blast" + n]._x = this._x + (10 * Math.cos(this._rotation * radian));
_root["blast" + n]._y = this._y + (10 * Math.sin(this._rotation * radian));
_root["blast" + n]._rotation = this._rotation;
n = n + 1;
}
}
}
Instance of Symbol 261 MovieClip in Frame 12
onClipEvent (enterFrame) {
this.speed = random(2) + 1;
if (mouseDown) {
i = i + 1;
}
if (i == 30) {
i = 1;
}
if (this.hitTest(_root.player)) {
_root.health._xscale = _root.health._xscale - 1;
}
if (this.hitTest(_root["blast" + i])) {
_root.attachMovie("flame", "flame", 0);
_root.flame._x = this._x;
_root.flame._y = this._y;
this.hp = this.hp - 1;
this.fire.play();
}
if (this.hp <= 0) {
i = 1;
_root.attachMovie("yetideath", "yetideath", 0);
_root.yetideath._x = this._x;
_root.yetideath._y = this._y;
this.swapDepths(0);
removeMovieClip(this);
}
if ((leftmove == true) && (upmove == true)) {
this._xscale = -100;
this.gotoAndStop(2);
}
if ((leftmove == false) && (upmove == false)) {
this._xscale = 100;
this.gotoAndStop(2);
}
if ((leftmove == true) && (upmove == false)) {
this._xscale = -100;
this.gotoAndStop(3);
}
if ((leftmove == false) && (upmove == true)) {
this._xscale = 100;
this.gotoAndStop(3);
}
if (this._x <= _root.player._x) {
this._x = this._x + this.speed;
this.leftmove = false;
this.rightmove = true;
}
if (this._x >= _root.player._x) {
this._x = this._x - this.speed;
this.leftmove = true;
this.rightmove = false;
}
if (this._y <= _root.player._y) {
this._y = this._y + this.speed;
this.upmove = true;
this.downmove = false;
}
if (this._y >= _root.player._y) {
this._y = this._y - this.speed;
this.upmove = false;
this.downmove = true;
}
}
onClipEvent (load) {
this.hp = 20;
i = 1;
}
Instance of Symbol 171 MovieClip "blizzard1" in Frame 12
onClipEvent (load) {
i = 1;
}
onClipEvent (enterFrame) {
this.speed = _root.blizzardspeed;
if (this.hit.hitTest(_root.player)) {
_root.health._xscale = _root.health._xscale - 1;
}
if (mouseDown) {
i = i + 1;
}
if (i == 30) {
i = 1;
}
if (!this.hitTest(_root["blast" + i])) {
if (this._x <= _root.town._x) {
this._x = this._x + this.speed;
}
if (this._x >= _root.town._x) {
this._x = this._x - this.speed;
}
if (this._y <= _root.town._y) {
this._y = this._y + this.speed;
}
if (this._y >= _root.town._y) {
this._y = this._y - this.speed;
}
} else {
if (this._x <= _root.town._x) {
this._x = this._x - (0.5 + random(4));
}
if (this._x >= _root.town._x) {
this._x = this._x + (0.5 + random(4));
}
if (this._y <= _root.town._y) {
this._y = this._y - (0.5 + random(4));
}
if (this._y >= _root.town._y) {
this._y = this._y + (0.5 + random(4));
}
}
}
Instance of Symbol 171 MovieClip "blizzard8" in Frame 12
onClipEvent (load) {
i = 1;
}
onClipEvent (enterFrame) {
this.speed = _root.blizzardspeed;
if (this.hit.hitTest(_root.player)) {
_root.health._xscale = _root.health._xscale - 1;
}
if (mouseDown) {
i = i + 1;
}
if (i == 30) {
i = 1;
}
if (!this.hitTest(_root["blast" + i])) {
if (this._x <= _root.town._x) {
this._x = this._x + this.speed;
}
if (this._x >= _root.town._x) {
this._x = this._x - this.speed;
}
if (this._y <= _root.town._y) {
this._y = this._y + this.speed;
}
if (this._y >= _root.town._y) {
this._y = this._y - this.speed;
}
} else {
if (this._x <= _root.town._x) {
this._x = this._x - (0.5 + random(4));
}
if (this._x >= _root.town._x) {
this._x = this._x + (0.5 + random(4));
}
if (this._y <= _root.town._y) {
this._y = this._y - (0.5 + random(4));
}
if (this._y >= _root.town._y) {
this._y = this._y + (0.5 + random(4));
}
}
}
Instance of Symbol 171 MovieClip "blizzard6" in Frame 12
onClipEvent (load) {
i = 1;
}
onClipEvent (enterFrame) {
this.speed = _root.blizzardspeed;
if (this.hit.hitTest(_root.player)) {
_root.health._xscale = _root.health._xscale - 1;
}
if (mouseDown) {
i = i + 1;
}
if (i == 30) {
i = 1;
}
if (!this.hitTest(_root["blast" + i])) {
if (this._x <= _root.town._x) {
this._x = this._x + this.speed;
}
if (this._x >= _root.town._x) {
this._x = this._x - this.speed;
}
if (this._y <= _root.town._y) {
this._y = this._y + this.speed;
}
if (this._y >= _root.town._y) {
this._y = this._y - this.speed;
}
} else {
if (this._x <= _root.town._x) {
this._x = this._x - (0.5 + random(4));
}
if (this._x >= _root.town._x) {
this._x = this._x + (0.5 + random(4));
}
if (this._y <= _root.town._y) {
this._y = this._y - (0.5 + random(4));
}
if (this._y >= _root.town._y) {
this._y = this._y + (0.5 + random(4));
}
}
}
Instance of Symbol 171 MovieClip "blizzard2" in Frame 12
onClipEvent (load) {
i = 1;
}
onClipEvent (enterFrame) {
this.speed = _root.blizzardspeed;
if (this.hit.hitTest(_root.player)) {
_root.health._xscale = _root.health._xscale - 1;
}
if (mouseDown) {
i = i + 1;
}
if (i == 30) {
i = 1;
}
if (!this.hitTest(_root["blast" + i])) {
if (this._x <= _root.town._x) {
this._x = this._x + this.speed;
}
if (this._x >= _root.town._x) {
this._x = this._x - this.speed;
}
if (this._y <= _root.town._y) {
this._y = this._y + this.speed;
}
if (this._y >= _root.town._y) {
this._y = this._y - this.speed;
}
} else {
if (this._x <= _root.town._x) {
this._x = this._x - (0.5 + random(4));
}
if (this._x >= _root.town._x) {
this._x = this._x + (0.5 + random(4));
}
if (this._y <= _root.town._y) {
this._y = this._y - (0.5 + random(4));
}
if (this._y >= _root.town._y) {
this._y = this._y + (0.5 + random(4));
}
}
}
Instance of Symbol 261 MovieClip in Frame 12
onClipEvent (enterFrame) {
this.speed = random(2) + 1;
if (mouseDown) {
i = i + 1;
}
if (i == 30) {
i = 1;
}
if (this.hitTest(_root.player)) {
_root.health._xscale = _root.health._xscale - 1;
}
if (this.hitTest(_root["blast" + i])) {
_root.attachMovie("flame", "flame", 0);
_root.flame._x = this._x;
_root.flame._y = this._y;
this.hp = this.hp - 1;
this.fire.play();
}
if (this.hp <= 0) {
i = 1;
_root.attachMovie("yetideath", "yetideath", 1, 1);
_root.yetideath1._x = this._x;
_root.yetideath1._y = this._y;
this.swapDepths(0);
removeMovieClip(this);
}
if ((leftmove == true) && (upmove == true)) {
this._xscale = -100;
this.gotoAndStop(2);
}
if ((leftmove == false) && (upmove == false)) {
this._xscale = 100;
this.gotoAndStop(2);
}
if ((leftmove == true) && (upmove == false)) {
this._xscale = -100;
this.gotoAndStop(3);
}
if ((leftmove == false) && (upmove == true)) {
this._xscale = 100;
this.gotoAndStop(3);
}
if (this._x <= _root.player._x) {
this._x = this._x + this.speed;
this.leftmove = false;
this.rightmove = true;
}
if (this._x >= _root.player._x) {
this._x = this._x - this.speed;
this.leftmove = true;
this.rightmove = false;
}
if (this._y <= _root.player._y) {
this._y = this._y + this.speed;
this.upmove = true;
this.downmove = false;
}
if (this._y >= _root.player._y) {
this._y = this._y - this.speed;
this.upmove = false;
this.downmove = true;
}
}
onClipEvent (load) {
this.hp = 20;
i = 1;
}
Instance of Symbol 261 MovieClip in Frame 12
onClipEvent (enterFrame) {
this.speed = random(2) + 1;
if (mouseDown) {
i = i + 1;
}
if (i == 30) {
i = 1;
}
if (this.hitTest(_root.player)) {
_root.health._xscale = _root.health._xscale - 1;
}
if (this.hitTest(_root["blast" + i])) {
_root.attachMovie("flame", "flame", 0);
_root.flame._x = this._x;
_root.flame._y = this._y;
this.hp = this.hp - 1;
this.fire.play();
}
if (this.hp <= 0) {
i = 1;
_root.attachMovie("yetideath", "yetideath", 1, 1);
_root.yetideath1._x = this._x;
_root.yetideath1._y = this._y;
this.swapDepths(0);
removeMovieClip(this);
}
if ((leftmove == true) && (upmove == true)) {
this._xscale = -100;
this.gotoAndStop(2);
}
if ((leftmove == false) && (upmove == false)) {
this._xscale = 100;
this.gotoAndStop(2);
}
if ((leftmove == true) && (upmove == false)) {
this._xscale = -100;
this.gotoAndStop(3);
}
if ((leftmove == false) && (upmove == true)) {
this._xscale = 100;
this.gotoAndStop(3);
}
if (this._x <= _root.player._x) {
this._x = this._x + this.speed;
this.leftmove = false;
this.rightmove = true;
}
if (this._x >= _root.player._x) {
this._x = this._x - this.speed;
this.leftmove = true;
this.rightmove = false;
}
if (this._y <= _root.player._y) {
this._y = this._y + this.speed;
this.upmove = true;
this.downmove = false;
}
if (this._y >= _root.player._y) {
this._y = this._y - this.speed;
this.upmove = false;
this.downmove = true;
}
}
onClipEvent (load) {
this.hp = 20;
i = 1;
}
Instance of Symbol 261 MovieClip in Frame 12
onClipEvent (enterFrame) {
this.speed = random(2) + 1;
if (mouseDown) {
i = i + 1;
}
if (i == 30) {
i = 1;
}
if (this.hitTest(_root.player)) {
_root.health._xscale = _root.health._xscale - 1;
}
if (this.hitTest(_root["blast" + i])) {
_root.attachMovie("flame", "flame", 0);
_root.flame._x = this._x;
_root.flame._y = this._y;
this.hp = this.hp - 1;
this.fire.play();
}
if (this.hp <= 0) {
i = 1;
_root.attachMovie("yetideath", "yetideath", 0);
_root.yetideath._x = this._x;
_root.yetideath._y = this._y;
this.swapDepths(0);
removeMovieClip(this);
}
if ((leftmove == true) && (upmove == true)) {
this._xscale = -100;
this.gotoAndStop(2);
}
if ((leftmove == false) && (upmove == false)) {
this._xscale = 100;
this.gotoAndStop(2);
}
if ((leftmove == true) && (upmove == false)) {
this._xscale = -100;
this.gotoAndStop(3);
}
if ((leftmove == false) && (upmove == true)) {
this._xscale = 100;
this.gotoAndStop(3);
}
if (this._x <= _root.player._x) {
this._x = this._x + this.speed;
this.leftmove = false;
this.rightmove = true;
}
if (this._x >= _root.player._x) {
this._x = this._x - this.speed;
this.leftmove = true;
this.rightmove = false;
}
if (this._y <= _root.player._y) {
this._y = this._y + this.speed;
this.upmove = true;
this.downmove = false;
}
if (this._y >= _root.player._y) {
this._y = this._y - this.speed;
this.upmove = false;
this.downmove = true;
}
}
onClipEvent (load) {
this.hp = 20;
i = 1;
}
Instance of Symbol 171 MovieClip "blizzard4" in Frame 12
onClipEvent (load) {
i = 1;
}
onClipEvent (enterFrame) {
this.speed = _root.blizzardspeed;
if (this.hit.hitTest(_root.player)) {
_root.health._xscale = _root.health._xscale - 1;
}
if (mouseDown) {
i = i + 1;
}
if (i == 30) {
i = 1;
}
if (!this.hitTest(_root["blast" + i])) {
if (this._x <= _root.town._x) {
this._x = this._x + this.speed;
}
if (this._x >= _root.town._x) {
this._x = this._x - this.speed;
}
if (this._y <= _root.town._y) {
this._y = this._y + this.speed;
}
if (this._y >= _root.town._y) {
this._y = this._y - this.speed;
}
} else {
if (this._x <= _root.town._x) {
this._x = this._x - (0.5 + random(4));
}
if (this._x >= _root.town._x) {
this._x = this._x + (0.5 + random(4));
}
if (this._y <= _root.town._y) {
this._y = this._y - (0.5 + random(4));
}
if (this._y >= _root.town._y) {
this._y = this._y + (0.5 + random(4));
}
}
}
Instance of Symbol 171 MovieClip "blizzard3" in Frame 12
onClipEvent (load) {
i = 1;
}
onClipEvent (enterFrame) {
this.speed = _root.blizzardspeed;
if (this.hit.hitTest(_root.player)) {
_root.health._xscale = _root.health._xscale - 1;
}
if (mouseDown) {
i = i + 1;
}
if (i == 30) {
i = 1;
}
if (!this.hitTest(_root["blast" + i])) {
if (this._x <= _root.town._x) {
this._x = this._x + this.speed;
}
if (this._x >= _root.town._x) {
this._x = this._x - this.speed;
}
if (this._y <= _root.town._y) {
this._y = this._y + this.speed;
}
if (this._y >= _root.town._y) {
this._y = this._y - this.speed;
}
} else {
if (this._x <= _root.town._x) {
this._x = this._x - (0.5 + random(4));
}
if (this._x >= _root.town._x) {
this._x = this._x + (0.5 + random(4));
}
if (this._y <= _root.town._y) {
this._y = this._y - (0.5 + random(4));
}
if (this._y >= _root.town._y) {
this._y = this._y + (0.5 + random(4));
}
}
}
Instance of Symbol 193 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y - 3;
_root.gun._y = _root.gun._y - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x - 3;
_root.gun._x = _root.gun._x - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x + 3;
_root.gun._x = _root.gun._x + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y - 3;
_root.gun._y = _root.gun._y - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x - 3;
_root.gun._x = _root.gun._x - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x + 3;
_root.gun._x = _root.gun._x + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y - 3;
_root.gun._y = _root.gun._y - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x - 3;
_root.gun._x = _root.gun._x - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x + 3;
_root.gun._x = _root.gun._x + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y - 3;
_root.gun._y = _root.gun._y - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x - 3;
_root.gun._x = _root.gun._x - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x + 3;
_root.gun._x = _root.gun._x + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y - 3;
_root.gun._y = _root.gun._y - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x - 3;
_root.gun._x = _root.gun._x - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x + 3;
_root.gun._x = _root.gun._x + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y - 3;
_root.gun._y = _root.gun._y - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x - 3;
_root.gun._x = _root.gun._x - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x + 3;
_root.gun._x = _root.gun._x + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y - 3;
_root.gun._y = _root.gun._y - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x - 3;
_root.gun._x = _root.gun._x - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x + 3;
_root.gun._x = _root.gun._x + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y - 3;
_root.gun._y = _root.gun._y - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x - 3;
_root.gun._x = _root.gun._x - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x + 3;
_root.gun._x = _root.gun._x + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y - 3;
_root.gun._y = _root.gun._y - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x - 3;
_root.gun._x = _root.gun._x - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x + 3;
_root.gun._x = _root.gun._x + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 198 MovieClip "health" in Frame 12
onClipEvent (enterFrame) {
if (this._xscale >= 100) {
this._xscale = 100;
}
}
Frame 13
_root.player.swapDepths(0);
removeMovieClip(_root.player);
_root.gun.swapDepths(0);
removeMovieClip(_root.gun);
Instance of Symbol 229 MovieClip in Frame 13
onClipEvent (enterFrame) {
if (Key.isDown(32)) {
_root.nextFrame();
}
}
Frame 14
_root.respawn = "wave6";
_root.blizzardspeed = 0.5;
_root.timer.wave = "6";
_quality = "low";
stop();
Instance of Symbol 132 MovieClip "player" in Frame 14
onClipEvent (enterFrame) {
this.speed = 3;
if (_root.health._xscale <= 0) {
_root.health._xscale = 0;
_root.attachMovie("death", "death", 0);
_root.everythingsfucked.play();
_root.death._x = _root.player._x;
_root.death._y = _root.player._y;
_root.player.swapDepths(0);
removeMovieClip(_root.player);
_root.gun.swapDepths(0);
removeMovieClip(_root.gun);
}
if ((leftmove == true) && (upmove == true)) {
this._xscale = -100;
this.gotoAndStop(2);
}
if ((leftmove == false) && (upmove == false)) {
this._xscale = 100;
this.gotoAndStop(3);
}
if ((leftmove == true) && (upmove == false)) {
this._xscale = -100;
this.gotoAndStop(3);
}
if ((leftmove == false) && (upmove == true)) {
this._xscale = 100;
this.gotoAndStop(2);
}
if (Key.isDown(87)) {
this._y = this._y - this.speed;
upmove = true;
}
if (Key.isDown(83)) {
this._y = this._y + this.speed;
upmove = false;
}
if (Key.isDown(68)) {
this._x = this._x + this.speed;
leftmove = false;
}
if (Key.isDown(65)) {
this._x = this._x - this.speed;
leftmove = true;
}
}
Instance of Symbol 139 MovieClip "gun" in Frame 14
onClipEvent (load) {
n = 1;
}
onClipEvent (enterFrame) {
this.speed = 3;
if (Key.isDown(87)) {
this._y = this._y - this.speed;
}
if (Key.isDown(83)) {
this._y = this._y + this.speed;
}
if (Key.isDown(68)) {
this._x = this._x + this.speed;
}
if (Key.isDown(65)) {
this._x = this._x - this.speed;
}
if (_root.gasoline._xscale >= 1) {
if (n == 30) {
n = 1;
_root.gasoline._xscale = _root.gasoline._xscale - 3;
}
radian = (Math.PI/180);
y = _root._ymouse - this._y;
x = _root._xmouse - this._x;
this._rotation = Math.atan(y / x) / radian;
if (x < 0) {
this.gotoAndStop(2);
this._rotation = this._rotation + 180;
} else {
this.gotoAndStop(1);
}
onMouseDown = function () {
mouseDown = true;
};
onMouseUp = function () {
mouseDown = false;
};
if (mouseDown) {
_root.attachMovie("blast", "blast" + n, n);
radian = (Math.PI/180);
_root["blast" + n]._x = this._x + (10 * Math.cos(this._rotation * radian));
_root["blast" + n]._y = this._y + (10 * Math.sin(this._rotation * radian));
_root["blast" + n]._rotation = this._rotation;
n = n + 1;
}
}
}
Instance of Symbol 261 MovieClip in Frame 14
onClipEvent (enterFrame) {
this.speed = random(2) + 1;
if (mouseDown) {
i = i + 1;
}
if (i == 30) {
i = 1;
}
if (this.hitTest(_root.player)) {
_root.health._xscale = _root.health._xscale - 1;
}
if (this.hitTest(_root["blast" + i])) {
_root.attachMovie("flame", "flame", 0);
_root.flame._x = this._x;
_root.flame._y = this._y;
this.hp = this.hp - 1;
this.fire.play();
}
if (this.hp <= 0) {
i = 1;
_root.attachMovie("yetideath", "yetideath", 0);
_root.yetideath._x = this._x;
_root.yetideath._y = this._y;
this.swapDepths(0);
removeMovieClip(this);
}
if ((leftmove == true) && (upmove == true)) {
this._xscale = -100;
this.gotoAndStop(2);
}
if ((leftmove == false) && (upmove == false)) {
this._xscale = 100;
this.gotoAndStop(2);
}
if ((leftmove == true) && (upmove == false)) {
this._xscale = -100;
this.gotoAndStop(3);
}
if ((leftmove == false) && (upmove == true)) {
this._xscale = 100;
this.gotoAndStop(3);
}
if (this._x <= _root.player._x) {
this._x = this._x + this.speed;
this.leftmove = false;
this.rightmove = true;
}
if (this._x >= _root.player._x) {
this._x = this._x - this.speed;
this.leftmove = true;
this.rightmove = false;
}
if (this._y <= _root.player._y) {
this._y = this._y + this.speed;
this.upmove = true;
this.downmove = false;
}
if (this._y >= _root.player._y) {
this._y = this._y - this.speed;
this.upmove = false;
this.downmove = true;
}
}
onClipEvent (load) {
this.hp = 20;
i = 1;
}
Instance of Symbol 171 MovieClip "blizzard4" in Frame 14
onClipEvent (load) {
i = 1;
}
onClipEvent (enterFrame) {
this.speed = _root.blizzardspeed;
if (this.hit.hitTest(_root.player)) {
_root.health._xscale = _root.health._xscale - 1;
}
if (mouseDown) {
i = i + 1;
}
if (i == 30) {
i = 1;
}
if (!this.hitTest(_root["blast" + i])) {
if (this._x <= _root.town._x) {
this._x = this._x + this.speed;
}
if (this._x >= _root.town._x) {
this._x = this._x - this.speed;
}
if (this._y <= _root.town._y) {
this._y = this._y + this.speed;
}
if (this._y >= _root.town._y) {
this._y = this._y - this.speed;
}
} else {
if (this._x <= _root.town._x) {
this._x = this._x - (0.5 + random(4));
}
if (this._x >= _root.town._x) {
this._x = this._x + (0.5 + random(4));
}
if (this._y <= _root.town._y) {
this._y = this._y - (0.5 + random(4));
}
if (this._y >= _root.town._y) {
this._y = this._y + (0.5 + random(4));
}
}
}
Instance of Symbol 171 MovieClip "blizzard8" in Frame 14
onClipEvent (load) {
i = 1;
}
onClipEvent (enterFrame) {
this.speed = _root.blizzardspeed;
if (this.hit.hitTest(_root.player)) {
_root.health._xscale = _root.health._xscale - 1;
}
if (mouseDown) {
i = i + 1;
}
if (i == 30) {
i = 1;
}
if (!this.hitTest(_root["blast" + i])) {
if (this._x <= _root.town._x) {
this._x = this._x + this.speed;
}
if (this._x >= _root.town._x) {
this._x = this._x - this.speed;
}
if (this._y <= _root.town._y) {
this._y = this._y + this.speed;
}
if (this._y >= _root.town._y) {
this._y = this._y - this.speed;
}
} else {
if (this._x <= _root.town._x) {
this._x = this._x - (0.5 + random(4));
}
if (this._x >= _root.town._x) {
this._x = this._x + (0.5 + random(4));
}
if (this._y <= _root.town._y) {
this._y = this._y - (0.5 + random(4));
}
if (this._y >= _root.town._y) {
this._y = this._y + (0.5 + random(4));
}
}
}
Instance of Symbol 171 MovieClip "blizzard6" in Frame 14
onClipEvent (load) {
i = 1;
}
onClipEvent (enterFrame) {
this.speed = _root.blizzardspeed;
if (this.hit.hitTest(_root.player)) {
_root.health._xscale = _root.health._xscale - 1;
}
if (mouseDown) {
i = i + 1;
}
if (i == 30) {
i = 1;
}
if (!this.hitTest(_root["blast" + i])) {
if (this._x <= _root.town._x) {
this._x = this._x + this.speed;
}
if (this._x >= _root.town._x) {
this._x = this._x - this.speed;
}
if (this._y <= _root.town._y) {
this._y = this._y + this.speed;
}
if (this._y >= _root.town._y) {
this._y = this._y - this.speed;
}
} else {
if (this._x <= _root.town._x) {
this._x = this._x - (0.5 + random(4));
}
if (this._x >= _root.town._x) {
this._x = this._x + (0.5 + random(4));
}
if (this._y <= _root.town._y) {
this._y = this._y - (0.5 + random(4));
}
if (this._y >= _root.town._y) {
this._y = this._y + (0.5 + random(4));
}
}
}
Instance of Symbol 171 MovieClip "blizzard2" in Frame 14
onClipEvent (load) {
i = 1;
}
onClipEvent (enterFrame) {
this.speed = _root.blizzardspeed;
if (this.hit.hitTest(_root.player)) {
_root.health._xscale = _root.health._xscale - 1;
}
if (mouseDown) {
i = i + 1;
}
if (i == 30) {
i = 1;
}
if (!this.hitTest(_root["blast" + i])) {
if (this._x <= _root.town._x) {
this._x = this._x + this.speed;
}
if (this._x >= _root.town._x) {
this._x = this._x - this.speed;
}
if (this._y <= _root.town._y) {
this._y = this._y + this.speed;
}
if (this._y >= _root.town._y) {
this._y = this._y - this.speed;
}
} else {
if (this._x <= _root.town._x) {
this._x = this._x - (0.5 + random(4));
}
if (this._x >= _root.town._x) {
this._x = this._x + (0.5 + random(4));
}
if (this._y <= _root.town._y) {
this._y = this._y - (0.5 + random(4));
}
if (this._y >= _root.town._y) {
this._y = this._y + (0.5 + random(4));
}
}
}
Instance of Symbol 261 MovieClip in Frame 14
onClipEvent (enterFrame) {
this.speed = random(2) + 1;
if (mouseDown) {
i = i + 1;
}
if (i == 30) {
i = 1;
}
if (this.hitTest(_root.player)) {
_root.health._xscale = _root.health._xscale - 1;
}
if (this.hitTest(_root["blast" + i])) {
_root.attachMovie("flame", "flame", 0);
_root.flame._x = this._x;
_root.flame._y = this._y;
this.hp = this.hp - 1;
this.fire.play();
}
if (this.hp <= 0) {
i = 1;
_root.attachMovie("yetideath", "yetideath", 1, 1);
_root.yetideath1._x = this._x;
_root.yetideath1._y = this._y;
this.swapDepths(0);
removeMovieClip(this);
}
if ((leftmove == true) && (upmove == true)) {
this._xscale = -100;
this.gotoAndStop(2);
}
if ((leftmove == false) && (upmove == false)) {
this._xscale = 100;
this.gotoAndStop(2);
}
if ((leftmove == true) && (upmove == false)) {
this._xscale = -100;
this.gotoAndStop(3);
}
if ((leftmove == false) && (upmove == true)) {
this._xscale = 100;
this.gotoAndStop(3);
}
if (this._x <= _root.player._x) {
this._x = this._x + this.speed;
this.leftmove = false;
this.rightmove = true;
}
if (this._x >= _root.player._x) {
this._x = this._x - this.speed;
this.leftmove = true;
this.rightmove = false;
}
if (this._y <= _root.player._y) {
this._y = this._y + this.speed;
this.upmove = true;
this.downmove = false;
}
if (this._y >= _root.player._y) {
this._y = this._y - this.speed;
this.upmove = false;
this.downmove = true;
}
}
onClipEvent (load) {
this.hp = 20;
i = 1;
}
Instance of Symbol 171 MovieClip "blizzard3" in Frame 14
onClipEvent (load) {
i = 1;
}
onClipEvent (enterFrame) {
this.speed = _root.blizzardspeed;
if (this.hit.hitTest(_root.player)) {
_root.health._xscale = _root.health._xscale - 1;
}
if (mouseDown) {
i = i + 1;
}
if (i == 30) {
i = 1;
}
if (!this.hitTest(_root["blast" + i])) {
if (this._x <= _root.town._x) {
this._x = this._x + this.speed;
}
if (this._x >= _root.town._x) {
this._x = this._x - this.speed;
}
if (this._y <= _root.town._y) {
this._y = this._y + this.speed;
}
if (this._y >= _root.town._y) {
this._y = this._y - this.speed;
}
} else {
if (this._x <= _root.town._x) {
this._x = this._x - (0.5 + random(4));
}
if (this._x >= _root.town._x) {
this._x = this._x + (0.5 + random(4));
}
if (this._y <= _root.town._y) {
this._y = this._y - (0.5 + random(4));
}
if (this._y >= _root.town._y) {
this._y = this._y + (0.5 + random(4));
}
}
}
Instance of Symbol 171 MovieClip "blizzard7" in Frame 14
onClipEvent (load) {
i = 1;
}
onClipEvent (enterFrame) {
this.speed = _root.blizzardspeed;
if (this.hit.hitTest(_root.player)) {
_root.health._xscale = _root.health._xscale - 1;
}
if (mouseDown) {
i = i + 1;
}
if (i == 30) {
i = 1;
}
if (!this.hitTest(_root["blast" + i])) {
if (this._x <= _root.town._x) {
this._x = this._x + this.speed;
}
if (this._x >= _root.town._x) {
this._x = this._x - this.speed;
}
if (this._y <= _root.town._y) {
this._y = this._y + this.speed;
}
if (this._y >= _root.town._y) {
this._y = this._y - this.speed;
}
} else {
if (this._x <= _root.town._x) {
this._x = this._x - (0.5 + random(4));
}
if (this._x >= _root.town._x) {
this._x = this._x + (0.5 + random(4));
}
if (this._y <= _root.town._y) {
this._y = this._y - (0.5 + random(4));
}
if (this._y >= _root.town._y) {
this._y = this._y + (0.5 + random(4));
}
}
}
Instance of Symbol 171 MovieClip "blizzard5" in Frame 14
onClipEvent (load) {
i = 1;
}
onClipEvent (enterFrame) {
this.speed = _root.blizzardspeed;
if (this.hit.hitTest(_root.player)) {
_root.health._xscale = _root.health._xscale - 1;
}
if (mouseDown) {
i = i + 1;
}
if (i == 30) {
i = 1;
}
if (!this.hitTest(_root["blast" + i])) {
if (this._x <= _root.town._x) {
this._x = this._x + this.speed;
}
if (this._x >= _root.town._x) {
this._x = this._x - this.speed;
}
if (this._y <= _root.town._y) {
this._y = this._y + this.speed;
}
if (this._y >= _root.town._y) {
this._y = this._y - this.speed;
}
} else {
if (this._x <= _root.town._x) {
this._x = this._x - (0.5 + random(4));
}
if (this._x >= _root.town._x) {
this._x = this._x + (0.5 + random(4));
}
if (this._y <= _root.town._y) {
this._y = this._y - (0.5 + random(4));
}
if (this._y >= _root.town._y) {
this._y = this._y + (0.5 + random(4));
}
}
}
Instance of Symbol 171 MovieClip "blizzard9" in Frame 14
onClipEvent (load) {
i = 1;
}
onClipEvent (enterFrame) {
this.speed = _root.blizzardspeed;
if (this.hit.hitTest(_root.player)) {
_root.health._xscale = _root.health._xscale - 1;
}
if (mouseDown) {
i = i + 1;
}
if (i == 30) {
i = 1;
}
if (!this.hitTest(_root["blast" + i])) {
if (this._x <= _root.town._x) {
this._x = this._x + this.speed;
}
if (this._x >= _root.town._x) {
this._x = this._x - this.speed;
}
if (this._y <= _root.town._y) {
this._y = this._y + this.speed;
}
if (this._y >= _root.town._y) {
this._y = this._y - this.speed;
}
} else {
if (this._x <= _root.town._x) {
this._x = this._x - (0.5 + random(4));
}
if (this._x >= _root.town._x) {
this._x = this._x + (0.5 + random(4));
}
if (this._y <= _root.town._y) {
this._y = this._y - (0.5 + random(4));
}
if (this._y >= _root.town._y) {
this._y = this._y + (0.5 + random(4));
}
}
}
Instance of Symbol 24 MovieClip [snowball] "snowball" in Frame 14
onClipEvent (enterFrame) {
this._x = this._x + 1;
if (this._xscale <= 20) {
this.swapDepths(0);
removeMovieClip(this);
}
if (mouseDown) {
i = i + 1;
}
if (i == 30) {
i = 1;
}
if (this.hitTest(_root["blast" + i])) {
_root.attachMovie("puddle", "puddle", 0);
_root.puddle._x = this._x;
_root.puddle._y = this._y;
this._xscale = this._xscale - 10;
this._yscale = this._yscale - 10;
}
}
onClipEvent (load) {
i = 1;
}
Instance of Symbol 193 MovieClip in Frame 14
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 14
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y - 3;
_root.gun._y = _root.gun._y - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 14
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x - 3;
_root.gun._x = _root.gun._x - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 14
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x + 3;
_root.gun._x = _root.gun._x + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 14
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 14
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 14
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y - 3;
_root.gun._y = _root.gun._y - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 14
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x - 3;
_root.gun._x = _root.gun._x - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 14
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x + 3;
_root.gun._x = _root.gun._x + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 14
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 14
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 14
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y - 3;
_root.gun._y = _root.gun._y - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 14
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x - 3;
_root.gun._x = _root.gun._x - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 14
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x + 3;
_root.gun._x = _root.gun._x + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 14
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 14
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 14
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y - 3;
_root.gun._y = _root.gun._y - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 14
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x - 3;
_root.gun._x = _root.gun._x - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 14
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x + 3;
_root.gun._x = _root.gun._x + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 14
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 14
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 14
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y - 3;
_root.gun._y = _root.gun._y - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 14
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x - 3;
_root.gun._x = _root.gun._x - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 14
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x + 3;
_root.gun._x = _root.gun._x + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 14
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 14
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 14
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y - 3;
_root.gun._y = _root.gun._y - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 14
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x - 3;
_root.gun._x = _root.gun._x - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 14
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x + 3;
_root.gun._x = _root.gun._x + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 14
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 14
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 14
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y - 3;
_root.gun._y = _root.gun._y - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 14
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x - 3;
_root.gun._x = _root.gun._x - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 14
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x + 3;
_root.gun._x = _root.gun._x + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 14
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 14
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 14
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y - 3;
_root.gun._y = _root.gun._y - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 14
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x - 3;
_root.gun._x = _root.gun._x - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 14
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x + 3;
_root.gun._x = _root.gun._x + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 14
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 14
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 14
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y - 3;
_root.gun._y = _root.gun._y - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 14
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x - 3;
_root.gun._x = _root.gun._x - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 14
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x + 3;
_root.gun._x = _root.gun._x + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 14
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 198 MovieClip "health" in Frame 14
onClipEvent (enterFrame) {
if (this._xscale >= 100) {
this._xscale = 100;
}
}
Frame 15
_root.player.swapDepths(0);
removeMovieClip(_root.player);
_root.gun.swapDepths(0);
removeMovieClip(_root.gun);
Instance of Symbol 229 MovieClip in Frame 15
onClipEvent (enterFrame) {
if (Key.isDown(32)) {
_root.nextFrame();
}
}
Frame 16
_root.respawn = "wave7";
_root.blizzardspeed = 0.5;
_root.timer.wave = "7";
_quality = "low";
stop();
Instance of Symbol 132 MovieClip "player" in Frame 16
onClipEvent (enterFrame) {
this.speed = 3;
if (_root.health._xscale <= 0) {
_root.health._xscale = 0;
_root.attachMovie("death", "death", 0);
_root.everythingsfucked.play();
_root.death._x = _root.player._x;
_root.death._y = _root.player._y;
_root.player.swapDepths(0);
removeMovieClip(_root.player);
_root.gun.swapDepths(0);
removeMovieClip(_root.gun);
}
if ((leftmove == true) && (upmove == true)) {
this._xscale = -100;
this.gotoAndStop(2);
}
if ((leftmove == false) && (upmove == false)) {
this._xscale = 100;
this.gotoAndStop(3);
}
if ((leftmove == true) && (upmove == false)) {
this._xscale = -100;
this.gotoAndStop(3);
}
if ((leftmove == false) && (upmove == true)) {
this._xscale = 100;
this.gotoAndStop(2);
}
if (Key.isDown(87)) {
this._y = this._y - this.speed;
upmove = true;
}
if (Key.isDown(83)) {
this._y = this._y + this.speed;
upmove = false;
}
if (Key.isDown(68)) {
this._x = this._x + this.speed;
leftmove = false;
}
if (Key.isDown(65)) {
this._x = this._x - this.speed;
leftmove = true;
}
}
Instance of Symbol 139 MovieClip "gun" in Frame 16
onClipEvent (load) {
n = 1;
}
onClipEvent (enterFrame) {
this.speed = 3;
if (Key.isDown(87)) {
this._y = this._y - this.speed;
}
if (Key.isDown(83)) {
this._y = this._y + this.speed;
}
if (Key.isDown(68)) {
this._x = this._x + this.speed;
}
if (Key.isDown(65)) {
this._x = this._x - this.speed;
}
if (_root.gasoline._xscale >= 1) {
if (n == 30) {
n = 1;
_root.gasoline._xscale = _root.gasoline._xscale - 3;
}
radian = (Math.PI/180);
y = _root._ymouse - this._y;
x = _root._xmouse - this._x;
this._rotation = Math.atan(y / x) / radian;
if (x < 0) {
this.gotoAndStop(2);
this._rotation = this._rotation + 180;
} else {
this.gotoAndStop(1);
}
onMouseDown = function () {
mouseDown = true;
};
onMouseUp = function () {
mouseDown = false;
};
if (mouseDown) {
_root.attachMovie("blast", "blast" + n, n);
radian = (Math.PI/180);
_root["blast" + n]._x = this._x + (10 * Math.cos(this._rotation * radian));
_root["blast" + n]._y = this._y + (10 * Math.sin(this._rotation * radian));
_root["blast" + n]._rotation = this._rotation;
n = n + 1;
}
}
}
Instance of Symbol 261 MovieClip in Frame 16
onClipEvent (enterFrame) {
this.speed = random(2) + 1;
if (mouseDown) {
i = i + 1;
}
if (i == 30) {
i = 1;
}
if (this.hitTest(_root.player)) {
_root.health._xscale = _root.health._xscale - 1;
}
if (this.hitTest(_root["blast" + i])) {
_root.attachMovie("flame", "flame", 0);
_root.flame._x = this._x;
_root.flame._y = this._y;
this.hp = this.hp - 1;
this.fire.play();
}
if (this.hp <= 0) {
i = 1;
_root.attachMovie("yetideath", "yetideath", 0);
_root.yetideath._x = this._x;
_root.yetideath._y = this._y;
this.swapDepths(0);
removeMovieClip(this);
}
if ((leftmove == true) && (upmove == true)) {
this._xscale = -100;
this.gotoAndStop(2);
}
if ((leftmove == false) && (upmove == false)) {
this._xscale = 100;
this.gotoAndStop(2);
}
if ((leftmove == true) && (upmove == false)) {
this._xscale = -100;
this.gotoAndStop(3);
}
if ((leftmove == false) && (upmove == true)) {
this._xscale = 100;
this.gotoAndStop(3);
}
if (this._x <= _root.player._x) {
this._x = this._x + this.speed;
this.leftmove = false;
this.rightmove = true;
}
if (this._x >= _root.player._x) {
this._x = this._x - this.speed;
this.leftmove = true;
this.rightmove = false;
}
if (this._y <= _root.player._y) {
this._y = this._y + this.speed;
this.upmove = true;
this.downmove = false;
}
if (this._y >= _root.player._y) {
this._y = this._y - this.speed;
this.upmove = false;
this.downmove = true;
}
}
onClipEvent (load) {
this.hp = 20;
i = 1;
}
Instance of Symbol 171 MovieClip "blizzard4" in Frame 16
onClipEvent (load) {
i = 1;
}
onClipEvent (enterFrame) {
this.speed = _root.blizzardspeed;
if (this.hit.hitTest(_root.player)) {
_root.health._xscale = _root.health._xscale - 1;
}
if (mouseDown) {
i = i + 1;
}
if (i == 30) {
i = 1;
}
if (!this.hitTest(_root["blast" + i])) {
if (this._x <= _root.town._x) {
this._x = this._x + this.speed;
}
if (this._x >= _root.town._x) {
this._x = this._x - this.speed;
}
if (this._y <= _root.town._y) {
this._y = this._y + this.speed;
}
if (this._y >= _root.town._y) {
this._y = this._y - this.speed;
}
} else {
if (this._x <= _root.town._x) {
this._x = this._x - (0.5 + random(4));
}
if (this._x >= _root.town._x) {
this._x = this._x + (0.5 + random(4));
}
if (this._y <= _root.town._y) {
this._y = this._y - (0.5 + random(4));
}
if (this._y >= _root.town._y) {
this._y = this._y + (0.5 + random(4));
}
}
}
Instance of Symbol 171 MovieClip "blizzard8" in Frame 16
onClipEvent (load) {
i = 1;
}
onClipEvent (enterFrame) {
this.speed = _root.blizzardspeed;
if (this.hit.hitTest(_root.player)) {
_root.health._xscale = _root.health._xscale - 1;
}
if (mouseDown) {
i = i + 1;
}
if (i == 30) {
i = 1;
}
if (!this.hitTest(_root["blast" + i])) {
if (this._x <= _root.town._x) {
this._x = this._x + this.speed;
}
if (this._x >= _root.town._x) {
this._x = this._x - this.speed;
}
if (this._y <= _root.town._y) {
this._y = this._y + this.speed;
}
if (this._y >= _root.town._y) {
this._y = this._y - this.speed;
}
} else {
if (this._x <= _root.town._x) {
this._x = this._x - (0.5 + random(4));
}
if (this._x >= _root.town._x) {
this._x = this._x + (0.5 + random(4));
}
if (this._y <= _root.town._y) {
this._y = this._y - (0.5 + random(4));
}
if (this._y >= _root.town._y) {
this._y = this._y + (0.5 + random(4));
}
}
}
Instance of Symbol 171 MovieClip "blizzard6" in Frame 16
onClipEvent (load) {
i = 1;
}
onClipEvent (enterFrame) {
this.speed = _root.blizzardspeed;
if (this.hit.hitTest(_root.player)) {
_root.health._xscale = _root.health._xscale - 1;
}
if (mouseDown) {
i = i + 1;
}
if (i == 30) {
i = 1;
}
if (!this.hitTest(_root["blast" + i])) {
if (this._x <= _root.town._x) {
this._x = this._x + this.speed;
}
if (this._x >= _root.town._x) {
this._x = this._x - this.speed;
}
if (this._y <= _root.town._y) {
this._y = this._y + this.speed;
}
if (this._y >= _root.town._y) {
this._y = this._y - this.speed;
}
} else {
if (this._x <= _root.town._x) {
this._x = this._x - (0.5 + random(4));
}
if (this._x >= _root.town._x) {
this._x = this._x + (0.5 + random(4));
}
if (this._y <= _root.town._y) {
this._y = this._y - (0.5 + random(4));
}
if (this._y >= _root.town._y) {
this._y = this._y + (0.5 + random(4));
}
}
}
Instance of Symbol 171 MovieClip "blizzard2" in Frame 16
onClipEvent (load) {
i = 1;
}
onClipEvent (enterFrame) {
this.speed = _root.blizzardspeed;
if (this.hit.hitTest(_root.player)) {
_root.health._xscale = _root.health._xscale - 1;
}
if (mouseDown) {
i = i + 1;
}
if (i == 30) {
i = 1;
}
if (!this.hitTest(_root["blast" + i])) {
if (this._x <= _root.town._x) {
this._x = this._x + this.speed;
}
if (this._x >= _root.town._x) {
this._x = this._x - this.speed;
}
if (this._y <= _root.town._y) {
this._y = this._y + this.speed;
}
if (this._y >= _root.town._y) {
this._y = this._y - this.speed;
}
} else {
if (this._x <= _root.town._x) {
this._x = this._x - (0.5 + random(4));
}
if (this._x >= _root.town._x) {
this._x = this._x + (0.5 + random(4));
}
if (this._y <= _root.town._y) {
this._y = this._y - (0.5 + random(4));
}
if (this._y >= _root.town._y) {
this._y = this._y + (0.5 + random(4));
}
}
}
Instance of Symbol 261 MovieClip in Frame 16
onClipEvent (enterFrame) {
this.speed = random(2) + 1;
if (mouseDown) {
i = i + 1;
}
if (i == 30) {
i = 1;
}
if (this.hitTest(_root.player)) {
_root.health._xscale = _root.health._xscale - 1;
}
if (this.hitTest(_root["blast" + i])) {
_root.attachMovie("flame", "flame", 0);
_root.flame._x = this._x;
_root.flame._y = this._y;
this.hp = this.hp - 1;
this.fire.play();
}
if (this.hp <= 0) {
i = 1;
_root.attachMovie("yetideath", "yetideath", 1, 1);
_root.yetideath1._x = this._x;
_root.yetideath1._y = this._y;
this.swapDepths(0);
removeMovieClip(this);
}
if ((leftmove == true) && (upmove == true)) {
this._xscale = -100;
this.gotoAndStop(2);
}
if ((leftmove == false) && (upmove == false)) {
this._xscale = 100;
this.gotoAndStop(2);
}
if ((leftmove == true) && (upmove == false)) {
this._xscale = -100;
this.gotoAndStop(3);
}
if ((leftmove == false) && (upmove == true)) {
this._xscale = 100;
this.gotoAndStop(3);
}
if (this._x <= _root.player._x) {
this._x = this._x + this.speed;
this.leftmove = false;
this.rightmove = true;
}
if (this._x >= _root.player._x) {
this._x = this._x - this.speed;
this.leftmove = true;
this.rightmove = false;
}
if (this._y <= _root.player._y) {
this._y = this._y + this.speed;
this.upmove = true;
this.downmove = false;
}
if (this._y >= _root.player._y) {
this._y = this._y - this.speed;
this.upmove = false;
this.downmove = true;
}
}
onClipEvent (load) {
this.hp = 20;
i = 1;
}
Instance of Symbol 261 MovieClip in Frame 16
onClipEvent (enterFrame) {
this.speed = random(2) + 1;
if (mouseDown) {
i = i + 1;
}
if (i == 30) {
i = 1;
}
if (this.hitTest(_root.player)) {
_root.health._xscale = _root.health._xscale - 1;
}
if (this.hitTest(_root["blast" + i])) {
_root.attachMovie("flame", "flame", 0);
_root.flame._x = this._x;
_root.flame._y = this._y;
this.hp = this.hp - 1;
this.fire.play();
}
if (this.hp <= 0) {
i = 1;
_root.attachMovie("yetideath", "yetideath", 1, 1);
_root.yetideath1._x = this._x;
_root.yetideath1._y = this._y;
this.swapDepths(0);
removeMovieClip(this);
}
if ((leftmove == true) && (upmove == true)) {
this._xscale = -100;
this.gotoAndStop(2);
}
if ((leftmove == false) && (upmove == false)) {
this._xscale = 100;
this.gotoAndStop(2);
}
if ((leftmove == true) && (upmove == false)) {
this._xscale = -100;
this.gotoAndStop(3);
}
if ((leftmove == false) && (upmove == true)) {
this._xscale = 100;
this.gotoAndStop(3);
}
if (this._x <= _root.player._x) {
this._x = this._x + this.speed;
this.leftmove = false;
this.rightmove = true;
}
if (this._x >= _root.player._x) {
this._x = this._x - this.speed;
this.leftmove = true;
this.rightmove = false;
}
if (this._y <= _root.player._y) {
this._y = this._y + this.speed;
this.upmove = true;
this.downmove = false;
}
if (this._y >= _root.player._y) {
this._y = this._y - this.speed;
this.upmove = false;
this.downmove = true;
}
}
onClipEvent (load) {
this.hp = 20;
i = 1;
}
Instance of Symbol 261 MovieClip in Frame 16
onClipEvent (enterFrame) {
this.speed = random(2) + 1;
if (mouseDown) {
i = i + 1;
}
if (i == 30) {
i = 1;
}
if (this.hitTest(_root.player)) {
_root.health._xscale = _root.health._xscale - 1;
}
if (this.hitTest(_root["blast" + i])) {
_root.attachMovie("flame", "flame", 0);
_root.flame._x = this._x;
_root.flame._y = this._y;
this.hp = this.hp - 1;
this.fire.play();
}
if (this.hp <= 0) {
i = 1;
_root.attachMovie("yetideath", "yetideath", 0);
_root.yetideath._x = this._x;
_root.yetideath._y = this._y;
this.swapDepths(0);
removeMovieClip(this);
}
if ((leftmove == true) && (upmove == true)) {
this._xscale = -100;
this.gotoAndStop(2);
}
if ((leftmove == false) && (upmove == false)) {
this._xscale = 100;
this.gotoAndStop(2);
}
if ((leftmove == true) && (upmove == false)) {
this._xscale = -100;
this.gotoAndStop(3);
}
if ((leftmove == false) && (upmove == true)) {
this._xscale = 100;
this.gotoAndStop(3);
}
if (this._x <= _root.player._x) {
this._x = this._x + this.speed;
this.leftmove = false;
this.rightmove = true;
}
if (this._x >= _root.player._x) {
this._x = this._x - this.speed;
this.leftmove = true;
this.rightmove = false;
}
if (this._y <= _root.player._y) {
this._y = this._y + this.speed;
this.upmove = true;
this.downmove = false;
}
if (this._y >= _root.player._y) {
this._y = this._y - this.speed;
this.upmove = false;
this.downmove = true;
}
}
onClipEvent (load) {
this.hp = 20;
i = 1;
}
Instance of Symbol 261 MovieClip in Frame 16
onClipEvent (enterFrame) {
this.speed = random(2) + 1;
if (mouseDown) {
i = i + 1;
}
if (i == 30) {
i = 1;
}
if (this.hitTest(_root.player)) {
_root.health._xscale = _root.health._xscale - 1;
}
if (this.hitTest(_root["blast" + i])) {
_root.attachMovie("flame", "flame", 0);
_root.flame._x = this._x;
_root.flame._y = this._y;
this.hp = this.hp - 1;
this.fire.play();
}
if (this.hp <= 0) {
i = 1;
_root.attachMovie("yetideath", "yetideath", 0);
_root.yetideath._x = this._x;
_root.yetideath._y = this._y;
this.swapDepths(0);
removeMovieClip(this);
}
if ((leftmove == true) && (upmove == true)) {
this._xscale = -100;
this.gotoAndStop(2);
}
if ((leftmove == false) && (upmove == false)) {
this._xscale = 100;
this.gotoAndStop(2);
}
if ((leftmove == true) && (upmove == false)) {
this._xscale = -100;
this.gotoAndStop(3);
}
if ((leftmove == false) && (upmove == true)) {
this._xscale = 100;
this.gotoAndStop(3);
}
if (this._x <= _root.player._x) {
this._x = this._x + this.speed;
this.leftmove = false;
this.rightmove = true;
}
if (this._x >= _root.player._x) {
this._x = this._x - this.speed;
this.leftmove = true;
this.rightmove = false;
}
if (this._y <= _root.player._y) {
this._y = this._y + this.speed;
this.upmove = true;
this.downmove = false;
}
if (this._y >= _root.player._y) {
this._y = this._y - this.speed;
this.upmove = false;
this.downmove = true;
}
}
onClipEvent (load) {
this.hp = 20;
i = 1;
}
Instance of Symbol 261 MovieClip in Frame 16
onClipEvent (enterFrame) {
this.speed = random(2) + 1;
if (mouseDown) {
i = i + 1;
}
if (i == 30) {
i = 1;
}
if (this.hitTest(_root.player)) {
_root.health._xscale = _root.health._xscale - 1;
}
if (this.hitTest(_root["blast" + i])) {
_root.attachMovie("flame", "flame", 0);
_root.flame._x = this._x;
_root.flame._y = this._y;
this.hp = this.hp - 1;
this.fire.play();
}
if (this.hp <= 0) {
i = 1;
_root.attachMovie("yetideath", "yetideath", 0);
_root.yetideath._x = this._x;
_root.yetideath._y = this._y;
this.swapDepths(0);
removeMovieClip(this);
}
if ((leftmove == true) && (upmove == true)) {
this._xscale = -100;
this.gotoAndStop(2);
}
if ((leftmove == false) && (upmove == false)) {
this._xscale = 100;
this.gotoAndStop(2);
}
if ((leftmove == true) && (upmove == false)) {
this._xscale = -100;
this.gotoAndStop(3);
}
if ((leftmove == false) && (upmove == true)) {
this._xscale = 100;
this.gotoAndStop(3);
}
if (this._x <= _root.player._x) {
this._x = this._x + this.speed;
this.leftmove = false;
this.rightmove = true;
}
if (this._x >= _root.player._x) {
this._x = this._x - this.speed;
this.leftmove = true;
this.rightmove = false;
}
if (this._y <= _root.player._y) {
this._y = this._y + this.speed;
this.upmove = true;
this.downmove = false;
}
if (this._y >= _root.player._y) {
this._y = this._y - this.speed;
this.upmove = false;
this.downmove = true;
}
}
onClipEvent (load) {
this.hp = 20;
i = 1;
}
Instance of Symbol 171 MovieClip "blizzard4" in Frame 16
onClipEvent (load) {
i = 1;
}
onClipEvent (enterFrame) {
this.speed = _root.blizzardspeed;
if (this.hit.hitTest(_root.player)) {
_root.health._xscale = _root.health._xscale - 1;
}
if (mouseDown) {
i = i + 1;
}
if (i == 30) {
i = 1;
}
if (!this.hitTest(_root["blast" + i])) {
if (this._x <= _root.town._x) {
this._x = this._x + this.speed;
}
if (this._x >= _root.town._x) {
this._x = this._x - this.speed;
}
if (this._y <= _root.town._y) {
this._y = this._y + this.speed;
}
if (this._y >= _root.town._y) {
this._y = this._y - this.speed;
}
} else {
if (this._x <= _root.town._x) {
this._x = this._x - (0.5 + random(4));
}
if (this._x >= _root.town._x) {
this._x = this._x + (0.5 + random(4));
}
if (this._y <= _root.town._y) {
this._y = this._y - (0.5 + random(4));
}
if (this._y >= _root.town._y) {
this._y = this._y + (0.5 + random(4));
}
}
}
Instance of Symbol 171 MovieClip "blizzard4" in Frame 16
onClipEvent (load) {
i = 1;
}
onClipEvent (enterFrame) {
this.speed = _root.blizzardspeed;
if (this.hit.hitTest(_root.player)) {
_root.health._xscale = _root.health._xscale - 1;
}
if (mouseDown) {
i = i + 1;
}
if (i == 30) {
i = 1;
}
if (!this.hitTest(_root["blast" + i])) {
if (this._x <= _root.town._x) {
this._x = this._x + this.speed;
}
if (this._x >= _root.town._x) {
this._x = this._x - this.speed;
}
if (this._y <= _root.town._y) {
this._y = this._y + this.speed;
}
if (this._y >= _root.town._y) {
this._y = this._y - this.speed;
}
} else {
if (this._x <= _root.town._x) {
this._x = this._x - (0.5 + random(4));
}
if (this._x >= _root.town._x) {
this._x = this._x + (0.5 + random(4));
}
if (this._y <= _root.town._y) {
this._y = this._y - (0.5 + random(4));
}
if (this._y >= _root.town._y) {
this._y = this._y + (0.5 + random(4));
}
}
}
Instance of Symbol 171 MovieClip "blizzard4" in Frame 16
onClipEvent (load) {
i = 1;
}
onClipEvent (enterFrame) {
this.speed = _root.blizzardspeed;
if (this.hit.hitTest(_root.player)) {
_root.health._xscale = _root.health._xscale - 1;
}
if (mouseDown) {
i = i + 1;
}
if (i == 30) {
i = 1;
}
if (!this.hitTest(_root["blast" + i])) {
if (this._x <= _root.town._x) {
this._x = this._x + this.speed;
}
if (this._x >= _root.town._x) {
this._x = this._x - this.speed;
}
if (this._y <= _root.town._y) {
this._y = this._y + this.speed;
}
if (this._y >= _root.town._y) {
this._y = this._y - this.speed;
}
} else {
if (this._x <= _root.town._x) {
this._x = this._x - (0.5 + random(4));
}
if (this._x >= _root.town._x) {
this._x = this._x + (0.5 + random(4));
}
if (this._y <= _root.town._y) {
this._y = this._y - (0.5 + random(4));
}
if (this._y >= _root.town._y) {
this._y = this._y + (0.5 + random(4));
}
}
}
Instance of Symbol 171 MovieClip "blizzard4" in Frame 16
onClipEvent (load) {
i = 1;
}
onClipEvent (enterFrame) {
this.speed = _root.blizzardspeed;
if (this.hit.hitTest(_root.player)) {
_root.health._xscale = _root.health._xscale - 1;
}
if (mouseDown) {
i = i + 1;
}
if (i == 30) {
i = 1;
}
if (!this.hitTest(_root["blast" + i])) {
if (this._x <= _root.town._x) {
this._x = this._x + this.speed;
}
if (this._x >= _root.town._x) {
this._x = this._x - this.speed;
}
if (this._y <= _root.town._y) {
this._y = this._y + this.speed;
}
if (this._y >= _root.town._y) {
this._y = this._y - this.speed;
}
} else {
if (this._x <= _root.town._x) {
this._x = this._x - (0.5 + random(4));
}
if (this._x >= _root.town._x) {
this._x = this._x + (0.5 + random(4));
}
if (this._y <= _root.town._y) {
this._y = this._y - (0.5 + random(4));
}
if (this._y >= _root.town._y) {
this._y = this._y + (0.5 + random(4));
}
}
}
Instance of Symbol 24 MovieClip [snowball] "snowball" in Frame 16
onClipEvent (enterFrame) {
this._x = this._x + 1;
if (this._xscale <= 20) {
this.swapDepths(0);
removeMovieClip(this);
}
if (mouseDown) {
i = i + 1;
}
if (i == 30) {
i = 1;
}
if (this.hitTest(_root["blast" + i])) {
_root.attachMovie("puddle", "puddle", 0);
_root.puddle._x = this._x;
_root.puddle._y = this._y;
this._xscale = this._xscale - 10;
this._yscale = this._yscale - 10;
}
}
onClipEvent (load) {
i = 1;
}
Instance of Symbol 261 MovieClip in Frame 16
onClipEvent (enterFrame) {
this.speed = random(2) + 1;
if (mouseDown) {
i = i + 1;
}
if (i == 30) {
i = 1;
}
if (this.hitTest(_root.player)) {
_root.health._xscale = _root.health._xscale - 1;
}
if (this.hitTest(_root["blast" + i])) {
_root.attachMovie("flame", "flame", 0);
_root.flame._x = this._x;
_root.flame._y = this._y;
this.hp = this.hp - 1;
this.fire.play();
}
if (this.hp <= 0) {
i = 1;
_root.attachMovie("yetideath", "yetideath", 0);
_root.yetideath._x = this._x;
_root.yetideath._y = this._y;
this.swapDepths(0);
removeMovieClip(this);
}
if ((leftmove == true) && (upmove == true)) {
this._xscale = -100;
this.gotoAndStop(2);
}
if ((leftmove == false) && (upmove == false)) {
this._xscale = 100;
this.gotoAndStop(2);
}
if ((leftmove == true) && (upmove == false)) {
this._xscale = -100;
this.gotoAndStop(3);
}
if ((leftmove == false) && (upmove == true)) {
this._xscale = 100;
this.gotoAndStop(3);
}
if (this._x <= _root.player._x) {
this._x = this._x + this.speed;
this.leftmove = false;
this.rightmove = true;
}
if (this._x >= _root.player._x) {
this._x = this._x - this.speed;
this.leftmove = true;
this.rightmove = false;
}
if (this._y <= _root.player._y) {
this._y = this._y + this.speed;
this.upmove = true;
this.downmove = false;
}
if (this._y >= _root.player._y) {
this._y = this._y - this.speed;
this.upmove = false;
this.downmove = true;
}
}
onClipEvent (load) {
this.hp = 20;
i = 1;
}
Instance of Symbol 261 MovieClip in Frame 16
onClipEvent (enterFrame) {
this.speed = random(2) + 1;
if (mouseDown) {
i = i + 1;
}
if (i == 30) {
i = 1;
}
if (this.hitTest(_root.player)) {
_root.health._xscale = _root.health._xscale - 1;
}
if (this.hitTest(_root["blast" + i])) {
_root.attachMovie("flame", "flame", 0);
_root.flame._x = this._x;
_root.flame._y = this._y;
this.hp = this.hp - 1;
this.fire.play();
}
if (this.hp <= 0) {
i = 1;
_root.attachMovie("yetideath", "yetideath", 0);
_root.yetideath._x = this._x;
_root.yetideath._y = this._y;
this.swapDepths(0);
removeMovieClip(this);
}
if ((leftmove == true) && (upmove == true)) {
this._xscale = -100;
this.gotoAndStop(2);
}
if ((leftmove == false) && (upmove == false)) {
this._xscale = 100;
this.gotoAndStop(2);
}
if ((leftmove == true) && (upmove == false)) {
this._xscale = -100;
this.gotoAndStop(3);
}
if ((leftmove == false) && (upmove == true)) {
this._xscale = 100;
this.gotoAndStop(3);
}
if (this._x <= _root.player._x) {
this._x = this._x + this.speed;
this.leftmove = false;
this.rightmove = true;
}
if (this._x >= _root.player._x) {
this._x = this._x - this.speed;
this.leftmove = true;
this.rightmove = false;
}
if (this._y <= _root.player._y) {
this._y = this._y + this.speed;
this.upmove = true;
this.downmove = false;
}
if (this._y >= _root.player._y) {
this._y = this._y - this.speed;
this.upmove = false;
this.downmove = true;
}
}
onClipEvent (load) {
this.hp = 20;
i = 1;
}
Instance of Symbol 261 MovieClip in Frame 16
onClipEvent (enterFrame) {
this.speed = random(2) + 1;
if (mouseDown) {
i = i + 1;
}
if (i == 30) {
i = 1;
}
if (this.hitTest(_root.player)) {
_root.health._xscale = _root.health._xscale - 1;
}
if (this.hitTest(_root["blast" + i])) {
_root.attachMovie("flame", "flame", 0);
_root.flame._x = this._x;
_root.flame._y = this._y;
this.hp = this.hp - 1;
this.fire.play();
}
if (this.hp <= 0) {
i = 1;
_root.attachMovie("yetideath", "yetideath", 0);
_root.yetideath._x = this._x;
_root.yetideath._y = this._y;
this.swapDepths(0);
removeMovieClip(this);
}
if ((leftmove == true) && (upmove == true)) {
this._xscale = -100;
this.gotoAndStop(2);
}
if ((leftmove == false) && (upmove == false)) {
this._xscale = 100;
this.gotoAndStop(2);
}
if ((leftmove == true) && (upmove == false)) {
this._xscale = -100;
this.gotoAndStop(3);
}
if ((leftmove == false) && (upmove == true)) {
this._xscale = 100;
this.gotoAndStop(3);
}
if (this._x <= _root.player._x) {
this._x = this._x + this.speed;
this.leftmove = false;
this.rightmove = true;
}
if (this._x >= _root.player._x) {
this._x = this._x - this.speed;
this.leftmove = true;
this.rightmove = false;
}
if (this._y <= _root.player._y) {
this._y = this._y + this.speed;
this.upmove = true;
this.downmove = false;
}
if (this._y >= _root.player._y) {
this._y = this._y - this.speed;
this.upmove = false;
this.downmove = true;
}
}
onClipEvent (load) {
this.hp = 20;
i = 1;
}
Instance of Symbol 261 MovieClip in Frame 16
onClipEvent (enterFrame) {
this.speed = random(2) + 1;
if (mouseDown) {
i = i + 1;
}
if (i == 30) {
i = 1;
}
if (this.hitTest(_root.player)) {
_root.health._xscale = _root.health._xscale - 1;
}
if (this.hitTest(_root["blast" + i])) {
_root.attachMovie("flame", "flame", 0);
_root.flame._x = this._x;
_root.flame._y = this._y;
this.hp = this.hp - 1;
this.fire.play();
}
if (this.hp <= 0) {
i = 1;
_root.attachMovie("yetideath", "yetideath", 0);
_root.yetideath._x = this._x;
_root.yetideath._y = this._y;
this.swapDepths(0);
removeMovieClip(this);
}
if ((leftmove == true) && (upmove == true)) {
this._xscale = -100;
this.gotoAndStop(2);
}
if ((leftmove == false) && (upmove == false)) {
this._xscale = 100;
this.gotoAndStop(2);
}
if ((leftmove == true) && (upmove == false)) {
this._xscale = -100;
this.gotoAndStop(3);
}
if ((leftmove == false) && (upmove == true)) {
this._xscale = 100;
this.gotoAndStop(3);
}
if (this._x <= _root.player._x) {
this._x = this._x + this.speed;
this.leftmove = false;
this.rightmove = true;
}
if (this._x >= _root.player._x) {
this._x = this._x - this.speed;
this.leftmove = true;
this.rightmove = false;
}
if (this._y <= _root.player._y) {
this._y = this._y + this.speed;
this.upmove = true;
this.downmove = false;
}
if (this._y >= _root.player._y) {
this._y = this._y - this.speed;
this.upmove = false;
this.downmove = true;
}
}
onClipEvent (load) {
this.hp = 20;
i = 1;
}
Instance of Symbol 193 MovieClip in Frame 16
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 16
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y - 3;
_root.gun._y = _root.gun._y - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 16
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x - 3;
_root.gun._x = _root.gun._x - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 16
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x + 3;
_root.gun._x = _root.gun._x + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 16
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 16
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 16
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y - 3;
_root.gun._y = _root.gun._y - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 16
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x - 3;
_root.gun._x = _root.gun._x - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 16
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x + 3;
_root.gun._x = _root.gun._x + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 16
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 16
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 16
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y - 3;
_root.gun._y = _root.gun._y - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 16
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x - 3;
_root.gun._x = _root.gun._x - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 16
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x + 3;
_root.gun._x = _root.gun._x + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 16
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 16
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 16
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y - 3;
_root.gun._y = _root.gun._y - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 16
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x - 3;
_root.gun._x = _root.gun._x - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 16
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x + 3;
_root.gun._x = _root.gun._x + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 16
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 16
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 16
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y - 3;
_root.gun._y = _root.gun._y - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 16
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x - 3;
_root.gun._x = _root.gun._x - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 16
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x + 3;
_root.gun._x = _root.gun._x + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 16
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 16
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 16
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y - 3;
_root.gun._y = _root.gun._y - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 16
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x - 3;
_root.gun._x = _root.gun._x - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 16
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x + 3;
_root.gun._x = _root.gun._x + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 16
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 16
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 16
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y - 3;
_root.gun._y = _root.gun._y - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 16
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x - 3;
_root.gun._x = _root.gun._x - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 16
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x + 3;
_root.gun._x = _root.gun._x + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 16
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 16
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 16
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y - 3;
_root.gun._y = _root.gun._y - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 16
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x - 3;
_root.gun._x = _root.gun._x - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 16
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x + 3;
_root.gun._x = _root.gun._x + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 16
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 16
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 16
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y - 3;
_root.gun._y = _root.gun._y - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 16
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x - 3;
_root.gun._x = _root.gun._x - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 16
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x + 3;
_root.gun._x = _root.gun._x + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 16
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 198 MovieClip "health" in Frame 16
onClipEvent (enterFrame) {
if (this._xscale >= 100) {
this._xscale = 100;
}
}
Frame 17
_root.player.swapDepths(0);
removeMovieClip(_root.player);
_root.gun.swapDepths(0);
removeMovieClip(_root.gun);
Instance of Symbol 229 MovieClip in Frame 17
onClipEvent (enterFrame) {
if (Key.isDown(32)) {
_root.nextFrame();
}
}
Frame 18
_root.respawn = "wave8";
_root.blizzardspeed = 0.7;
_root.timer.wave = "8";
_quality = "low";
stop();
Instance of Symbol 132 MovieClip "player" in Frame 18
onClipEvent (enterFrame) {
this.speed = 3;
if (_root.health._xscale <= 0) {
_root.health._xscale = 0;
_root.attachMovie("death", "death", 0);
_root.everythingsfucked.play();
_root.death._x = _root.player._x;
_root.death._y = _root.player._y;
_root.player.swapDepths(0);
removeMovieClip(_root.player);
_root.gun.swapDepths(0);
removeMovieClip(_root.gun);
}
if ((leftmove == true) && (upmove == true)) {
this._xscale = -100;
this.gotoAndStop(2);
}
if ((leftmove == false) && (upmove == false)) {
this._xscale = 100;
this.gotoAndStop(3);
}
if ((leftmove == true) && (upmove == false)) {
this._xscale = -100;
this.gotoAndStop(3);
}
if ((leftmove == false) && (upmove == true)) {
this._xscale = 100;
this.gotoAndStop(2);
}
if (Key.isDown(87)) {
this._y = this._y - this.speed;
upmove = true;
}
if (Key.isDown(83)) {
this._y = this._y + this.speed;
upmove = false;
}
if (Key.isDown(68)) {
this._x = this._x + this.speed;
leftmove = false;
}
if (Key.isDown(65)) {
this._x = this._x - this.speed;
leftmove = true;
}
}
Instance of Symbol 139 MovieClip "gun" in Frame 18
onClipEvent (load) {
n = 1;
}
onClipEvent (enterFrame) {
this.speed = 3;
if (Key.isDown(87)) {
this._y = this._y - this.speed;
}
if (Key.isDown(83)) {
this._y = this._y + this.speed;
}
if (Key.isDown(68)) {
this._x = this._x + this.speed;
}
if (Key.isDown(65)) {
this._x = this._x - this.speed;
}
if (_root.gasoline._xscale >= 1) {
if (n == 30) {
n = 1;
_root.gasoline._xscale = _root.gasoline._xscale - 3;
}
radian = (Math.PI/180);
y = _root._ymouse - this._y;
x = _root._xmouse - this._x;
this._rotation = Math.atan(y / x) / radian;
if (x < 0) {
this.gotoAndStop(2);
this._rotation = this._rotation + 180;
} else {
this.gotoAndStop(1);
}
onMouseDown = function () {
mouseDown = true;
};
onMouseUp = function () {
mouseDown = false;
};
if (mouseDown) {
_root.attachMovie("blast", "blast" + n, n);
radian = (Math.PI/180);
_root["blast" + n]._x = this._x + (10 * Math.cos(this._rotation * radian));
_root["blast" + n]._y = this._y + (10 * Math.sin(this._rotation * radian));
_root["blast" + n]._rotation = this._rotation;
n = n + 1;
}
}
}
Instance of Symbol 261 MovieClip in Frame 18
onClipEvent (enterFrame) {
this.speed = random(2) + 1;
if (mouseDown) {
i = i + 1;
}
if (i == 30) {
i = 1;
}
if (this.hitTest(_root.player)) {
_root.health._xscale = _root.health._xscale - 1;
}
if (this.hitTest(_root["blast" + i])) {
_root.attachMovie("flame", "flame", 0);
_root.flame._x = this._x;
_root.flame._y = this._y;
this.hp = this.hp - 1;
this.fire.play();
}
if (this.hp <= 0) {
i = 1;
_root.attachMovie("yetideath", "yetideath", 0);
_root.yetideath._x = this._x;
_root.yetideath._y = this._y;
this.swapDepths(0);
removeMovieClip(this);
}
if ((leftmove == true) && (upmove == true)) {
this._xscale = -100;
this.gotoAndStop(2);
}
if ((leftmove == false) && (upmove == false)) {
this._xscale = 100;
this.gotoAndStop(2);
}
if ((leftmove == true) && (upmove == false)) {
this._xscale = -100;
this.gotoAndStop(3);
}
if ((leftmove == false) && (upmove == true)) {
this._xscale = 100;
this.gotoAndStop(3);
}
if (this._x <= _root.player._x) {
this._x = this._x + this.speed;
this.leftmove = false;
this.rightmove = true;
}
if (this._x >= _root.player._x) {
this._x = this._x - this.speed;
this.leftmove = true;
this.rightmove = false;
}
if (this._y <= _root.player._y) {
this._y = this._y + this.speed;
this.upmove = true;
this.downmove = false;
}
if (this._y >= _root.player._y) {
this._y = this._y - this.speed;
this.upmove = false;
this.downmove = true;
}
}
onClipEvent (load) {
this.hp = 20;
i = 1;
}
Instance of Symbol 171 MovieClip "blizzard4" in Frame 18
onClipEvent (load) {
i = 1;
}
onClipEvent (enterFrame) {
this.speed = _root.blizzardspeed;
if (this.hit.hitTest(_root.player)) {
_root.health._xscale = _root.health._xscale - 1;
}
if (mouseDown) {
i = i + 1;
}
if (i == 30) {
i = 1;
}
if (!this.hitTest(_root["blast" + i])) {
if (this._x <= _root.town._x) {
this._x = this._x + this.speed;
}
if (this._x >= _root.town._x) {
this._x = this._x - this.speed;
}
if (this._y <= _root.town._y) {
this._y = this._y + this.speed;
}
if (this._y >= _root.town._y) {
this._y = this._y - this.speed;
}
} else {
if (this._x <= _root.town._x) {
this._x = this._x - (0.5 + random(4));
}
if (this._x >= _root.town._x) {
this._x = this._x + (0.5 + random(4));
}
if (this._y <= _root.town._y) {
this._y = this._y - (0.5 + random(4));
}
if (this._y >= _root.town._y) {
this._y = this._y + (0.5 + random(4));
}
}
}
Instance of Symbol 171 MovieClip "blizzard8" in Frame 18
onClipEvent (load) {
i = 1;
}
onClipEvent (enterFrame) {
this.speed = _root.blizzardspeed;
if (this.hit.hitTest(_root.player)) {
_root.health._xscale = _root.health._xscale - 1;
}
if (mouseDown) {
i = i + 1;
}
if (i == 30) {
i = 1;
}
if (!this.hitTest(_root["blast" + i])) {
if (this._x <= _root.town._x) {
this._x = this._x + this.speed;
}
if (this._x >= _root.town._x) {
this._x = this._x - this.speed;
}
if (this._y <= _root.town._y) {
this._y = this._y + this.speed;
}
if (this._y >= _root.town._y) {
this._y = this._y - this.speed;
}
} else {
if (this._x <= _root.town._x) {
this._x = this._x - (0.5 + random(4));
}
if (this._x >= _root.town._x) {
this._x = this._x + (0.5 + random(4));
}
if (this._y <= _root.town._y) {
this._y = this._y - (0.5 + random(4));
}
if (this._y >= _root.town._y) {
this._y = this._y + (0.5 + random(4));
}
}
}
Instance of Symbol 171 MovieClip "blizzard6" in Frame 18
onClipEvent (load) {
i = 1;
}
onClipEvent (enterFrame) {
this.speed = _root.blizzardspeed;
if (this.hit.hitTest(_root.player)) {
_root.health._xscale = _root.health._xscale - 1;
}
if (mouseDown) {
i = i + 1;
}
if (i == 30) {
i = 1;
}
if (!this.hitTest(_root["blast" + i])) {
if (this._x <= _root.town._x) {
this._x = this._x + this.speed;
}
if (this._x >= _root.town._x) {
this._x = this._x - this.speed;
}
if (this._y <= _root.town._y) {
this._y = this._y + this.speed;
}
if (this._y >= _root.town._y) {
this._y = this._y - this.speed;
}
} else {
if (this._x <= _root.town._x) {
this._x = this._x - (0.5 + random(4));
}
if (this._x >= _root.town._x) {
this._x = this._x + (0.5 + random(4));
}
if (this._y <= _root.town._y) {
this._y = this._y - (0.5 + random(4));
}
if (this._y >= _root.town._y) {
this._y = this._y + (0.5 + random(4));
}
}
}
Instance of Symbol 171 MovieClip "blizzard2" in Frame 18
onClipEvent (load) {
i = 1;
}
onClipEvent (enterFrame) {
this.speed = _root.blizzardspeed;
if (this.hit.hitTest(_root.player)) {
_root.health._xscale = _root.health._xscale - 1;
}
if (mouseDown) {
i = i + 1;
}
if (i == 30) {
i = 1;
}
if (!this.hitTest(_root["blast" + i])) {
if (this._x <= _root.town._x) {
this._x = this._x + this.speed;
}
if (this._x >= _root.town._x) {
this._x = this._x - this.speed;
}
if (this._y <= _root.town._y) {
this._y = this._y + this.speed;
}
if (this._y >= _root.town._y) {
this._y = this._y - this.speed;
}
} else {
if (this._x <= _root.town._x) {
this._x = this._x - (0.5 + random(4));
}
if (this._x >= _root.town._x) {
this._x = this._x + (0.5 + random(4));
}
if (this._y <= _root.town._y) {
this._y = this._y - (0.5 + random(4));
}
if (this._y >= _root.town._y) {
this._y = this._y + (0.5 + random(4));
}
}
}
Instance of Symbol 261 MovieClip in Frame 18
onClipEvent (enterFrame) {
this.speed = random(2) + 1;
if (mouseDown) {
i = i + 1;
}
if (i == 30) {
i = 1;
}
if (this.hitTest(_root.player)) {
_root.health._xscale = _root.health._xscale - 1;
}
if (this.hitTest(_root["blast" + i])) {
_root.attachMovie("flame", "flame", 0);
_root.flame._x = this._x;
_root.flame._y = this._y;
this.hp = this.hp - 1;
this.fire.play();
}
if (this.hp <= 0) {
i = 1;
_root.attachMovie("yetideath", "yetideath", 1, 1);
_root.yetideath1._x = this._x;
_root.yetideath1._y = this._y;
this.swapDepths(0);
removeMovieClip(this);
}
if ((leftmove == true) && (upmove == true)) {
this._xscale = -100;
this.gotoAndStop(2);
}
if ((leftmove == false) && (upmove == false)) {
this._xscale = 100;
this.gotoAndStop(2);
}
if ((leftmove == true) && (upmove == false)) {
this._xscale = -100;
this.gotoAndStop(3);
}
if ((leftmove == false) && (upmove == true)) {
this._xscale = 100;
this.gotoAndStop(3);
}
if (this._x <= _root.player._x) {
this._x = this._x + this.speed;
this.leftmove = false;
this.rightmove = true;
}
if (this._x >= _root.player._x) {
this._x = this._x - this.speed;
this.leftmove = true;
this.rightmove = false;
}
if (this._y <= _root.player._y) {
this._y = this._y + this.speed;
this.upmove = true;
this.downmove = false;
}
if (this._y >= _root.player._y) {
this._y = this._y - this.speed;
this.upmove = false;
this.downmove = true;
}
}
onClipEvent (load) {
this.hp = 20;
i = 1;
}
Instance of Symbol 261 MovieClip in Frame 18
onClipEvent (enterFrame) {
this.speed = random(2) + 1;
if (mouseDown) {
i = i + 1;
}
if (i == 30) {
i = 1;
}
if (this.hitTest(_root.player)) {
_root.health._xscale = _root.health._xscale - 1;
}
if (this.hitTest(_root["blast" + i])) {
_root.attachMovie("flame", "flame", 0);
_root.flame._x = this._x;
_root.flame._y = this._y;
this.hp = this.hp - 1;
this.fire.play();
}
if (this.hp <= 0) {
i = 1;
_root.attachMovie("yetideath", "yetideath", 0);
_root.yetideath._x = this._x;
_root.yetideath._y = this._y;
this.swapDepths(0);
removeMovieClip(this);
}
if ((leftmove == true) && (upmove == true)) {
this._xscale = -100;
this.gotoAndStop(2);
}
if ((leftmove == false) && (upmove == false)) {
this._xscale = 100;
this.gotoAndStop(2);
}
if ((leftmove == true) && (upmove == false)) {
this._xscale = -100;
this.gotoAndStop(3);
}
if ((leftmove == false) && (upmove == true)) {
this._xscale = 100;
this.gotoAndStop(3);
}
if (this._x <= _root.player._x) {
this._x = this._x + this.speed;
this.leftmove = false;
this.rightmove = true;
}
if (this._x >= _root.player._x) {
this._x = this._x - this.speed;
this.leftmove = true;
this.rightmove = false;
}
if (this._y <= _root.player._y) {
this._y = this._y + this.speed;
this.upmove = true;
this.downmove = false;
}
if (this._y >= _root.player._y) {
this._y = this._y - this.speed;
this.upmove = false;
this.downmove = true;
}
}
onClipEvent (load) {
this.hp = 20;
i = 1;
}
Instance of Symbol 171 MovieClip "blizzard4" in Frame 18
onClipEvent (load) {
i = 1;
}
onClipEvent (enterFrame) {
this.speed = _root.blizzardspeed;
if (this.hit.hitTest(_root.player)) {
_root.health._xscale = _root.health._xscale - 1;
}
if (mouseDown) {
i = i + 1;
}
if (i == 30) {
i = 1;
}
if (!this.hitTest(_root["blast" + i])) {
if (this._x <= _root.town._x) {
this._x = this._x + this.speed;
}
if (this._x >= _root.town._x) {
this._x = this._x - this.speed;
}
if (this._y <= _root.town._y) {
this._y = this._y + this.speed;
}
if (this._y >= _root.town._y) {
this._y = this._y - this.speed;
}
} else {
if (this._x <= _root.town._x) {
this._x = this._x - (0.5 + random(4));
}
if (this._x >= _root.town._x) {
this._x = this._x + (0.5 + random(4));
}
if (this._y <= _root.town._y) {
this._y = this._y - (0.5 + random(4));
}
if (this._y >= _root.town._y) {
this._y = this._y + (0.5 + random(4));
}
}
}
Instance of Symbol 171 MovieClip "blizzard4" in Frame 18
onClipEvent (load) {
i = 1;
}
onClipEvent (enterFrame) {
this.speed = _root.blizzardspeed;
if (this.hit.hitTest(_root.player)) {
_root.health._xscale = _root.health._xscale - 1;
}
if (mouseDown) {
i = i + 1;
}
if (i == 30) {
i = 1;
}
if (!this.hitTest(_root["blast" + i])) {
if (this._x <= _root.town._x) {
this._x = this._x + this.speed;
}
if (this._x >= _root.town._x) {
this._x = this._x - this.speed;
}
if (this._y <= _root.town._y) {
this._y = this._y + this.speed;
}
if (this._y >= _root.town._y) {
this._y = this._y - this.speed;
}
} else {
if (this._x <= _root.town._x) {
this._x = this._x - (0.5 + random(4));
}
if (this._x >= _root.town._x) {
this._x = this._x + (0.5 + random(4));
}
if (this._y <= _root.town._y) {
this._y = this._y - (0.5 + random(4));
}
if (this._y >= _root.town._y) {
this._y = this._y + (0.5 + random(4));
}
}
}
Instance of Symbol 171 MovieClip "blizzard4" in Frame 18
onClipEvent (load) {
i = 1;
}
onClipEvent (enterFrame) {
this.speed = _root.blizzardspeed;
if (this.hit.hitTest(_root.player)) {
_root.health._xscale = _root.health._xscale - 1;
}
if (mouseDown) {
i = i + 1;
}
if (i == 30) {
i = 1;
}
if (!this.hitTest(_root["blast" + i])) {
if (this._x <= _root.town._x) {
this._x = this._x + this.speed;
}
if (this._x >= _root.town._x) {
this._x = this._x - this.speed;
}
if (this._y <= _root.town._y) {
this._y = this._y + this.speed;
}
if (this._y >= _root.town._y) {
this._y = this._y - this.speed;
}
} else {
if (this._x <= _root.town._x) {
this._x = this._x - (0.5 + random(4));
}
if (this._x >= _root.town._x) {
this._x = this._x + (0.5 + random(4));
}
if (this._y <= _root.town._y) {
this._y = this._y - (0.5 + random(4));
}
if (this._y >= _root.town._y) {
this._y = this._y + (0.5 + random(4));
}
}
}
Instance of Symbol 171 MovieClip "blizzard4" in Frame 18
onClipEvent (load) {
i = 1;
}
onClipEvent (enterFrame) {
this.speed = _root.blizzardspeed;
if (this.hit.hitTest(_root.player)) {
_root.health._xscale = _root.health._xscale - 1;
}
if (mouseDown) {
i = i + 1;
}
if (i == 30) {
i = 1;
}
if (!this.hitTest(_root["blast" + i])) {
if (this._x <= _root.town._x) {
this._x = this._x + this.speed;
}
if (this._x >= _root.town._x) {
this._x = this._x - this.speed;
}
if (this._y <= _root.town._y) {
this._y = this._y + this.speed;
}
if (this._y >= _root.town._y) {
this._y = this._y - this.speed;
}
} else {
if (this._x <= _root.town._x) {
this._x = this._x - (0.5 + random(4));
}
if (this._x >= _root.town._x) {
this._x = this._x + (0.5 + random(4));
}
if (this._y <= _root.town._y) {
this._y = this._y - (0.5 + random(4));
}
if (this._y >= _root.town._y) {
this._y = this._y + (0.5 + random(4));
}
}
}
Instance of Symbol 24 MovieClip [snowball] "snowball" in Frame 18
onClipEvent (enterFrame) {
this._x = this._x + 1;
if (this._xscale <= 20) {
this.swapDepths(0);
removeMovieClip(this);
}
if (mouseDown) {
i = i + 1;
}
if (i == 30) {
i = 1;
}
if (this.hitTest(_root["blast" + i])) {
_root.attachMovie("puddle", "puddle", 0);
_root.puddle._x = this._x;
_root.puddle._y = this._y;
this._xscale = this._xscale - 10;
this._yscale = this._yscale - 10;
}
}
onClipEvent (load) {
i = 1;
}
Instance of Symbol 261 MovieClip in Frame 18
onClipEvent (enterFrame) {
this.speed = random(2) + 1;
if (mouseDown) {
i = i + 1;
}
if (i == 30) {
i = 1;
}
if (this.hitTest(_root.player)) {
_root.health._xscale = _root.health._xscale - 1;
}
if (this.hitTest(_root["blast" + i])) {
_root.attachMovie("flame", "flame", 0);
_root.flame._x = this._x;
_root.flame._y = this._y;
this.hp = this.hp - 1;
this.fire.play();
}
if (this.hp <= 0) {
i = 1;
_root.attachMovie("yetideath", "yetideath", 0);
_root.yetideath._x = this._x;
_root.yetideath._y = this._y;
this.swapDepths(0);
removeMovieClip(this);
}
if ((leftmove == true) && (upmove == true)) {
this._xscale = -100;
this.gotoAndStop(2);
}
if ((leftmove == false) && (upmove == false)) {
this._xscale = 100;
this.gotoAndStop(2);
}
if ((leftmove == true) && (upmove == false)) {
this._xscale = -100;
this.gotoAndStop(3);
}
if ((leftmove == false) && (upmove == true)) {
this._xscale = 100;
this.gotoAndStop(3);
}
if (this._x <= _root.player._x) {
this._x = this._x + this.speed;
this.leftmove = false;
this.rightmove = true;
}
if (this._x >= _root.player._x) {
this._x = this._x - this.speed;
this.leftmove = true;
this.rightmove = false;
}
if (this._y <= _root.player._y) {
this._y = this._y + this.speed;
this.upmove = true;
this.downmove = false;
}
if (this._y >= _root.player._y) {
this._y = this._y - this.speed;
this.upmove = false;
this.downmove = true;
}
}
onClipEvent (load) {
this.hp = 20;
i = 1;
}
Instance of Symbol 261 MovieClip in Frame 18
onClipEvent (enterFrame) {
this.speed = random(2) + 1;
if (mouseDown) {
i = i + 1;
}
if (i == 30) {
i = 1;
}
if (this.hitTest(_root.player)) {
_root.health._xscale = _root.health._xscale - 1;
}
if (this.hitTest(_root["blast" + i])) {
_root.attachMovie("flame", "flame", 0);
_root.flame._x = this._x;
_root.flame._y = this._y;
this.hp = this.hp - 1;
this.fire.play();
}
if (this.hp <= 0) {
i = 1;
_root.attachMovie("yetideath", "yetideath", 0);
_root.yetideath._x = this._x;
_root.yetideath._y = this._y;
this.swapDepths(0);
removeMovieClip(this);
}
if ((leftmove == true) && (upmove == true)) {
this._xscale = -100;
this.gotoAndStop(2);
}
if ((leftmove == false) && (upmove == false)) {
this._xscale = 100;
this.gotoAndStop(2);
}
if ((leftmove == true) && (upmove == false)) {
this._xscale = -100;
this.gotoAndStop(3);
}
if ((leftmove == false) && (upmove == true)) {
this._xscale = 100;
this.gotoAndStop(3);
}
if (this._x <= _root.player._x) {
this._x = this._x + this.speed;
this.leftmove = false;
this.rightmove = true;
}
if (this._x >= _root.player._x) {
this._x = this._x - this.speed;
this.leftmove = true;
this.rightmove = false;
}
if (this._y <= _root.player._y) {
this._y = this._y + this.speed;
this.upmove = true;
this.downmove = false;
}
if (this._y >= _root.player._y) {
this._y = this._y - this.speed;
this.upmove = false;
this.downmove = true;
}
}
onClipEvent (load) {
this.hp = 20;
i = 1;
}
Instance of Symbol 261 MovieClip in Frame 18
onClipEvent (enterFrame) {
this.speed = random(2) + 1;
if (mouseDown) {
i = i + 1;
}
if (i == 30) {
i = 1;
}
if (this.hitTest(_root.player)) {
_root.health._xscale = _root.health._xscale - 1;
}
if (this.hitTest(_root["blast" + i])) {
_root.attachMovie("flame", "flame", 0);
_root.flame._x = this._x;
_root.flame._y = this._y;
this.hp = this.hp - 1;
this.fire.play();
}
if (this.hp <= 0) {
i = 1;
_root.attachMovie("yetideath", "yetideath", 0);
_root.yetideath._x = this._x;
_root.yetideath._y = this._y;
this.swapDepths(0);
removeMovieClip(this);
}
if ((leftmove == true) && (upmove == true)) {
this._xscale = -100;
this.gotoAndStop(2);
}
if ((leftmove == false) && (upmove == false)) {
this._xscale = 100;
this.gotoAndStop(2);
}
if ((leftmove == true) && (upmove == false)) {
this._xscale = -100;
this.gotoAndStop(3);
}
if ((leftmove == false) && (upmove == true)) {
this._xscale = 100;
this.gotoAndStop(3);
}
if (this._x <= _root.player._x) {
this._x = this._x + this.speed;
this.leftmove = false;
this.rightmove = true;
}
if (this._x >= _root.player._x) {
this._x = this._x - this.speed;
this.leftmove = true;
this.rightmove = false;
}
if (this._y <= _root.player._y) {
this._y = this._y + this.speed;
this.upmove = true;
this.downmove = false;
}
if (this._y >= _root.player._y) {
this._y = this._y - this.speed;
this.upmove = false;
this.downmove = true;
}
}
onClipEvent (load) {
this.hp = 20;
i = 1;
}
Instance of Symbol 261 MovieClip in Frame 18
onClipEvent (enterFrame) {
this.speed = random(2) + 1;
if (mouseDown) {
i = i + 1;
}
if (i == 30) {
i = 1;
}
if (this.hitTest(_root.player)) {
_root.health._xscale = _root.health._xscale - 1;
}
if (this.hitTest(_root["blast" + i])) {
_root.attachMovie("flame", "flame", 0);
_root.flame._x = this._x;
_root.flame._y = this._y;
this.hp = this.hp - 1;
this.fire.play();
}
if (this.hp <= 0) {
i = 1;
_root.attachMovie("yetideath", "yetideath", 0);
_root.yetideath._x = this._x;
_root.yetideath._y = this._y;
this.swapDepths(0);
removeMovieClip(this);
}
if ((leftmove == true) && (upmove == true)) {
this._xscale = -100;
this.gotoAndStop(2);
}
if ((leftmove == false) && (upmove == false)) {
this._xscale = 100;
this.gotoAndStop(2);
}
if ((leftmove == true) && (upmove == false)) {
this._xscale = -100;
this.gotoAndStop(3);
}
if ((leftmove == false) && (upmove == true)) {
this._xscale = 100;
this.gotoAndStop(3);
}
if (this._x <= _root.player._x) {
this._x = this._x + this.speed;
this.leftmove = false;
this.rightmove = true;
}
if (this._x >= _root.player._x) {
this._x = this._x - this.speed;
this.leftmove = true;
this.rightmove = false;
}
if (this._y <= _root.player._y) {
this._y = this._y + this.speed;
this.upmove = true;
this.downmove = false;
}
if (this._y >= _root.player._y) {
this._y = this._y - this.speed;
this.upmove = false;
this.downmove = true;
}
}
onClipEvent (load) {
this.hp = 20;
i = 1;
}
Instance of Symbol 193 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y - 3;
_root.gun._y = _root.gun._y - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x - 3;
_root.gun._x = _root.gun._x - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x + 3;
_root.gun._x = _root.gun._x + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y - 3;
_root.gun._y = _root.gun._y - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x - 3;
_root.gun._x = _root.gun._x - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x + 3;
_root.gun._x = _root.gun._x + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y - 3;
_root.gun._y = _root.gun._y - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x - 3;
_root.gun._x = _root.gun._x - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x + 3;
_root.gun._x = _root.gun._x + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y - 3;
_root.gun._y = _root.gun._y - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x - 3;
_root.gun._x = _root.gun._x - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x + 3;
_root.gun._x = _root.gun._x + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y - 3;
_root.gun._y = _root.gun._y - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x - 3;
_root.gun._x = _root.gun._x - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x + 3;
_root.gun._x = _root.gun._x + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y - 3;
_root.gun._y = _root.gun._y - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x - 3;
_root.gun._x = _root.gun._x - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x + 3;
_root.gun._x = _root.gun._x + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y - 3;
_root.gun._y = _root.gun._y - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x - 3;
_root.gun._x = _root.gun._x - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x + 3;
_root.gun._x = _root.gun._x + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y - 3;
_root.gun._y = _root.gun._y - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x - 3;
_root.gun._x = _root.gun._x - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x + 3;
_root.gun._x = _root.gun._x + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y - 3;
_root.gun._y = _root.gun._y - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x - 3;
_root.gun._x = _root.gun._x - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x + 3;
_root.gun._x = _root.gun._x + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 198 MovieClip "health" in Frame 18
onClipEvent (enterFrame) {
if (this._xscale >= 100) {
this._xscale = 100;
}
}
Frame 19
_root.player.swapDepths(0);
removeMovieClip(_root.player);
_root.gun.swapDepths(0);
removeMovieClip(_root.gun);
Instance of Symbol 229 MovieClip in Frame 19
onClipEvent (enterFrame) {
if (Key.isDown(32)) {
_root.nextFrame();
}
}
Frame 20
_root.respawn = "wave9";
_root.blizzardspeed = 1;
_root.timer.wave = "9";
_quality = "low";
stop();
Instance of Symbol 132 MovieClip "player" in Frame 20
onClipEvent (enterFrame) {
this.speed = 3;
if (_root.health._xscale <= 0) {
_root.health._xscale = 0;
_root.attachMovie("death", "death", 0);
_root.everythingsfucked.play();
_root.death._x = _root.player._x;
_root.death._y = _root.player._y;
_root.player.swapDepths(0);
removeMovieClip(_root.player);
_root.gun.swapDepths(0);
removeMovieClip(_root.gun);
}
if ((leftmove == true) && (upmove == true)) {
this._xscale = -100;
this.gotoAndStop(2);
}
if ((leftmove == false) && (upmove == false)) {
this._xscale = 100;
this.gotoAndStop(3);
}
if ((leftmove == true) && (upmove == false)) {
this._xscale = -100;
this.gotoAndStop(3);
}
if ((leftmove == false) && (upmove == true)) {
this._xscale = 100;
this.gotoAndStop(2);
}
if (Key.isDown(87)) {
this._y = this._y - this.speed;
upmove = true;
}
if (Key.isDown(83)) {
this._y = this._y + this.speed;
upmove = false;
}
if (Key.isDown(68)) {
this._x = this._x + this.speed;
leftmove = false;
}
if (Key.isDown(65)) {
this._x = this._x - this.speed;
leftmove = true;
}
}
Instance of Symbol 139 MovieClip "gun" in Frame 20
onClipEvent (load) {
n = 1;
}
onClipEvent (enterFrame) {
this.speed = 3;
if (Key.isDown(87)) {
this._y = this._y - this.speed;
}
if (Key.isDown(83)) {
this._y = this._y + this.speed;
}
if (Key.isDown(68)) {
this._x = this._x + this.speed;
}
if (Key.isDown(65)) {
this._x = this._x - this.speed;
}
if (_root.gasoline._xscale >= 1) {
if (n == 30) {
n = 1;
_root.gasoline._xscale = _root.gasoline._xscale - 3;
}
radian = (Math.PI/180);
y = _root._ymouse - this._y;
x = _root._xmouse - this._x;
this._rotation = Math.atan(y / x) / radian;
if (x < 0) {
this.gotoAndStop(2);
this._rotation = this._rotation + 180;
} else {
this.gotoAndStop(1);
}
onMouseDown = function () {
mouseDown = true;
};
onMouseUp = function () {
mouseDown = false;
};
if (mouseDown) {
_root.attachMovie("blast", "blast" + n, n);
radian = (Math.PI/180);
_root["blast" + n]._x = this._x + (10 * Math.cos(this._rotation * radian));
_root["blast" + n]._y = this._y + (10 * Math.sin(this._rotation * radian));
_root["blast" + n]._rotation = this._rotation;
n = n + 1;
}
}
}
Instance of Symbol 261 MovieClip in Frame 20
onClipEvent (enterFrame) {
this.speed = random(2) + 1;
if (mouseDown) {
i = i + 1;
}
if (i == 30) {
i = 1;
}
if (this.hitTest(_root.player)) {
_root.health._xscale = _root.health._xscale - 1;
}
if (this.hitTest(_root["blast" + i])) {
_root.attachMovie("flame", "flame", 0);
_root.flame._x = this._x;
_root.flame._y = this._y;
this.hp = this.hp - 1;
this.fire.play();
}
if (this.hp <= 0) {
i = 1;
_root.attachMovie("yetideath", "yetideath", 0);
_root.yetideath._x = this._x;
_root.yetideath._y = this._y;
this.swapDepths(0);
removeMovieClip(this);
}
if ((leftmove == true) && (upmove == true)) {
this._xscale = -100;
this.gotoAndStop(2);
}
if ((leftmove == false) && (upmove == false)) {
this._xscale = 100;
this.gotoAndStop(2);
}
if ((leftmove == true) && (upmove == false)) {
this._xscale = -100;
this.gotoAndStop(3);
}
if ((leftmove == false) && (upmove == true)) {
this._xscale = 100;
this.gotoAndStop(3);
}
if (this._x <= _root.player._x) {
this._x = this._x + this.speed;
this.leftmove = false;
this.rightmove = true;
}
if (this._x >= _root.player._x) {
this._x = this._x - this.speed;
this.leftmove = true;
this.rightmove = false;
}
if (this._y <= _root.player._y) {
this._y = this._y + this.speed;
this.upmove = true;
this.downmove = false;
}
if (this._y >= _root.player._y) {
this._y = this._y - this.speed;
this.upmove = false;
this.downmove = true;
}
}
onClipEvent (load) {
this.hp = 20;
i = 1;
}
Instance of Symbol 171 MovieClip "blizzard4" in Frame 20
onClipEvent (load) {
i = 1;
}
onClipEvent (enterFrame) {
this.speed = _root.blizzardspeed;
if (this.hit.hitTest(_root.player)) {
_root.health._xscale = _root.health._xscale - 1;
}
if (mouseDown) {
i = i + 1;
}
if (i == 30) {
i = 1;
}
if (!this.hitTest(_root["blast" + i])) {
if (this._x <= _root.town._x) {
this._x = this._x + this.speed;
}
if (this._x >= _root.town._x) {
this._x = this._x - this.speed;
}
if (this._y <= _root.town._y) {
this._y = this._y + this.speed;
}
if (this._y >= _root.town._y) {
this._y = this._y - this.speed;
}
} else {
if (this._x <= _root.town._x) {
this._x = this._x - (0.5 + random(4));
}
if (this._x >= _root.town._x) {
this._x = this._x + (0.5 + random(4));
}
if (this._y <= _root.town._y) {
this._y = this._y - (0.5 + random(4));
}
if (this._y >= _root.town._y) {
this._y = this._y + (0.5 + random(4));
}
}
}
Instance of Symbol 171 MovieClip "blizzard8" in Frame 20
onClipEvent (load) {
i = 1;
}
onClipEvent (enterFrame) {
this.speed = _root.blizzardspeed;
if (this.hit.hitTest(_root.player)) {
_root.health._xscale = _root.health._xscale - 1;
}
if (mouseDown) {
i = i + 1;
}
if (i == 30) {
i = 1;
}
if (!this.hitTest(_root["blast" + i])) {
if (this._x <= _root.town._x) {
this._x = this._x + this.speed;
}
if (this._x >= _root.town._x) {
this._x = this._x - this.speed;
}
if (this._y <= _root.town._y) {
this._y = this._y + this.speed;
}
if (this._y >= _root.town._y) {
this._y = this._y - this.speed;
}
} else {
if (this._x <= _root.town._x) {
this._x = this._x - (0.5 + random(4));
}
if (this._x >= _root.town._x) {
this._x = this._x + (0.5 + random(4));
}
if (this._y <= _root.town._y) {
this._y = this._y - (0.5 + random(4));
}
if (this._y >= _root.town._y) {
this._y = this._y + (0.5 + random(4));
}
}
}
Instance of Symbol 171 MovieClip "blizzard6" in Frame 20
onClipEvent (load) {
i = 1;
}
onClipEvent (enterFrame) {
this.speed = _root.blizzardspeed;
if (this.hit.hitTest(_root.player)) {
_root.health._xscale = _root.health._xscale - 1;
}
if (mouseDown) {
i = i + 1;
}
if (i == 30) {
i = 1;
}
if (!this.hitTest(_root["blast" + i])) {
if (this._x <= _root.town._x) {
this._x = this._x + this.speed;
}
if (this._x >= _root.town._x) {
this._x = this._x - this.speed;
}
if (this._y <= _root.town._y) {
this._y = this._y + this.speed;
}
if (this._y >= _root.town._y) {
this._y = this._y - this.speed;
}
} else {
if (this._x <= _root.town._x) {
this._x = this._x - (0.5 + random(4));
}
if (this._x >= _root.town._x) {
this._x = this._x + (0.5 + random(4));
}
if (this._y <= _root.town._y) {
this._y = this._y - (0.5 + random(4));
}
if (this._y >= _root.town._y) {
this._y = this._y + (0.5 + random(4));
}
}
}
Instance of Symbol 171 MovieClip "blizzard2" in Frame 20
onClipEvent (load) {
i = 1;
}
onClipEvent (enterFrame) {
this.speed = _root.blizzardspeed;
if (this.hit.hitTest(_root.player)) {
_root.health._xscale = _root.health._xscale - 1;
}
if (mouseDown) {
i = i + 1;
}
if (i == 30) {
i = 1;
}
if (!this.hitTest(_root["blast" + i])) {
if (this._x <= _root.town._x) {
this._x = this._x + this.speed;
}
if (this._x >= _root.town._x) {
this._x = this._x - this.speed;
}
if (this._y <= _root.town._y) {
this._y = this._y + this.speed;
}
if (this._y >= _root.town._y) {
this._y = this._y - this.speed;
}
} else {
if (this._x <= _root.town._x) {
this._x = this._x - (0.5 + random(4));
}
if (this._x >= _root.town._x) {
this._x = this._x + (0.5 + random(4));
}
if (this._y <= _root.town._y) {
this._y = this._y - (0.5 + random(4));
}
if (this._y >= _root.town._y) {
this._y = this._y + (0.5 + random(4));
}
}
}
Instance of Symbol 261 MovieClip in Frame 20
onClipEvent (enterFrame) {
this.speed = random(2) + 1;
if (mouseDown) {
i = i + 1;
}
if (i == 30) {
i = 1;
}
if (this.hitTest(_root.player)) {
_root.health._xscale = _root.health._xscale - 1;
}
if (this.hitTest(_root["blast" + i])) {
_root.attachMovie("flame", "flame", 0);
_root.flame._x = this._x;
_root.flame._y = this._y;
this.hp = this.hp - 1;
this.fire.play();
}
if (this.hp <= 0) {
i = 1;
_root.attachMovie("yetideath", "yetideath", 1, 1);
_root.yetideath1._x = this._x;
_root.yetideath1._y = this._y;
this.swapDepths(0);
removeMovieClip(this);
}
if ((leftmove == true) && (upmove == true)) {
this._xscale = -100;
this.gotoAndStop(2);
}
if ((leftmove == false) && (upmove == false)) {
this._xscale = 100;
this.gotoAndStop(2);
}
if ((leftmove == true) && (upmove == false)) {
this._xscale = -100;
this.gotoAndStop(3);
}
if ((leftmove == false) && (upmove == true)) {
this._xscale = 100;
this.gotoAndStop(3);
}
if (this._x <= _root.player._x) {
this._x = this._x + this.speed;
this.leftmove = false;
this.rightmove = true;
}
if (this._x >= _root.player._x) {
this._x = this._x - this.speed;
this.leftmove = true;
this.rightmove = false;
}
if (this._y <= _root.player._y) {
this._y = this._y + this.speed;
this.upmove = true;
this.downmove = false;
}
if (this._y >= _root.player._y) {
this._y = this._y - this.speed;
this.upmove = false;
this.downmove = true;
}
}
onClipEvent (load) {
this.hp = 20;
i = 1;
}
Instance of Symbol 261 MovieClip in Frame 20
onClipEvent (enterFrame) {
this.speed = random(2) + 1;
if (mouseDown) {
i = i + 1;
}
if (i == 30) {
i = 1;
}
if (this.hitTest(_root.player)) {
_root.health._xscale = _root.health._xscale - 1;
}
if (this.hitTest(_root["blast" + i])) {
_root.attachMovie("flame", "flame", 0);
_root.flame._x = this._x;
_root.flame._y = this._y;
this.hp = this.hp - 1;
this.fire.play();
}
if (this.hp <= 0) {
i = 1;
_root.attachMovie("yetideath", "yetideath", 1, 1);
_root.yetideath1._x = this._x;
_root.yetideath1._y = this._y;
this.swapDepths(0);
removeMovieClip(this);
}
if ((leftmove == true) && (upmove == true)) {
this._xscale = -100;
this.gotoAndStop(2);
}
if ((leftmove == false) && (upmove == false)) {
this._xscale = 100;
this.gotoAndStop(2);
}
if ((leftmove == true) && (upmove == false)) {
this._xscale = -100;
this.gotoAndStop(3);
}
if ((leftmove == false) && (upmove == true)) {
this._xscale = 100;
this.gotoAndStop(3);
}
if (this._x <= _root.player._x) {
this._x = this._x + this.speed;
this.leftmove = false;
this.rightmove = true;
}
if (this._x >= _root.player._x) {
this._x = this._x - this.speed;
this.leftmove = true;
this.rightmove = false;
}
if (this._y <= _root.player._y) {
this._y = this._y + this.speed;
this.upmove = true;
this.downmove = false;
}
if (this._y >= _root.player._y) {
this._y = this._y - this.speed;
this.upmove = false;
this.downmove = true;
}
}
onClipEvent (load) {
this.hp = 20;
i = 1;
}
Instance of Symbol 261 MovieClip in Frame 20
onClipEvent (enterFrame) {
this.speed = random(2) + 1;
if (mouseDown) {
i = i + 1;
}
if (i == 30) {
i = 1;
}
if (this.hitTest(_root.player)) {
_root.health._xscale = _root.health._xscale - 1;
}
if (this.hitTest(_root["blast" + i])) {
_root.attachMovie("flame", "flame", 0);
_root.flame._x = this._x;
_root.flame._y = this._y;
this.hp = this.hp - 1;
this.fire.play();
}
if (this.hp <= 0) {
i = 1;
_root.attachMovie("yetideath", "yetideath", 0);
_root.yetideath._x = this._x;
_root.yetideath._y = this._y;
this.swapDepths(0);
removeMovieClip(this);
}
if ((leftmove == true) && (upmove == true)) {
this._xscale = -100;
this.gotoAndStop(2);
}
if ((leftmove == false) && (upmove == false)) {
this._xscale = 100;
this.gotoAndStop(2);
}
if ((leftmove == true) && (upmove == false)) {
this._xscale = -100;
this.gotoAndStop(3);
}
if ((leftmove == false) && (upmove == true)) {
this._xscale = 100;
this.gotoAndStop(3);
}
if (this._x <= _root.player._x) {
this._x = this._x + this.speed;
this.leftmove = false;
this.rightmove = true;
}
if (this._x >= _root.player._x) {
this._x = this._x - this.speed;
this.leftmove = true;
this.rightmove = false;
}
if (this._y <= _root.player._y) {
this._y = this._y + this.speed;
this.upmove = true;
this.downmove = false;
}
if (this._y >= _root.player._y) {
this._y = this._y - this.speed;
this.upmove = false;
this.downmove = true;
}
}
onClipEvent (load) {
this.hp = 20;
i = 1;
}
Instance of Symbol 261 MovieClip in Frame 20
onClipEvent (enterFrame) {
this.speed = random(2) + 1;
if (mouseDown) {
i = i + 1;
}
if (i == 30) {
i = 1;
}
if (this.hitTest(_root.player)) {
_root.health._xscale = _root.health._xscale - 1;
}
if (this.hitTest(_root["blast" + i])) {
_root.attachMovie("flame", "flame", 0);
_root.flame._x = this._x;
_root.flame._y = this._y;
this.hp = this.hp - 1;
this.fire.play();
}
if (this.hp <= 0) {
i = 1;
_root.attachMovie("yetideath", "yetideath", 0);
_root.yetideath._x = this._x;
_root.yetideath._y = this._y;
this.swapDepths(0);
removeMovieClip(this);
}
if ((leftmove == true) && (upmove == true)) {
this._xscale = -100;
this.gotoAndStop(2);
}
if ((leftmove == false) && (upmove == false)) {
this._xscale = 100;
this.gotoAndStop(2);
}
if ((leftmove == true) && (upmove == false)) {
this._xscale = -100;
this.gotoAndStop(3);
}
if ((leftmove == false) && (upmove == true)) {
this._xscale = 100;
this.gotoAndStop(3);
}
if (this._x <= _root.player._x) {
this._x = this._x + this.speed;
this.leftmove = false;
this.rightmove = true;
}
if (this._x >= _root.player._x) {
this._x = this._x - this.speed;
this.leftmove = true;
this.rightmove = false;
}
if (this._y <= _root.player._y) {
this._y = this._y + this.speed;
this.upmove = true;
this.downmove = false;
}
if (this._y >= _root.player._y) {
this._y = this._y - this.speed;
this.upmove = false;
this.downmove = true;
}
}
onClipEvent (load) {
this.hp = 20;
i = 1;
}
Instance of Symbol 261 MovieClip in Frame 20
onClipEvent (enterFrame) {
this.speed = random(2) + 1;
if (mouseDown) {
i = i + 1;
}
if (i == 30) {
i = 1;
}
if (this.hitTest(_root.player)) {
_root.health._xscale = _root.health._xscale - 1;
}
if (this.hitTest(_root["blast" + i])) {
_root.attachMovie("flame", "flame", 0);
_root.flame._x = this._x;
_root.flame._y = this._y;
this.hp = this.hp - 1;
this.fire.play();
}
if (this.hp <= 0) {
i = 1;
_root.attachMovie("yetideath", "yetideath", 0);
_root.yetideath._x = this._x;
_root.yetideath._y = this._y;
this.swapDepths(0);
removeMovieClip(this);
}
if ((leftmove == true) && (upmove == true)) {
this._xscale = -100;
this.gotoAndStop(2);
}
if ((leftmove == false) && (upmove == false)) {
this._xscale = 100;
this.gotoAndStop(2);
}
if ((leftmove == true) && (upmove == false)) {
this._xscale = -100;
this.gotoAndStop(3);
}
if ((leftmove == false) && (upmove == true)) {
this._xscale = 100;
this.gotoAndStop(3);
}
if (this._x <= _root.player._x) {
this._x = this._x + this.speed;
this.leftmove = false;
this.rightmove = true;
}
if (this._x >= _root.player._x) {
this._x = this._x - this.speed;
this.leftmove = true;
this.rightmove = false;
}
if (this._y <= _root.player._y) {
this._y = this._y + this.speed;
this.upmove = true;
this.downmove = false;
}
if (this._y >= _root.player._y) {
this._y = this._y - this.speed;
this.upmove = false;
this.downmove = true;
}
}
onClipEvent (load) {
this.hp = 20;
i = 1;
}
Instance of Symbol 171 MovieClip "blizzard4" in Frame 20
onClipEvent (load) {
i = 1;
}
onClipEvent (enterFrame) {
this.speed = _root.blizzardspeed;
if (this.hit.hitTest(_root.player)) {
_root.health._xscale = _root.health._xscale - 1;
}
if (mouseDown) {
i = i + 1;
}
if (i == 30) {
i = 1;
}
if (!this.hitTest(_root["blast" + i])) {
if (this._x <= _root.town._x) {
this._x = this._x + this.speed;
}
if (this._x >= _root.town._x) {
this._x = this._x - this.speed;
}
if (this._y <= _root.town._y) {
this._y = this._y + this.speed;
}
if (this._y >= _root.town._y) {
this._y = this._y - this.speed;
}
} else {
if (this._x <= _root.town._x) {
this._x = this._x - (0.5 + random(4));
}
if (this._x >= _root.town._x) {
this._x = this._x + (0.5 + random(4));
}
if (this._y <= _root.town._y) {
this._y = this._y - (0.5 + random(4));
}
if (this._y >= _root.town._y) {
this._y = this._y + (0.5 + random(4));
}
}
}
Instance of Symbol 171 MovieClip "blizzard4" in Frame 20
onClipEvent (load) {
i = 1;
}
onClipEvent (enterFrame) {
this.speed = _root.blizzardspeed;
if (this.hit.hitTest(_root.player)) {
_root.health._xscale = _root.health._xscale - 1;
}
if (mouseDown) {
i = i + 1;
}
if (i == 30) {
i = 1;
}
if (!this.hitTest(_root["blast" + i])) {
if (this._x <= _root.town._x) {
this._x = this._x + this.speed;
}
if (this._x >= _root.town._x) {
this._x = this._x - this.speed;
}
if (this._y <= _root.town._y) {
this._y = this._y + this.speed;
}
if (this._y >= _root.town._y) {
this._y = this._y - this.speed;
}
} else {
if (this._x <= _root.town._x) {
this._x = this._x - (0.5 + random(4));
}
if (this._x >= _root.town._x) {
this._x = this._x + (0.5 + random(4));
}
if (this._y <= _root.town._y) {
this._y = this._y - (0.5 + random(4));
}
if (this._y >= _root.town._y) {
this._y = this._y + (0.5 + random(4));
}
}
}
Instance of Symbol 171 MovieClip "blizzard4" in Frame 20
onClipEvent (load) {
i = 1;
}
onClipEvent (enterFrame) {
this.speed = _root.blizzardspeed;
if (this.hit.hitTest(_root.player)) {
_root.health._xscale = _root.health._xscale - 1;
}
if (mouseDown) {
i = i + 1;
}
if (i == 30) {
i = 1;
}
if (!this.hitTest(_root["blast" + i])) {
if (this._x <= _root.town._x) {
this._x = this._x + this.speed;
}
if (this._x >= _root.town._x) {
this._x = this._x - this.speed;
}
if (this._y <= _root.town._y) {
this._y = this._y + this.speed;
}
if (this._y >= _root.town._y) {
this._y = this._y - this.speed;
}
} else {
if (this._x <= _root.town._x) {
this._x = this._x - (0.5 + random(4));
}
if (this._x >= _root.town._x) {
this._x = this._x + (0.5 + random(4));
}
if (this._y <= _root.town._y) {
this._y = this._y - (0.5 + random(4));
}
if (this._y >= _root.town._y) {
this._y = this._y + (0.5 + random(4));
}
}
}
Instance of Symbol 171 MovieClip "blizzard4" in Frame 20
onClipEvent (load) {
i = 1;
}
onClipEvent (enterFrame) {
this.speed = _root.blizzardspeed;
if (this.hit.hitTest(_root.player)) {
_root.health._xscale = _root.health._xscale - 1;
}
if (mouseDown) {
i = i + 1;
}
if (i == 30) {
i = 1;
}
if (!this.hitTest(_root["blast" + i])) {
if (this._x <= _root.town._x) {
this._x = this._x + this.speed;
}
if (this._x >= _root.town._x) {
this._x = this._x - this.speed;
}
if (this._y <= _root.town._y) {
this._y = this._y + this.speed;
}
if (this._y >= _root.town._y) {
this._y = this._y - this.speed;
}
} else {
if (this._x <= _root.town._x) {
this._x = this._x - (0.5 + random(4));
}
if (this._x >= _root.town._x) {
this._x = this._x + (0.5 + random(4));
}
if (this._y <= _root.town._y) {
this._y = this._y - (0.5 + random(4));
}
if (this._y >= _root.town._y) {
this._y = this._y + (0.5 + random(4));
}
}
}
Instance of Symbol 24 MovieClip [snowball] "snowball" in Frame 20
onClipEvent (enterFrame) {
this._x = this._x - 1;
if (this._xscale <= 20) {
this.swapDepths(0);
removeMovieClip(this);
}
if (mouseDown) {
i = i + 1;
}
if (i == 30) {
i = 1;
}
if (this.hitTest(_root["blast" + i])) {
_root.attachMovie("puddle", "puddle", 0);
_root.puddle._x = this._x;
_root.puddle._y = this._y;
this._xscale = this._xscale - 10;
this._yscale = this._yscale - 10;
}
}
onClipEvent (load) {
i = 1;
}
Instance of Symbol 261 MovieClip in Frame 20
onClipEvent (enterFrame) {
this.speed = random(2) + 1;
if (mouseDown) {
i = i + 1;
}
if (i == 30) {
i = 1;
}
if (this.hitTest(_root.player)) {
_root.health._xscale = _root.health._xscale - 1;
}
if (this.hitTest(_root["blast" + i])) {
_root.attachMovie("flame", "flame", 0);
_root.flame._x = this._x;
_root.flame._y = this._y;
this.hp = this.hp - 1;
this.fire.play();
}
if (this.hp <= 0) {
i = 1;
_root.attachMovie("yetideath", "yetideath", 0);
_root.yetideath._x = this._x;
_root.yetideath._y = this._y;
this.swapDepths(0);
removeMovieClip(this);
}
if ((leftmove == true) && (upmove == true)) {
this._xscale = -100;
this.gotoAndStop(2);
}
if ((leftmove == false) && (upmove == false)) {
this._xscale = 100;
this.gotoAndStop(2);
}
if ((leftmove == true) && (upmove == false)) {
this._xscale = -100;
this.gotoAndStop(3);
}
if ((leftmove == false) && (upmove == true)) {
this._xscale = 100;
this.gotoAndStop(3);
}
if (this._x <= _root.player._x) {
this._x = this._x + this.speed;
this.leftmove = false;
this.rightmove = true;
}
if (this._x >= _root.player._x) {
this._x = this._x - this.speed;
this.leftmove = true;
this.rightmove = false;
}
if (this._y <= _root.player._y) {
this._y = this._y + this.speed;
this.upmove = true;
this.downmove = false;
}
if (this._y >= _root.player._y) {
this._y = this._y - this.speed;
this.upmove = false;
this.downmove = true;
}
}
onClipEvent (load) {
this.hp = 20;
i = 1;
}
Instance of Symbol 261 MovieClip in Frame 20
onClipEvent (enterFrame) {
this.speed = random(2) + 1;
if (mouseDown) {
i = i + 1;
}
if (i == 30) {
i = 1;
}
if (this.hitTest(_root.player)) {
_root.health._xscale = _root.health._xscale - 1;
}
if (this.hitTest(_root["blast" + i])) {
_root.attachMovie("flame", "flame", 0);
_root.flame._x = this._x;
_root.flame._y = this._y;
this.hp = this.hp - 1;
this.fire.play();
}
if (this.hp <= 0) {
i = 1;
_root.attachMovie("yetideath", "yetideath", 0);
_root.yetideath._x = this._x;
_root.yetideath._y = this._y;
this.swapDepths(0);
removeMovieClip(this);
}
if ((leftmove == true) && (upmove == true)) {
this._xscale = -100;
this.gotoAndStop(2);
}
if ((leftmove == false) && (upmove == false)) {
this._xscale = 100;
this.gotoAndStop(2);
}
if ((leftmove == true) && (upmove == false)) {
this._xscale = -100;
this.gotoAndStop(3);
}
if ((leftmove == false) && (upmove == true)) {
this._xscale = 100;
this.gotoAndStop(3);
}
if (this._x <= _root.player._x) {
this._x = this._x + this.speed;
this.leftmove = false;
this.rightmove = true;
}
if (this._x >= _root.player._x) {
this._x = this._x - this.speed;
this.leftmove = true;
this.rightmove = false;
}
if (this._y <= _root.player._y) {
this._y = this._y + this.speed;
this.upmove = true;
this.downmove = false;
}
if (this._y >= _root.player._y) {
this._y = this._y - this.speed;
this.upmove = false;
this.downmove = true;
}
}
onClipEvent (load) {
this.hp = 20;
i = 1;
}
Instance of Symbol 193 MovieClip in Frame 20
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 20
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y - 3;
_root.gun._y = _root.gun._y - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 20
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x - 3;
_root.gun._x = _root.gun._x - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 20
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x + 3;
_root.gun._x = _root.gun._x + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 20
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 20
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 20
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y - 3;
_root.gun._y = _root.gun._y - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 20
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x - 3;
_root.gun._x = _root.gun._x - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 20
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x + 3;
_root.gun._x = _root.gun._x + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 20
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 20
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 20
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y - 3;
_root.gun._y = _root.gun._y - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 20
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x - 3;
_root.gun._x = _root.gun._x - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 20
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x + 3;
_root.gun._x = _root.gun._x + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 20
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 20
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 20
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y - 3;
_root.gun._y = _root.gun._y - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 20
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x - 3;
_root.gun._x = _root.gun._x - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 20
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x + 3;
_root.gun._x = _root.gun._x + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 20
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 20
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 20
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y - 3;
_root.gun._y = _root.gun._y - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 20
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x - 3;
_root.gun._x = _root.gun._x - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 20
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x + 3;
_root.gun._x = _root.gun._x + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 20
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 20
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 20
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y - 3;
_root.gun._y = _root.gun._y - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 20
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x - 3;
_root.gun._x = _root.gun._x - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 20
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x + 3;
_root.gun._x = _root.gun._x + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 20
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 20
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 20
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y - 3;
_root.gun._y = _root.gun._y - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 20
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x - 3;
_root.gun._x = _root.gun._x - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 20
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x + 3;
_root.gun._x = _root.gun._x + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 20
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 20
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 20
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y - 3;
_root.gun._y = _root.gun._y - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 20
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x - 3;
_root.gun._x = _root.gun._x - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 20
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x + 3;
_root.gun._x = _root.gun._x + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 20
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 20
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 20
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y - 3;
_root.gun._y = _root.gun._y - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 20
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x - 3;
_root.gun._x = _root.gun._x - 3;
}
}
Instance of Symbol 193 MovieClip in Frame 20
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x + 3;
_root.gun._x = _root.gun._x + 3;
}
}
Instance of Symbol 193 MovieClip in Frame 20
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y + 3;
_root.gun._y = _root.gun._y + 3;
}
}
Instance of Symbol 198 MovieClip "health" in Frame 20
onClipEvent (enterFrame) {
if (this._xscale >= 100) {
this._xscale = 100;
}
}
Frame 23
_root.player.swapDepths(0);
removeMovieClip(_root.player);
_root.gun.swapDepths(0);
removeMovieClip(_root.gun);
Symbol 3 MovieClip [blast] Frame 1
this._xscale = 0;
this._yscale = 0;
vel = 10;
this.onEnterFrame = function () {
if ((((this._x < 0) || (this._x > 850)) || (this._y < 0)) || (this._y > 650)) {
this.removeMovieClip();
}
radian = (Math.PI/180);
this._x = this._x + (this.vel * Math.cos(this._rotation * radian));
this._y = this._y + (this.vel * Math.sin(this._rotation * radian));
this._xscale = this._xscale + 15;
this._yscale = this._yscale + 15;
this._alpha = this._alpha - 2;
if (this._alpha <= 0) {
this.removeMovieClip();
}
vel = vel * 0.97;
};
Symbol 7 MovieClip [flame] Frame 22
this.swapDepths(0);
removeMovieClip(this);
Symbol 11 MovieClip [death] Frame 55
stop();
Symbol 19 MovieClip [yetideath] Frame 8
this.swapDepths(0);
removeMovieClip(this);
Symbol 44 Button
on (release) {
getURL ("http://www.newgrounds.com/collection/nggamejam2", "_blank");
}
Symbol 49 Button
on (release) {
nextFrame();
}
Symbol 65 MovieClip Frame 204
_root.gotoAndStop("menu");
Symbol 69 MovieClip Frame 62
stop();
Symbol 70 MovieClip Frame 1
function timerHandler() {
if (!loadingComplete) {
var _local2 = _root.getBytesLoaded() / _root.getBytesTotal();
bar._xscale = 100 * _local2;
if (_local2 == 1) {
loadingComplete = true;
if (AUTO_PLAY) {
startMovie();
} else {
gotoAndStop ("loaded");
}
return(undefined);
}
}
}
function startMovie() {
_root.play();
}
_root.stop();
stop();
var AUTO_PLAY = false;
var loadingComplete = false;
timerHandler();
Instance of Symbol 45 MovieClip in Symbol 70 MovieClip Frame 1
onClipEvent (enterFrame) {
_parent.timerHandler();
}
Symbol 70 MovieClip Frame 2
stop();
Symbol 79 Button
on (release) {
_root.nextFrame();
}
Symbol 82 Button
on (release) {
_root.gotoAndStop("credits");
}
Symbol 93 MovieClip Frame 1
function camControl() {
parentColor.setTransform(camColor.getTransform());
var _local4 = sX / this._width;
var _local3 = sY / this._height;
_parent._x = cX - (this._x * _local4);
_parent._y = cY - (this._y * _local3);
_parent._xscale = 100 * _local4;
_parent._yscale = 100 * _local3;
}
function resetStage() {
var _local2 = {ra:100, rb:0, ga:100, gb:0, ba:100, bb:0, aa:100, ab:0};
parentColor.setTransform(_local2);
_parent._xscale = 100;
_parent._yscale = 100;
_parent._x = 0;
_parent._y = 0;
}
parentColor.setTransform(camColor.getTransform());
this._visible = false;
var oldMode = Stage.scaleMode;
Stage.scaleMode = "exactFit";
var cX = (Stage.width / 2);
var cY = (Stage.height / 2);
var sX = Stage.width;
var sY = Stage.height;
Stage.scaleMode = oldMode;
var camColor = new Color(this);
var parentColor = new Color(_parent);
this.onEnterFrame = camControl;
camControl();
this.onUnload = resetStage;
Symbol 102 MovieClip Frame 484
_root.fadeout.play();
this.stop();
Symbol 104 MovieClip Frame 1
stop();
Symbol 104 MovieClip Frame 31
_root.nextFrame();
Symbol 108 MovieClip Frame 1
stop();
Symbol 132 MovieClip Frame 1
stop();
Symbol 136 MovieClip Frame 1
stop();
Symbol 136 MovieClip Frame 2
_root.treeslost = _root.treeslost + 1;
Symbol 139 MovieClip Frame 1
stop();
Symbol 150 MovieClip Frame 1
stop();
Symbol 151 MovieClip Frame 1
stop();
Symbol 151 MovieClip Frame 2
stop();
Symbol 151 MovieClip Frame 66
_root.hospital.work = false;
stop();
Symbol 156 MovieClip Frame 1
stop();
Symbol 159 MovieClip Frame 1
stop();
Symbol 159 MovieClip Frame 2
stop();
Symbol 159 MovieClip Frame 59
_root.gasstation.work = false;
Symbol 162 MovieClip Frame 1
stop();
Symbol 162 MovieClip Frame 2
_root.treeslost = _root.treeslost + 1;
Symbol 165 MovieClip Frame 1
stop();
Symbol 165 MovieClip Frame 2
_root.treeslost = _root.treeslost - 1;
Symbol 175 MovieClip Frame 1
stop();
Symbol 175 MovieClip Frame 2
_root.buildingslost = _root.buildingslost + 1;
_root.buildingssaved = _root.buildingssaved - 0;
Symbol 179 MovieClip Frame 1
stop();
Symbol 179 MovieClip Frame 2
_root.ground.nextFrame();
_root.everythingsfucked.play();
Symbol 183 MovieClip Frame 1
stop();
Symbol 183 MovieClip Frame 2
_root.buildingslost = _root.buildingslost + 1;
_root.buildingssaved = _root.buildingssaved - 0;
Symbol 187 MovieClip Frame 1
stop();
Symbol 187 MovieClip Frame 2
_root.buildingslost = _root.buildingslost + 1;
_root.buildingssaved = _root.buildingssaved - 0;
Symbol 191 MovieClip Frame 1
stop();
Symbol 191 MovieClip Frame 2
_root.buildingslost = _root.buildingslost + 1;
_root.buildingssaved = _root.buildingssaved - 0;
Symbol 209 MovieClip Frame 1801
_root.nextFrame();
Symbol 211 MovieClip Frame 1
stop();
Symbol 211 MovieClip Frame 9
_root.timer.stop();
Symbol 211 MovieClip Frame 72
_root.everythingsucks.play();
this.stop();
Symbol 213 MovieClip Frame 1
stop();
Symbol 213 MovieClip Frame 99
_root.gotoAndStop("replayscreen");
Symbol 294 MovieClip Frame 1
function camControl() {
parentColor.setTransform(camColor.getTransform());
var _local4 = sX / this._width;
var _local3 = sY / this._height;
_parent._x = cX - (this._x * _local4);
_parent._y = cY - (this._y * _local3);
_parent._xscale = 100 * _local4;
_parent._yscale = 100 * _local3;
}
function resetStage() {
var _local2 = {ra:100, rb:0, ga:100, gb:0, ba:100, bb:0, aa:100, ab:0};
parentColor.setTransform(_local2);
_parent._xscale = 100;
_parent._yscale = 100;
_parent._x = 0;
_parent._y = 0;
}
parentColor.setTransform(camColor.getTransform());
this._visible = false;
var oldMode = Stage.scaleMode;
Stage.scaleMode = "exactFit";
var cX = (Stage.width / 2);
var cY = (Stage.height / 2);
var sX = Stage.width;
var sY = Stage.height;
Stage.scaleMode = oldMode;
var camColor = new Color(this);
var parentColor = new Color(_parent);
this.onEnterFrame = camControl;
camControl();
this.onUnload = resetStage;
Symbol 295 MovieClip Frame 241
_root.gotoAndStop("credits");
Symbol 300 Button
on (release) {
gotoAndStop ("menu");
}
Symbol 305 Button
on (release) {
_root.gotoAndStop(_root.respawn);
}