Frame 1
stop();
Stage.showMenu = false;
frameTo = "mainMenu";
var hs1 = 425000;
_root.highScore1 = _root.hs1;
var hs2 = 203500;
_root.highScore2 = _root.hs2;
var hs3 = 164000;
_root.highScore3 = _root.hs3;
var hs4 = 164000;
_root.highScore4 = _root.hs4;
var hs5 = 123000;
_root.highScore5 = _root.hs5;
var hs6 = 205000;
_root.highScore6 = _root.hs6;
var hs7 = 109800;
_root.highScore7 = _root.hs7;
var hs8 = 189000;
_root.highScore8 = _root.hs8;
var hs9 = 210000;
_root.highScore9 = _root.hs9;
var bt1 = 15;
_root.bestTime1 = _root.bt1;
var bt2 = 70;
_root.bestTime2 = _root.bt2;
var bt3 = 95;
_root.bestTime3 = _root.bt3;
var bt4 = 60;
_root.bestTime4 = _root.bt4;
var bt5 = 100;
_root.bestTime5 = _root.bt5;
var bt6 = 80;
_root.bestTime6 = _root.bt6;
var bt7 = 70;
_root.bestTime7 = _root.bt7;
var bt8 = 70;
_root.bestTime8 = _root.bt8;
var bt9 = 55;
_root.bestTime9 = _root.bt9;
beaten1 = false;
beaten2 = false;
beaten3 = false;
beaten4 = false;
beaten5 = false;
beaten6 = false;
beaten7 = false;
beaten8 = false;
beaten9 = false;
var menuSong = new Sound();
menuSong.attachSound("BFD");
var tutSong = new Sound();
tutSong.attachSound("Eve");
var lev1Song = new Sound();
lev1Song.attachSound("2Min");
var lev3Song = new Sound();
lev3Song.attachSound("RA");
var lev4Song = new Sound();
lev4Song.attachSound("BW");
var lev5Song = new Sound();
lev5Song.attachSound("DL");
var lev6Song = new Sound();
lev6Song.attachSound("DT");
var lev7Song = new Sound();
lev7Song.attachSound("SSS");
songPlay = _root.menuSong;
var noteSFX = new Sound();
noteSFX.attachSound("note");
var chk = new Sound();
chk.attachSound("chk");
var fin = new Sound();
fin.attachSound("fin");
var savefile = SharedObject.getLocal("thePacer");
if (savefile.data.sb1 == undefined) {
_root.hs1 = _root.hs1;
_root.hs2 = _root.hs2;
_root.hs3 = _root.hs3;
_root.hs4 = _root.hs4;
_root.hs5 = _root.hs5;
_root.hs6 = _root.hs6;
_root.hs7 = _root.hs7;
_root.hs8 = _root.hs8;
_root.hs9 = _root.hs9;
_root.bt1 = _root.bt1;
_root.bt2 = _root.bt2;
_root.bt3 = _root.bt3;
_root.bt4 = _root.bt4;
_root.bt5 = _root.bt5;
_root.bt6 = _root.bt6;
_root.bt7 = _root.bt7;
_root.bt8 = _root.bt8;
_root.bt9 = _root.bt9;
_root.beaten1 = false;
_root.beaten2 = false;
_root.beaten3 = false;
_root.beaten4 = false;
_root.beaten5 = false;
_root.beaten6 = false;
_root.beaten7 = false;
_root.beaten8 = false;
_root.beaten9 = false;
} else {
_root.hs1 = savefile.data.shs1;
_root.hs2 = savefile.data.shs2;
_root.hs3 = savefile.data.shs3;
_root.hs4 = savefile.data.shs4;
_root.hs5 = savefile.data.shs5;
_root.hs6 = savefile.data.shs6;
_root.hs7 = savefile.data.shs7;
_root.hs8 = savefile.data.shs8;
_root.hs9 = savefile.data.shs9;
_root.bt1 = savefile.data.sbt1;
_root.bt2 = savefile.data.sbt2;
_root.bt3 = savefile.data.sbt3;
_root.bt4 = savefile.data.sbt4;
_root.bt5 = savefile.data.sbt5;
_root.bt6 = savefile.data.sbt6;
_root.bt7 = savefile.data.sbt7;
_root.bt8 = savefile.data.sbt8;
_root.bt9 = savefile.data.sbt9;
_root.beaten1 = savefile.data.sb1;
_root.beaten2 = savefile.data.sb2;
_root.beaten3 = savefile.data.sb3;
_root.beaten4 = savefile.data.sb4;
_root.beaten5 = savefile.data.sb5;
_root.beaten6 = savefile.data.sb6;
_root.beaten7 = savefile.data.sb7;
_root.beaten8 = savefile.data.sb8;
_root.beaten9 = savefile.data.sb9;
}
Instance of Symbol 280 MovieClip "hud" in Frame 1
onClipEvent (load) {
game = false;
}
onClipEvent (enterFrame) {
w = this._width / 2;
h = this._height / 2;
a = _root.player._x - this._x;
b = _root.player._y - this._y;
c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
}
onClipEvent (enterFrame) {
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
if (_root.player._x > (this._x + this.w)) {
this._x = _root.player._x + 350;
}
if (_root.player._x < (this._x - this.w)) {
this._x = _root.player._x - 350;
}
if (_root.player._y > (this._y + this.h)) {
this._y = _root.player._y + 350;
}
if (_root.player._y < (this._y - this.h)) {
this._y = _root.player._y - 350;
}
}
onClipEvent (enterFrame) {
if (this.game == true) {
this._visible = false;
} else {
this._visible = true;
}
}
Instance of Symbol 282 MovieClip in Frame 1
onClipEvent (load) {
Mouse.hide();
this._x = _root._xmouse;
this._y = _root._ymouse;
}
onClipEvent (enterFrame) {
Mouse.hide();
if (_root.hud.game == false) {
this._visible = true;
} else {
this._visible = false;
}
}
onClipEvent (mouseMove) {
this._x = _root._xmouse;
this._y = _root._ymouse;
}
Instance of Symbol 285 MovieClip in Frame 2
onClipEvent (mouseDown) {
if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
stopAllSounds();
_root.songPlay = _root.lev7Song;
_root.songPlay.start(0, 1000);
}
}
Instance of Symbol 285 MovieClip in Frame 2
onClipEvent (mouseDown) {
if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
stopAllSounds();
_root.songPlay = _root.lev4Song;
_root.songPlay.start(0, 1000);
}
}
Instance of Symbol 285 MovieClip in Frame 2
onClipEvent (mouseDown) {
if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
stopAllSounds();
_root.songPlay = _root.lev6Song;
_root.songPlay.start(0, 1000);
}
}
Instance of Symbol 285 MovieClip in Frame 2
onClipEvent (mouseDown) {
if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
stopAllSounds();
_root.songPlay = _root.tutSong;
_root.songPlay.start(0, 1000);
}
}
Instance of Symbol 285 MovieClip in Frame 2
onClipEvent (mouseDown) {
if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
stopAllSounds();
_root.songPlay = _root.lev5Song;
_root.songPlay.start(0, 1000);
}
}
Instance of Symbol 285 MovieClip in Frame 2
onClipEvent (mouseDown) {
if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
stopAllSounds();
_root.songPlay = _root.menuSong;
_root.songPlay.start(0, 1000);
}
}
Instance of Symbol 285 MovieClip in Frame 2
onClipEvent (mouseDown) {
if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
stopAllSounds();
_root.songPlay = _root.lev1Song;
_root.songPlay.start(0, 1000);
}
}
Instance of Symbol 285 MovieClip in Frame 2
onClipEvent (mouseDown) {
if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
stopAllSounds();
_root.songPlay = _root.lev3Song;
_root.songPlay.start(0, 1000);
}
}
Instance of Symbol 288 MovieClip in Frame 2
onClipEvent (enterFrame) {
if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
this.gotoAndStop("over");
} else {
this.gotoAndStop("off");
}
}
onClipEvent (mouseDown) {
if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
_root.gotoAndStop("mainMenu");
}
}
Frame 3
frameTo = " ";
stop();
stopAllSounds();
_root.songPlay = _root.menuSong;
_root.songPlay.start(0, 1000);
_root.songPlay.setVolume(100);
savefile.data.shs1 = _root.hs1;
savefile.data.shs2 = _root.hs2;
savefile.data.shs3 = _root.hs3;
savefile.data.shs4 = _root.hs4;
savefile.data.shs5 = _root.hs5;
savefile.data.shs6 = _root.hs6;
savefile.data.shs7 = _root.hs7;
savefile.data.shs8 = _root.hs8;
savefile.data.shs9 = _root.hs9;
savefile.data.sbt1 = _root.bt1;
savefile.data.sbt2 = _root.bt2;
savefile.data.sbt3 = _root.bt3;
savefile.data.sbt4 = _root.bt4;
savefile.data.sbt5 = _root.bt5;
savefile.data.sbt6 = _root.bt6;
savefile.data.sbt7 = _root.bt7;
savefile.data.sbt8 = _root.bt8;
savefile.data.sbt9 = _root.bt9;
savefile.data.sb1 = _root.beaten1;
savefile.data.sb2 = _root.beaten2;
savefile.data.sb3 = _root.beaten3;
savefile.data.sb4 = _root.beaten4;
savefile.data.sb5 = _root.beaten5;
savefile.data.sb6 = _root.beaten6;
savefile.data.sb7 = _root.beaten7;
savefile.data.sb8 = _root.beaten8;
savefile.data.sb9 = _root.beaten9;
savefile.flush();
Instance of Symbol 302 MovieClip in Frame 3
onClipEvent (mouseDown) {
if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
_quality = "LOW";
}
}
Instance of Symbol 302 MovieClip in Frame 3
onClipEvent (mouseDown) {
if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
_quality = "MEDIUM";
}
}
Instance of Symbol 302 MovieClip in Frame 3
onClipEvent (mouseDown) {
if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
_quality = "HIGH";
}
}
Instance of Symbol 310 MovieClip in Frame 3
onClipEvent (enterFrame) {
if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
this.gotoAndStop("over");
} else {
this.gotoAndStop("off");
}
}
onClipEvent (mouseDown) {
if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
_root.hud.gotoAndPlay("fadeOut");
_root.frameTo = "levelSelect";
}
}
Instance of Symbol 315 MovieClip in Frame 3
onClipEvent (enterFrame) {
if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
this.gotoAndStop("over");
} else {
this.gotoAndStop("off");
}
}
onClipEvent (mouseDown) {
if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
_root.hud.gotoAndPlay("fadeOut");
_root.frameTo = "instructions";
}
}
Instance of Symbol 318 MovieClip in Frame 3
onClipEvent (enterFrame) {
if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
this.gotoAndStop("over");
} else {
this.gotoAndStop("off");
}
}
onClipEvent (mouseDown) {
if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
_root.hud.gotoAndPlay("fadeOut");
_root.frameTo = "creds";
}
}
Instance of Symbol 321 MovieClip in Frame 3
onClipEvent (enterFrame) {
if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
this.gotoAndStop("over");
} else {
this.gotoAndStop("off");
}
}
onClipEvent (mouseDown) {
if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
_root.hud.gotoAndPlay("fadeOut");
_root.frameTo = "jukeBox";
}
}
Instance of Symbol 328 MovieClip in Frame 4
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd > 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.revF = _root.player.revF + _root.player.fowF;
_root.player.fowF = 0;
} else if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd < 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.fowF = _root.player.fowF + _root.player.revF;
_root.player.revF = 0;
}
}
Instance of Symbol 288 MovieClip in Frame 4
onClipEvent (enterFrame) {
if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
this.gotoAndStop("over");
} else {
this.gotoAndStop("off");
}
}
onClipEvent (mouseDown) {
if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
_root.nextFrame();
}
}
Instance of Symbol 288 MovieClip in Frame 4
onClipEvent (enterFrame) {
if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
this.gotoAndStop("over");
} else {
this.gotoAndStop("off");
}
}
onClipEvent (mouseDown) {
if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
_root.gotoAndStop("mainMenu");
}
}
Instance of Symbol 330 MovieClip "player" in Frame 4
onClipEvent (load) {
spdAdder = 0;
rotAdder = 0;
fowF = 0;
revF = 0;
spd = this.fowF - this.revF;
}
onClipEvent (enterFrame) {
this.spdAdder = 1;
this.rotAdder = 5;
}
onClipEvent (enterFrame) {
if (this.fowF >= 10) {
this.fowF = this.fowF - this.spdAdder;
}
if (this.revF >= 10) {
this.revF = this.revF - this.spdAdder;
}
if (this.fowF <= 0) {
this.fowF = this.fowF + this.spdAdder;
}
if (this.revF <= 0) {
this.revF = this.revF + this.spdAdder;
}
if (Key.isDown(38)) {
this.fowF = this.fowF + this.spdAdder;
} else if (!Key.isDown(38)) {
this.fowF = this.fowF - this.spdAdder;
}
if (Key.isDown(40)) {
this.revF = this.revF + this.spdAdder;
} else if (!Key.isDown(40)) {
this.revF = this.revF - this.spdAdder;
}
}
onClipEvent (enterFrame) {
this.spd = this.fowF - this.revF;
if (Key.isDown(39)) {
this._rotation = this._rotation + this.rotAdder;
}
if (Key.isDown(37)) {
this._rotation = this._rotation - this.rotAdder;
}
}
onClipEvent (enterFrame) {
if (_rotation > 180) {
_y = (_y + (spd * Math.cos((Math.PI/180) * this._rotation)));
_x = (_x - (spd * Math.sin((Math.PI/180) * this._rotation)));
} else {
_y = (_y - (spd * Math.cos((Math.PI/180) * this._rotation)));
_x = (_x + (spd * Math.sin((Math.PI/180) * this._rotation)));
}
}
Instance of Symbol 288 MovieClip in Frame 5
onClipEvent (enterFrame) {
if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
this.gotoAndStop("over");
} else {
this.gotoAndStop("off");
}
}
onClipEvent (mouseDown) {
if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
_root.prevFrame();
}
}
Instance of Symbol 343 MovieClip in Frame 5
onClipEvent (load) {
tGive = 100;
checked = false;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (this.checked == false)) {
this.checked = true;
_root.chk.start();
}
if (this.checked == true) {
this.gotoAndStop("check");
}
}
Instance of Symbol 347 MovieClip "finish1" in Frame 5
onClipEvent (load) {
finished = false;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.player.fowF = 0;
_root.player.revF = 0;
_root.fin.start();
this.finished = true;
}
if (this.finished == true) {
_root.hud.game = false;
_root.hud.gotoAndStop("finish");
unloadMovie (this);
}
}
Instance of Symbol 354 MovieClip in Frame 5
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.bPoints = _root.phud.bPoints + 50;
_root.noteSFX.start();
unloadMovie (this);
}
}
Frame 6
_root.highScore1 = ("!!HIGH SCORE " + _root.hs1.toString()) + "!!";
_root.highScore2 = ("!!HIGH SCORE " + _root.hs2.toString()) + "!!";
_root.highScore3 = ("!!HIGH SCORE " + _root.hs3.toString()) + "!!";
_root.highScore4 = ("!!HIGH SCORE " + _root.hs4.toString()) + "!!";
_root.highScore5 = ("!!HIGH SCORE " + _root.hs5.toString()) + "!!";
_root.highScore6 = ("!!HIGH SCORE " + _root.hs6.toString()) + "!!";
_root.highScore7 = ("!!HIGH SCORE " + _root.hs7.toString()) + "!!";
_root.highScore8 = ("!!HIGH SCORE " + _root.hs8.toString()) + "!!";
_root.highScore9 = ("!!HIGH SCORE " + _root.hs9.toString()) + "!!";
_root.bestTime1 = ("!!BEST TIME " + _root.bt1.toString()) + "!!";
_root.bestTime2 = ("!!BEST TIME " + _root.bt2.toString()) + "!!";
_root.bestTime3 = ("!!BEST TIME " + _root.bt3.toString()) + "!!";
_root.bestTime4 = ("!!BEST TIME " + _root.bt4.toString()) + "!!";
_root.bestTime5 = ("!!BEST TIME " + _root.bt5.toString()) + "!!";
_root.bestTime6 = ("!!BEST TIME " + _root.bt6.toString()) + "!!";
_root.bestTime7 = ("!!BEST TIME " + _root.bt7.toString()) + "!!";
_root.bestTime8 = ("!!BEST TIME " + _root.bt8.toString()) + "!!";
_root.bestTime9 = ("!!BEST TIME " + _root.bt9.toString()) + "!!";
Instance of Symbol 288 MovieClip in Frame 6
onClipEvent (enterFrame) {
if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
this.gotoAndStop("over");
} else {
this.gotoAndStop("off");
}
}
onClipEvent (mouseDown) {
if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
_root.gotoAndStop("mainMenu");
}
}
Instance of Symbol 359 MovieClip in Frame 6
onClipEvent (enterFrame) {
if (_root.beaten9 == false) {
this._visible = false;
} else {
this._visible = true;
}
}
Instance of Symbol 385 MovieClip "lev1but" in Frame 6
onClipEvent (enterFrame) {
if (_root.beaten1 == true) {
this.check1._visible = true;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
this.gotoAndStop("over");
} else {
this.gotoAndStop("off");
}
}
onClipEvent (mouseDown) {
if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
_root.hud.gotoAndPlay("fadeOut");
_root.frameTo = "lev1";
}
}
Instance of Symbol 392 MovieClip in Frame 6
onClipEvent (enterFrame) {
if (_root.beaten2 == true) {
this.check1._visible = true;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
this.gotoAndStop("over");
} else {
this.gotoAndStop("off");
}
}
onClipEvent (mouseDown) {
if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
_root.hud.gotoAndPlay("fadeOut");
_root.frameTo = "lev2";
}
}
Instance of Symbol 397 MovieClip in Frame 6
onClipEvent (enterFrame) {
if (_root.beaten3 == true) {
this.check1._visible = true;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
this.gotoAndStop("over");
} else {
this.gotoAndStop("off");
}
}
onClipEvent (mouseDown) {
if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
_root.hud.gotoAndPlay("fadeOut");
_root.frameTo = "lev3";
}
}
Instance of Symbol 403 MovieClip in Frame 6
onClipEvent (enterFrame) {
if (_root.beaten4 == true) {
this.check1._visible = true;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
this.gotoAndStop("over");
} else {
this.gotoAndStop("off");
}
}
onClipEvent (mouseDown) {
if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
_root.hud.gotoAndPlay("fadeOut");
_root.frameTo = "lev4";
}
}
Instance of Symbol 406 MovieClip in Frame 6
onClipEvent (load) {
unlocked = false;
if ((_root.hs4 > 164000) && (_root.bt4 < 60)) {
this.unlocked = true;
} else {
this.unlocked = false;
}
}
onClipEvent (enterFrame) {
if (this.unlocked == false) {
_root.square1._visible = true;
} else {
_root.square1._visible = false;
}
}
onClipEvent (enterFrame) {
if (_root.beaten5 == true) {
this.check1._visible = true;
}
}
onClipEvent (enterFrame) {
if (this.unlocked == true) {
if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
this.gotoAndStop("over");
} else {
this.gotoAndStop("off");
}
}
}
onClipEvent (mouseDown) {
if (this.unlocked == true) {
if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
_root.hud.gotoAndPlay("fadeOut");
_root.frameTo = "lev5";
}
}
}
Instance of Symbol 411 MovieClip in Frame 6
onClipEvent (load) {
unlocked = false;
if ((_root.hs3 > 164000) && (_root.bt3 < 95)) {
this.unlocked = true;
} else {
this.unlocked = false;
}
}
onClipEvent (enterFrame) {
if (this.unlocked == false) {
_root.square2._visible = true;
} else {
_root.square2._visible = false;
}
}
onClipEvent (enterFrame) {
if (_root.beaten7 == true) {
this.check1._visible = true;
}
}
onClipEvent (enterFrame) {
if (this.unlocked == true) {
if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
this.gotoAndStop("over");
} else {
this.gotoAndStop("off");
}
}
}
onClipEvent (mouseDown) {
if (this.unlocked == true) {
if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
_root.hud.gotoAndPlay("fadeOut");
_root.frameTo = "lev7";
}
}
}
Instance of Symbol 416 MovieClip in Frame 6
onClipEvent (load) {
unlocked = false;
if ((_root.hs1 > 425000) && (_root.bt1 < 15)) {
this.unlocked = true;
} else {
this.unlocked = false;
}
}
onClipEvent (enterFrame) {
if (this.unlocked == false) {
_root.square3._visible = true;
} else {
_root.square3._visible = false;
}
}
onClipEvent (enterFrame) {
if (_root.beaten8 == true) {
this.check1._visible = true;
}
}
onClipEvent (enterFrame) {
if (this.unlocked == true) {
if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
this.gotoAndStop("over");
} else {
this.gotoAndStop("off");
}
}
}
onClipEvent (mouseDown) {
if (this.unlocked == true) {
if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
_root.hud.gotoAndPlay("fadeOut");
_root.frameTo = "lev8";
}
}
}
Instance of Symbol 421 MovieClip in Frame 6
onClipEvent (load) {
unlocked = false;
if ((_root.hs2 > 203500) && (_root.bt2 < 70)) {
this.unlocked = true;
} else {
this.unlocked = false;
}
}
onClipEvent (enterFrame) {
if (this.unlocked == false) {
_root.square4._visible = true;
} else {
_root.square4._visible = false;
}
}
onClipEvent (enterFrame) {
if (_root.beaten6 == true) {
this.check1._visible = true;
}
}
onClipEvent (enterFrame) {
if (this.unlocked == true) {
if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
this.gotoAndStop("over");
} else {
this.gotoAndStop("off");
}
}
}
onClipEvent (mouseDown) {
if (this.unlocked == true) {
if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
_root.hud.gotoAndPlay("fadeOut");
_root.frameTo = "lev6";
}
}
}
Instance of Symbol 429 MovieClip in Frame 6
onClipEvent (load) {
unlocked = false;
if ((((_root.beaten5 == true) && (_root.beaten6 == true)) && (_root.beaten7 == true)) && (_root.beaten8 == true)) {
this.unlocked = true;
} else {
this.unlocked = false;
}
}
onClipEvent (enterFrame) {
if (this.unlocked == false) {
_root.square5._visible = true;
} else {
_root.square5._visible = false;
}
}
onClipEvent (enterFrame) {
if (_root.beaten9 == true) {
this.check1._visible = true;
}
}
onClipEvent (enterFrame) {
if (this.unlocked == true) {
if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
this.gotoAndStop("over");
} else {
this.gotoAndStop("off");
}
}
}
onClipEvent (mouseDown) {
if (this.unlocked == true) {
if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
_root.hud.gotoAndPlay("fadeOut");
_root.frameTo = "lev9";
}
}
}
Frame 7
stop();
stopAllSounds();
_root.songPlay = _root.tutSong;
_root.songPlay.setVolume(100);
_root.phud.tCounter.timeLeft = 100;
_root.player._x = _root.start1._x;
_root.player._y = _root.start1._y;
_root.player._rotation = 90;
_root.hud.gotoAndPlay("levelStart");
Instance of Symbol 437 MovieClip in Frame 7
onClipEvent (load) {
this.RA = 255;
this.RB = 255;
this.GA = 10;
this.GB = 30;
this.BA = 20;
this.BB = 255;
this.AA = 100;
this.AB = 100;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.player._x = _root.warp1._x;
_root.player._y = _root.warp1._y;
} else {
_root.player._x = _root.player._x;
_root.player._y = _root.player._y;
}
}
onClipEvent (enterFrame) {
this.RA = Math.random() * 255;
this.RB = Math.random() * 255;
this.GA = Math.random() * 0;
this.GB = Math.random() * 0;
this.BA = Math.random() * 0;
this.BB = Math.random() * 0;
this.AA = (Math.random() * 50) + 50;
this.AB = (Math.random() * 50) + 50;
}
onClipEvent (enterFrame) {
var my_color = new Color(this);
var myColorTransform = {ra:this.RA, rb:this.RB, ga:this.GA, gb:this.GB, ba:this.BA, bb:this.BB, aa:this.AA, ab:this.AB};
my_color.setTransform(myColorTransform);
}
Instance of Symbol 439 MovieClip "warp1" in Frame 7
onClipEvent (load) {
this.RA = 255;
this.RB = 255;
this.GA = 10;
this.GB = 30;
this.BA = 20;
this.BB = 255;
this.AA = 100;
this.AB = 100;
}
onClipEvent (enterFrame) {
this.RA = Math.random() * 255;
this.RB = Math.random() * 255;
this.GA = Math.random() * 0;
this.GB = Math.random() * 0;
this.BA = Math.random() * 0;
this.BB = Math.random() * 0;
this.AA = (Math.random() * 50) + 50;
this.AB = (Math.random() * 50) + 50;
}
onClipEvent (enterFrame) {
var my_color = new Color(this);
var myColorTransform = {ra:this.RA, rb:this.RB, ga:this.GA, gb:this.GB, ba:this.BA, bb:this.BB, aa:this.AA, ab:this.AB};
my_color.setTransform(myColorTransform);
}
Instance of Symbol 437 MovieClip in Frame 7
onClipEvent (load) {
this.RA = 255;
this.RB = 255;
this.GA = 10;
this.GB = 30;
this.BA = 20;
this.BB = 255;
this.AA = 100;
this.AB = 100;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.player._x = _root.warp2._x;
_root.player._y = _root.warp2._y;
} else {
_root.player._x = _root.player._x;
_root.player._y = _root.player._y;
}
}
onClipEvent (enterFrame) {
this.RA = Math.random() * 0;
this.RB = Math.random() * 0;
this.GA = Math.random() * 255;
this.GB = Math.random() * 255;
this.BA = Math.random() * 0;
this.BB = Math.random() * 0;
this.AA = (Math.random() * 50) + 50;
this.AB = (Math.random() * 50) + 50;
}
onClipEvent (enterFrame) {
var my_color = new Color(this);
var myColorTransform = {ra:this.RA, rb:this.RB, ga:this.GA, gb:this.GB, ba:this.BA, bb:this.BB, aa:this.AA, ab:this.AB};
my_color.setTransform(myColorTransform);
}
Instance of Symbol 439 MovieClip "warp2" in Frame 7
onClipEvent (load) {
this.RA = 255;
this.RB = 255;
this.GA = 10;
this.GB = 30;
this.BA = 20;
this.BB = 255;
this.AA = 100;
this.AB = 100;
}
onClipEvent (enterFrame) {
this.RA = Math.random() * 0;
this.RB = Math.random() * 0;
this.GA = Math.random() * 255;
this.GB = Math.random() * 255;
this.BA = Math.random() * 0;
this.BB = Math.random() * 0;
this.AA = (Math.random() * 50) + 50;
this.AB = (Math.random() * 50) + 50;
}
onClipEvent (enterFrame) {
var my_color = new Color(this);
var myColorTransform = {ra:this.RA, rb:this.RB, ga:this.GA, gb:this.GB, ba:this.BA, bb:this.BB, aa:this.AA, ab:this.AB};
my_color.setTransform(myColorTransform);
}
Instance of Symbol 343 MovieClip in Frame 7
onClipEvent (load) {
tGive = 100;
checked = false;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (this.checked == false)) {
this.checked = true;
_root.chk.start();
}
if (this.checked == true) {
this.gotoAndStop("check");
}
}
Instance of Symbol 343 MovieClip in Frame 7
onClipEvent (load) {
tGive = 100;
checked = false;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (this.checked == false)) {
this.checked = true;
_root.chk.start();
}
if (this.checked == true) {
this.gotoAndStop("check");
}
}
Instance of Symbol 347 MovieClip "finish1" in Frame 7
onClipEvent (load) {
sounded = false;
finished = false;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (this.sounded == false)) {
_root.fin.start(0, 1);
}
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.player.fowF = 0;
_root.player.revF = 0;
this.sounded = true;
this.finished = true;
}
if (this.finished == true) {
_root.beaten1 = true;
_root.hud.timeTaken = _root.phud.tTotal.toString();
_root.hud.game = false;
_root.hud.gotoAndStop("finish");
if (_root.hud.score > _root.hs1) {
_root.hs1 = _root.hud.score.toString();
}
if (_root.hud.timeTaken < _root.bt1) {
_root.bt1 = _root.hud.timeTaken.toString();
}
}
}
Instance of Symbol 343 MovieClip in Frame 7
onClipEvent (load) {
tGive = 100;
checked = false;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (this.checked == false)) {
this.checked = true;
_root.chk.start();
}
if (this.checked == true) {
this.gotoAndStop("check");
}
}
Instance of Symbol 447 MovieClip in Frame 7
onClipEvent (load) {
power = false;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
power = true;
}
if (this.power == true) {
this.gotoAndStop("on");
unloadMovie (_root.laser1);
}
}
Instance of Symbol 354 MovieClip in Frame 7
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.bPoints = _root.phud.bPoints + 50;
_root.noteSFX.start();
unloadMovie (this);
}
}
Instance of Symbol 354 MovieClip in Frame 7
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.bPoints = _root.phud.bPoints + 50;
_root.noteSFX.start();
unloadMovie (this);
}
}
Instance of Symbol 354 MovieClip in Frame 7
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.bPoints = _root.phud.bPoints + 50;
_root.noteSFX.start();
unloadMovie (this);
}
}
Instance of Symbol 354 MovieClip in Frame 7
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.bPoints = _root.phud.bPoints + 50;
_root.noteSFX.start();
unloadMovie (this);
}
}
Instance of Symbol 354 MovieClip in Frame 7
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.bPoints = _root.phud.bPoints + 50;
_root.noteSFX.start();
unloadMovie (this);
}
}
Instance of Symbol 354 MovieClip in Frame 7
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.bPoints = _root.phud.bPoints + 50;
_root.noteSFX.start();
unloadMovie (this);
}
}
Instance of Symbol 354 MovieClip in Frame 7
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.bPoints = _root.phud.bPoints + 50;
_root.noteSFX.start();
unloadMovie (this);
}
}
Instance of Symbol 354 MovieClip in Frame 7
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.bPoints = _root.phud.bPoints + 50;
_root.noteSFX.start();
unloadMovie (this);
}
}
Instance of Symbol 354 MovieClip in Frame 7
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.bPoints = _root.phud.bPoints + 50;
_root.noteSFX.start();
unloadMovie (this);
}
}
Instance of Symbol 354 MovieClip in Frame 7
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.bPoints = _root.phud.bPoints + 50;
_root.noteSFX.start();
unloadMovie (this);
}
}
Instance of Symbol 330 MovieClip "player" in Frame 7
onClipEvent (load) {
spdAdder = 0;
rotAdder = 0;
fowF = 0;
revF = 0;
spd = this.fowF - this.revF;
}
onClipEvent (enterFrame) {
if (_root.hud.game == false) {
this.spdAdder = 0;
this.rotAdder = 0;
} else if (_root.hud.game == true) {
this.spdAdder = 1;
this.rotAdder = 5;
}
}
onClipEvent (enterFrame) {
if (this.fowF >= 10) {
this.fowF = this.fowF - this.spdAdder;
}
if (this.revF >= 10) {
this.revF = this.revF - this.spdAdder;
}
if (this.fowF <= 0) {
this.fowF = this.fowF + this.spdAdder;
}
if (this.revF <= 0) {
this.revF = this.revF + this.spdAdder;
}
if (Key.isDown(38)) {
this.fowF = this.fowF + this.spdAdder;
} else if (!Key.isDown(38)) {
this.fowF = this.fowF - this.spdAdder;
}
if (Key.isDown(40)) {
this.revF = this.revF + this.spdAdder;
} else if (!Key.isDown(40)) {
this.revF = this.revF - this.spdAdder;
}
}
onClipEvent (enterFrame) {
this.spd = this.fowF - this.revF;
if (Key.isDown(39)) {
this._rotation = this._rotation + this.rotAdder;
}
if (Key.isDown(37)) {
this._rotation = this._rotation - this.rotAdder;
}
}
onClipEvent (enterFrame) {
if (_rotation > 180) {
_y = (_y + (spd * Math.cos((Math.PI/180) * this._rotation)));
_x = (_x - (spd * Math.sin((Math.PI/180) * this._rotation)));
} else {
_y = (_y - (spd * Math.cos((Math.PI/180) * this._rotation)));
_x = (_x + (spd * Math.sin((Math.PI/180) * this._rotation)));
}
}
Instance of Symbol 452 MovieClip "phud" in Frame 7
onClipEvent (load) {
this._x = _root.player._x;
this._y = _root.player._y;
gameOver = false;
t = 0;
tAdder = 0;
tTotal = 0;
health = 500;
maxH = 500;
minH = 0;
hBarWidth = 70;
percentH = Math.round(((this.health - this.minH) / (this.maxH - this.minH)) * this.hBarWidth);
bPoints = 0;
}
onClipEvent (enterFrame) {
if (_root.hud.game == false) {
this.tAdder = 0;
} else if (_root.hud.game == true) {
this.tAdder = 1;
}
this._x = _root.player._x;
this._y = _root.player._y;
this.t = this.t + this.tAdder;
this.percentH = Math.round(((this.health - this.minH) / (this.maxH - this.minH)) * this.hBarWidth);
this.hBar._width = this.percentH;
if (this.t >= 30) {
this.tTotal++;
this.tCounter.timeLeft--;
this.t = 0;
}
if ((this.tCounter.timeLeft <= 0) || (this.health <= 0)) {
this.gameOver = true;
}
if ((this.tCounter.timeLeft == undefined) || (this.health == undefined)) {
this.gameOver = false;
}
if (this.gameOver == true) {
_root.player.fowF = 0;
_root.player.revF = 0;
_root.hud.game = false;
_root.hud.gotoAndPlay("gameOver");
unloadMovie (this);
}
}
Instance of Symbol 454 MovieClip "laser1" in Frame 7
onClipEvent (load) {
this.RA = 255;
this.RB = 255;
this.GA = 10;
this.GB = 30;
this.BA = 20;
this.BB = 255;
this.AA = 100;
this.AB = 100;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.health = _root.phud.health - 10;
}
}
onClipEvent (enterFrame) {
this.RA = Math.random() * 255;
this.RB = (Math.random() * 255) - (Math.random() * 50);
this.GA = (Math.random() * 255) - (Math.random() * 255);
this.GB = (Math.random() * 255) - (Math.random() * 255);
this.BA = (Math.random() * 255) - (Math.random() * 50);
this.BB = (Math.random() * 255) - (Math.random() * 50);
this.AA = (Math.random() * 25) + 50;
this.AB = (Math.random() * 25) + 50;
}
onClipEvent (enterFrame) {
var my_color = new Color(this);
var myColorTransform = {ra:this.RA, rb:this.RB, ga:this.GA, gb:this.GB, ba:this.BA, bb:this.BB, aa:this.AA, ab:this.AB};
my_color.setTransform(myColorTransform);
}
Frame 8
stop();
stopAllSounds();
_root.songPlay = _root.lev1Song;
_root.songPlay.setVolume(100);
_root.phud.tCounter.timeLeft = 15;
_root.player._x = _root.start1._x;
_root.player._y = _root.start1._y;
_root.player._rotation = 90;
_root.hud.gotoAndPlay("levelStart");
Instance of Symbol 343 MovieClip in Frame 8
onClipEvent (load) {
tGive = 10;
checked = false;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (this.checked == false)) {
this.checked = true;
_root.chk.start();
}
if (this.checked == true) {
this.gotoAndStop("check");
}
}
Instance of Symbol 343 MovieClip in Frame 8
onClipEvent (load) {
tGive = 10;
checked = false;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (this.checked == false)) {
this.checked = true;
_root.chk.start();
}
if (this.checked == true) {
this.gotoAndStop("check");
}
}
Instance of Symbol 343 MovieClip in Frame 8
onClipEvent (load) {
tGive = 10;
checked = false;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (this.checked == false)) {
this.checked = true;
_root.chk.start();
}
if (this.checked == true) {
this.gotoAndStop("check");
}
}
Instance of Symbol 343 MovieClip in Frame 8
onClipEvent (load) {
tGive = 20;
checked = false;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (this.checked == false)) {
this.checked = true;
_root.chk.start();
}
if (this.checked == true) {
this.gotoAndStop("check");
}
}
Instance of Symbol 447 MovieClip in Frame 8
onClipEvent (load) {
power = false;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
power = true;
}
if (this.power == true) {
this.gotoAndStop("on");
unloadMovie (_root.laser2);
}
}
Instance of Symbol 343 MovieClip in Frame 8
onClipEvent (load) {
tGive = 10;
checked = false;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (this.checked == false)) {
this.checked = true;
_root.chk.start();
}
if (this.checked == true) {
this.gotoAndStop("check");
}
}
Instance of Symbol 343 MovieClip in Frame 8
onClipEvent (load) {
tGive = 10;
checked = false;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (this.checked == false)) {
this.checked = true;
_root.chk.start();
}
if (this.checked == true) {
this.gotoAndStop("check");
}
}
Instance of Symbol 343 MovieClip in Frame 8
onClipEvent (load) {
tGive = 10;
checked = false;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (this.checked == false)) {
this.checked = true;
_root.chk.start();
}
if (this.checked == true) {
this.gotoAndStop("check");
}
}
Instance of Symbol 437 MovieClip in Frame 8
onClipEvent (load) {
this.RA = 255;
this.RB = 255;
this.GA = 10;
this.GB = 30;
this.BA = 20;
this.BB = 255;
this.AA = 100;
this.AB = 100;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.player._x = _root.warp3._x;
_root.player._y = _root.warp3._y;
} else {
_root.player._x = _root.player._x;
_root.player._y = _root.player._y;
}
}
onClipEvent (enterFrame) {
this.RA = Math.random() * 0;
this.RB = Math.random() * 0;
this.GA = Math.random() * 0;
this.GB = Math.random() * 0;
this.BA = Math.random() * 255;
this.BB = Math.random() * 255;
this.AA = (Math.random() * 50) + 50;
this.AB = (Math.random() * 50) + 50;
}
onClipEvent (enterFrame) {
var my_color = new Color(this);
var myColorTransform = {ra:this.RA, rb:this.RB, ga:this.GA, gb:this.GB, ba:this.BA, bb:this.BB, aa:this.AA, ab:this.AB};
my_color.setTransform(myColorTransform);
}
Instance of Symbol 439 MovieClip "warp3" in Frame 8
onClipEvent (load) {
this.RA = 255;
this.RB = 255;
this.GA = 10;
this.GB = 30;
this.BA = 20;
this.BB = 255;
this.AA = 100;
this.AB = 100;
}
onClipEvent (enterFrame) {
this.RA = Math.random() * 0;
this.RB = Math.random() * 0;
this.GA = Math.random() * 0;
this.GB = Math.random() * 0;
this.BA = Math.random() * 255;
this.BB = Math.random() * 255;
this.AA = (Math.random() * 50) + 50;
this.AB = (Math.random() * 50) + 50;
}
onClipEvent (enterFrame) {
var my_color = new Color(this);
var myColorTransform = {ra:this.RA, rb:this.RB, ga:this.GA, gb:this.GB, ba:this.BA, bb:this.BB, aa:this.AA, ab:this.AB};
my_color.setTransform(myColorTransform);
}
Instance of Symbol 354 MovieClip in Frame 8
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.bPoints = _root.phud.bPoints + 50;
_root.noteSFX.start();
unloadMovie (this);
}
}
Instance of Symbol 354 MovieClip in Frame 8
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.bPoints = _root.phud.bPoints + 50;
_root.noteSFX.start();
unloadMovie (this);
}
}
Instance of Symbol 354 MovieClip in Frame 8
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.bPoints = _root.phud.bPoints + 50;
_root.noteSFX.start();
unloadMovie (this);
}
}
Instance of Symbol 354 MovieClip in Frame 8
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.bPoints = _root.phud.bPoints + 50;
_root.noteSFX.start();
unloadMovie (this);
}
}
Instance of Symbol 354 MovieClip in Frame 8
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.bPoints = _root.phud.bPoints + 50;
_root.noteSFX.start();
unloadMovie (this);
}
}
Instance of Symbol 354 MovieClip in Frame 8
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.bPoints = _root.phud.bPoints + 50;
_root.noteSFX.start();
unloadMovie (this);
}
}
Instance of Symbol 354 MovieClip in Frame 8
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.bPoints = _root.phud.bPoints + 50;
_root.noteSFX.start();
unloadMovie (this);
}
}
Instance of Symbol 437 MovieClip in Frame 8
onClipEvent (load) {
this.RA = 255;
this.RB = 255;
this.GA = 10;
this.GB = 30;
this.BA = 20;
this.BB = 255;
this.AA = 100;
this.AB = 100;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.player._x = _root.warp4._x;
_root.player._y = _root.warp4._y;
} else {
_root.player._x = _root.player._x;
_root.player._y = _root.player._y;
}
}
onClipEvent (enterFrame) {
this.RA = Math.random() * 255;
this.RB = Math.random() * 255;
this.GA = Math.random() * 0;
this.GB = Math.random() * 0;
this.BA = Math.random() * 255;
this.BB = Math.random() * 255;
this.AA = (Math.random() * 50) + 50;
this.AB = (Math.random() * 50) + 50;
}
onClipEvent (enterFrame) {
var my_color = new Color(this);
var myColorTransform = {ra:this.RA, rb:this.RB, ga:this.GA, gb:this.GB, ba:this.BA, bb:this.BB, aa:this.AA, ab:this.AB};
my_color.setTransform(myColorTransform);
}
Instance of Symbol 439 MovieClip "warp4" in Frame 8
onClipEvent (load) {
this.RA = 255;
this.RB = 255;
this.GA = 10;
this.GB = 30;
this.BA = 20;
this.BB = 255;
this.AA = 100;
this.AB = 100;
}
onClipEvent (enterFrame) {
this.RA = Math.random() * 0;
this.RB = Math.random() * 0;
this.GA = Math.random() * 0;
this.GB = Math.random() * 0;
this.BA = Math.random() * 255;
this.BB = Math.random() * 255;
this.AA = (Math.random() * 50) + 50;
this.AB = (Math.random() * 50) + 50;
}
onClipEvent (enterFrame) {
var my_color = new Color(this);
var myColorTransform = {ra:this.RA, rb:this.RB, ga:this.GA, gb:this.GB, ba:this.BA, bb:this.BB, aa:this.AA, ab:this.AB};
my_color.setTransform(myColorTransform);
}
Instance of Symbol 347 MovieClip "finish1" in Frame 8
onClipEvent (load) {
sounded = false;
finished = false;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (this.sounded == false)) {
_root.fin.start(0, 1);
}
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.player.fowF = 0;
_root.player.revF = 0;
this.sounded = true;
this.finished = true;
}
if (this.finished == true) {
_root.beaten2 = true;
_root.hud.timeTaken = _root.phud.tTotal.toString();
_root.hud.game = false;
_root.hud.gotoAndStop("finish");
if (_root.hud.score > _root.hs2) {
_root.hs2 = _root.hud.score.toString();
}
if (_root.hud.timeTaken < _root.bt2) {
_root.bt2 = _root.hud.timeTaken.toString();
}
}
}
Instance of Symbol 474 MovieClip "laser2" in Frame 8
onClipEvent (load) {
this.RA = 255;
this.RB = 255;
this.GA = 10;
this.GB = 30;
this.BA = 20;
this.BB = 255;
this.AA = 100;
this.AB = 100;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.health = _root.phud.health - 15;
}
}
onClipEvent (enterFrame) {
this.RA = (Math.random() * 205) + (Math.random() * 50);
this.RB = (Math.random() * 255) - (Math.random() * 50);
this.GA = (Math.random() * 255) - (Math.random() * 255);
this.GB = (Math.random() * 255) - (Math.random() * 255);
this.BA = (Math.random() * 255) - (Math.random() * 50);
this.BB = (Math.random() * 255) - (Math.random() * 50);
this.AA = (Math.random() * 25) + 50;
this.AB = (Math.random() * 25) + 50;
}
onClipEvent (enterFrame) {
var my_color = new Color(this);
var myColorTransform = {ra:this.RA, rb:this.RB, ga:this.GA, gb:this.GB, ba:this.BA, bb:this.BB, aa:this.AA, ab:this.AB};
my_color.setTransform(myColorTransform);
}
Frame 9
stop();
stopAllSounds();
_root.songPlay = _root.lev3Song;
_root.songPlay.setVolume(100);
_root.phud.tCounter.timeLeft = 60;
_root.player._x = _root.start1._x;
_root.player._y = _root.start1._y;
_root.player._rotation = 90;
_root.hud.gotoAndPlay("levelStart");
Instance of Symbol 343 MovieClip in Frame 9
onClipEvent (load) {
tGive = 50;
checked = false;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (this.checked == false)) {
this.checked = true;
_root.chk.start();
}
if (this.checked == true) {
this.gotoAndStop("check");
}
}
Instance of Symbol 437 MovieClip in Frame 9
onClipEvent (load) {
this.RA = 255;
this.RB = 255;
this.GA = 10;
this.GB = 30;
this.BA = 20;
this.BB = 255;
this.AA = 100;
this.AB = 100;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.player._x = _root.warp1._x;
_root.player._y = _root.warp1._y;
} else {
_root.player._x = _root.player._x;
_root.player._y = _root.player._y;
}
}
onClipEvent (enterFrame) {
this.RA = Math.random() * 255;
this.RB = Math.random() * 255;
this.GA = Math.random() * 0;
this.GB = Math.random() * 0;
this.BA = Math.random() * 0;
this.BB = Math.random() * 0;
this.AA = (Math.random() * 50) + 50;
this.AB = (Math.random() * 50) + 50;
}
onClipEvent (enterFrame) {
var my_color = new Color(this);
var myColorTransform = {ra:this.RA, rb:this.RB, ga:this.GA, gb:this.GB, ba:this.BA, bb:this.BB, aa:this.AA, ab:this.AB};
my_color.setTransform(myColorTransform);
}
Instance of Symbol 439 MovieClip "warp1" in Frame 9
onClipEvent (load) {
this.RA = 255;
this.RB = 255;
this.GA = 10;
this.GB = 30;
this.BA = 20;
this.BB = 255;
this.AA = 100;
this.AB = 100;
}
onClipEvent (enterFrame) {
this.RA = Math.random() * 255;
this.RB = Math.random() * 255;
this.GA = Math.random() * 0;
this.GB = Math.random() * 0;
this.BA = Math.random() * 0;
this.BB = Math.random() * 0;
this.AA = (Math.random() * 50) + 50;
this.AB = (Math.random() * 50) + 50;
}
onClipEvent (enterFrame) {
var my_color = new Color(this);
var myColorTransform = {ra:this.RA, rb:this.RB, ga:this.GA, gb:this.GB, ba:this.BA, bb:this.BB, aa:this.AA, ab:this.AB};
my_color.setTransform(myColorTransform);
}
Instance of Symbol 437 MovieClip in Frame 9
onClipEvent (load) {
this.RA = 255;
this.RB = 255;
this.GA = 10;
this.GB = 30;
this.BA = 20;
this.BB = 255;
this.AA = 100;
this.AB = 100;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.player._x = _root.warp2._x;
_root.player._y = _root.warp2._y;
_root.player._rotation = 180;
} else {
_root.player._x = _root.player._x;
_root.player._y = _root.player._y;
}
}
onClipEvent (enterFrame) {
this.RA = Math.random() * 0;
this.RB = Math.random() * 0;
this.GA = Math.random() * 255;
this.GB = Math.random() * 255;
this.BA = Math.random() * 0;
this.BB = Math.random() * 0;
this.AA = (Math.random() * 50) + 50;
this.AB = (Math.random() * 50) + 50;
}
onClipEvent (enterFrame) {
var my_color = new Color(this);
var myColorTransform = {ra:this.RA, rb:this.RB, ga:this.GA, gb:this.GB, ba:this.BA, bb:this.BB, aa:this.AA, ab:this.AB};
my_color.setTransform(myColorTransform);
}
Instance of Symbol 439 MovieClip "warp2" in Frame 9
onClipEvent (load) {
this.RA = 255;
this.RB = 255;
this.GA = 10;
this.GB = 30;
this.BA = 20;
this.BB = 255;
this.AA = 100;
this.AB = 100;
}
onClipEvent (enterFrame) {
this.RA = Math.random() * 0;
this.RB = Math.random() * 0;
this.GA = Math.random() * 255;
this.GB = Math.random() * 255;
this.BA = Math.random() * 0;
this.BB = Math.random() * 0;
this.AA = (Math.random() * 50) + 50;
this.AB = (Math.random() * 50) + 50;
}
onClipEvent (enterFrame) {
var my_color = new Color(this);
var myColorTransform = {ra:this.RA, rb:this.RB, ga:this.GA, gb:this.GB, ba:this.BA, bb:this.BB, aa:this.AA, ab:this.AB};
my_color.setTransform(myColorTransform);
}
Instance of Symbol 447 MovieClip in Frame 9
onClipEvent (load) {
power = false;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
power = true;
}
if (this.power == true) {
this.gotoAndStop("on");
unloadMovie (_root.laser4);
unloadMovie (_root.path3.wall4.door2);
}
}
Instance of Symbol 447 MovieClip in Frame 9
onClipEvent (load) {
power = false;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
power = true;
}
if (this.power == true) {
this.gotoAndStop("on");
unloadMovie (_root.path3.wall4.door1);
}
}
Instance of Symbol 347 MovieClip "finish1" in Frame 9
onClipEvent (load) {
sounded = false;
finished = false;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (this.sounded == false)) {
_root.fin.start(0, 1);
}
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.player.fowF = 0;
_root.player.revF = 0;
this.sounded = true;
this.finished = true;
}
if (this.finished == true) {
_root.beaten3 = true;
_root.hud.timeTaken = _root.phud.tTotal.toString();
_root.hud.game = false;
_root.hud.gotoAndStop("finish");
if (_root.hud.score > _root.hs3) {
_root.hs3 = _root.hud.score.toString();
}
if (_root.hud.timeTaken < _root.bt3) {
_root.bt3 = _root.hud.timeTaken.toString();
}
}
}
Instance of Symbol 354 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.bPoints = _root.phud.bPoints + 50;
_root.noteSFX.start();
unloadMovie (this);
}
}
Instance of Symbol 354 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.bPoints = _root.phud.bPoints + 50;
_root.noteSFX.start();
unloadMovie (this);
}
}
Instance of Symbol 354 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.bPoints = _root.phud.bPoints + 50;
_root.noteSFX.start();
unloadMovie (this);
}
}
Instance of Symbol 484 MovieClip in Frame 9
onClipEvent (load) {
this.RA = 255;
this.RB = 255;
this.GA = 10;
this.GB = 30;
this.BA = 20;
this.BB = 255;
this.AA = 100;
this.AB = 100;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.health = _root.phud.health - 15;
}
}
onClipEvent (enterFrame) {
this.RA = (Math.random() * 205) + (Math.random() * 50);
this.RB = (Math.random() * 255) - (Math.random() * 50);
this.GA = (Math.random() * 255) - (Math.random() * 255);
this.GB = (Math.random() * 255) - (Math.random() * 255);
this.BA = (Math.random() * 255) - (Math.random() * 50);
this.BB = (Math.random() * 255) - (Math.random() * 50);
this.AA = (Math.random() * 25) + 50;
this.AB = (Math.random() * 25) + 50;
}
onClipEvent (enterFrame) {
var my_color = new Color(this);
var myColorTransform = {ra:this.RA, rb:this.RB, ga:this.GA, gb:this.GB, ba:this.BA, bb:this.BB, aa:this.AA, ab:this.AB};
my_color.setTransform(myColorTransform);
}
Instance of Symbol 486 MovieClip "laser4" in Frame 9
onClipEvent (load) {
this.RA = 255;
this.RB = 255;
this.GA = 10;
this.GB = 30;
this.BA = 20;
this.BB = 255;
this.AA = 100;
this.AB = 100;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.health = _root.phud.health - 100;
}
}
onClipEvent (enterFrame) {
this.RA = (Math.random() * 205) + (Math.random() * 50);
this.RB = (Math.random() * 255) - (Math.random() * 50);
this.GA = Math.random() * 0;
this.GB = Math.random() * 0;
this.BA = Math.random() * 50;
this.BB = Math.random() * 50;
this.AA = (Math.random() * 25) + 50;
this.AB = (Math.random() * 25) + 50;
}
onClipEvent (enterFrame) {
var my_color = new Color(this);
var myColorTransform = {ra:this.RA, rb:this.RB, ga:this.GA, gb:this.GB, ba:this.BA, bb:this.BB, aa:this.AA, ab:this.AB};
my_color.setTransform(myColorTransform);
}
Frame 10
stop();
stopAllSounds();
_root.songPlay = _root.lev4Song;
_root.songPlay.setVolume(100);
_root.phud.tCounter.timeLeft = 20;
_root.player._x = _root.start1._x;
_root.player._y = _root.start1._y;
_root.player._rotation = 180;
_root.hud.gotoAndPlay("levelStart");
Instance of Symbol 437 MovieClip in Frame 10
onClipEvent (load) {
this.RA = 255;
this.RB = 255;
this.GA = 10;
this.GB = 30;
this.BA = 20;
this.BB = 255;
this.AA = 100;
this.AB = 100;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.player._x = _root.warp1._x;
_root.player._y = _root.warp1._y;
} else {
_root.player._x = _root.player._x;
_root.player._y = _root.player._y;
}
}
onClipEvent (enterFrame) {
this.RA = Math.random() * 255;
this.RB = Math.random() * 255;
this.GA = Math.random() * 0;
this.GB = Math.random() * 0;
this.BA = Math.random() * 0;
this.BB = Math.random() * 0;
this.AA = (Math.random() * 50) + 50;
this.AB = (Math.random() * 50) + 50;
}
onClipEvent (enterFrame) {
var my_color = new Color(this);
var myColorTransform = {ra:this.RA, rb:this.RB, ga:this.GA, gb:this.GB, ba:this.BA, bb:this.BB, aa:this.AA, ab:this.AB};
my_color.setTransform(myColorTransform);
}
Instance of Symbol 439 MovieClip "warp1" in Frame 10
onClipEvent (load) {
this.RA = 255;
this.RB = 255;
this.GA = 10;
this.GB = 30;
this.BA = 20;
this.BB = 255;
this.AA = 100;
this.AB = 100;
}
onClipEvent (enterFrame) {
this.RA = Math.random() * 255;
this.RB = Math.random() * 255;
this.GA = Math.random() * 0;
this.GB = Math.random() * 0;
this.BA = Math.random() * 0;
this.BB = Math.random() * 0;
this.AA = (Math.random() * 50) + 50;
this.AB = (Math.random() * 50) + 50;
}
onClipEvent (enterFrame) {
var my_color = new Color(this);
var myColorTransform = {ra:this.RA, rb:this.RB, ga:this.GA, gb:this.GB, ba:this.BA, bb:this.BB, aa:this.AA, ab:this.AB};
my_color.setTransform(myColorTransform);
}
Instance of Symbol 437 MovieClip in Frame 10
onClipEvent (load) {
this.RA = 255;
this.RB = 255;
this.GA = 10;
this.GB = 30;
this.BA = 20;
this.BB = 255;
this.AA = 100;
this.AB = 100;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.player._x = _root.warp5._x;
_root.player._y = _root.warp5._y;
} else {
_root.player._x = _root.player._x;
_root.player._y = _root.player._y;
}
}
onClipEvent (enterFrame) {
this.RA = Math.random() * 0;
this.RB = Math.random() * 0;
this.GA = Math.random() * 255;
this.GB = Math.random() * 255;
this.BA = Math.random() * 255;
this.BB = Math.random() * 255;
this.AA = (Math.random() * 50) + 50;
this.AB = (Math.random() * 50) + 50;
}
onClipEvent (enterFrame) {
var my_color = new Color(this);
var myColorTransform = {ra:this.RA, rb:this.RB, ga:this.GA, gb:this.GB, ba:this.BA, bb:this.BB, aa:this.AA, ab:this.AB};
my_color.setTransform(myColorTransform);
}
Instance of Symbol 439 MovieClip "warp5" in Frame 10
onClipEvent (load) {
this.RA = 255;
this.RB = 255;
this.GA = 10;
this.GB = 30;
this.BA = 20;
this.BB = 255;
this.AA = 100;
this.AB = 100;
}
onClipEvent (enterFrame) {
this.RA = Math.random() * 0;
this.RB = Math.random() * 0;
this.GA = Math.random() * 255;
this.GB = Math.random() * 255;
this.BA = Math.random() * 255;
this.BB = Math.random() * 255;
this.AA = (Math.random() * 50) + 50;
this.AB = (Math.random() * 50) + 50;
}
onClipEvent (enterFrame) {
var my_color = new Color(this);
var myColorTransform = {ra:this.RA, rb:this.RB, ga:this.GA, gb:this.GB, ba:this.BA, bb:this.BB, aa:this.AA, ab:this.AB};
my_color.setTransform(myColorTransform);
}
Instance of Symbol 343 MovieClip in Frame 10
onClipEvent (load) {
tGive = 30;
checked = false;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (this.checked == false)) {
this.checked = true;
_root.chk.start();
}
if (this.checked == true) {
this.gotoAndStop("check");
}
}
Instance of Symbol 343 MovieClip in Frame 10
onClipEvent (load) {
tGive = 20;
checked = false;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (this.checked == false)) {
this.checked = true;
_root.chk.start();
}
if (this.checked == true) {
this.gotoAndStop("check");
}
}
Instance of Symbol 343 MovieClip in Frame 10
onClipEvent (load) {
tGive = 20;
checked = false;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (this.checked == false)) {
this.checked = true;
_root.chk.start();
}
if (this.checked == true) {
this.gotoAndStop("check");
}
}
Instance of Symbol 439 MovieClip "warp2" in Frame 10
onClipEvent (load) {
this.RA = 255;
this.RB = 255;
this.GA = 10;
this.GB = 30;
this.BA = 20;
this.BB = 255;
this.AA = 100;
this.AB = 100;
}
onClipEvent (enterFrame) {
this.RA = Math.random() * 0;
this.RB = Math.random() * 0;
this.GA = Math.random() * 255;
this.GB = Math.random() * 255;
this.BA = Math.random() * 0;
this.BB = Math.random() * 0;
this.AA = (Math.random() * 50) + 50;
this.AB = (Math.random() * 50) + 50;
}
onClipEvent (enterFrame) {
var my_color = new Color(this);
var myColorTransform = {ra:this.RA, rb:this.RB, ga:this.GA, gb:this.GB, ba:this.BA, bb:this.BB, aa:this.AA, ab:this.AB};
my_color.setTransform(myColorTransform);
}
Instance of Symbol 437 MovieClip in Frame 10
onClipEvent (load) {
this.RA = 255;
this.RB = 255;
this.GA = 10;
this.GB = 30;
this.BA = 20;
this.BB = 255;
this.AA = 100;
this.AB = 100;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.player._x = _root.warp2._x;
_root.player._y = _root.warp2._y;
} else {
_root.player._x = _root.player._x;
_root.player._y = _root.player._y;
}
}
onClipEvent (enterFrame) {
this.RA = Math.random() * 0;
this.RB = Math.random() * 0;
this.GA = Math.random() * 255;
this.GB = Math.random() * 255;
this.BA = Math.random() * 0;
this.BB = Math.random() * 0;
this.AA = (Math.random() * 50) + 50;
this.AB = (Math.random() * 50) + 50;
}
onClipEvent (enterFrame) {
var my_color = new Color(this);
var myColorTransform = {ra:this.RA, rb:this.RB, ga:this.GA, gb:this.GB, ba:this.BA, bb:this.BB, aa:this.AA, ab:this.AB};
my_color.setTransform(myColorTransform);
}
Instance of Symbol 354 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.bPoints = _root.phud.bPoints + 50;
_root.noteSFX.start();
unloadMovie (this);
}
}
Instance of Symbol 354 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.bPoints = _root.phud.bPoints + 50;
_root.noteSFX.start();
unloadMovie (this);
}
}
Instance of Symbol 354 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.bPoints = _root.phud.bPoints + 50;
_root.noteSFX.start();
unloadMovie (this);
}
}
Instance of Symbol 354 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.bPoints = _root.phud.bPoints + 50;
_root.noteSFX.start();
unloadMovie (this);
}
}
Instance of Symbol 354 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.bPoints = _root.phud.bPoints + 50;
_root.noteSFX.start();
unloadMovie (this);
}
}
Instance of Symbol 354 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.bPoints = _root.phud.bPoints + 50;
_root.noteSFX.start();
unloadMovie (this);
}
}
Instance of Symbol 354 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.bPoints = _root.phud.bPoints + 50;
_root.noteSFX.start();
unloadMovie (this);
}
}
Instance of Symbol 354 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.bPoints = _root.phud.bPoints + 50;
_root.noteSFX.start();
unloadMovie (this);
}
}
Instance of Symbol 354 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.bPoints = _root.phud.bPoints + 50;
_root.noteSFX.start();
unloadMovie (this);
}
}
Instance of Symbol 354 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.bPoints = _root.phud.bPoints + 50;
_root.noteSFX.start();
unloadMovie (this);
}
}
Instance of Symbol 343 MovieClip in Frame 10
onClipEvent (load) {
tGive = 20;
checked = false;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (this.checked == false)) {
this.checked = true;
_root.chk.start();
}
if (this.checked == true) {
this.gotoAndStop("check");
}
}
Instance of Symbol 347 MovieClip "finish1" in Frame 10
onClipEvent (load) {
sounded = false;
finished = false;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (this.sounded == false)) {
_root.fin.start(0, 1);
}
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.player.fowF = 0;
_root.player.revF = 0;
this.sounded = true;
this.finished = true;
}
if (this.finished == true) {
_root.beaten4 = true;
_root.hud.timeTaken = _root.phud.tTotal.toString();
_root.hud.game = false;
_root.hud.gotoAndStop("finish");
if (_root.hud.score > _root.hs4) {
_root.hs4 = _root.hud.score.toString();
}
if (_root.hud.timeTaken < _root.bt4) {
_root.bt4 = _root.hud.timeTaken.toString();
}
}
}
Frame 11
stop();
stopAllSounds();
_root.songPlay = _root.lev4Song;
_root.songPlay.setVolume(100);
_root.phud.tCounter.timeLeft = 150;
_root.player._x = _root.start1._x;
_root.player._y = _root.start1._y;
_root.player._rotation = 180;
_root.hud.gotoAndPlay("levelStart");
Instance of Symbol 347 MovieClip "finish1" in Frame 11
onClipEvent (load) {
sounded = false;
finished = false;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (this.sounded == false)) {
_root.fin.start(0, 1);
}
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.player.fowF = 0;
_root.player.revF = 0;
this.sounded = true;
this.finished = true;
}
if (this.finished == true) {
_root.beaten5 = true;
_root.hud.timeTaken = _root.phud.tTotal.toString();
_root.hud.game = false;
_root.hud.gotoAndStop("finish");
if (_root.hud.score > _root.hs5) {
_root.hs5 = _root.hud.score.toString();
}
if (_root.hud.timeTaken < _root.bt5) {
_root.bt5 = _root.hud.timeTaken.toString();
}
}
}
Frame 12
stop();
stopAllSounds();
_root.songPlay = _root.lev5Song;
_root.songPlay.setVolume(100);
_root.phud.tCounter.timeLeft = 15;
_root.player._x = _root.start1._x;
_root.player._y = _root.start1._y;
_root.player._rotation = 180;
_root.hud.gotoAndPlay("levelStart");
Instance of Symbol 504 MovieClip in Frame 12
onClipEvent (load) {
this.maxC = 150;
this.minC = 50;
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
}
onClipEvent (enterFrame) {
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
this._alpha = 100 - this.percentC;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.health = _root.phud.health - 500;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd > 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.revF = _root.player.revF + _root.player.fowF;
_root.player.fowF = 0;
} else if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd < 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.fowF = _root.player.fowF + _root.player.revF;
_root.player.revF = 0;
}
}
Instance of Symbol 504 MovieClip in Frame 12
onClipEvent (load) {
this.maxC = 150;
this.minC = 50;
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
}
onClipEvent (enterFrame) {
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
this._alpha = 100 - this.percentC;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.health = _root.phud.health - 500;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd > 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.revF = _root.player.revF + _root.player.fowF;
_root.player.fowF = 0;
} else if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd < 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.fowF = _root.player.fowF + _root.player.revF;
_root.player.revF = 0;
}
}
Instance of Symbol 504 MovieClip in Frame 12
onClipEvent (load) {
this.maxC = 150;
this.minC = 50;
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
}
onClipEvent (enterFrame) {
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
this._alpha = 100 - this.percentC;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.health = _root.phud.health - 500;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd > 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.revF = _root.player.revF + _root.player.fowF;
_root.player.fowF = 0;
} else if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd < 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.fowF = _root.player.fowF + _root.player.revF;
_root.player.revF = 0;
}
}
Instance of Symbol 504 MovieClip in Frame 12
onClipEvent (load) {
this.maxC = 150;
this.minC = 50;
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
}
onClipEvent (enterFrame) {
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
this._alpha = 100 - this.percentC;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.health = _root.phud.health - 500;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd > 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.revF = _root.player.revF + _root.player.fowF;
_root.player.fowF = 0;
} else if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd < 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.fowF = _root.player.fowF + _root.player.revF;
_root.player.revF = 0;
}
}
Instance of Symbol 504 MovieClip in Frame 12
onClipEvent (load) {
this.maxC = 150;
this.minC = 50;
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
}
onClipEvent (enterFrame) {
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
this._alpha = 100 - this.percentC;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.health = _root.phud.health - 500;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd > 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.revF = _root.player.revF + _root.player.fowF;
_root.player.fowF = 0;
} else if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd < 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.fowF = _root.player.fowF + _root.player.revF;
_root.player.revF = 0;
}
}
Instance of Symbol 504 MovieClip in Frame 12
onClipEvent (load) {
this.maxC = 150;
this.minC = 50;
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
}
onClipEvent (enterFrame) {
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
this._alpha = 100 - this.percentC;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.health = _root.phud.health - 500;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd > 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.revF = _root.player.revF + _root.player.fowF;
_root.player.fowF = 0;
} else if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd < 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.fowF = _root.player.fowF + _root.player.revF;
_root.player.revF = 0;
}
}
Instance of Symbol 504 MovieClip in Frame 12
onClipEvent (load) {
this.maxC = 150;
this.minC = 50;
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
}
onClipEvent (enterFrame) {
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
this._alpha = 100 - this.percentC;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.health = _root.phud.health - 500;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd > 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.revF = _root.player.revF + _root.player.fowF;
_root.player.fowF = 0;
} else if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd < 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.fowF = _root.player.fowF + _root.player.revF;
_root.player.revF = 0;
}
}
Instance of Symbol 504 MovieClip in Frame 12
onClipEvent (load) {
this.maxC = 150;
this.minC = 50;
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
}
onClipEvent (enterFrame) {
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
this._alpha = 100 - this.percentC;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.health = _root.phud.health - 500;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd > 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.revF = _root.player.revF + _root.player.fowF;
_root.player.fowF = 0;
} else if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd < 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.fowF = _root.player.fowF + _root.player.revF;
_root.player.revF = 0;
}
}
Instance of Symbol 504 MovieClip in Frame 12
onClipEvent (load) {
this.maxC = 150;
this.minC = 50;
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
}
onClipEvent (enterFrame) {
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
this._alpha = 100 - this.percentC;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.health = _root.phud.health - 500;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd > 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.revF = _root.player.revF + _root.player.fowF;
_root.player.fowF = 0;
} else if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd < 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.fowF = _root.player.fowF + _root.player.revF;
_root.player.revF = 0;
}
}
Instance of Symbol 504 MovieClip in Frame 12
onClipEvent (load) {
this.maxC = 150;
this.minC = 50;
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
}
onClipEvent (enterFrame) {
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
this._alpha = 100 - this.percentC;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.health = _root.phud.health - 500;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd > 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.revF = _root.player.revF + _root.player.fowF;
_root.player.fowF = 0;
} else if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd < 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.fowF = _root.player.fowF + _root.player.revF;
_root.player.revF = 0;
}
}
Instance of Symbol 504 MovieClip in Frame 12
onClipEvent (load) {
this.maxC = 150;
this.minC = 50;
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
}
onClipEvent (enterFrame) {
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
this._alpha = 100 - this.percentC;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.health = _root.phud.health - 500;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd > 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.revF = _root.player.revF + _root.player.fowF;
_root.player.fowF = 0;
} else if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd < 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.fowF = _root.player.fowF + _root.player.revF;
_root.player.revF = 0;
}
}
Instance of Symbol 504 MovieClip in Frame 12
onClipEvent (load) {
this.maxC = 150;
this.minC = 50;
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
}
onClipEvent (enterFrame) {
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
this._alpha = 100 - this.percentC;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.health = _root.phud.health - 500;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd > 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.revF = _root.player.revF + _root.player.fowF;
_root.player.fowF = 0;
} else if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd < 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.fowF = _root.player.fowF + _root.player.revF;
_root.player.revF = 0;
}
}
Instance of Symbol 504 MovieClip in Frame 12
onClipEvent (load) {
this.maxC = 150;
this.minC = 50;
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
}
onClipEvent (enterFrame) {
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
this._alpha = 100 - this.percentC;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.health = _root.phud.health - 500;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd > 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.revF = _root.player.revF + _root.player.fowF;
_root.player.fowF = 0;
} else if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd < 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.fowF = _root.player.fowF + _root.player.revF;
_root.player.revF = 0;
}
}
Instance of Symbol 504 MovieClip in Frame 12
onClipEvent (load) {
this.maxC = 150;
this.minC = 50;
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
}
onClipEvent (enterFrame) {
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
this._alpha = 100 - this.percentC;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.health = _root.phud.health - 500;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd > 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.revF = _root.player.revF + _root.player.fowF;
_root.player.fowF = 0;
} else if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd < 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.fowF = _root.player.fowF + _root.player.revF;
_root.player.revF = 0;
}
}
Instance of Symbol 504 MovieClip in Frame 12
onClipEvent (load) {
this.maxC = 150;
this.minC = 50;
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
}
onClipEvent (enterFrame) {
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
this._alpha = 100 - this.percentC;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.health = _root.phud.health - 500;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd > 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.revF = _root.player.revF + _root.player.fowF;
_root.player.fowF = 0;
} else if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd < 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.fowF = _root.player.fowF + _root.player.revF;
_root.player.revF = 0;
}
}
Instance of Symbol 504 MovieClip in Frame 12
onClipEvent (load) {
this.maxC = 150;
this.minC = 50;
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
}
onClipEvent (enterFrame) {
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
this._alpha = 100 - this.percentC;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.health = _root.phud.health - 500;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd > 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.revF = _root.player.revF + _root.player.fowF;
_root.player.fowF = 0;
} else if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd < 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.fowF = _root.player.fowF + _root.player.revF;
_root.player.revF = 0;
}
}
Instance of Symbol 504 MovieClip in Frame 12
onClipEvent (load) {
this.maxC = 150;
this.minC = 50;
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
}
onClipEvent (enterFrame) {
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
this._alpha = 100 - this.percentC;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.health = _root.phud.health - 500;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd > 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.revF = _root.player.revF + _root.player.fowF;
_root.player.fowF = 0;
} else if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd < 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.fowF = _root.player.fowF + _root.player.revF;
_root.player.revF = 0;
}
}
Instance of Symbol 504 MovieClip in Frame 12
onClipEvent (load) {
this.maxC = 150;
this.minC = 50;
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
}
onClipEvent (enterFrame) {
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
this._alpha = 100 - this.percentC;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.health = _root.phud.health - 500;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd > 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.revF = _root.player.revF + _root.player.fowF;
_root.player.fowF = 0;
} else if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd < 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.fowF = _root.player.fowF + _root.player.revF;
_root.player.revF = 0;
}
}
Instance of Symbol 504 MovieClip in Frame 12
onClipEvent (load) {
this.maxC = 150;
this.minC = 50;
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
}
onClipEvent (enterFrame) {
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
this._alpha = 100 - this.percentC;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.health = _root.phud.health - 500;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd > 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.revF = _root.player.revF + _root.player.fowF;
_root.player.fowF = 0;
} else if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd < 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.fowF = _root.player.fowF + _root.player.revF;
_root.player.revF = 0;
}
}
Instance of Symbol 504 MovieClip in Frame 12
onClipEvent (load) {
this.maxC = 150;
this.minC = 50;
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
}
onClipEvent (enterFrame) {
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
this._alpha = 100 - this.percentC;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.health = _root.phud.health - 500;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd > 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.revF = _root.player.revF + _root.player.fowF;
_root.player.fowF = 0;
} else if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd < 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.fowF = _root.player.fowF + _root.player.revF;
_root.player.revF = 0;
}
}
Instance of Symbol 504 MovieClip in Frame 12
onClipEvent (load) {
this.maxC = 150;
this.minC = 50;
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
}
onClipEvent (enterFrame) {
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
this._alpha = 100 - this.percentC;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.health = _root.phud.health - 500;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd > 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.revF = _root.player.revF + _root.player.fowF;
_root.player.fowF = 0;
} else if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd < 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.fowF = _root.player.fowF + _root.player.revF;
_root.player.revF = 0;
}
}
Instance of Symbol 504 MovieClip in Frame 12
onClipEvent (load) {
this.maxC = 150;
this.minC = 50;
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
}
onClipEvent (enterFrame) {
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
this._alpha = 100 - this.percentC;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.health = _root.phud.health - 500;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd > 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.revF = _root.player.revF + _root.player.fowF;
_root.player.fowF = 0;
} else if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd < 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.fowF = _root.player.fowF + _root.player.revF;
_root.player.revF = 0;
}
}
Instance of Symbol 504 MovieClip in Frame 12
onClipEvent (load) {
this.maxC = 150;
this.minC = 50;
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
}
onClipEvent (enterFrame) {
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
this._alpha = 100 - this.percentC;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.health = _root.phud.health - 500;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd > 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.revF = _root.player.revF + _root.player.fowF;
_root.player.fowF = 0;
} else if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd < 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.fowF = _root.player.fowF + _root.player.revF;
_root.player.revF = 0;
}
}
Instance of Symbol 504 MovieClip in Frame 12
onClipEvent (load) {
this.maxC = 150;
this.minC = 50;
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
}
onClipEvent (enterFrame) {
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
this._alpha = 100 - this.percentC;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.health = _root.phud.health - 500;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd > 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.revF = _root.player.revF + _root.player.fowF;
_root.player.fowF = 0;
} else if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd < 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.fowF = _root.player.fowF + _root.player.revF;
_root.player.revF = 0;
}
}
Instance of Symbol 504 MovieClip in Frame 12
onClipEvent (load) {
this.maxC = 150;
this.minC = 50;
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
}
onClipEvent (enterFrame) {
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
this._alpha = 100 - this.percentC;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.health = _root.phud.health - 500;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd > 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.revF = _root.player.revF + _root.player.fowF;
_root.player.fowF = 0;
} else if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd < 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.fowF = _root.player.fowF + _root.player.revF;
_root.player.revF = 0;
}
}
Instance of Symbol 504 MovieClip in Frame 12
onClipEvent (load) {
this.maxC = 150;
this.minC = 50;
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
}
onClipEvent (enterFrame) {
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
this._alpha = 100 - this.percentC;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.health = _root.phud.health - 500;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd > 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.revF = _root.player.revF + _root.player.fowF;
_root.player.fowF = 0;
} else if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd < 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.fowF = _root.player.fowF + _root.player.revF;
_root.player.revF = 0;
}
}
Instance of Symbol 504 MovieClip in Frame 12
onClipEvent (load) {
this.maxC = 150;
this.minC = 50;
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
}
onClipEvent (enterFrame) {
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
this._alpha = 100 - this.percentC;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.health = _root.phud.health - 500;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd > 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.revF = _root.player.revF + _root.player.fowF;
_root.player.fowF = 0;
} else if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd < 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.fowF = _root.player.fowF + _root.player.revF;
_root.player.revF = 0;
}
}
Instance of Symbol 504 MovieClip in Frame 12
onClipEvent (load) {
this.maxC = 150;
this.minC = 50;
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
}
onClipEvent (enterFrame) {
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
this._alpha = 100 - this.percentC;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.health = _root.phud.health - 500;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd > 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.revF = _root.player.revF + _root.player.fowF;
_root.player.fowF = 0;
} else if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd < 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.fowF = _root.player.fowF + _root.player.revF;
_root.player.revF = 0;
}
}
Instance of Symbol 504 MovieClip in Frame 12
onClipEvent (load) {
this.maxC = 150;
this.minC = 50;
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
}
onClipEvent (enterFrame) {
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
this._alpha = 100 - this.percentC;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.health = _root.phud.health - 500;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd > 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.revF = _root.player.revF + _root.player.fowF;
_root.player.fowF = 0;
} else if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd < 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.fowF = _root.player.fowF + _root.player.revF;
_root.player.revF = 0;
}
}
Instance of Symbol 504 MovieClip in Frame 12
onClipEvent (load) {
this.maxC = 150;
this.minC = 50;
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
}
onClipEvent (enterFrame) {
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
this._alpha = 100 - this.percentC;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.health = _root.phud.health - 500;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd > 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.revF = _root.player.revF + _root.player.fowF;
_root.player.fowF = 0;
} else if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd < 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.fowF = _root.player.fowF + _root.player.revF;
_root.player.revF = 0;
}
}
Instance of Symbol 504 MovieClip in Frame 12
onClipEvent (load) {
this.maxC = 150;
this.minC = 50;
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
}
onClipEvent (enterFrame) {
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
this._alpha = 100 - this.percentC;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.health = _root.phud.health - 500;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd > 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.revF = _root.player.revF + _root.player.fowF;
_root.player.fowF = 0;
} else if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd < 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.fowF = _root.player.fowF + _root.player.revF;
_root.player.revF = 0;
}
}
Instance of Symbol 504 MovieClip in Frame 12
onClipEvent (load) {
this.maxC = 150;
this.minC = 50;
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
}
onClipEvent (enterFrame) {
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
this._alpha = 100 - this.percentC;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.health = _root.phud.health - 500;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd > 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.revF = _root.player.revF + _root.player.fowF;
_root.player.fowF = 0;
} else if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd < 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.fowF = _root.player.fowF + _root.player.revF;
_root.player.revF = 0;
}
}
Instance of Symbol 504 MovieClip in Frame 12
onClipEvent (load) {
this.maxC = 150;
this.minC = 50;
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
}
onClipEvent (enterFrame) {
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
this._alpha = 100 - this.percentC;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.health = _root.phud.health - 500;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd > 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.revF = _root.player.revF + _root.player.fowF;
_root.player.fowF = 0;
} else if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd < 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.fowF = _root.player.fowF + _root.player.revF;
_root.player.revF = 0;
}
}
Instance of Symbol 504 MovieClip in Frame 12
onClipEvent (load) {
this.maxC = 150;
this.minC = 50;
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
}
onClipEvent (enterFrame) {
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
this._alpha = 100 - this.percentC;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.health = _root.phud.health - 500;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd > 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.revF = _root.player.revF + _root.player.fowF;
_root.player.fowF = 0;
} else if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd < 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.fowF = _root.player.fowF + _root.player.revF;
_root.player.revF = 0;
}
}
Instance of Symbol 504 MovieClip in Frame 12
onClipEvent (load) {
this.maxC = 150;
this.minC = 50;
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
}
onClipEvent (enterFrame) {
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
this._alpha = 100 - this.percentC;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.health = _root.phud.health - 500;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd > 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.revF = _root.player.revF + _root.player.fowF;
_root.player.fowF = 0;
} else if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd < 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.fowF = _root.player.fowF + _root.player.revF;
_root.player.revF = 0;
}
}
Instance of Symbol 504 MovieClip in Frame 12
onClipEvent (load) {
this.maxC = 150;
this.minC = 50;
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
}
onClipEvent (enterFrame) {
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
this._alpha = 100 - this.percentC;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.health = _root.phud.health - 500;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd > 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.revF = _root.player.revF + _root.player.fowF;
_root.player.fowF = 0;
} else if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd < 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.fowF = _root.player.fowF + _root.player.revF;
_root.player.revF = 0;
}
}
Instance of Symbol 504 MovieClip in Frame 12
onClipEvent (load) {
this.maxC = 150;
this.minC = 50;
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
}
onClipEvent (enterFrame) {
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
this._alpha = 100 - this.percentC;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.health = _root.phud.health - 500;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd > 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.revF = _root.player.revF + _root.player.fowF;
_root.player.fowF = 0;
} else if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd < 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.fowF = _root.player.fowF + _root.player.revF;
_root.player.revF = 0;
}
}
Instance of Symbol 504 MovieClip in Frame 12
onClipEvent (load) {
this.maxC = 150;
this.minC = 50;
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
}
onClipEvent (enterFrame) {
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
this._alpha = 100 - this.percentC;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.health = _root.phud.health - 500;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd > 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.revF = _root.player.revF + _root.player.fowF;
_root.player.fowF = 0;
} else if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd < 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.fowF = _root.player.fowF + _root.player.revF;
_root.player.revF = 0;
}
}
Instance of Symbol 504 MovieClip in Frame 12
onClipEvent (load) {
this.maxC = 150;
this.minC = 50;
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
}
onClipEvent (enterFrame) {
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
this._alpha = 100 - this.percentC;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.health = _root.phud.health - 500;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd > 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.revF = _root.player.revF + _root.player.fowF;
_root.player.fowF = 0;
} else if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd < 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.fowF = _root.player.fowF + _root.player.revF;
_root.player.revF = 0;
}
}
Instance of Symbol 504 MovieClip in Frame 12
onClipEvent (load) {
this.maxC = 150;
this.minC = 50;
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
}
onClipEvent (enterFrame) {
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
this._alpha = 100 - this.percentC;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.health = _root.phud.health - 500;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd > 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.revF = _root.player.revF + _root.player.fowF;
_root.player.fowF = 0;
} else if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd < 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.fowF = _root.player.fowF + _root.player.revF;
_root.player.revF = 0;
}
}
Instance of Symbol 504 MovieClip in Frame 12
onClipEvent (load) {
this.maxC = 150;
this.minC = 50;
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
}
onClipEvent (enterFrame) {
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
this._alpha = 100 - this.percentC;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.health = _root.phud.health - 500;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd > 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.revF = _root.player.revF + _root.player.fowF;
_root.player.fowF = 0;
} else if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd < 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.fowF = _root.player.fowF + _root.player.revF;
_root.player.revF = 0;
}
}
Instance of Symbol 504 MovieClip in Frame 12
onClipEvent (load) {
this.maxC = 150;
this.minC = 50;
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
}
onClipEvent (enterFrame) {
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
this._alpha = 100 - this.percentC;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.health = _root.phud.health - 500;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd > 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.revF = _root.player.revF + _root.player.fowF;
_root.player.fowF = 0;
} else if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd < 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.fowF = _root.player.fowF + _root.player.revF;
_root.player.revF = 0;
}
}
Instance of Symbol 504 MovieClip in Frame 12
onClipEvent (load) {
this.maxC = 150;
this.minC = 50;
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
}
onClipEvent (enterFrame) {
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
this._alpha = 100 - this.percentC;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.health = _root.phud.health - 500;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd > 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.revF = _root.player.revF + _root.player.fowF;
_root.player.fowF = 0;
} else if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd < 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.fowF = _root.player.fowF + _root.player.revF;
_root.player.revF = 0;
}
}
Instance of Symbol 504 MovieClip in Frame 12
onClipEvent (load) {
this.maxC = 150;
this.minC = 50;
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
}
onClipEvent (enterFrame) {
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
this._alpha = 100 - this.percentC;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.health = _root.phud.health - 500;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd > 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.revF = _root.player.revF + _root.player.fowF;
_root.player.fowF = 0;
} else if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd < 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.fowF = _root.player.fowF + _root.player.revF;
_root.player.revF = 0;
}
}
Instance of Symbol 504 MovieClip in Frame 12
onClipEvent (load) {
this.maxC = 150;
this.minC = 50;
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
}
onClipEvent (enterFrame) {
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
this._alpha = 100 - this.percentC;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.health = _root.phud.health - 500;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd > 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.revF = _root.player.revF + _root.player.fowF;
_root.player.fowF = 0;
} else if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd < 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.fowF = _root.player.fowF + _root.player.revF;
_root.player.revF = 0;
}
}
Instance of Symbol 504 MovieClip in Frame 12
onClipEvent (load) {
this.maxC = 150;
this.minC = 50;
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
}
onClipEvent (enterFrame) {
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
this._alpha = 100 - this.percentC;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.health = _root.phud.health - 500;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd > 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.revF = _root.player.revF + _root.player.fowF;
_root.player.fowF = 0;
} else if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd < 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.fowF = _root.player.fowF + _root.player.revF;
_root.player.revF = 0;
}
}
Instance of Symbol 504 MovieClip in Frame 12
onClipEvent (load) {
this.maxC = 150;
this.minC = 50;
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
}
onClipEvent (enterFrame) {
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
this._alpha = 100 - this.percentC;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.health = _root.phud.health - 500;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd > 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.revF = _root.player.revF + _root.player.fowF;
_root.player.fowF = 0;
} else if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd < 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.fowF = _root.player.fowF + _root.player.revF;
_root.player.revF = 0;
}
}
Instance of Symbol 504 MovieClip in Frame 12
onClipEvent (load) {
this.maxC = 150;
this.minC = 50;
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
}
onClipEvent (enterFrame) {
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
this._alpha = 100 - this.percentC;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.health = _root.phud.health - 500;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd > 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.revF = _root.player.revF + _root.player.fowF;
_root.player.fowF = 0;
} else if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd < 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.fowF = _root.player.fowF + _root.player.revF;
_root.player.revF = 0;
}
}
Instance of Symbol 504 MovieClip in Frame 12
onClipEvent (load) {
this.maxC = 150;
this.minC = 50;
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
}
onClipEvent (enterFrame) {
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
this._alpha = 100 - this.percentC;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.health = _root.phud.health - 500;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd > 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.revF = _root.player.revF + _root.player.fowF;
_root.player.fowF = 0;
} else if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd < 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.fowF = _root.player.fowF + _root.player.revF;
_root.player.revF = 0;
}
}
Instance of Symbol 504 MovieClip in Frame 12
onClipEvent (load) {
this.maxC = 150;
this.minC = 50;
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
}
onClipEvent (enterFrame) {
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
this._alpha = 100 - this.percentC;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.health = _root.phud.health - 500;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd > 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.revF = _root.player.revF + _root.player.fowF;
_root.player.fowF = 0;
} else if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd < 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.fowF = _root.player.fowF + _root.player.revF;
_root.player.revF = 0;
}
}
Instance of Symbol 504 MovieClip in Frame 12
onClipEvent (load) {
this.maxC = 150;
this.minC = 50;
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
}
onClipEvent (enterFrame) {
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
this._alpha = 100 - this.percentC;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.health = _root.phud.health - 500;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd > 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.revF = _root.player.revF + _root.player.fowF;
_root.player.fowF = 0;
} else if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd < 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.fowF = _root.player.fowF + _root.player.revF;
_root.player.revF = 0;
}
}
Instance of Symbol 504 MovieClip in Frame 12
onClipEvent (load) {
this.maxC = 150;
this.minC = 50;
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
}
onClipEvent (enterFrame) {
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
this._alpha = 100 - this.percentC;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.health = _root.phud.health - 500;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd > 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.revF = _root.player.revF + _root.player.fowF;
_root.player.fowF = 0;
} else if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd < 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.fowF = _root.player.fowF + _root.player.revF;
_root.player.revF = 0;
}
}
Instance of Symbol 504 MovieClip in Frame 12
onClipEvent (load) {
this.maxC = 150;
this.minC = 50;
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
}
onClipEvent (enterFrame) {
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
this._alpha = 100 - this.percentC;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.health = _root.phud.health - 500;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd > 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.revF = _root.player.revF + _root.player.fowF;
_root.player.fowF = 0;
} else if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd < 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.fowF = _root.player.fowF + _root.player.revF;
_root.player.revF = 0;
}
}
Instance of Symbol 504 MovieClip in Frame 12
onClipEvent (load) {
this.maxC = 150;
this.minC = 50;
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
}
onClipEvent (enterFrame) {
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
this._alpha = 100 - this.percentC;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.health = _root.phud.health - 500;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd > 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.revF = _root.player.revF + _root.player.fowF;
_root.player.fowF = 0;
} else if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd < 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.fowF = _root.player.fowF + _root.player.revF;
_root.player.revF = 0;
}
}
Instance of Symbol 504 MovieClip in Frame 12
onClipEvent (load) {
this.maxC = 150;
this.minC = 50;
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
}
onClipEvent (enterFrame) {
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
this._alpha = 100 - this.percentC;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.health = _root.phud.health - 500;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd > 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.revF = _root.player.revF + _root.player.fowF;
_root.player.fowF = 0;
} else if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd < 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.fowF = _root.player.fowF + _root.player.revF;
_root.player.revF = 0;
}
}
Instance of Symbol 504 MovieClip in Frame 12
onClipEvent (load) {
this.maxC = 150;
this.minC = 50;
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
}
onClipEvent (enterFrame) {
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
this._alpha = 100 - this.percentC;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.health = _root.phud.health - 500;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd > 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.revF = _root.player.revF + _root.player.fowF;
_root.player.fowF = 0;
} else if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd < 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.fowF = _root.player.fowF + _root.player.revF;
_root.player.revF = 0;
}
}
Instance of Symbol 504 MovieClip in Frame 12
onClipEvent (load) {
this.maxC = 150;
this.minC = 50;
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
}
onClipEvent (enterFrame) {
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
this._alpha = 100 - this.percentC;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.health = _root.phud.health - 500;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd > 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.revF = _root.player.revF + _root.player.fowF;
_root.player.fowF = 0;
} else if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd < 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.fowF = _root.player.fowF + _root.player.revF;
_root.player.revF = 0;
}
}
Instance of Symbol 504 MovieClip in Frame 12
onClipEvent (load) {
this.maxC = 150;
this.minC = 50;
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
}
onClipEvent (enterFrame) {
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
this._alpha = 100 - this.percentC;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.health = _root.phud.health - 500;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd > 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.revF = _root.player.revF + _root.player.fowF;
_root.player.fowF = 0;
} else if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd < 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.fowF = _root.player.fowF + _root.player.revF;
_root.player.revF = 0;
}
}
Instance of Symbol 504 MovieClip in Frame 12
onClipEvent (load) {
this.maxC = 150;
this.minC = 50;
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
}
onClipEvent (enterFrame) {
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
this._alpha = 100 - this.percentC;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.health = _root.phud.health - 500;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd > 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.revF = _root.player.revF + _root.player.fowF;
_root.player.fowF = 0;
} else if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd < 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.fowF = _root.player.fowF + _root.player.revF;
_root.player.revF = 0;
}
}
Instance of Symbol 504 MovieClip in Frame 12
onClipEvent (load) {
this.maxC = 150;
this.minC = 50;
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
}
onClipEvent (enterFrame) {
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
this._alpha = 100 - this.percentC;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.health = _root.phud.health - 500;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd > 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.revF = _root.player.revF + _root.player.fowF;
_root.player.fowF = 0;
} else if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd < 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.fowF = _root.player.fowF + _root.player.revF;
_root.player.revF = 0;
}
}
Instance of Symbol 504 MovieClip in Frame 12
onClipEvent (load) {
this.maxC = 150;
this.minC = 50;
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
}
onClipEvent (enterFrame) {
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
this._alpha = 100 - this.percentC;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.health = _root.phud.health - 500;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd > 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.revF = _root.player.revF + _root.player.fowF;
_root.player.fowF = 0;
} else if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd < 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.fowF = _root.player.fowF + _root.player.revF;
_root.player.revF = 0;
}
}
Instance of Symbol 504 MovieClip in Frame 12
onClipEvent (load) {
this.maxC = 150;
this.minC = 50;
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
}
onClipEvent (enterFrame) {
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
this._alpha = 100 - this.percentC;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.health = _root.phud.health - 500;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd > 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.revF = _root.player.revF + _root.player.fowF;
_root.player.fowF = 0;
} else if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd < 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.fowF = _root.player.fowF + _root.player.revF;
_root.player.revF = 0;
}
}
Instance of Symbol 504 MovieClip in Frame 12
onClipEvent (load) {
this.maxC = 150;
this.minC = 50;
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
}
onClipEvent (enterFrame) {
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
this._alpha = 100 - this.percentC;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.health = _root.phud.health - 500;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd > 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.revF = _root.player.revF + _root.player.fowF;
_root.player.fowF = 0;
} else if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd < 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.fowF = _root.player.fowF + _root.player.revF;
_root.player.revF = 0;
}
}
Instance of Symbol 504 MovieClip in Frame 12
onClipEvent (load) {
this.maxC = 150;
this.minC = 50;
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
}
onClipEvent (enterFrame) {
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
this._alpha = 100 - this.percentC;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.health = _root.phud.health - 500;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd > 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.revF = _root.player.revF + _root.player.fowF;
_root.player.fowF = 0;
} else if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd < 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.fowF = _root.player.fowF + _root.player.revF;
_root.player.revF = 0;
}
}
Instance of Symbol 504 MovieClip in Frame 12
onClipEvent (load) {
this.maxC = 150;
this.minC = 50;
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
}
onClipEvent (enterFrame) {
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
this._alpha = 100 - this.percentC;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.health = _root.phud.health - 500;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd > 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.revF = _root.player.revF + _root.player.fowF;
_root.player.fowF = 0;
} else if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd < 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.fowF = _root.player.fowF + _root.player.revF;
_root.player.revF = 0;
}
}
Instance of Symbol 504 MovieClip in Frame 12
onClipEvent (load) {
this.maxC = 150;
this.minC = 50;
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
}
onClipEvent (enterFrame) {
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
this._alpha = 100 - this.percentC;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.health = _root.phud.health - 500;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd > 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.revF = _root.player.revF + _root.player.fowF;
_root.player.fowF = 0;
} else if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd < 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.fowF = _root.player.fowF + _root.player.revF;
_root.player.revF = 0;
}
}
Instance of Symbol 504 MovieClip in Frame 12
onClipEvent (load) {
this.maxC = 150;
this.minC = 50;
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
}
onClipEvent (enterFrame) {
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
this._alpha = 100 - this.percentC;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.health = _root.phud.health - 500;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd > 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.revF = _root.player.revF + _root.player.fowF;
_root.player.fowF = 0;
} else if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd < 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.fowF = _root.player.fowF + _root.player.revF;
_root.player.revF = 0;
}
}
Instance of Symbol 504 MovieClip in Frame 12
onClipEvent (load) {
this.maxC = 150;
this.minC = 50;
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
}
onClipEvent (enterFrame) {
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
this._alpha = 100 - this.percentC;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.health = _root.phud.health - 500;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd > 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.revF = _root.player.revF + _root.player.fowF;
_root.player.fowF = 0;
} else if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd < 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.fowF = _root.player.fowF + _root.player.revF;
_root.player.revF = 0;
}
}
Instance of Symbol 504 MovieClip in Frame 12
onClipEvent (load) {
this.maxC = 150;
this.minC = 50;
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
}
onClipEvent (enterFrame) {
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
this._alpha = 100 - this.percentC;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.health = _root.phud.health - 500;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd > 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.revF = _root.player.revF + _root.player.fowF;
_root.player.fowF = 0;
} else if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd < 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.fowF = _root.player.fowF + _root.player.revF;
_root.player.revF = 0;
}
}
Instance of Symbol 504 MovieClip in Frame 12
onClipEvent (load) {
this.maxC = 150;
this.minC = 50;
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
}
onClipEvent (enterFrame) {
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
this._alpha = 100 - this.percentC;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.health = _root.phud.health - 500;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd > 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.revF = _root.player.revF + _root.player.fowF;
_root.player.fowF = 0;
} else if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd < 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.fowF = _root.player.fowF + _root.player.revF;
_root.player.revF = 0;
}
}
Instance of Symbol 504 MovieClip in Frame 12
onClipEvent (load) {
this.maxC = 150;
this.minC = 50;
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
}
onClipEvent (enterFrame) {
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
this._alpha = 100 - this.percentC;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.health = _root.phud.health - 500;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd > 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.revF = _root.player.revF + _root.player.fowF;
_root.player.fowF = 0;
} else if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd < 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.fowF = _root.player.fowF + _root.player.revF;
_root.player.revF = 0;
}
}
Instance of Symbol 504 MovieClip in Frame 12
onClipEvent (load) {
this.maxC = 150;
this.minC = 50;
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
}
onClipEvent (enterFrame) {
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
this._alpha = 100 - this.percentC;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.health = _root.phud.health - 500;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd > 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.revF = _root.player.revF + _root.player.fowF;
_root.player.fowF = 0;
} else if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd < 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.fowF = _root.player.fowF + _root.player.revF;
_root.player.revF = 0;
}
}
Instance of Symbol 504 MovieClip in Frame 12
onClipEvent (load) {
this.maxC = 150;
this.minC = 50;
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
}
onClipEvent (enterFrame) {
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
this._alpha = 100 - this.percentC;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.health = _root.phud.health - 500;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd > 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.revF = _root.player.revF + _root.player.fowF;
_root.player.fowF = 0;
} else if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd < 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.fowF = _root.player.fowF + _root.player.revF;
_root.player.revF = 0;
}
}
Instance of Symbol 504 MovieClip in Frame 12
onClipEvent (load) {
this.maxC = 150;
this.minC = 50;
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
}
onClipEvent (enterFrame) {
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
this._alpha = 100 - this.percentC;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.health = _root.phud.health - 500;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd > 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.revF = _root.player.revF + _root.player.fowF;
_root.player.fowF = 0;
} else if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd < 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.fowF = _root.player.fowF + _root.player.revF;
_root.player.revF = 0;
}
}
Instance of Symbol 504 MovieClip in Frame 12
onClipEvent (load) {
this.maxC = 150;
this.minC = 50;
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
}
onClipEvent (enterFrame) {
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
this._alpha = 100 - this.percentC;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.health = _root.phud.health - 500;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd > 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.revF = _root.player.revF + _root.player.fowF;
_root.player.fowF = 0;
} else if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd < 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.fowF = _root.player.fowF + _root.player.revF;
_root.player.revF = 0;
}
}
Instance of Symbol 504 MovieClip in Frame 12
onClipEvent (load) {
this.maxC = 150;
this.minC = 50;
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
}
onClipEvent (enterFrame) {
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
this._alpha = 100 - this.percentC;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.health = _root.phud.health - 500;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd > 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.revF = _root.player.revF + _root.player.fowF;
_root.player.fowF = 0;
} else if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd < 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.fowF = _root.player.fowF + _root.player.revF;
_root.player.revF = 0;
}
}
Instance of Symbol 504 MovieClip in Frame 12
onClipEvent (load) {
this.maxC = 150;
this.minC = 50;
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
}
onClipEvent (enterFrame) {
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
this._alpha = 100 - this.percentC;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.health = _root.phud.health - 500;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd > 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.revF = _root.player.revF + _root.player.fowF;
_root.player.fowF = 0;
} else if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd < 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.fowF = _root.player.fowF + _root.player.revF;
_root.player.revF = 0;
}
}
Instance of Symbol 504 MovieClip in Frame 12
onClipEvent (load) {
this.maxC = 150;
this.minC = 50;
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
}
onClipEvent (enterFrame) {
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
this._alpha = 100 - this.percentC;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.health = _root.phud.health - 500;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd > 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.revF = _root.player.revF + _root.player.fowF;
_root.player.fowF = 0;
} else if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd < 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.fowF = _root.player.fowF + _root.player.revF;
_root.player.revF = 0;
}
}
Instance of Symbol 504 MovieClip in Frame 12
onClipEvent (load) {
this.maxC = 150;
this.minC = 50;
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
}
onClipEvent (enterFrame) {
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
this._alpha = 100 - this.percentC;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.health = _root.phud.health - 500;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd > 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.revF = _root.player.revF + _root.player.fowF;
_root.player.fowF = 0;
} else if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd < 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.fowF = _root.player.fowF + _root.player.revF;
_root.player.revF = 0;
}
}
Instance of Symbol 504 MovieClip in Frame 12
onClipEvent (load) {
this.maxC = 150;
this.minC = 50;
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
}
onClipEvent (enterFrame) {
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
this._alpha = 100 - this.percentC;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.health = _root.phud.health - 500;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd > 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.revF = _root.player.revF + _root.player.fowF;
_root.player.fowF = 0;
} else if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd < 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.fowF = _root.player.fowF + _root.player.revF;
_root.player.revF = 0;
}
}
Instance of Symbol 504 MovieClip in Frame 12
onClipEvent (load) {
this.maxC = 150;
this.minC = 50;
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
}
onClipEvent (enterFrame) {
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
this._alpha = 100 - this.percentC;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.health = _root.phud.health - 500;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd > 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.revF = _root.player.revF + _root.player.fowF;
_root.player.fowF = 0;
} else if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd < 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.fowF = _root.player.fowF + _root.player.revF;
_root.player.revF = 0;
}
}
Instance of Symbol 504 MovieClip in Frame 12
onClipEvent (load) {
this.maxC = 150;
this.minC = 50;
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
}
onClipEvent (enterFrame) {
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
this._alpha = 100 - this.percentC;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.health = _root.phud.health - 500;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd > 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.revF = _root.player.revF + _root.player.fowF;
_root.player.fowF = 0;
} else if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd < 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.fowF = _root.player.fowF + _root.player.revF;
_root.player.revF = 0;
}
}
Instance of Symbol 504 MovieClip in Frame 12
onClipEvent (load) {
this.maxC = 150;
this.minC = 50;
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
}
onClipEvent (enterFrame) {
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
this._alpha = 100 - this.percentC;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.health = _root.phud.health - 500;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd > 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.revF = _root.player.revF + _root.player.fowF;
_root.player.fowF = 0;
} else if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd < 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.fowF = _root.player.fowF + _root.player.revF;
_root.player.revF = 0;
}
}
Instance of Symbol 504 MovieClip in Frame 12
onClipEvent (load) {
this.maxC = 150;
this.minC = 50;
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
}
onClipEvent (enterFrame) {
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
this._alpha = 100 - this.percentC;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.health = _root.phud.health - 500;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd > 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.revF = _root.player.revF + _root.player.fowF;
_root.player.fowF = 0;
} else if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd < 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.fowF = _root.player.fowF + _root.player.revF;
_root.player.revF = 0;
}
}
Instance of Symbol 504 MovieClip in Frame 12
onClipEvent (load) {
this.maxC = 150;
this.minC = 50;
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
}
onClipEvent (enterFrame) {
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
this._alpha = 100 - this.percentC;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.health = _root.phud.health - 500;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd > 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.revF = _root.player.revF + _root.player.fowF;
_root.player.fowF = 0;
} else if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd < 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.fowF = _root.player.fowF + _root.player.revF;
_root.player.revF = 0;
}
}
Instance of Symbol 504 MovieClip in Frame 12
onClipEvent (load) {
this.maxC = 150;
this.minC = 50;
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
}
onClipEvent (enterFrame) {
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
this._alpha = 100 - this.percentC;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.health = _root.phud.health - 500;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd > 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.revF = _root.player.revF + _root.player.fowF;
_root.player.fowF = 0;
} else if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd < 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.fowF = _root.player.fowF + _root.player.revF;
_root.player.revF = 0;
}
}
Instance of Symbol 504 MovieClip in Frame 12
onClipEvent (load) {
this.maxC = 150;
this.minC = 50;
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
}
onClipEvent (enterFrame) {
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
this._alpha = 100 - this.percentC;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.health = _root.phud.health - 500;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd > 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.revF = _root.player.revF + _root.player.fowF;
_root.player.fowF = 0;
} else if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd < 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.fowF = _root.player.fowF + _root.player.revF;
_root.player.revF = 0;
}
}
Instance of Symbol 504 MovieClip in Frame 12
onClipEvent (load) {
this.maxC = 150;
this.minC = 50;
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
}
onClipEvent (enterFrame) {
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
this._alpha = 100 - this.percentC;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.health = _root.phud.health - 500;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd > 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.revF = _root.player.revF + _root.player.fowF;
_root.player.fowF = 0;
} else if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd < 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.fowF = _root.player.fowF + _root.player.revF;
_root.player.revF = 0;
}
}
Instance of Symbol 504 MovieClip in Frame 12
onClipEvent (load) {
this.maxC = 150;
this.minC = 50;
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
}
onClipEvent (enterFrame) {
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
this._alpha = 100 - this.percentC;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.health = _root.phud.health - 500;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd > 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.revF = _root.player.revF + _root.player.fowF;
_root.player.fowF = 0;
} else if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd < 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.fowF = _root.player.fowF + _root.player.revF;
_root.player.revF = 0;
}
}
Instance of Symbol 504 MovieClip in Frame 12
onClipEvent (load) {
this.maxC = 150;
this.minC = 50;
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
}
onClipEvent (enterFrame) {
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
this._alpha = 100 - this.percentC;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.health = _root.phud.health - 500;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd > 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.revF = _root.player.revF + _root.player.fowF;
_root.player.fowF = 0;
} else if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd < 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.fowF = _root.player.fowF + _root.player.revF;
_root.player.revF = 0;
}
}
Instance of Symbol 504 MovieClip in Frame 12
onClipEvent (load) {
this.maxC = 150;
this.minC = 50;
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
}
onClipEvent (enterFrame) {
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
this._alpha = 100 - this.percentC;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.health = _root.phud.health - 500;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd > 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.revF = _root.player.revF + _root.player.fowF;
_root.player.fowF = 0;
} else if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd < 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.fowF = _root.player.fowF + _root.player.revF;
_root.player.revF = 0;
}
}
Instance of Symbol 504 MovieClip in Frame 12
onClipEvent (load) {
this.maxC = 150;
this.minC = 50;
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
}
onClipEvent (enterFrame) {
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
this._alpha = 100 - this.percentC;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.health = _root.phud.health - 500;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd > 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.revF = _root.player.revF + _root.player.fowF;
_root.player.fowF = 0;
} else if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd < 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.fowF = _root.player.fowF + _root.player.revF;
_root.player.revF = 0;
}
}
Instance of Symbol 504 MovieClip in Frame 12
onClipEvent (load) {
this.maxC = 150;
this.minC = 50;
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
}
onClipEvent (enterFrame) {
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
this._alpha = 100 - this.percentC;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.health = _root.phud.health - 500;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd > 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.revF = _root.player.revF + _root.player.fowF;
_root.player.fowF = 0;
} else if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd < 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.fowF = _root.player.fowF + _root.player.revF;
_root.player.revF = 0;
}
}
Instance of Symbol 504 MovieClip in Frame 12
onClipEvent (load) {
this.maxC = 150;
this.minC = 50;
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
}
onClipEvent (enterFrame) {
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
this._alpha = 100 - this.percentC;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.health = _root.phud.health - 500;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd > 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.revF = _root.player.revF + _root.player.fowF;
_root.player.fowF = 0;
} else if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd < 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.fowF = _root.player.fowF + _root.player.revF;
_root.player.revF = 0;
}
}
Instance of Symbol 504 MovieClip in Frame 12
onClipEvent (load) {
this.maxC = 150;
this.minC = 50;
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
}
onClipEvent (enterFrame) {
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
this._alpha = 100 - this.percentC;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.health = _root.phud.health - 500;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd > 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.revF = _root.player.revF + _root.player.fowF;
_root.player.fowF = 0;
} else if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd < 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.fowF = _root.player.fowF + _root.player.revF;
_root.player.revF = 0;
}
}
Instance of Symbol 504 MovieClip in Frame 12
onClipEvent (load) {
this.maxC = 150;
this.minC = 50;
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
}
onClipEvent (enterFrame) {
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
this._alpha = 100 - this.percentC;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.health = _root.phud.health - 500;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd > 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.revF = _root.player.revF + _root.player.fowF;
_root.player.fowF = 0;
} else if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd < 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.fowF = _root.player.fowF + _root.player.revF;
_root.player.revF = 0;
}
}
Instance of Symbol 504 MovieClip in Frame 12
onClipEvent (load) {
this.maxC = 150;
this.minC = 50;
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
}
onClipEvent (enterFrame) {
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
this._alpha = 100 - this.percentC;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.health = _root.phud.health - 500;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd > 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.revF = _root.player.revF + _root.player.fowF;
_root.player.fowF = 0;
} else if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd < 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.fowF = _root.player.fowF + _root.player.revF;
_root.player.revF = 0;
}
}
Instance of Symbol 504 MovieClip in Frame 12
onClipEvent (load) {
this.maxC = 150;
this.minC = 50;
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
}
onClipEvent (enterFrame) {
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
this._alpha = 100 - this.percentC;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.health = _root.phud.health - 500;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd > 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.revF = _root.player.revF + _root.player.fowF;
_root.player.fowF = 0;
} else if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd < 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.fowF = _root.player.fowF + _root.player.revF;
_root.player.revF = 0;
}
}
Instance of Symbol 504 MovieClip in Frame 12
onClipEvent (load) {
this.maxC = 150;
this.minC = 50;
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
}
onClipEvent (enterFrame) {
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
this._alpha = 100 - this.percentC;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.health = _root.phud.health - 500;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd > 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.revF = _root.player.revF + _root.player.fowF;
_root.player.fowF = 0;
} else if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd < 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.fowF = _root.player.fowF + _root.player.revF;
_root.player.revF = 0;
}
}
Instance of Symbol 504 MovieClip in Frame 12
onClipEvent (load) {
this.maxC = 150;
this.minC = 50;
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
}
onClipEvent (enterFrame) {
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
this._alpha = 100 - this.percentC;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.health = _root.phud.health - 500;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd > 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.revF = _root.player.revF + _root.player.fowF;
_root.player.fowF = 0;
} else if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd < 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.fowF = _root.player.fowF + _root.player.revF;
_root.player.revF = 0;
}
}
Instance of Symbol 504 MovieClip in Frame 12
onClipEvent (load) {
this.maxC = 150;
this.minC = 50;
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
}
onClipEvent (enterFrame) {
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
this._alpha = 100 - this.percentC;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.health = _root.phud.health - 500;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd > 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.revF = _root.player.revF + _root.player.fowF;
_root.player.fowF = 0;
} else if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd < 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.fowF = _root.player.fowF + _root.player.revF;
_root.player.revF = 0;
}
}
Instance of Symbol 504 MovieClip in Frame 12
onClipEvent (load) {
this.maxC = 150;
this.minC = 50;
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
}
onClipEvent (enterFrame) {
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
this._alpha = 100 - this.percentC;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.health = _root.phud.health - 500;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd > 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.revF = _root.player.revF + _root.player.fowF;
_root.player.fowF = 0;
} else if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd < 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.fowF = _root.player.fowF + _root.player.revF;
_root.player.revF = 0;
}
}
Instance of Symbol 504 MovieClip in Frame 12
onClipEvent (load) {
this.maxC = 150;
this.minC = 50;
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
}
onClipEvent (enterFrame) {
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
this._alpha = 100 - this.percentC;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.health = _root.phud.health - 500;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd > 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.revF = _root.player.revF + _root.player.fowF;
_root.player.fowF = 0;
} else if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd < 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.fowF = _root.player.fowF + _root.player.revF;
_root.player.revF = 0;
}
}
Instance of Symbol 504 MovieClip in Frame 12
onClipEvent (load) {
this.maxC = 150;
this.minC = 50;
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
}
onClipEvent (enterFrame) {
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
this._alpha = 100 - this.percentC;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.health = _root.phud.health - 500;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd > 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.revF = _root.player.revF + _root.player.fowF;
_root.player.fowF = 0;
} else if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd < 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.fowF = _root.player.fowF + _root.player.revF;
_root.player.revF = 0;
}
}
Instance of Symbol 504 MovieClip in Frame 12
onClipEvent (load) {
this.maxC = 150;
this.minC = 50;
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
}
onClipEvent (enterFrame) {
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
this._alpha = 100 - this.percentC;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.health = _root.phud.health - 500;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd > 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.revF = _root.player.revF + _root.player.fowF;
_root.player.fowF = 0;
} else if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd < 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.fowF = _root.player.fowF + _root.player.revF;
_root.player.revF = 0;
}
}
Instance of Symbol 504 MovieClip in Frame 12
onClipEvent (load) {
this.maxC = 150;
this.minC = 50;
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
}
onClipEvent (enterFrame) {
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
this._alpha = 100 - this.percentC;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.health = _root.phud.health - 500;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd > 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.revF = _root.player.revF + _root.player.fowF;
_root.player.fowF = 0;
} else if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd < 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.fowF = _root.player.fowF + _root.player.revF;
_root.player.revF = 0;
}
}
Instance of Symbol 504 MovieClip in Frame 12
onClipEvent (load) {
this.maxC = 150;
this.minC = 50;
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
}
onClipEvent (enterFrame) {
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
this._alpha = 100 - this.percentC;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.health = _root.phud.health - 500;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd > 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.revF = _root.player.revF + _root.player.fowF;
_root.player.fowF = 0;
} else if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd < 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.fowF = _root.player.fowF + _root.player.revF;
_root.player.revF = 0;
}
}
Instance of Symbol 504 MovieClip in Frame 12
onClipEvent (load) {
this.maxC = 150;
this.minC = 50;
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
}
onClipEvent (enterFrame) {
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
this._alpha = 100 - this.percentC;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.health = _root.phud.health - 500;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd > 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.revF = _root.player.revF + _root.player.fowF;
_root.player.fowF = 0;
} else if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd < 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.fowF = _root.player.fowF + _root.player.revF;
_root.player.revF = 0;
}
}
Instance of Symbol 504 MovieClip in Frame 12
onClipEvent (load) {
this.maxC = 150;
this.minC = 50;
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
}
onClipEvent (enterFrame) {
this.a = _root.player._x - this._x;
this.b = _root.player._y - this._y;
this.c = Math.sqrt(Math.pow(this.a, 2) + Math.pow(this.b, 2));
this.percentC = ((this.c - this.minC) / (this.maxC - this.minC)) * 100;
this._alpha = 100 - this.percentC;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.health = _root.phud.health - 500;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd > 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.revF = _root.player.revF + _root.player.fowF;
_root.player.fowF = 0;
} else if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd < 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.fowF = _root.player.fowF + _root.player.revF;
_root.player.revF = 0;
}
}
Instance of Symbol 347 MovieClip "finish1" in Frame 12
onClipEvent (load) {
sounded = false;
finished = false;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (this.sounded == false)) {
_root.fin.start(0, 1);
}
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.player.fowF = 0;
_root.player.revF = 0;
this.sounded = true;
this.finished = true;
}
if (this.finished == true) {
_root.beaten6 = true;
_root.hud.timeTaken = _root.phud.tTotal.toString();
_root.hud.game = false;
_root.hud.gotoAndStop("finish");
if (_root.hud.score > _root.hs6) {
_root.hs6 = _root.hud.score.toString();
}
if (_root.hud.timeTaken < _root.bt6) {
_root.bt6 = _root.hud.timeTaken.toString();
}
}
}
Instance of Symbol 343 MovieClip in Frame 12
onClipEvent (load) {
tGive = 20;
checked = false;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (this.checked == false)) {
this.checked = true;
_root.chk.start();
}
if (this.checked == true) {
this.gotoAndStop("check");
}
}
Instance of Symbol 343 MovieClip in Frame 12
onClipEvent (load) {
tGive = 15;
checked = false;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (this.checked == false)) {
this.checked = true;
_root.chk.start();
}
if (this.checked == true) {
this.gotoAndStop("check");
}
}
Instance of Symbol 343 MovieClip in Frame 12
onClipEvent (load) {
tGive = 60;
checked = false;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (this.checked == false)) {
this.checked = true;
_root.chk.start();
}
if (this.checked == true) {
this.gotoAndStop("check");
}
}
Frame 13
stop();
stopAllSounds();
_root.songPlay = _root.lev6Song;
_root.songPlay.setVolume(100);
_root.phud.tCounter.timeLeft = 20;
_root.player._x = _root.start1._x;
_root.player._y = _root.start1._y;
_root.player._rotation = 90;
_root.hud.gotoAndPlay("levelStart");
Instance of Symbol 442 MovieClip "start1" in Frame 13
onClipEvent (enterFrame) {
if (_root.hud.game == true) {
this._visible = false;
}
}
Frame 14
stop();
stopAllSounds();
_root.songPlay = _root.tutSong;
_root.songPlay.setVolume(100);
_root.phud.tCounter.timeLeft = 20;
_root.player._x = _root.start1._x;
_root.player._y = _root.start1._y;
_root.player._rotation = 90;
_root.hud.gotoAndPlay("levelStart");
Instance of Symbol 343 MovieClip in Frame 14
onClipEvent (load) {
tGive = 10;
checked = false;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (this.checked == false)) {
this.checked = true;
_root.chk.start();
}
if (this.checked == true) {
this.gotoAndStop("check");
}
}
Instance of Symbol 343 MovieClip in Frame 14
onClipEvent (load) {
tGive = 10;
checked = false;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (this.checked == false)) {
this.checked = true;
_root.chk.start();
}
if (this.checked == true) {
this.gotoAndStop("check");
}
}
Instance of Symbol 343 MovieClip in Frame 14
onClipEvent (load) {
tGive = 10;
checked = false;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (this.checked == false)) {
this.checked = true;
_root.chk.start();
}
if (this.checked == true) {
this.gotoAndStop("check");
}
}
Instance of Symbol 343 MovieClip in Frame 14
onClipEvent (load) {
tGive = 10;
checked = false;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (this.checked == false)) {
this.checked = true;
_root.chk.start();
}
if (this.checked == true) {
this.gotoAndStop("check");
}
}
Instance of Symbol 343 MovieClip in Frame 14
onClipEvent (load) {
tGive = 10;
checked = false;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (this.checked == false)) {
this.checked = true;
_root.chk.start();
}
if (this.checked == true) {
this.gotoAndStop("check");
}
}
Instance of Symbol 343 MovieClip in Frame 14
onClipEvent (load) {
tGive = 10;
checked = false;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (this.checked == false)) {
this.checked = true;
_root.chk.start();
}
if (this.checked == true) {
this.gotoAndStop("check");
}
}
Instance of Symbol 347 MovieClip "finish1" in Frame 14
onClipEvent (load) {
sounded = false;
finished = false;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (this.sounded == false)) {
_root.fin.start(0, 1);
}
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.player.fowF = 0;
_root.player.revF = 0;
this.sounded = true;
this.finished = true;
}
if (this.finished == true) {
_root.beaten8 = true;
_root.hud.timeTaken = _root.phud.tTotal.toString();
_root.hud.game = false;
_root.hud.gotoAndStop("finish");
if (_root.hud.score > _root.hs8) {
_root.hs8 = _root.hud.score.toString();
}
if (_root.hud.timeTaken < _root.bt8) {
_root.bt8 = _root.hud.timeTaken.toString();
}
}
}
Instance of Symbol 343 MovieClip in Frame 14
onClipEvent (load) {
tGive = 10;
checked = false;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (this.checked == false)) {
this.checked = true;
_root.chk.start();
}
if (this.checked == true) {
this.gotoAndStop("check");
}
}
Instance of Symbol 354 MovieClip in Frame 14
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.bPoints = _root.phud.bPoints + 50;
_root.noteSFX.start();
unloadMovie (this);
}
}
Instance of Symbol 354 MovieClip in Frame 14
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.bPoints = _root.phud.bPoints + 50;
_root.noteSFX.start();
unloadMovie (this);
}
}
Instance of Symbol 354 MovieClip in Frame 14
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.bPoints = _root.phud.bPoints + 50;
_root.noteSFX.start();
unloadMovie (this);
}
}
Instance of Symbol 354 MovieClip in Frame 14
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.bPoints = _root.phud.bPoints + 50;
_root.noteSFX.start();
unloadMovie (this);
}
}
Instance of Symbol 354 MovieClip in Frame 14
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.bPoints = _root.phud.bPoints + 50;
_root.noteSFX.start();
unloadMovie (this);
}
}
Instance of Symbol 354 MovieClip in Frame 14
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.bPoints = _root.phud.bPoints + 50;
_root.noteSFX.start();
unloadMovie (this);
}
}
Instance of Symbol 354 MovieClip in Frame 14
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.bPoints = _root.phud.bPoints + 50;
_root.noteSFX.start();
unloadMovie (this);
}
}
Instance of Symbol 354 MovieClip in Frame 14
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.bPoints = _root.phud.bPoints + 50;
_root.noteSFX.start();
unloadMovie (this);
}
}
Instance of Symbol 354 MovieClip in Frame 14
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.bPoints = _root.phud.bPoints + 50;
_root.noteSFX.start();
unloadMovie (this);
}
}
Instance of Symbol 354 MovieClip in Frame 14
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.bPoints = _root.phud.bPoints + 50;
_root.noteSFX.start();
unloadMovie (this);
}
}
Instance of Symbol 525 MovieClip in Frame 14
onClipEvent (load) {
this.RA = 255;
this.RB = 255;
this.GA = 10;
this.GB = 30;
this.BA = 20;
this.BB = 255;
this.AA = 100;
this.AB = 100;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.health = _root.phud.health - 10;
}
}
onClipEvent (enterFrame) {
this.RA = Math.random() * 255;
this.RB = (Math.random() * 255) - (Math.random() * 50);
this.GA = (Math.random() * 255) - (Math.random() * 55);
this.GB = (Math.random() * 255) - (Math.random() * 55);
this.BA = (Math.random() * 255) - (Math.random() * 240);
this.BB = (Math.random() * 255) - (Math.random() * 150);
this.AA = (Math.random() * 25) + 50;
this.AB = (Math.random() * 25) + 50;
}
onClipEvent (enterFrame) {
var my_color = new Color(this);
var myColorTransform = {ra:this.RA, rb:this.RB, ga:this.GA, gb:this.GB, ba:this.BA, bb:this.BB, aa:this.AA, ab:this.AB};
my_color.setTransform(myColorTransform);
}
Frame 15
stop();
stopAllSounds();
_root.songPlay = _root.lev7Song;
_root.songPlay.setVolume(100);
_root.phud.tCounter.timeLeft = 40;
_root.player._x = _root.start1._x;
_root.player._y = _root.start1._y;
_root.player._rotation = 0;
_root.hud.gotoAndPlay("levelStart");
Instance of Symbol 343 MovieClip in Frame 15
onClipEvent (load) {
tGive = 20;
checked = false;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (this.checked == false)) {
this.checked = true;
_root.chk.start();
}
if (this.checked == true) {
this.gotoAndStop("check");
}
}
Instance of Symbol 437 MovieClip in Frame 15
onClipEvent (load) {
this.RA = 255;
this.RB = 255;
this.GA = 10;
this.GB = 30;
this.BA = 20;
this.BB = 255;
this.AA = 100;
this.AB = 100;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.player._x = _root.warp1._x;
_root.player._y = _root.warp1._y;
} else {
_root.player._x = _root.player._x;
_root.player._y = _root.player._y;
}
}
onClipEvent (enterFrame) {
this.RA = Math.random() * 255;
this.RB = Math.random() * 255;
this.GA = Math.random() * 0;
this.GB = Math.random() * 0;
this.BA = Math.random() * 0;
this.BB = Math.random() * 0;
this.AA = (Math.random() * 50) + 50;
this.AB = (Math.random() * 50) + 50;
}
onClipEvent (enterFrame) {
var my_color = new Color(this);
var myColorTransform = {ra:this.RA, rb:this.RB, ga:this.GA, gb:this.GB, ba:this.BA, bb:this.BB, aa:this.AA, ab:this.AB};
my_color.setTransform(myColorTransform);
}
Instance of Symbol 439 MovieClip "warp1" in Frame 15
onClipEvent (load) {
this.RA = 255;
this.RB = 255;
this.GA = 10;
this.GB = 30;
this.BA = 20;
this.BB = 255;
this.AA = 100;
this.AB = 100;
}
onClipEvent (enterFrame) {
this.RA = Math.random() * 255;
this.RB = Math.random() * 255;
this.GA = Math.random() * 0;
this.GB = Math.random() * 0;
this.BA = Math.random() * 0;
this.BB = Math.random() * 0;
this.AA = (Math.random() * 50) + 50;
this.AB = (Math.random() * 50) + 50;
}
onClipEvent (enterFrame) {
var my_color = new Color(this);
var myColorTransform = {ra:this.RA, rb:this.RB, ga:this.GA, gb:this.GB, ba:this.BA, bb:this.BB, aa:this.AA, ab:this.AB};
my_color.setTransform(myColorTransform);
}
Instance of Symbol 439 MovieClip "warp2" in Frame 15
onClipEvent (load) {
this.RA = 255;
this.RB = 255;
this.GA = 10;
this.GB = 30;
this.BA = 20;
this.BB = 255;
this.AA = 100;
this.AB = 100;
}
onClipEvent (enterFrame) {
this.RA = Math.random() * 0;
this.RB = Math.random() * 0;
this.GA = Math.random() * 255;
this.GB = Math.random() * 255;
this.BA = Math.random() * 0;
this.BB = Math.random() * 0;
this.AA = (Math.random() * 50) + 50;
this.AB = (Math.random() * 50) + 50;
}
onClipEvent (enterFrame) {
var my_color = new Color(this);
var myColorTransform = {ra:this.RA, rb:this.RB, ga:this.GA, gb:this.GB, ba:this.BA, bb:this.BB, aa:this.AA, ab:this.AB};
my_color.setTransform(myColorTransform);
}
Instance of Symbol 437 MovieClip in Frame 15
onClipEvent (load) {
this.RA = 255;
this.RB = 255;
this.GA = 10;
this.GB = 30;
this.BA = 20;
this.BB = 255;
this.AA = 100;
this.AB = 100;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.player._x = _root.warp2._x;
_root.player._y = _root.warp2._y;
} else {
_root.player._x = _root.player._x;
_root.player._y = _root.player._y;
}
}
onClipEvent (enterFrame) {
this.RA = Math.random() * 0;
this.RB = Math.random() * 0;
this.GA = Math.random() * 255;
this.GB = Math.random() * 255;
this.BA = Math.random() * 0;
this.BB = Math.random() * 0;
this.AA = (Math.random() * 50) + 50;
this.AB = (Math.random() * 50) + 50;
}
onClipEvent (enterFrame) {
var my_color = new Color(this);
var myColorTransform = {ra:this.RA, rb:this.RB, ga:this.GA, gb:this.GB, ba:this.BA, bb:this.BB, aa:this.AA, ab:this.AB};
my_color.setTransform(myColorTransform);
}
Instance of Symbol 437 MovieClip in Frame 15
onClipEvent (load) {
this.RA = 255;
this.RB = 255;
this.GA = 10;
this.GB = 30;
this.BA = 20;
this.BB = 255;
this.AA = 100;
this.AB = 100;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.player._x = _root.warp5._x;
_root.player._y = _root.warp5._y;
} else {
_root.player._x = _root.player._x;
_root.player._y = _root.player._y;
}
}
onClipEvent (enterFrame) {
this.RA = Math.random() * 0;
this.RB = Math.random() * 0;
this.GA = Math.random() * 255;
this.GB = Math.random() * 255;
this.BA = Math.random() * 255;
this.BB = Math.random() * 255;
this.AA = (Math.random() * 50) + 50;
this.AB = (Math.random() * 50) + 50;
}
onClipEvent (enterFrame) {
var my_color = new Color(this);
var myColorTransform = {ra:this.RA, rb:this.RB, ga:this.GA, gb:this.GB, ba:this.BA, bb:this.BB, aa:this.AA, ab:this.AB};
my_color.setTransform(myColorTransform);
}
Instance of Symbol 439 MovieClip "warp5" in Frame 15
onClipEvent (load) {
this.RA = 255;
this.RB = 255;
this.GA = 10;
this.GB = 30;
this.BA = 20;
this.BB = 255;
this.AA = 100;
this.AB = 100;
}
onClipEvent (enterFrame) {
this.RA = Math.random() * 0;
this.RB = Math.random() * 0;
this.GA = Math.random() * 255;
this.GB = Math.random() * 255;
this.BA = Math.random() * 255;
this.BB = Math.random() * 255;
this.AA = (Math.random() * 50) + 50;
this.AB = (Math.random() * 50) + 50;
}
onClipEvent (enterFrame) {
var my_color = new Color(this);
var myColorTransform = {ra:this.RA, rb:this.RB, ga:this.GA, gb:this.GB, ba:this.BA, bb:this.BB, aa:this.AA, ab:this.AB};
my_color.setTransform(myColorTransform);
}
Instance of Symbol 437 MovieClip in Frame 15
onClipEvent (load) {
this.RA = 255;
this.RB = 255;
this.GA = 10;
this.GB = 30;
this.BA = 20;
this.BB = 255;
this.AA = 100;
this.AB = 100;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.player._x = _root.warp3._x;
_root.player._y = _root.warp3._y;
} else {
_root.player._x = _root.player._x;
_root.player._y = _root.player._y;
}
}
onClipEvent (enterFrame) {
this.RA = Math.random() * 0;
this.RB = Math.random() * 0;
this.GA = Math.random() * 0;
this.GB = Math.random() * 0;
this.BA = Math.random() * 255;
this.BB = Math.random() * 255;
this.AA = (Math.random() * 50) + 50;
this.AB = (Math.random() * 50) + 50;
}
onClipEvent (enterFrame) {
var my_color = new Color(this);
var myColorTransform = {ra:this.RA, rb:this.RB, ga:this.GA, gb:this.GB, ba:this.BA, bb:this.BB, aa:this.AA, ab:this.AB};
my_color.setTransform(myColorTransform);
}
Instance of Symbol 439 MovieClip "warp3" in Frame 15
onClipEvent (load) {
this.RA = 255;
this.RB = 255;
this.GA = 10;
this.GB = 30;
this.BA = 20;
this.BB = 255;
this.AA = 100;
this.AB = 100;
}
onClipEvent (enterFrame) {
this.RA = Math.random() * 0;
this.RB = Math.random() * 0;
this.GA = Math.random() * 0;
this.GB = Math.random() * 0;
this.BA = Math.random() * 255;
this.BB = Math.random() * 255;
this.AA = (Math.random() * 50) + 50;
this.AB = (Math.random() * 50) + 50;
}
onClipEvent (enterFrame) {
var my_color = new Color(this);
var myColorTransform = {ra:this.RA, rb:this.RB, ga:this.GA, gb:this.GB, ba:this.BA, bb:this.BB, aa:this.AA, ab:this.AB};
my_color.setTransform(myColorTransform);
}
Instance of Symbol 354 MovieClip in Frame 15
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.bPoints = _root.phud.bPoints + 50;
_root.noteSFX.start();
unloadMovie (this);
}
}
Instance of Symbol 354 MovieClip in Frame 15
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.bPoints = _root.phud.bPoints + 50;
_root.noteSFX.start();
unloadMovie (this);
}
}
Instance of Symbol 354 MovieClip in Frame 15
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.bPoints = _root.phud.bPoints + 50;
_root.noteSFX.start();
unloadMovie (this);
}
}
Instance of Symbol 354 MovieClip in Frame 15
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.bPoints = _root.phud.bPoints + 50;
_root.noteSFX.start();
unloadMovie (this);
}
}
Instance of Symbol 354 MovieClip in Frame 15
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.bPoints = _root.phud.bPoints + 50;
_root.noteSFX.start();
unloadMovie (this);
}
}
Instance of Symbol 354 MovieClip in Frame 15
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.bPoints = _root.phud.bPoints + 50;
_root.noteSFX.start();
unloadMovie (this);
}
}
Instance of Symbol 354 MovieClip in Frame 15
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.bPoints = _root.phud.bPoints + 50;
_root.noteSFX.start();
unloadMovie (this);
}
}
Instance of Symbol 343 MovieClip in Frame 15
onClipEvent (load) {
tGive = 20;
checked = false;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (this.checked == false)) {
this.checked = true;
_root.chk.start();
}
if (this.checked == true) {
this.gotoAndStop("check");
}
}
Instance of Symbol 354 MovieClip in Frame 15
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.bPoints = _root.phud.bPoints + 50;
_root.noteSFX.start();
unloadMovie (this);
}
}
Instance of Symbol 437 MovieClip in Frame 15
onClipEvent (load) {
this.RA = 255;
this.RB = 255;
this.GA = 10;
this.GB = 30;
this.BA = 20;
this.BB = 255;
this.AA = 100;
this.AB = 100;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.player._x = _root.warp4._x;
_root.player._y = _root.warp4._y;
} else {
_root.player._x = _root.player._x;
_root.player._y = _root.player._y;
}
}
onClipEvent (enterFrame) {
this.RA = Math.random() * 255;
this.RB = Math.random() * 255;
this.GA = Math.random() * 0;
this.GB = Math.random() * 0;
this.BA = Math.random() * 255;
this.BB = Math.random() * 255;
this.AA = (Math.random() * 50) + 50;
this.AB = (Math.random() * 50) + 50;
}
onClipEvent (enterFrame) {
var my_color = new Color(this);
var myColorTransform = {ra:this.RA, rb:this.RB, ga:this.GA, gb:this.GB, ba:this.BA, bb:this.BB, aa:this.AA, ab:this.AB};
my_color.setTransform(myColorTransform);
}
Instance of Symbol 439 MovieClip "warp4" in Frame 15
onClipEvent (load) {
this.RA = 255;
this.RB = 255;
this.GA = 10;
this.GB = 30;
this.BA = 20;
this.BB = 255;
this.AA = 100;
this.AB = 100;
}
onClipEvent (enterFrame) {
this.RA = Math.random() * 255;
this.RB = Math.random() * 255;
this.GA = Math.random() * 0;
this.GB = Math.random() * 0;
this.BA = Math.random() * 255;
this.BB = Math.random() * 255;
this.AA = (Math.random() * 50) + 50;
this.AB = (Math.random() * 50) + 50;
}
onClipEvent (enterFrame) {
var my_color = new Color(this);
var myColorTransform = {ra:this.RA, rb:this.RB, ga:this.GA, gb:this.GB, ba:this.BA, bb:this.BB, aa:this.AA, ab:this.AB};
my_color.setTransform(myColorTransform);
}
Instance of Symbol 437 MovieClip in Frame 15
onClipEvent (load) {
this.RA = 255;
this.RB = 255;
this.GA = 10;
this.GB = 30;
this.BA = 20;
this.BB = 255;
this.AA = 100;
this.AB = 100;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.player._x = _root.warp7._x;
_root.player._y = _root.warp7._y;
} else {
_root.player._x = _root.player._x;
_root.player._y = _root.player._y;
}
}
onClipEvent (enterFrame) {
this.RA = Math.random() * 255;
this.RB = Math.random() * 255;
this.GA = Math.random() * 255;
this.GB = Math.random() * 255;
this.BA = Math.random() * 255;
this.BB = Math.random() * 255;
this.AA = (Math.random() * 50) + 50;
this.AB = (Math.random() * 50) + 50;
}
onClipEvent (enterFrame) {
var my_color = new Color(this);
var myColorTransform = {ra:this.RA, rb:this.RB, ga:this.GA, gb:this.GB, ba:this.BA, bb:this.BB, aa:this.AA, ab:this.AB};
my_color.setTransform(myColorTransform);
}
Instance of Symbol 439 MovieClip "warp7" in Frame 15
onClipEvent (load) {
this.RA = 255;
this.RB = 255;
this.GA = 10;
this.GB = 30;
this.BA = 20;
this.BB = 255;
this.AA = 100;
this.AB = 100;
}
onClipEvent (enterFrame) {
this.RA = Math.random() * 255;
this.RB = Math.random() * 255;
this.GA = Math.random() * 255;
this.GB = Math.random() * 255;
this.BA = Math.random() * 255;
this.BB = Math.random() * 255;
this.AA = (Math.random() * 50) + 50;
this.AB = (Math.random() * 50) + 50;
}
onClipEvent (enterFrame) {
var my_color = new Color(this);
var myColorTransform = {ra:this.RA, rb:this.RB, ga:this.GA, gb:this.GB, ba:this.BA, bb:this.BB, aa:this.AA, ab:this.AB};
my_color.setTransform(myColorTransform);
}
Instance of Symbol 354 MovieClip in Frame 15
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.bPoints = _root.phud.bPoints + 50;
_root.noteSFX.start();
unloadMovie (this);
}
}
Instance of Symbol 347 MovieClip "finish1" in Frame 15
onClipEvent (load) {
sounded = false;
finished = false;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (this.sounded == false)) {
_root.fin.start(0, 1);
}
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.player.fowF = 0;
_root.player.revF = 0;
this.sounded = true;
this.finished = true;
}
if (this.finished == true) {
_root.beaten9 = true;
_root.hud.timeTaken = _root.phud.tTotal.toString();
_root.hud.game = false;
_root.hud.gotoAndStop("finish");
if (_root.hud.score > _root.hs9) {
_root.hs9 = _root.hud.score.toString();
}
if (_root.hud.timeTaken < _root.bt9) {
_root.bt9 = _root.hud.timeTaken.toString();
}
}
}
Instance of Symbol 288 MovieClip in Frame 16
onClipEvent (enterFrame) {
if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
this.gotoAndStop("over");
} else {
this.gotoAndStop("off");
}
}
onClipEvent (mouseDown) {
if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
_root.gotoAndStop("mainMenu");
}
}
Symbol 100 MovieClip Frame 141
gotoAndPlay ("bb");
Symbol 162 Button
on (release) {
getURL ("http://www.armorgames.com", "_blank");
}
Symbol 210 Button
on (release) {
getURL ("http://www.newgrounds.com", "_blank");
}
Symbol 230 MovieClip Frame 40
stop();
Symbol 242 Button
on (press) {
_root.play();
}
Symbol 243 Button
on (press) {
play();
}
Instance of Symbol 228 MovieClip in Symbol 246 MovieClip Frame 1
onClipEvent (load) {
PercentLoaded = int((_root.getBytesLoaded() / _root.getBytesTotal()) * 100);
if (PercentLoaded != 100) {
_parent.gotoAndStop(PercentLoaded);
} else {
_parent.gotoAndStop("play_button");
}
}
onClipEvent (enterFrame) {
PercentLoaded = int((_root.getBytesLoaded() / _root.getBytesTotal()) * 100);
if (PercentLoaded != 100) {
_parent.gotoAndStop(PercentLoaded);
} else {
_parent.gotoAndPlay("loaded");
}
}
Symbol 246 MovieClip Frame 130
stop();
Symbol 246 MovieClip Frame 154
_root.hud.gotoAndPlay("fadeOut");
this.stop();
Symbol 280 MovieClip Frame 1
stop();
Symbol 280 MovieClip Frame 2
play();
function camControl() {
parentColor.setTransform(camColor.getTransform());
var _local4 = sX / this._width;
var _local3 = sY / this._height;
_parent._x = cX - (this._x * _local4);
_parent._y = cY - (this._y * _local3);
_parent._xscale = 100 * _local4;
_parent._yscale = 100 * _local3;
}
function resetStage() {
var _local2 = {ra:100, rb:0, ga:100, gb:0, ba:100, bb:0, aa:100, ab:0};
parentColor.setTransform(_local2);
_parent._xscale = 100;
_parent._yscale = 100;
_parent._x = 0;
_parent._y = 0;
}
var oldMode = Stage.scaleMode;
Stage.scaleMode = "exactFit";
var cX = (Stage.width / 2);
var cY = (Stage.height / 2);
var sX = Stage.width;
var sY = Stage.height;
Stage.scaleMode = oldMode;
var camColor = new Color(this);
var parentColor = new Color(_parent);
this.onEnterFrame = camControl;
camControl();
this.onUnload = resetStage;
Symbol 280 MovieClip Frame 62
stop();
this.game = true;
_root.songPlay.start();
this.timeTotal = ("!!TOTAL TIME = " + this.timeTaken.toString()) + "!!";
this.leftTime = ("!!TIME LEFT = " + _root.phud.tCounter.timeLeft.toString()) + "!!";
this.healthLeft = ("!!HEALTH LEFT = " + _root.phud.health.toString()) + "!!";
this.score = ((_root.phud.tCounter.timeLeft - _root.phud.tTotal) + _root.phud.bPoints) * _root.phud.health.toString();
this.bonusPoints = ("!!BONUS POINTS = " + _root.phud.bPoints.toString()) + "!!";
this.finalScore = ("!!FINAL SCORE = " + this.score.toString()) + "!!";
Symbol 280 MovieClip Frame 63
this.fader._alpha = 0;
this.fader2._alpha = 0;
this.timeTaken = _root.phud.tTotal.toString();
this.timeTotal = ("!!TOTAL TIME = " + this.timeTaken.toString()) + "!!";
this.leftTime = ("!!TIME LEFT = " + _root.phud.tCounter.timeLeft.toString()) + "!!";
this.healthLeft = ("!!HEALTH LEFT = " + _root.phud.health.toString()) + "!!";
this.score = ((_root.phud.tCounter.timeLeft - _root.phud.tTotal) + _root.phud.bPoints) * _root.phud.health.toString();
this.bonusPoints = ("!!BONUS POINTS = " + _root.phud.bPoints.toString()) + "!!";
this.finalScore = ("!!FINAL SCORE = " + this.score.toString()) + "!!";
Instance of Symbol 259 MovieClip "fader" in Symbol 280 MovieClip Frame 63
onClipEvent (enterFrame) {
if (this._alpha <= 100) {
this._alpha++;
}
}
Instance of Symbol 264 MovieClip "menuButton" in Symbol 280 MovieClip Frame 63
onClipEvent (load) {
clicked = false;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
this.gotoAndStop("on");
} else {
this.gotoAndStop("click");
}
if (this.clicked == true) {
this.gotoAndStop("gotoMenu");
this._xscale--;
this._yscale--;
unloadMovie (_root.finish1);
}
}
onClipEvent (mouseDown) {
if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
this.clicked = true;
}
}
Instance of Symbol 259 MovieClip "fader2" in Symbol 280 MovieClip Frame 63
onClipEvent (load) {
fade = 0;
}
onClipEvent (enterFrame) {
if (_root.hud.menuButton.clicked == true) {
this._alpha = this._alpha + 2;
this.fade = this.fade + 2;
_root.songPlay.setVolume(100 - this.fade);
}
if (this._alpha >= 100) {
_root.hud.gotoAndPlay("fadeMenu");
}
}
Symbol 280 MovieClip Frame 64
_root.gotoAndStop("mainMenu");
this._x = 350;
this._y = 350;
Symbol 280 MovieClip Frame 82
stop();
Symbol 280 MovieClip Frame 101
_root.gotoAndStop(_root.frameTo.toString());
Symbol 280 MovieClip Frame 121
stop();
Symbol 280 MovieClip Frame 122
_root.phud.gameOver = false;
Symbol 280 MovieClip Frame 180
gotoAndPlay ("fadeMenu");
Symbol 288 MovieClip Frame 1
stop();
Symbol 310 MovieClip Frame 1
stop();
Symbol 315 MovieClip Frame 1
stop();
Symbol 318 MovieClip Frame 1
stop();
Symbol 321 MovieClip Frame 1
stop();
Symbol 343 MovieClip Frame 120
this.gotoAndPlay("start");
Symbol 343 MovieClip Frame 121
_root.phud.tCounter.timeLeft = _root.phud.tCounter.timeLeft + this.tGive;
Symbol 385 MovieClip Frame 1
stop();
Instance of Symbol 382 MovieClip "check1" in Symbol 385 MovieClip Frame 1
onClipEvent (load) {
this._visible = false;
}
Symbol 392 MovieClip Frame 1
stop();
Instance of Symbol 382 MovieClip "check1" in Symbol 392 MovieClip Frame 1
onClipEvent (load) {
this._visible = false;
}
Symbol 397 MovieClip Frame 1
stop();
Instance of Symbol 382 MovieClip "check1" in Symbol 397 MovieClip Frame 1
onClipEvent (load) {
this._visible = false;
}
Symbol 403 MovieClip Frame 1
stop();
Instance of Symbol 382 MovieClip "check1" in Symbol 403 MovieClip Frame 1
onClipEvent (load) {
this._visible = false;
}
Symbol 406 MovieClip Frame 1
stop();
Instance of Symbol 382 MovieClip "check1" in Symbol 406 MovieClip Frame 2
onClipEvent (load) {
this._visible = false;
}
Symbol 411 MovieClip Frame 1
stop();
Instance of Symbol 382 MovieClip "check1" in Symbol 411 MovieClip Frame 2
onClipEvent (load) {
this._visible = false;
}
Symbol 416 MovieClip Frame 1
stop();
Instance of Symbol 382 MovieClip "check1" in Symbol 416 MovieClip Frame 2
onClipEvent (load) {
this._visible = false;
}
Symbol 421 MovieClip Frame 1
stop();
Instance of Symbol 382 MovieClip "check1" in Symbol 421 MovieClip Frame 2
onClipEvent (load) {
this._visible = false;
}
Symbol 429 MovieClip Frame 1
stop();
Instance of Symbol 382 MovieClip "check1" in Symbol 429 MovieClip Frame 2
onClipEvent (load) {
this._visible = false;
}
Instance of Symbol 434 MovieClip in Symbol 435 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd > 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.revF = _root.player.revF + _root.player.fowF;
_root.player.fowF = 0;
} else if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd < 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.fowF = _root.player.fowF + _root.player.revF;
_root.player.revF = 0;
}
}
Instance of Symbol 440 MovieClip "startP" in Symbol 442 MovieClip Frame 1
onClipEvent (load) {
this.RA = 255;
this.RB = 255;
this.GA = 10;
this.GB = 30;
this.BA = 20;
this.BB = 255;
this.AA = 100;
this.AB = 100;
}
onClipEvent (enterFrame) {
this.RA = (Math.random() * 255) - (Math.random() * 50);
this.RB = (Math.random() * 255) - (Math.random() * 50);
this.GA = Math.random() * 255;
this.GB = Math.random() * 255;
this.BA = (Math.random() * 255) - (Math.random() * 50);
this.BB = (Math.random() * 255) - (Math.random() * 50);
this.AA = (Math.random() * 50) + 50;
this.AB = (Math.random() * 50) + 50;
}
onClipEvent (enterFrame) {
var my_color = new Color(this);
var myColorTransform = {ra:this.RA, rb:this.RB, ga:this.GA, gb:this.GB, ba:this.BA, bb:this.BB, aa:this.AA, ab:this.AB};
my_color.setTransform(myColorTransform);
}
Symbol 446 MovieClip Frame 30
stop();
Symbol 447 MovieClip Frame 1
stop();
Symbol 447 MovieClip Frame 2
this.switch1pt2.play();
Instance of Symbol 468 MovieClip in Symbol 469 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd > 0)) && (Key.isDown(38))) {
_root.player.fowF = _root.player.fowF - 2;
} else if ((this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd < 0)) && (Key.isDown(40))) {
_root.player.revF = _root.player.revF - 2;
}
}
Instance of Symbol 354 MovieClip in Symbol 469 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.bPoints = _root.phud.bPoints + 50;
_root.noteSFX.start();
unloadMovie (this);
}
}
Instance of Symbol 354 MovieClip in Symbol 469 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.bPoints = _root.phud.bPoints + 50;
_root.noteSFX.start();
unloadMovie (this);
}
}
Instance of Symbol 354 MovieClip in Symbol 469 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.bPoints = _root.phud.bPoints + 50;
_root.noteSFX.start();
unloadMovie (this);
}
}
Instance of Symbol 466 MovieClip in Symbol 472 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd > 0)) && (Key.isDown(38))) {
_root.player.fowF = _root.player.fowF - 2;
} else if ((this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd < 0)) && (Key.isDown(40))) {
_root.player.revF = _root.player.revF - 2;
}
}
Instance of Symbol 469 MovieClip in Symbol 472 MovieClip Frame 1
onClipEvent (enterFrame) {
this._rotation = this._rotation + 2;
}
Instance of Symbol 471 MovieClip in Symbol 472 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd > 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.revF = _root.player.revF + _root.player.fowF;
_root.player.fowF = 0;
} else if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd < 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.fowF = _root.player.fowF + _root.player.revF;
_root.player.revF = 0;
}
}
Instance of Symbol 481 MovieClip "wall4" in Symbol 482 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd > 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.revF = _root.player.revF + _root.player.fowF;
_root.player.fowF = 0;
} else if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd < 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.fowF = _root.player.fowF + _root.player.revF;
_root.player.revF = 0;
}
}
Instance of Symbol 488 MovieClip in Symbol 491 MovieClip Frame 1
onClipEvent (load) {
this.RA = 255;
this.RB = 255;
this.GA = 10;
this.GB = 30;
this.BA = 20;
this.BB = 255;
this.AA = 100;
this.AB = 100;
}
onClipEvent (enterFrame) {
this.RA = ((Math.random() * 50) + 205) - (Math.random() * 100);
this.RB = ((Math.random() * 50) + 105) - (Math.random() * 100);
this.GA = (Math.random() * Math.random()) * 200;
this.GB = (Math.random() * Math.random()) * 200;
this.BA = (Math.random() * Math.random()) * 200;
this.BB = (Math.random() * Math.random()) * 200;
this.AA = (Math.random() * 50) + 50;
this.AB = (Math.random() * 50) + 50;
}
onClipEvent (enterFrame) {
var my_color = new Color(this);
var myColorTransform = {ra:this.RA, rb:this.RB, ga:this.GA, gb:this.GB, ba:this.BA, bb:this.BB, aa:this.AA, ab:this.AB};
my_color.setTransform(myColorTransform);
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.health = _root.phud.health - 25;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd > 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.revF = _root.player.revF + _root.player.fowF;
_root.player.fowF = 0;
} else if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd < 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.fowF = _root.player.fowF + _root.player.revF;
_root.player.revF = 0;
}
}
Instance of Symbol 490 MovieClip in Symbol 491 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd > 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.revF = _root.player.revF + _root.player.fowF;
_root.player.fowF = 0;
} else if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd < 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.fowF = _root.player.fowF + _root.player.revF;
_root.player.revF = 0;
}
}
Instance of Symbol 494 MovieClip in Symbol 497 MovieClip Frame 1
onClipEvent (load) {
this.RA = 255;
this.RB = 255;
this.GA = 10;
this.GB = 30;
this.BA = 20;
this.BB = 255;
this.AA = 100;
this.AB = 100;
}
onClipEvent (enterFrame) {
this.RA = ((Math.random() * 50) + 205) - (Math.random() * 100);
this.RB = ((Math.random() * 50) + 105) - (Math.random() * 100);
this.GA = (Math.random() * Math.random()) * 200;
this.GB = (Math.random() * Math.random()) * 200;
this.BA = (Math.random() * Math.random()) * 200;
this.BB = (Math.random() * Math.random()) * 200;
this.AA = (Math.random() * 50) + 50;
this.AB = (Math.random() * 50) + 50;
}
onClipEvent (enterFrame) {
var my_color = new Color(this);
var myColorTransform = {ra:this.RA, rb:this.RB, ga:this.GA, gb:this.GB, ba:this.BA, bb:this.BB, aa:this.AA, ab:this.AB};
my_color.setTransform(myColorTransform);
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.health = _root.phud.health - 50;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd > 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.revF = _root.player.revF + _root.player.fowF;
_root.player.fowF = 0;
} else if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd < 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.fowF = _root.player.fowF + _root.player.revF;
_root.player.revF = 0;
}
}
Instance of Symbol 496 MovieClip in Symbol 497 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd > 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.revF = _root.player.revF + _root.player.fowF;
_root.player.fowF = 0;
} else if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd < 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.fowF = _root.player.fowF + _root.player.revF;
_root.player.revF = 0;
}
}
Instance of Symbol 501 MovieClip in Symbol 502 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd > 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.revF = _root.player.revF + _root.player.fowF;
_root.player.fowF = 0;
} else if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd < 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.fowF = _root.player.fowF + _root.player.revF;
_root.player.revF = 0;
}
}
Instance of Symbol 347 MovieClip "finish1" in Symbol 507 MovieClip Frame 1
onClipEvent (load) {
sounded = false;
finished = false;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (this.sounded == false)) {
_root.fin.start(0, 1);
}
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.player.fowF = 0;
_root.player.revF = 0;
_root.path8.laser8pt5.spd = 0;
this.sounded = true;
this.finished = true;
}
if (this.finished == true) {
_root.beaten7 = true;
_root.hud.timeTaken = _root.phud.tTotal.toString();
_root.hud.game = false;
_root.hud.gotoAndStop("finish");
if (_root.hud.score > _root.hs7) {
_root.hs7 = _root.hud.score.toString();
}
if (_root.hud.timeTaken < _root.bt7) {
_root.bt7 = _root.hud.timeTaken.toString();
}
}
}
onClipEvent (enterFrame) {
if (this.finished == true) {
unloadMovie (this);
}
}
Instance of Symbol 506 MovieClip in Symbol 507 MovieClip Frame 1
onClipEvent (load) {
this.RA = 255;
this.RB = 255;
this.GA = 10;
this.GB = 30;
this.BA = 20;
this.BB = 255;
this.AA = 100;
this.AB = 100;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.health = _root.phud.health - 15;
}
}
onClipEvent (enterFrame) {
this.RA = (Math.random() * 205) + (Math.random() * 50);
this.RB = (Math.random() * 255) - (Math.random() * 50);
this.GA = (Math.random() * 255) - (Math.random() * 255);
this.GB = (Math.random() * 255) - (Math.random() * 255);
this.BA = (Math.random() * 255) - (Math.random() * 50);
this.BB = (Math.random() * 255) - (Math.random() * 50);
this.AA = (Math.random() * 25) + 50;
this.AB = (Math.random() * 25) + 50;
}
onClipEvent (enterFrame) {
var my_color = new Color(this);
var myColorTransform = {ra:this.RA, rb:this.RB, ga:this.GA, gb:this.GB, ba:this.BA, bb:this.BB, aa:this.AA, ab:this.AB};
my_color.setTransform(myColorTransform);
}
Instance of Symbol 354 MovieClip in Symbol 507 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.bPoints = _root.phud.bPoints + 50;
_root.noteSFX.start();
unloadMovie (this);
}
}
Instance of Symbol 354 MovieClip in Symbol 507 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.bPoints = _root.phud.bPoints + 50;
_root.noteSFX.start();
unloadMovie (this);
}
}
Instance of Symbol 343 MovieClip in Symbol 510 MovieClip Frame 1
onClipEvent (load) {
tGive = 20;
checked = false;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (this.checked == false)) {
this.checked = true;
_root.chk.start();
}
if (this.checked == true) {
this.gotoAndStop("check");
}
}
Instance of Symbol 509 MovieClip in Symbol 510 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.health = _root.phud.health - 15;
}
}
onClipEvent (enterFrame) {
this.RA = (Math.random() * 205) + (Math.random() * 50);
this.RB = (Math.random() * 255) - (Math.random() * 50);
this.GA = (Math.random() * 255) - (Math.random() * 55);
this.GB = (Math.random() * 255) - (Math.random() * 55);
this.BA = (Math.random() * 255) - (Math.random() * 50);
this.BB = (Math.random() * 255) - (Math.random() * 50);
this.AA = (Math.random() * 25) + 50;
this.AB = (Math.random() * 25) + 50;
}
onClipEvent (enterFrame) {
var my_color = new Color(this);
var myColorTransform = {ra:this.RA, rb:this.RB, ga:this.GA, gb:this.GB, ba:this.BA, bb:this.BB, aa:this.AA, ab:this.AB};
my_color.setTransform(myColorTransform);
}
Instance of Symbol 343 MovieClip in Symbol 513 MovieClip Frame 1
onClipEvent (load) {
tGive = 20;
checked = false;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (this.checked == false)) {
this.checked = true;
_root.chk.start();
}
if (this.checked == true) {
this.gotoAndStop("check");
}
}
Instance of Symbol 512 MovieClip in Symbol 513 MovieClip Frame 1
onClipEvent (load) {
this.RA = 255;
this.RB = 255;
this.GA = 10;
this.GB = 30;
this.BA = 20;
this.BB = 255;
this.AA = 100;
this.AB = 100;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.health = _root.phud.health - 15;
}
}
onClipEvent (enterFrame) {
this.RA = (Math.random() * 205) + (Math.random() * 255);
this.RB = (Math.random() * 255) - (Math.random() * 255);
this.GA = (Math.random() * 255) - (Math.random() * 255);
this.GB = (Math.random() * 255) - (Math.random() * 255);
this.BA = (Math.random() * 255) - (Math.random() * 255);
this.BB = (Math.random() * 255) - (Math.random() * 255);
this.AA = (Math.random() * 25) + 50;
this.AB = (Math.random() * 25) + 50;
}
onClipEvent (enterFrame) {
var my_color = new Color(this);
var myColorTransform = {ra:this.RA, rb:this.RB, ga:this.GA, gb:this.GB, ba:this.BA, bb:this.BB, aa:this.AA, ab:this.AB};
my_color.setTransform(myColorTransform);
}
Instance of Symbol 354 MovieClip in Symbol 513 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.bPoints = _root.phud.bPoints + 50;
_root.noteSFX.start();
unloadMovie (this);
}
}
Instance of Symbol 354 MovieClip in Symbol 513 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.bPoints = _root.phud.bPoints + 50;
_root.noteSFX.start();
unloadMovie (this);
}
}
Instance of Symbol 354 MovieClip in Symbol 513 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.bPoints = _root.phud.bPoints + 50;
_root.noteSFX.start();
unloadMovie (this);
}
}
Instance of Symbol 354 MovieClip in Symbol 513 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.bPoints = _root.phud.bPoints + 50;
_root.noteSFX.start();
unloadMovie (this);
}
}
Instance of Symbol 343 MovieClip in Symbol 516 MovieClip Frame 1
onClipEvent (load) {
tGive = 20;
checked = false;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (this.checked == false)) {
this.checked = true;
_root.chk.start();
}
if (this.checked == true) {
this.gotoAndStop("check");
}
}
Instance of Symbol 515 MovieClip in Symbol 516 MovieClip Frame 1
onClipEvent (load) {
this.RA = 255;
this.RB = 255;
this.GA = 10;
this.GB = 30;
this.BA = 20;
this.BB = 255;
this.AA = 100;
this.AB = 100;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.health = _root.phud.health - 15;
}
}
onClipEvent (enterFrame) {
this.RA = (Math.random() * 205) + (Math.random() * 255);
this.RB = (Math.random() * 255) - (Math.random() * 255);
this.GA = (Math.random() * 255) - (Math.random() * 0);
this.GB = (Math.random() * 255) - (Math.random() * 0);
this.BA = (Math.random() * 255) - (Math.random() * 0);
this.BB = (Math.random() * 255) - (Math.random() * 0);
this.AA = (Math.random() * 25) + 50;
this.AB = (Math.random() * 25) + 50;
}
onClipEvent (enterFrame) {
var my_color = new Color(this);
var myColorTransform = {ra:this.RA, rb:this.RB, ga:this.GA, gb:this.GB, ba:this.BA, bb:this.BB, aa:this.AA, ab:this.AB};
my_color.setTransform(myColorTransform);
}
Instance of Symbol 354 MovieClip in Symbol 516 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.bPoints = _root.phud.bPoints + 50;
_root.noteSFX.start();
unloadMovie (this);
}
}
Instance of Symbol 354 MovieClip in Symbol 516 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.bPoints = _root.phud.bPoints + 50;
_root.noteSFX.start();
unloadMovie (this);
}
}
Instance of Symbol 354 MovieClip in Symbol 516 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.bPoints = _root.phud.bPoints + 50;
_root.noteSFX.start();
unloadMovie (this);
}
}
Instance of Symbol 354 MovieClip in Symbol 516 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.phud.bPoints = _root.phud.bPoints + 50;
_root.noteSFX.start();
unloadMovie (this);
}
}
Instance of Symbol 507 MovieClip "laser8pt5" in Symbol 519 MovieClip Frame 1
onClipEvent (load) {
this.spd = 0;
}
onClipEvent (enterFrame) {
this._y = this._y + this.spd;
}
Instance of Symbol 510 MovieClip "laser8pt4" in Symbol 519 MovieClip Frame 1
onClipEvent (load) {
this.spd = 0;
}
onClipEvent (enterFrame) {
this._y = this._y + this.spd;
if (this._y >= 2000) {
_root.path8.laser8pt5.spd = 11;
}
if (this._y >= 2300) {
unloadMovie (this);
}
}
Instance of Symbol 513 MovieClip "laser8pt3" in Symbol 519 MovieClip Frame 1
onClipEvent (load) {
this.spd = 0;
}
onClipEvent (enterFrame) {
this._y = this._y + this.spd;
if (this._y >= 3000) {
_root.path8.laser8pt4.spd = 10;
}
if (this._y >= 3300) {
unloadMovie (this);
}
}
Instance of Symbol 516 MovieClip "laser8pt2" in Symbol 519 MovieClip Frame 1
onClipEvent (load) {
this.spd = 0;
}
onClipEvent (enterFrame) {
this._y = this._y + this.spd;
if (this._y >= 2500) {
_root.path8.laser8pt3.spd = 7;
}
if (this._y >= 3000) {
unloadMovie (this);
}
}
Instance of Symbol 510 MovieClip in Symbol 519 MovieClip Frame 1
onClipEvent (load) {
this.spd = 5;
}
onClipEvent (enterFrame) {
if (_root.hud.game == true) {
this._y = this._y + this.spd;
}
if (this._y >= 2000) {
_root.path8.laser8pt2.spd = 6;
}
if (this._y >= 2300) {
unloadMovie (this);
}
}
Instance of Symbol 518 MovieClip in Symbol 519 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd > 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.revF = _root.player.revF + _root.player.fowF;
_root.player.fowF = 0;
} else if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd < 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.fowF = _root.player.fowF + _root.player.revF;
_root.player.revF = 0;
}
}
Instance of Symbol 522 MovieClip in Symbol 523 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd > 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.revF = _root.player.revF + _root.player.fowF;
_root.player.fowF = 0;
} else if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd < 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.fowF = _root.player.fowF + _root.player.revF;
_root.player.revF = 0;
}
}
Instance of Symbol 528 MovieClip in Symbol 529 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd > 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.revF = _root.player.revF + _root.player.fowF;
_root.player.fowF = 0;
} else if (this.hitTest(_root.player._x, _root.player._y, true) && (_root.player.spd < 0)) {
_root.player._y = _root.player._y + (_root.player.spd * Math.cos((Math.PI/180) * _root.player._rotation));
_root.player._x = _root.player._x - (_root.player.spd * Math.sin((Math.PI/180) * _root.player._rotation));
_root.player.fowF = _root.player.fowF + _root.player.revF;
_root.player.revF = 0;
}
}