Frame 1
var bc = 1000;
_root.onMouseDown = function () {
bc++;
if (bc > 1100) {
bc = 1000;
}
duplicateMovieClip ("bullet", "b" + bc, bc);
};
function doSomething() {
getURL ("www.cookiecarlo.com", _blank);
}
function doSomething2() {
getURL ("www.pezboy440.tk", _blank);
}
MENU = new ContextMenu();
MENU.hideBuiltInItems();
Functioned = new ContextMenuItem("Visit Coder's Website", doSomething);
Functioned2 = new ContextMenuItem("Visit Artist's Website", doSomething2);
MENU.customItems.push(Functioned);
MENU.customItems.push(Functioned2);
_root.menu = MENU;
Frame 2
stop();
Frame 3
stop();
Frame 4
stop();
Instance of Symbol 80 MovieClip "gun" in Frame 4
onClipEvent (load) {
grav = 1;
speed = 0;
_root.score = 0;
}
onClipEvent (enterFrame) {
if (speed > 0) {
speed--;
}
if (speed < 0) {
speed++;
}
if (grav < 0) {
grav++;
}
}
onClipEvent (enterFrame) {
grav++;
this._y = this._y + grav;
this._x = this._x + speed;
}
onClipEvent (enterFrame) {
if (grav > 30) {
grav = 30;
}
if (grav < -30) {
grav = -30;
}
if (speed > 30) {
speed = 30;
}
if (speed < -30) {
speed = -30;
}
if (Key.isDown(38)) {
grav = grav - 3;
}
if (Key.isDown(37)) {
speed = speed - 2;
}
if (Key.isDown(39)) {
speed = speed + 2;
}
}
onClipEvent (enterFrame) {
if (this._x < 0) {
this._x = 0;
speed = speed - (speed * 2);
}
if (this._x > 500) {
this._x = 450;
speed = speed - (speed * 2);
}
if (this._y < 0) {
this._y = 0;
grav = grav - (grav * 2);
}
if (this._y > 300) {
this._y = 296;
grav = grav - (grav * 2.2);
}
}
onClipEvent (mouseMove) {
Xd = _root._xmouse - _x;
Yd = _root._ymouse - _y;
radAngle = Math.atan2(Yd, Xd);
_rotation = int(((radAngle * 360) / (Math.PI*2)) + 90);
updateAfterEvent();
}
Instance of Symbol 82 MovieClip "bullet" in Frame 4
onClipEvent (load) {
spd = 20;
_x = _root.gun._x;
_y = _root.gun._y;
_rotation = _root.gun._rotation;
}
onClipEvent (enterFrame) {
if (_name == "bullet") {
_x = -1000;
} else if (_rotation > 180) {
_y = (_y + (spd * Math.cos((Math.PI/180) * _rotation)));
_x = (_x - (spd * Math.sin((Math.PI/180) * _rotation)));
} else {
_y = (_y - (spd * Math.cos((Math.PI/180) * _rotation)));
_x = (_x + (spd * Math.sin((Math.PI/180) * _rotation)));
}
if ((((_x > Stage.width) || (_x < 0)) || (_y < 0)) || (_y > Stage.height)) {
this.removeMovieClip();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.xenon)) {
_root.gotoAndStop("lose");
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.krypton)) {
_root.gotoAndStop("lose");
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.lithium)) {
_root.gotoAndStop("lith");
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.potassium)) {
_root.gotoAndStop("potas");
}
}
Frame 5
stop();
Frame 6
stop();
Frame 7
stop();
Frame 8
stop();
Frame 9
stop();
Frame 10
stop();
com = 0;
Instance of Symbol 82 MovieClip "bullet" in Frame 10
onClipEvent (load) {
spd = 20;
_x = _root.gun._x;
_y = _root.gun._y;
_rotation = _root.gun._rotation;
}
onClipEvent (enterFrame) {
if (_name == "bullet") {
_x = -1000;
} else if (_rotation > 180) {
_y = (_y + (spd * Math.cos((Math.PI/180) * _rotation)));
_x = (_x - (spd * Math.sin((Math.PI/180) * _rotation)));
} else {
_y = (_y - (spd * Math.cos((Math.PI/180) * _rotation)));
_x = (_x + (spd * Math.sin((Math.PI/180) * _rotation)));
}
if ((((_x > Stage.width) || (_x < 0)) || (_y < 0)) || (_y > Stage.height)) {
this.removeMovieClip();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.flourine)) {
_root.gotoAndStop("minigame1");
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.sodium)) {
_root.gotoAndStop("1win1");
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.pot)) {
_root.gotoAndStop("1win2");
}
}
Instance of Symbol 112 MovieClip "gun" in Frame 10
onClipEvent (load) {
grav = 1;
speed = 0;
_root.score = 0;
}
onClipEvent (enterFrame) {
if (speed > 0) {
speed--;
}
if (speed < 0) {
speed++;
}
if (grav < 0) {
grav++;
}
}
onClipEvent (enterFrame) {
grav++;
this._y = this._y + grav;
this._x = this._x + speed;
}
onClipEvent (enterFrame) {
if (grav > 30) {
grav = 30;
}
if (grav < -30) {
grav = -30;
}
if (speed > 30) {
speed = 30;
}
if (speed < -30) {
speed = -30;
}
if (Key.isDown(38)) {
grav = grav - 3;
}
if (Key.isDown(37)) {
speed = speed - 2;
}
if (Key.isDown(39)) {
speed = speed + 2;
}
}
onClipEvent (enterFrame) {
if (this._x < 0) {
this._x = 0;
speed = speed - (speed * 2);
}
if (this._x > 500) {
this._x = 450;
speed = speed - (speed * 2);
}
if (this._y < 0) {
this._y = 0;
grav = grav - (grav * 2);
}
if (this._y > 300) {
this._y = 296;
grav = grav - (grav * 2.2);
}
}
onClipEvent (mouseMove) {
Xd = _root._xmouse - _x;
Yd = _root._ymouse - _y;
radAngle = Math.atan2(Yd, Xd);
_rotation = int(((radAngle * 360) / (Math.PI*2)) + 90);
updateAfterEvent();
}
Frame 11
stop();
Frame 12
stop();
Frame 13
stop();
Frame 14
stop();
Frame 15
stop();
Frame 16
stop();
Instance of Symbol 142 MovieClip "r" in Frame 16
onClipEvent (enterFrame) {
if (this.hitTest(_root.raceline)) {
_root.gotoAndPlay("2info");
}
}
Instance of Symbol 145 MovieClip "ga" in Frame 16
onClipEvent (enterFrame) {
if (this.hitTest(_root.raceline)) {
_root.gotoAndPlay("lose");
}
}
Frame 17
stop();
Frame 18
stop();
com = 0;
Instance of Symbol 82 MovieClip "bullet" in Frame 18
onClipEvent (load) {
spd = 20;
_x = _root.gun._x;
_y = _root.gun._y;
_rotation = _root.gun._rotation;
}
onClipEvent (enterFrame) {
if (_name == "bullet") {
_x = -1000;
} else if (_rotation > 180) {
_y = (_y + (spd * Math.cos((Math.PI/180) * _rotation)));
_x = (_x - (spd * Math.sin((Math.PI/180) * _rotation)));
} else {
_y = (_y - (spd * Math.cos((Math.PI/180) * _rotation)));
_x = (_x + (spd * Math.sin((Math.PI/180) * _rotation)));
}
if ((((_x > Stage.width) || (_x < 0)) || (_y < 0)) || (_y > Stage.height)) {
this.removeMovieClip();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.xenon)) {
_root.gotoAndStop("lose");
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.sodium)) {
_root.gotoAndStop("2win1");
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.pot)) {
_root.gotoAndStop("2win2");
}
}
Instance of Symbol 149 MovieClip "gun" in Frame 18
onClipEvent (load) {
grav = 1;
speed = 0;
_root.score = 0;
}
onClipEvent (enterFrame) {
if (speed > 0) {
speed--;
}
if (speed < 0) {
speed++;
}
if (grav < 0) {
grav++;
}
}
onClipEvent (enterFrame) {
grav++;
this._y = this._y + grav;
this._x = this._x + speed;
}
onClipEvent (enterFrame) {
if (grav > 30) {
grav = 30;
}
if (grav < -30) {
grav = -30;
}
if (speed > 30) {
speed = 30;
}
if (speed < -30) {
speed = -30;
}
if (Key.isDown(38)) {
grav = grav - 3;
}
if (Key.isDown(37)) {
speed = speed - 2;
}
if (Key.isDown(39)) {
speed = speed + 2;
}
}
onClipEvent (enterFrame) {
if (this._x < 0) {
this._x = 0;
speed = speed - (speed * 2);
}
if (this._x > 500) {
this._x = 450;
speed = speed - (speed * 2);
}
if (this._y < 0) {
this._y = 0;
grav = grav - (grav * 2);
}
if (this._y > 300) {
this._y = 296;
grav = grav - (grav * 2.2);
}
}
onClipEvent (mouseMove) {
Xd = _root._xmouse - _x;
Yd = _root._ymouse - _y;
radAngle = Math.atan2(Yd, Xd);
_rotation = int(((radAngle * 360) / (Math.PI*2)) + 90);
updateAfterEvent();
}
Frame 19
stop();
Frame 20
stop();
Frame 21
stop();
Frame 22
stop();
com = 0;
Instance of Symbol 82 MovieClip "bullet" in Frame 22
onClipEvent (load) {
spd = 20;
_x = _root.gun._x;
_y = _root.gun._y;
_rotation = _root.gun._rotation;
}
onClipEvent (enterFrame) {
if (_name == "bullet") {
_x = -1000;
} else if (_rotation > 180) {
_y = (_y + (spd * Math.cos((Math.PI/180) * _rotation)));
_x = (_x - (spd * Math.sin((Math.PI/180) * _rotation)));
} else {
_y = (_y - (spd * Math.cos((Math.PI/180) * _rotation)));
_x = (_x + (spd * Math.sin((Math.PI/180) * _rotation)));
}
if ((((_x > Stage.width) || (_x < 0)) || (_y < 0)) || (_y > Stage.height)) {
this.removeMovieClip();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.helium)) {
_root.gotoAndStop("lose");
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.lith)) {
_root.gotoAndStop("3win1");
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.pot)) {
_root.gotoAndStop("3win2");
}
}
Instance of Symbol 149 MovieClip "gun" in Frame 22
onClipEvent (load) {
grav = 1;
speed = 0;
_root.score = 0;
}
onClipEvent (enterFrame) {
if (speed > 0) {
speed--;
}
if (speed < 0) {
speed++;
}
if (grav < 0) {
grav++;
}
}
onClipEvent (enterFrame) {
grav++;
this._y = this._y + grav;
this._x = this._x + speed;
}
onClipEvent (enterFrame) {
if (grav > 30) {
grav = 30;
}
if (grav < -30) {
grav = -30;
}
if (speed > 30) {
speed = 30;
}
if (speed < -30) {
speed = -30;
}
if (Key.isDown(38)) {
grav = grav - 3;
}
if (Key.isDown(37)) {
speed = speed - 2;
}
if (Key.isDown(39)) {
speed = speed + 2;
}
}
onClipEvent (enterFrame) {
if (this._x < 0) {
this._x = 0;
speed = speed - (speed * 2);
}
if (this._x > 500) {
this._x = 450;
speed = speed - (speed * 2);
}
if (this._y < 0) {
this._y = 0;
grav = grav - (grav * 2);
}
if (this._y > 300) {
this._y = 296;
grav = grav - (grav * 2.2);
}
}
onClipEvent (mouseMove) {
Xd = _root._xmouse - _x;
Yd = _root._ymouse - _y;
radAngle = Math.atan2(Yd, Xd);
_rotation = int(((radAngle * 360) / (Math.PI*2)) + 90);
updateAfterEvent();
}
Frame 23
stop();
Frame 24
stop();
Frame 25
stop();
Frame 26
stop();
Frame 27
stop();
Instance of Symbol 178 MovieClip "atom1" in Frame 27
onClipEvent (enterFrame) {
if (this.hitTest(_root.at1)) {
_root.gotoAndPlay("lose");
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.at2)) {
_root.gotoAndPlay("lose");
}
}
Instance of Symbol 179 MovieClip "at1" in Frame 27
onClipEvent (enterFrame) {
if (Key.isDown(38)) {
_y = (_y - 8);
}
}
onClipEvent (enterFrame) {
if (Key.isDown(40)) {
_y = (_y - -8);
}
}
onClipEvent (enterFrame) {
if (Key.isDown(37)) {
_x = (_x - 8);
}
}
onClipEvent (enterFrame) {
if (Key.isDown(39)) {
_x = (_x - -8);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.at2)) {
_root.gotoAndPlay("5info");
}
}
Instance of Symbol 180 MovieClip "at2" in Frame 27
onClipEvent (enterFrame) {
if (Key.isDown(38)) {
_y = (_y + 8);
}
}
onClipEvent (enterFrame) {
if (Key.isDown(40)) {
_y = (_y + -8);
}
}
onClipEvent (enterFrame) {
if (Key.isDown(37)) {
_x = (_x + 8);
}
}
onClipEvent (enterFrame) {
if (Key.isDown(39)) {
_x = (_x - 8);
}
}
Instance of Symbol 181 MovieClip in Frame 27
onClipEvent (enterFrame) {
if (this.hitTest(_root.at1)) {
_root.gotoAndPlay("lose");
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.at2)) {
_root.gotoAndPlay("lose");
}
}
Instance of Symbol 182 MovieClip in Frame 27
onClipEvent (enterFrame) {
if (this.hitTest(_root.at1)) {
_root.gotoAndPlay("lose");
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.at2)) {
_root.gotoAndPlay("lose");
}
}
Instance of Symbol 181 MovieClip in Frame 27
onClipEvent (enterFrame) {
if (this.hitTest(_root.at1)) {
_root.gotoAndPlay("lose");
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.at2)) {
_root.gotoAndPlay("lose");
}
}
Instance of Symbol 181 MovieClip in Frame 27
onClipEvent (enterFrame) {
if (this.hitTest(_root.at1)) {
_root.gotoAndPlay("lose");
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.at2)) {
_root.gotoAndPlay("lose");
}
}
Instance of Symbol 181 MovieClip in Frame 27
onClipEvent (enterFrame) {
if (this.hitTest(_root.at1)) {
_root.gotoAndPlay("lose");
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.at2)) {
_root.gotoAndPlay("lose");
}
}
Instance of Symbol 181 MovieClip in Frame 27
onClipEvent (enterFrame) {
if (this.hitTest(_root.at1)) {
_root.gotoAndPlay("lose");
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.at2)) {
_root.gotoAndPlay("lose");
}
}
Frame 28
stop();
Frame 29
stop();
com = 0;
Instance of Symbol 82 MovieClip "bullet" in Frame 29
onClipEvent (load) {
spd = 20;
_x = _root.gun._x;
_y = _root.gun._y;
_rotation = _root.gun._rotation;
}
onClipEvent (enterFrame) {
if (_name == "bullet") {
_x = -1000;
} else if (_rotation > 180) {
_y = (_y + (spd * Math.cos((Math.PI/180) * _rotation)));
_x = (_x - (spd * Math.sin((Math.PI/180) * _rotation)));
} else {
_y = (_y - (spd * Math.cos((Math.PI/180) * _rotation)));
_x = (_x + (spd * Math.sin((Math.PI/180) * _rotation)));
}
if ((((_x > Stage.width) || (_x < 0)) || (_y < 0)) || (_y > Stage.height)) {
this.removeMovieClip();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.xenon)) {
_root.gotoAndStop("lose");
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.sodium)) {
_root.gotoAndStop("6win1");
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.lith)) {
_root.gotoAndStop("6win2");
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.kryp)) {
_root.gotoAndStop("lose");
}
}
Instance of Symbol 112 MovieClip "gun" in Frame 29
onClipEvent (load) {
grav = 1;
speed = 0;
_root.score = 0;
}
onClipEvent (enterFrame) {
if (speed > 0) {
speed--;
}
if (speed < 0) {
speed++;
}
if (grav < 0) {
grav++;
}
}
onClipEvent (enterFrame) {
grav++;
this._y = this._y + grav;
this._x = this._x + speed;
}
onClipEvent (enterFrame) {
if (grav > 30) {
grav = 30;
}
if (grav < -30) {
grav = -30;
}
if (speed > 30) {
speed = 30;
}
if (speed < -30) {
speed = -30;
}
if (Key.isDown(38)) {
grav = grav - 3;
}
if (Key.isDown(37)) {
speed = speed - 2;
}
if (Key.isDown(39)) {
speed = speed + 2;
}
}
onClipEvent (enterFrame) {
if (this._x < 0) {
this._x = 0;
speed = speed - (speed * 2);
}
if (this._x > 500) {
this._x = 450;
speed = speed - (speed * 2);
}
if (this._y < 0) {
this._y = 0;
grav = grav - (grav * 2);
}
if (this._y > 300) {
this._y = 296;
grav = grav - (grav * 2.2);
}
}
onClipEvent (mouseMove) {
Xd = _root._xmouse - _x;
Yd = _root._ymouse - _y;
radAngle = Math.atan2(Yd, Xd);
_rotation = int(((radAngle * 360) / (Math.PI*2)) + 90);
updateAfterEvent();
}
Frame 30
stop();
Frame 31
stop();
Frame 32
stop();
Frame 33
stop();
com = 0;
Instance of Symbol 82 MovieClip "bullet" in Frame 33
onClipEvent (load) {
spd = 20;
_x = _root.gun._x;
_y = _root.gun._y;
_rotation = _root.gun._rotation;
}
onClipEvent (enterFrame) {
if (_name == "bullet") {
_x = -1000;
} else if (_rotation > 180) {
_y = (_y + (spd * Math.cos((Math.PI/180) * _rotation)));
_x = (_x - (spd * Math.sin((Math.PI/180) * _rotation)));
} else {
_y = (_y - (spd * Math.cos((Math.PI/180) * _rotation)));
_x = (_x + (spd * Math.sin((Math.PI/180) * _rotation)));
}
if ((((_x > Stage.width) || (_x < 0)) || (_y < 0)) || (_y > Stage.height)) {
this.removeMovieClip();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.xenon)) {
_root.gotoAndStop("lose");
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.sodium)) {
_root.gotoAndStop("7win1");
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.hydrogen)) {
_root.gotoAndStop("7win2");
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.kryp)) {
_root.gotoAndStop("lose");
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.helium)) {
_root.gotoAndStop("lose");
}
}
Instance of Symbol 112 MovieClip "gun" in Frame 33
onClipEvent (load) {
grav = 1;
speed = 0;
_root.score = 0;
}
onClipEvent (enterFrame) {
if (speed > 0) {
speed--;
}
if (speed < 0) {
speed++;
}
if (grav < 0) {
grav++;
}
}
onClipEvent (enterFrame) {
grav++;
this._y = this._y + grav;
this._x = this._x + speed;
}
onClipEvent (enterFrame) {
if (grav > 30) {
grav = 30;
}
if (grav < -30) {
grav = -30;
}
if (speed > 30) {
speed = 30;
}
if (speed < -30) {
speed = -30;
}
if (Key.isDown(38)) {
grav = grav - 3;
}
if (Key.isDown(37)) {
speed = speed - 2;
}
if (Key.isDown(39)) {
speed = speed + 2;
}
}
onClipEvent (enterFrame) {
if (this._x < 0) {
this._x = 0;
speed = speed - (speed * 2);
}
if (this._x > 500) {
this._x = 450;
speed = speed - (speed * 2);
}
if (this._y < 0) {
this._y = 0;
grav = grav - (grav * 2);
}
if (this._y > 300) {
this._y = 296;
grav = grav - (grav * 2.2);
}
}
onClipEvent (mouseMove) {
Xd = _root._xmouse - _x;
Yd = _root._ymouse - _y;
radAngle = Math.atan2(Yd, Xd);
_rotation = int(((radAngle * 360) / (Math.PI*2)) + 90);
updateAfterEvent();
}
Frame 34
stop();
Frame 35
stop();
Frame 36
stop();
Frame 37
stop();
Instance of Symbol 218 MovieClip in Frame 37
on (press) {
startDrag ("");
}
on (release) {
stopDrag();
}
Frame 38
stop();
Instance of Symbol 68 MovieClip in Frame 38
onClipEvent (enterFrame) {
if (this.hitTest(_root.ele)) {
_root.gotoAndStop("9info");
}
}
Instance of Symbol 80 MovieClip in Frame 38
onClipEvent (enterFrame) {
if (this.hitTest(_root.ele)) {
_root.gotoAndStop("lose");
}
}
Instance of Symbol 198 MovieClip in Frame 38
onClipEvent (enterFrame) {
if (this.hitTest(_root.ele)) {
_root.gotoAndStop("lose");
}
}
Instance of Symbol 112 MovieClip in Frame 38
onClipEvent (enterFrame) {
if (this.hitTest(_root.ele)) {
_root.gotoAndStop("lose");
}
}
Instance of Symbol 61 MovieClip in Frame 38
onClipEvent (enterFrame) {
if (this.hitTest(_root.ele)) {
_root.gotoAndStop("lose");
}
}
Instance of Symbol 64 MovieClip in Frame 38
onClipEvent (enterFrame) {
if (this.hitTest(_root.ele)) {
_root.gotoAndStop("lose");
}
}
Instance of Symbol 161 MovieClip in Frame 38
onClipEvent (enterFrame) {
if (this.hitTest(_root.ele)) {
_root.gotoAndStop("lose");
}
}
Instance of Symbol 80 MovieClip in Frame 38
onClipEvent (enterFrame) {
if (this.hitTest(_root.ele)) {
_root.gotoAndStop("lose");
}
}
Instance of Symbol 71 MovieClip in Frame 38
onClipEvent (enterFrame) {
if (this.hitTest(_root.ele)) {
_root.gotoAndStop("lose");
}
}
Instance of Symbol 222 MovieClip in Frame 38
onClipEvent (enterFrame) {
if (this.hitTest(_root.ele)) {
_root.gotoAndStop("lose");
}
}
Instance of Symbol 198 MovieClip in Frame 38
onClipEvent (enterFrame) {
if (this.hitTest(_root.ele)) {
_root.gotoAndStop("lose");
}
}
Instance of Symbol 161 MovieClip in Frame 38
onClipEvent (enterFrame) {
if (this.hitTest(_root.ele)) {
_root.gotoAndStop("lose");
}
}
Instance of Symbol 80 MovieClip in Frame 38
onClipEvent (enterFrame) {
if (this.hitTest(_root.ele)) {
_root.gotoAndStop("lose");
}
}
Instance of Symbol 64 MovieClip in Frame 38
onClipEvent (enterFrame) {
if (this.hitTest(_root.ele)) {
_root.gotoAndStop("lose");
}
}
Instance of Symbol 112 MovieClip in Frame 38
onClipEvent (enterFrame) {
if (this.hitTest(_root.ele)) {
_root.gotoAndStop("lose");
}
}
Instance of Symbol 80 MovieClip in Frame 38
onClipEvent (enterFrame) {
if (this.hitTest(_root.ele)) {
_root.gotoAndStop("lose");
}
}
Instance of Symbol 161 MovieClip in Frame 38
onClipEvent (enterFrame) {
if (this.hitTest(_root.ele)) {
_root.gotoAndStop("lose");
}
}
Instance of Symbol 198 MovieClip in Frame 38
onClipEvent (enterFrame) {
if (this.hitTest(_root.ele)) {
_root.gotoAndStop("lose");
}
}
Instance of Symbol 71 MovieClip in Frame 38
onClipEvent (enterFrame) {
if (this.hitTest(_root.ele)) {
_root.gotoAndStop("lose");
}
}
Instance of Symbol 71 MovieClip in Frame 38
onClipEvent (enterFrame) {
if (this.hitTest(_root.ele)) {
_root.gotoAndStop("lose");
}
}
Instance of Symbol 80 MovieClip in Frame 38
onClipEvent (enterFrame) {
if (this.hitTest(_root.ele)) {
_root.gotoAndStop("lose");
}
}
Instance of Symbol 198 MovieClip in Frame 38
onClipEvent (enterFrame) {
if (this.hitTest(_root.ele)) {
_root.gotoAndStop("lose");
}
}
Instance of Symbol 64 MovieClip in Frame 38
onClipEvent (enterFrame) {
if (this.hitTest(_root.ele)) {
_root.gotoAndStop("lose");
}
}
Instance of Symbol 112 MovieClip in Frame 38
onClipEvent (enterFrame) {
if (this.hitTest(_root.ele)) {
_root.gotoAndStop("lose");
}
}
Instance of Symbol 198 MovieClip in Frame 38
onClipEvent (enterFrame) {
if (this.hitTest(_root.ele)) {
_root.gotoAndStop("lose");
}
}
Instance of Symbol 161 MovieClip in Frame 38
onClipEvent (enterFrame) {
if (this.hitTest(_root.ele)) {
_root.gotoAndStop("lose");
}
}
Instance of Symbol 64 MovieClip in Frame 38
onClipEvent (enterFrame) {
if (this.hitTest(_root.ele)) {
_root.gotoAndStop("lose");
}
}
Instance of Symbol 198 MovieClip in Frame 38
onClipEvent (enterFrame) {
if (this.hitTest(_root.ele)) {
_root.gotoAndStop("lose");
}
}
Instance of Symbol 71 MovieClip in Frame 38
onClipEvent (enterFrame) {
if (this.hitTest(_root.ele)) {
_root.gotoAndStop("lose");
}
}
Instance of Symbol 198 MovieClip in Frame 38
onClipEvent (enterFrame) {
if (this.hitTest(_root.ele)) {
_root.gotoAndStop("lose");
}
}
Instance of Symbol 161 MovieClip in Frame 38
onClipEvent (enterFrame) {
if (this.hitTest(_root.ele)) {
_root.gotoAndStop("lose");
}
}
Instance of Symbol 80 MovieClip in Frame 38
onClipEvent (enterFrame) {
if (this.hitTest(_root.ele)) {
}
}
Instance of Symbol 71 MovieClip in Frame 38
onClipEvent (enterFrame) {
if (this.hitTest(_root.ele)) {
_root.gotoAndStop("lose");
}
}
Instance of Symbol 64 MovieClip in Frame 38
onClipEvent (enterFrame) {
if (this.hitTest(_root.ele)) {
_root.gotoAndStop("lose");
}
}
Instance of Symbol 161 MovieClip in Frame 38
onClipEvent (enterFrame) {
if (this.hitTest(_root.ele)) {
_root.gotoAndStop("lose");
}
}
Instance of Symbol 80 MovieClip in Frame 38
onClipEvent (enterFrame) {
if (this.hitTest(_root.ele)) {
}
}
Instance of Symbol 64 MovieClip in Frame 38
onClipEvent (enterFrame) {
if (this.hitTest(_root.ele)) {
_root.gotoAndStop("lose");
}
}
Instance of Symbol 112 MovieClip in Frame 38
onClipEvent (enterFrame) {
if (this.hitTest(_root.ele)) {
_root.gotoAndStop("lose");
}
}
Instance of Symbol 112 MovieClip in Frame 38
onClipEvent (enterFrame) {
if (this.hitTest(_root.ele)) {
_root.gotoAndStop("lose");
}
}
Instance of Symbol 161 MovieClip in Frame 38
onClipEvent (enterFrame) {
if (this.hitTest(_root.ele)) {
_root.gotoAndStop("lose");
}
}
Instance of Symbol 71 MovieClip in Frame 38
onClipEvent (enterFrame) {
if (this.hitTest(_root.ele)) {
_root.gotoAndStop("lose");
}
}
Instance of Symbol 80 MovieClip in Frame 38
onClipEvent (enterFrame) {
if (this.hitTest(_root.ele)) {
_root.gotoAndStop("lose");
}
}
Instance of Symbol 198 MovieClip in Frame 38
onClipEvent (enterFrame) {
if (this.hitTest(_root.ele)) {
_root.gotoAndStop("lose");
}
}
Instance of Symbol 198 MovieClip in Frame 38
onClipEvent (enterFrame) {
if (this.hitTest(_root.ele)) {
_root.gotoAndStop("lose");
}
}
Instance of Symbol 198 MovieClip in Frame 38
onClipEvent (enterFrame) {
if (this.hitTest(_root.ele)) {
_root.gotoAndStop("lose");
}
}
Instance of Symbol 112 MovieClip in Frame 38
onClipEvent (enterFrame) {
if (this.hitTest(_root.ele)) {
_root.gotoAndStop("lose");
}
}
Instance of Symbol 161 MovieClip in Frame 38
onClipEvent (enterFrame) {
if (this.hitTest(_root.ele)) {
_root.gotoAndStop("lose");
}
}
Instance of Symbol 161 MovieClip in Frame 38
onClipEvent (enterFrame) {
if (this.hitTest(_root.ele)) {
_root.gotoAndStop("lose");
}
}
Instance of Symbol 80 MovieClip in Frame 38
onClipEvent (enterFrame) {
if (this.hitTest(_root.ele)) {
}
}
Instance of Symbol 64 MovieClip in Frame 38
onClipEvent (enterFrame) {
if (this.hitTest(_root.ele)) {
_root.gotoAndStop("lose");
}
}
Instance of Symbol 161 MovieClip in Frame 38
onClipEvent (enterFrame) {
if (this.hitTest(_root.ele)) {
_root.gotoAndStop("lose");
}
}
Instance of Symbol 80 MovieClip in Frame 38
onClipEvent (enterFrame) {
if (this.hitTest(_root.ele)) {
}
}
Instance of Symbol 112 MovieClip in Frame 38
onClipEvent (enterFrame) {
if (this.hitTest(_root.ele)) {
_root.gotoAndStop("lose");
}
}
Instance of Symbol 198 MovieClip in Frame 38
onClipEvent (enterFrame) {
if (this.hitTest(_root.ele)) {
_root.gotoAndStop("lose");
}
}
Instance of Symbol 112 MovieClip in Frame 38
onClipEvent (enterFrame) {
if (this.hitTest(_root.ele)) {
_root.gotoAndStop("lose");
}
}
Instance of Symbol 61 MovieClip in Frame 38
onClipEvent (enterFrame) {
if (this.hitTest(_root.ele)) {
_root.gotoAndStop("lose");
}
}
Instance of Symbol 64 MovieClip in Frame 38
onClipEvent (enterFrame) {
if (this.hitTest(_root.ele)) {
_root.gotoAndStop("lose");
}
}
Instance of Symbol 161 MovieClip in Frame 38
onClipEvent (enterFrame) {
if (this.hitTest(_root.ele)) {
_root.gotoAndStop("lose");
}
}
Instance of Symbol 161 MovieClip in Frame 38
onClipEvent (enterFrame) {
if (this.hitTest(_root.ele)) {
_root.gotoAndStop("lose");
}
}
Instance of Symbol 64 MovieClip in Frame 38
onClipEvent (enterFrame) {
if (this.hitTest(_root.ele)) {
_root.gotoAndStop("lose");
}
}
Instance of Symbol 71 MovieClip in Frame 38
onClipEvent (enterFrame) {
if (this.hitTest(_root.ele)) {
_root.gotoAndStop("lose");
}
}
Instance of Symbol 161 MovieClip in Frame 38
onClipEvent (enterFrame) {
if (this.hitTest(_root.ele)) {
_root.gotoAndStop("lose");
}
}
Instance of Symbol 112 MovieClip in Frame 38
onClipEvent (enterFrame) {
if (this.hitTest(_root.ele)) {
_root.gotoAndStop("lose");
}
}
Instance of Symbol 61 MovieClip in Frame 38
onClipEvent (enterFrame) {
if (this.hitTest(_root.ele)) {
_root.gotoAndStop("lose");
}
}
Instance of Symbol 61 MovieClip in Frame 38
onClipEvent (enterFrame) {
if (this.hitTest(_root.ele)) {
_root.gotoAndStop("lose");
}
}
Instance of Symbol 198 MovieClip in Frame 38
onClipEvent (enterFrame) {
if (this.hitTest(_root.ele)) {
_root.gotoAndStop("lose");
}
}
Instance of Symbol 80 MovieClip in Frame 38
onClipEvent (enterFrame) {
if (this.hitTest(_root.ele)) {
}
}
Frame 39
stop();
Frame 40
stop();
com = 0;
Instance of Symbol 82 MovieClip "bullet" in Frame 40
onClipEvent (load) {
spd = 20;
_x = _root.gun._x;
_y = _root.gun._y;
_rotation = _root.gun._rotation;
}
onClipEvent (enterFrame) {
if (_name == "bullet") {
_x = -1000;
} else if (_rotation > 180) {
_y = (_y + (spd * Math.cos((Math.PI/180) * _rotation)));
_x = (_x - (spd * Math.sin((Math.PI/180) * _rotation)));
} else {
_y = (_y - (spd * Math.cos((Math.PI/180) * _rotation)));
_x = (_x + (spd * Math.sin((Math.PI/180) * _rotation)));
}
if ((((_x > Stage.width) || (_x < 0)) || (_y < 0)) || (_y > Stage.height)) {
this.removeMovieClip();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.xenon)) {
_root.gotoAndStop("lose");
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.hy)) {
_root.gotoAndStop("9win1");
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.kryp)) {
_root.gotoAndStop("lose");
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.helium)) {
_root.gotoAndStop("lose");
}
}
Instance of Symbol 227 MovieClip "gun" in Frame 40
onClipEvent (load) {
grav = 1;
speed = 0;
_root.score = 0;
}
onClipEvent (enterFrame) {
if (speed > 0) {
speed--;
}
if (speed < 0) {
speed++;
}
if (grav < 0) {
grav++;
}
}
onClipEvent (enterFrame) {
grav++;
this._y = this._y + grav;
this._x = this._x + speed;
}
onClipEvent (enterFrame) {
if (grav > 30) {
grav = 30;
}
if (grav < -30) {
grav = -30;
}
if (speed > 30) {
speed = 30;
}
if (speed < -30) {
speed = -30;
}
if (Key.isDown(38)) {
grav = grav - 3;
}
if (Key.isDown(37)) {
speed = speed - 2;
}
if (Key.isDown(39)) {
speed = speed + 2;
}
}
onClipEvent (enterFrame) {
if (this._x < 0) {
this._x = 0;
speed = speed - (speed * 2);
}
if (this._x > 500) {
this._x = 450;
speed = speed - (speed * 2);
}
if (this._y < 0) {
this._y = 0;
grav = grav - (grav * 2);
}
if (this._y > 300) {
this._y = 296;
grav = grav - (grav * 2.2);
}
}
onClipEvent (mouseMove) {
Xd = _root._xmouse - _x;
Yd = _root._ymouse - _y;
radAngle = Math.atan2(Yd, Xd);
_rotation = int(((radAngle * 360) / (Math.PI*2)) + 90);
updateAfterEvent();
}
Frame 41
stop();
Frame 42
stop();
Frame 43
stop();
com = 0;
Instance of Symbol 82 MovieClip "bullet" in Frame 43
onClipEvent (load) {
spd = 20;
_x = _root.gun._x;
_y = _root.gun._y;
_rotation = _root.gun._rotation;
}
onClipEvent (enterFrame) {
if (_name == "bullet") {
_x = -1000;
} else if (_rotation > 180) {
_y = (_y + (spd * Math.cos((Math.PI/180) * _rotation)));
_x = (_x - (spd * Math.sin((Math.PI/180) * _rotation)));
} else {
_y = (_y - (spd * Math.cos((Math.PI/180) * _rotation)));
_x = (_x + (spd * Math.sin((Math.PI/180) * _rotation)));
}
if ((((_x > Stage.width) || (_x < 0)) || (_y < 0)) || (_y > Stage.height)) {
this.removeMovieClip();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.xenon)) {
_root.gotoAndStop("lose");
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.hy)) {
_root.gotoAndStop("10win1");
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.kryp)) {
_root.gotoAndStop("lose");
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.boron)) {
_root.gotoAndStop("lose");
}
}
Instance of Symbol 112 MovieClip "gun" in Frame 43
onClipEvent (load) {
grav = 1;
speed = 0;
_root.score = 0;
}
onClipEvent (enterFrame) {
if (speed > 0) {
speed--;
}
if (speed < 0) {
speed++;
}
if (grav < 0) {
grav++;
}
}
onClipEvent (enterFrame) {
grav++;
this._y = this._y + grav;
this._x = this._x + speed;
}
onClipEvent (enterFrame) {
if (grav > 30) {
grav = 30;
}
if (grav < -30) {
grav = -30;
}
if (speed > 30) {
speed = 30;
}
if (speed < -30) {
speed = -30;
}
if (Key.isDown(38)) {
grav = grav - 3;
}
if (Key.isDown(37)) {
speed = speed - 2;
}
if (Key.isDown(39)) {
speed = speed + 2;
}
}
onClipEvent (enterFrame) {
if (this._x < 0) {
this._x = 0;
speed = speed - (speed * 2);
}
if (this._x > 500) {
this._x = 450;
speed = speed - (speed * 2);
}
if (this._y < 0) {
this._y = 0;
grav = grav - (grav * 2);
}
if (this._y > 300) {
this._y = 296;
grav = grav - (grav * 2.2);
}
}
onClipEvent (mouseMove) {
Xd = _root._xmouse - _x;
Yd = _root._ymouse - _y;
radAngle = Math.atan2(Yd, Xd);
_rotation = int(((radAngle * 360) / (Math.PI*2)) + 90);
updateAfterEvent();
}
Frame 44
stop();
Frame 45
stop();
Frame 46
stop();
Frame 47
function getdistance(x, y, x1, y1) {
var _local2;
var _local3;
_local2 = x1 - x;
_local3 = y1 - y;
return(_root.hyp(_local2, _local3));
}
function hyp(a, b) {
return(Math.sqrt((a * a) + (b * b)));
}
stop();
MovieClip.prototype.reset = function () {
width = 490;
height = 280;
var _local4;
var _local3;
this.x = this._x;
this.y = this._y;
this.speed = (Math.random() * 10) + 13;
this.targx = Math.random() * width;
this.targy = Math.random() * height;
_local4 = _root.getdistance(this.x, this.y, this.targx, this.targy);
_local3 = this.speed / _local4;
this.diffx = (this.targx - this.x) * _local3;
this.diffy = (this.targy - this.y) * _local3;
};
MovieClip.prototype.move = function () {
if (_root.getdistance(this.x, this.y, this.targx, this.targy) > this.speed) {
this.x = this.x + this.diffx;
this.y = this.y + this.diffy;
} else {
this.x = this.targx;
this.y = this.targy;
if (!this.t) {
this.t = getTimer();
}
if ((getTimer() - this.t) > 1000) {
this.reset();
this.t = 0;
}
}
this._x = this.x;
this._y = this.y;
};
_root.score1 = 0;
Instance of Symbol 61 MovieClip "krypton" in Frame 47
onClipEvent (load) {
grav = 1;
speed = 0;
}
onClipEvent (enterFrame) {
if (this._rotation > 0) {
this._rotation = this._rotation - 4;
}
if (this._rotation < 0) {
this._rotation = this._rotation + 4;
}
}
onClipEvent (enterFrame) {
if (speed > 0) {
speed--;
}
if (speed < 0) {
speed++;
}
if (grav < 0) {
grav++;
}
}
onClipEvent (enterFrame) {
grav++;
this._y = this._y + grav;
this._x = this._x + speed;
this._rotation = this._rotation + rotate;
rotate = speed;
}
onClipEvent (enterFrame) {
if (grav > 30) {
grav = 30;
}
if (grav < -30) {
grav = -30;
}
if (speed > 30) {
speed = 30;
}
if (speed < -30) {
speed = -30;
}
if (Key.isDown(38)) {
grav = grav - 3;
}
if (Key.isDown(37)) {
speed = speed - 2;
}
if (Key.isDown(39)) {
speed = speed + 2;
}
}
onClipEvent (enterFrame) {
if (this._x < 0) {
this._x = 0;
speed = speed - (speed * 2);
}
if (this._x > 500) {
this._x = 450;
speed = speed - (speed * 2);
}
if (this._y < 0) {
this._y = 0;
grav = grav - (grav * 2);
}
if (this._y > 300) {
this._y = 296;
grav = grav - (grav * 2.2);
}
}
onClipEvent (enterFrame) {
if (_root.score == 8) {
_root.gotoAndPlay("12info");
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_level0.el)) {
_level0.score1 = _level0.score1 + 1;
}
}
Instance of Symbol 254 MovieClip "mouseq" in Frame 47
onClipEvent (enterFrame) {
move();
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.krypton)) {
_root.gotoAndPlay("lose");
}
}
Instance of Symbol 257 MovieClip "el" in Frame 47
onClipEvent (enterFrame) {
if (this.hitTest(_root.krypton)) {
_x = random(500);
_y = random(300);
}
}
Frame 48
stop();
Frame 49
stop();
com = 0;
Instance of Symbol 82 MovieClip "bullet" in Frame 49
onClipEvent (load) {
spd = 20;
_x = _root.gun._x;
_y = _root.gun._y;
_rotation = _root.gun._rotation;
}
onClipEvent (enterFrame) {
if (_name == "bullet") {
_x = -1000;
} else if (_rotation > 180) {
_y = (_y + (spd * Math.cos((Math.PI/180) * _rotation)));
_x = (_x - (spd * Math.sin((Math.PI/180) * _rotation)));
} else {
_y = (_y - (spd * Math.cos((Math.PI/180) * _rotation)));
_x = (_x + (spd * Math.sin((Math.PI/180) * _rotation)));
}
if ((((_x > Stage.width) || (_x < 0)) || (_y < 0)) || (_y > Stage.height)) {
this.removeMovieClip();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.gad)) {
_root.gotoAndStop("lose");
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.potassium)) {
_root.gotoAndStop("12win1");
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.kryp)) {
_root.gotoAndStop("lose");
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.bor)) {
_root.gotoAndStop("lose");
}
}
Instance of Symbol 265 MovieClip "gun" in Frame 49
onClipEvent (load) {
grav = 1;
speed = 0;
_root.score = 0;
}
onClipEvent (enterFrame) {
if (speed > 0) {
speed--;
}
if (speed < 0) {
speed++;
}
if (grav < 0) {
grav++;
}
}
onClipEvent (enterFrame) {
grav++;
this._y = this._y + grav;
this._x = this._x + speed;
}
onClipEvent (enterFrame) {
if (grav > 30) {
grav = 30;
}
if (grav < -30) {
grav = -30;
}
if (speed > 30) {
speed = 30;
}
if (speed < -30) {
speed = -30;
}
if (Key.isDown(38)) {
grav = grav - 3;
}
if (Key.isDown(37)) {
speed = speed - 2;
}
if (Key.isDown(39)) {
speed = speed + 2;
}
}
onClipEvent (enterFrame) {
if (this._x < 0) {
this._x = 0;
speed = speed - (speed * 2);
}
if (this._x > 500) {
this._x = 450;
speed = speed - (speed * 2);
}
if (this._y < 0) {
this._y = 0;
grav = grav - (grav * 2);
}
if (this._y > 300) {
this._y = 296;
grav = grav - (grav * 2.2);
}
}
onClipEvent (mouseMove) {
Xd = _root._xmouse - _x;
Yd = _root._ymouse - _y;
radAngle = Math.atan2(Yd, Xd);
_rotation = int(((radAngle * 360) / (Math.PI*2)) + 90);
updateAfterEvent();
}
Frame 50
stop();
Frame 51
stop();
Frame 52
stop();
Frame 53
stop();
score2 = 0;
Instance of Symbol 281 MovieClip "gad" in Frame 53
onClipEvent (enterFrame) {
myRadians = Math.atan2(_root._ymouse - this._y, _root._xmouse - this._x);
myDegrees = Math.round((myRadians * 180) / Math.PI);
_root.yChange = Math.round(_root._ymouse - this._y);
_root.xChange = Math.round(_root._xmouse - this._x);
_root.yMove = Math.round(_root.yChange / 4);
_root.xMove = Math.round(_root.xChange / 4);
this._y = this._y + _root.yMove;
this._x = this._x + _root.xMove;
this._rotation = myDegrees + 90;
}
onClipEvent (enterFrame) {
if (_root.score2 == 8) {
_root.gotoAndPlay("win");
}
}
Instance of Symbol 64 MovieClip in Frame 53
onClipEvent (enterFrame) {
if (this.hitTest(_root.gad)) {
_root.gotoAndStop("lose");
}
}
Instance of Symbol 80 MovieClip in Frame 53
onClipEvent (enterFrame) {
if (this.hitTest(_root.gad)) {
_root.gotoAndStop("lose");
}
}
Instance of Symbol 71 MovieClip in Frame 53
onClipEvent (enterFrame) {
if (this.hitTest(_root.gad)) {
_root.gotoAndStop("lose");
}
}
Instance of Symbol 161 MovieClip in Frame 53
onClipEvent (enterFrame) {
if (this.hitTest(_root.gad)) {
_root.gotoAndStop("lose");
}
}
Instance of Symbol 112 MovieClip in Frame 53
onClipEvent (enterFrame) {
if (this.hitTest(_root.gad)) {
_root.gotoAndStop("lose");
}
}
Instance of Symbol 198 MovieClip in Frame 53
onClipEvent (enterFrame) {
if (this.hitTest(_root.gad)) {
_root.gotoAndStop("lose");
}
}
Instance of Symbol 64 MovieClip in Frame 53
onClipEvent (enterFrame) {
if (this.hitTest(_root.gad)) {
_root.gotoAndStop("lose");
}
}
Instance of Symbol 283 MovieClip in Frame 53
onClipEvent (enterFrame) {
if (this.hitTest(_root.gad)) {
this.gotoAndPlay(2);
}
}
Instance of Symbol 283 MovieClip in Frame 53
onClipEvent (enterFrame) {
if (this.hitTest(_root.gad)) {
this.gotoAndPlay(2);
}
}
Instance of Symbol 283 MovieClip in Frame 53
onClipEvent (enterFrame) {
if (this.hitTest(_root.gad)) {
this.gotoAndPlay(2);
}
}
Instance of Symbol 283 MovieClip in Frame 53
onClipEvent (enterFrame) {
if (this.hitTest(_root.gad)) {
this.gotoAndPlay(2);
}
}
Instance of Symbol 283 MovieClip in Frame 53
onClipEvent (enterFrame) {
if (this.hitTest(_root.gad)) {
this.gotoAndPlay(2);
}
}
Instance of Symbol 283 MovieClip in Frame 53
onClipEvent (enterFrame) {
if (this.hitTest(_root.gad)) {
this.gotoAndPlay(2);
}
}
Instance of Symbol 283 MovieClip in Frame 53
onClipEvent (enterFrame) {
if (this.hitTest(_root.gad)) {
this.gotoAndPlay(2);
}
}
Instance of Symbol 283 MovieClip in Frame 53
onClipEvent (enterFrame) {
if (this.hitTest(_root.gad)) {
this.gotoAndPlay(2);
}
}
Frame 54
stop();
Frame 55
stop();
load1 = 0;
Frame 56
stop();
Frame 57
_root.gotoAndPlay("menu");
Frame 124
_root.gotoAndPlay("menu1");
Symbol 17 Button
on (release) {
_root.gotoAndPlay("intro1");
}
Symbol 21 MovieClip Frame 1
stopAllSounds();
_root.stop();
Symbol 21 MovieClip Frame 3
lBytes = _root.getBytesLoaded();
tBytes = _root.getBytesTotal();
percentLoaded = Math.floor((lBytes / tBytes) * 100);
loader.bar._xscale = percentLoaded;
loader.percent.text = ((percentLoaded + "% of ") + Math.floor(tBytes / 1024)) + "K loaded.";
if ((lBytes >= tBytes) && (tBytes > 0)) {
if (count >= 2) {
gotoAndStop ("main");
} else {
count++;
gotoAndPlay ("preload");
}
} else {
gotoAndPlay ("preload");
}
Symbol 21 MovieClip Frame 4
stop();
Symbol 33 MovieClip Frame 1
eh = new Array(2, 81, 211, 140, 311, 381, 451, 576, 671);
gotoAndPlay(eh[random(9)]);
Symbol 33 MovieClip Frame 80
gotoAndPlay (1);
Symbol 33 MovieClip Frame 139
gotoAndPlay (1);
Symbol 33 MovieClip Frame 210
gotoAndPlay (1);
Symbol 33 MovieClip Frame 310
gotoAndPlay (1);
Symbol 33 MovieClip Frame 380
gotoAndPlay (1);
Symbol 33 MovieClip Frame 450
gotoAndPlay (1);
Symbol 33 MovieClip Frame 575
gotoAndPlay (1);
Symbol 33 MovieClip Frame 670
gotoAndPlay (1);
Symbol 33 MovieClip Frame 761
gotoAndPlay (1);
Symbol 36 MovieClip Frame 7
stop();
Symbol 38 MovieClip Frame 21
stop();
Symbol 41 Button
on (press) {
gotoAndPlay ("1info");
}
Symbol 43 Button
on (press) {
gotoAndPlay ("ins");
}
Symbol 46 Button
on (press) {
gotoAndPlay ("level");
}
Symbol 49 Button
on (press) {
getURL ("www.pezboy440.tk", _blank);
}
Symbol 52 Button
on (press) {
getURL ("www.cookiecarlo.com", _blank);
}
Symbol 55 Button
on (press) {
getURL ("http://www.flashninjaclan.com", _blank);
}
Symbol 75 Button
on (press) {
gotoAndPlay ("level5");
}
Symbol 92 Button
on (press) {
_root.gotoAndPlay("menu");
}
Symbol 100 Button
on (press) {
gotoAndPlay ("6info");
}
Symbol 106 Button
on (press) {
gotoAndPlay ("menu");
}
Symbol 110 Button
on (press) {
gotoAndPlay ("level1");
}
Symbol 121 Button
on (press) {
gotoAndPlay ("2info");
}
Symbol 125 Button
on (press) {
gotoAndPlay ("1minigame");
}
Symbol 128 Button
on (press) {
gotoAndPlay ("mgame1");
}
Symbol 134 MovieClip Frame 35
_root.gotoAndPlay("mgame1go");
Symbol 142 MovieClip Frame 1
meh = new Array(2, 3, 5, 4);
gotoAndStop(meh[random(4)]);
Symbol 142 MovieClip Frame 2
stop();
Instance of Symbol 138 MovieClip "tball" in Symbol 142 MovieClip Frame 2
onClipEvent (enterFrame) {
if (Key.isDown(37)) {
_root.r._x = _root.r._x + 4;
}
}
onClipEvent (enterFrame) {
if (Key.isDown(39)) {
_root.r._x = _root.r._x - 2;
}
}
onClipEvent (enterFrame) {
if (Key.isDown(40)) {
_root.r._x = _root.r._x - 2;
}
}
onClipEvent (enterFrame) {
if (Key.isDown(38)) {
_root.r._x = _root.r._x - 2;
}
}
onClipEvent (enterFrame) {
if (Key.isDown(37)) {
_root.r.gotoAndPlay(2);
}
}
Symbol 142 MovieClip Frame 3
stop();
Instance of Symbol 138 MovieClip "tball" in Symbol 142 MovieClip Frame 3
onClipEvent (enterFrame) {
if (Key.isDown(39)) {
_root.r._x = _root.r._x + 4;
}
}
onClipEvent (enterFrame) {
if (Key.isDown(37)) {
_root.r._x = _root.r._x - 2;
}
}
onClipEvent (enterFrame) {
if (Key.isDown(40)) {
_root.r._x = _root.r._x - 2;
}
}
onClipEvent (enterFrame) {
if (Key.isDown(38)) {
_root.r._x = _root.r._x - 2;
}
}
onClipEvent (enterFrame) {
if (Key.isDown(39)) {
_root.r.gotoAndPlay(1);
}
}
Symbol 142 MovieClip Frame 4
stop();
Instance of Symbol 138 MovieClip "tball" in Symbol 142 MovieClip Frame 4
onClipEvent (enterFrame) {
if (Key.isDown(38)) {
_root.r._x = _root.r._x + 4;
}
}
onClipEvent (enterFrame) {
if (Key.isDown(37)) {
_root.r._x = _root.r._x - 2;
}
}
onClipEvent (enterFrame) {
if (Key.isDown(40)) {
_root.r._x = _root.r._x - 2;
}
}
onClipEvent (enterFrame) {
if (Key.isDown(39)) {
_root.r._x = _root.r._x - 2;
}
}
onClipEvent (enterFrame) {
if (Key.isDown(38)) {
_root.r.gotoAndPlay(1);
}
}
Symbol 142 MovieClip Frame 5
stop();
Instance of Symbol 138 MovieClip "tball" in Symbol 142 MovieClip Frame 5
onClipEvent (enterFrame) {
if (Key.isDown(40)) {
_root.r._x = _root.r._x + 4;
}
}
onClipEvent (enterFrame) {
if (Key.isDown(37)) {
_root.r._x = _root.r._x - 2;
}
}
onClipEvent (enterFrame) {
if (Key.isDown(38)) {
_root.r._x = _root.r._x - 2;
}
}
onClipEvent (enterFrame) {
if (Key.isDown(39)) {
_root.r._x = _root.r._x - 2;
}
}
onClipEvent (enterFrame) {
if (Key.isDown(40)) {
_root.r.gotoAndPlay(1);
}
}
Symbol 145 MovieClip Frame 1
_root.ga._x = _root.ga._x + 2;
Symbol 145 MovieClip Frame 2
_root.ga._x = _root.ga._x - 1;
Symbol 145 MovieClip Frame 3
_root.ga._x = _root.ga._x + 4;
Symbol 145 MovieClip Frame 4
_root.ga._x = _root.ga._x - 4;
Symbol 146 Button
on (press) {
gotoAndPlay ("level2");
}
Symbol 155 Button
on (press) {
gotoAndPlay ("3info");
}
Symbol 159 Button
on (press) {
gotoAndPlay ("level3");
}
Symbol 169 Button
on (press) {
gotoAndPlay ("4info");
}
Symbol 172 Button
on (press) {
gotoAndPlay ("4info2");
}
Symbol 174 Button
on (press) {
gotoAndPlay ("level4");
}
Symbol 183 Button
on (press) {
gotoAndPlay ("level6");
}
Symbol 192 Button
on (press) {
gotoAndPlay ("7info");
}
Symbol 196 Button
on (press) {
gotoAndPlay ("level7");
}
Symbol 207 Button
on (press) {
gotoAndPlay ("8info");
}
Symbol 211 Button
on (press) {
gotoAndPlay ("2minigame");
}
Symbol 214 Button
on (press) {
gotoAndPlay ("mgame2");
}
Instance of Symbol 218 MovieClip in Symbol 223 MovieClip Frame 1
on (press) {
startDrag ("");
}
on (release) {
stopDrag();
}
Symbol 224 Button
on (press) {
gotoAndPlay ("level9");
}
Symbol 234 Button
on (press) {
gotoAndPlay ("10info");
}
Symbol 235 Button
on (press) {
gotoAndPlay ("level10");
}
Symbol 246 Button
on (press) {
gotoAndPlay ("11info");
}
Symbol 247 Button
on (press) {
gotoAndPlay ("3minigame");
}
Symbol 249 Button
on (press) {
gotoAndPlay ("3minigameplay");
}
Symbol 261 Button
on (press) {
gotoAndPlay ("level12");
}
Symbol 274 Button
on (press) {
gotoAndPlay ("13info");
}
Symbol 276 Button
on (press) {
gotoAndPlay ("4minigame");
}
Symbol 278 Button
on (press) {
gotoAndPlay ("mgame4");
}
Symbol 283 MovieClip Frame 1
stop();
Instance of Symbol 218 MovieClip in Symbol 283 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.gad)) {
_level0.score2 = _level0.score2 + 1;
}
}
Symbol 283 MovieClip Frame 2
stop();
Symbol 289 Button
on (press) {
_root.gotoAndPlay("2info");
}
Symbol 290 MovieClip Frame 1
stop();
Symbol 290 MovieClip Frame 2
stop();
Symbol 295 Button
on (press) {
_root.gotoAndPlay("3info");
}
Symbol 296 MovieClip Frame 1
stop();
Symbol 296 MovieClip Frame 2
stop();
Symbol 301 Button
on (press) {
_root.gotoAndPlay("4info");
}
Symbol 302 MovieClip Frame 1
stop();
Symbol 302 MovieClip Frame 2
stop();
Symbol 307 Button
on (press) {
_root.gotoAndPlay("5info");
}
Symbol 308 MovieClip Frame 1
stop();
Symbol 308 MovieClip Frame 2
stop();
Symbol 313 Button
on (press) {
_root.gotoAndPlay("6info");
}
Symbol 314 MovieClip Frame 1
stop();
Symbol 314 MovieClip Frame 2
stop();
Symbol 319 Button
on (press) {
_root.gotoAndPlay("7info");
}
Symbol 320 MovieClip Frame 1
stop();
Symbol 320 MovieClip Frame 2
stop();
Symbol 325 Button
on (press) {
_root.gotoAndPlay("8info");
}
Symbol 326 MovieClip Frame 1
stop();
Symbol 326 MovieClip Frame 2
stop();
Symbol 331 Button
on (press) {
_root.gotoAndPlay("9info");
}
Symbol 332 MovieClip Frame 1
stop();
Symbol 332 MovieClip Frame 2
stop();
Symbol 335 Button
on (press) {
if (_root.load1 == 778) {
_root.lev2.gotoAndPlay(2);
}
}
on (press) {
if (_root.load1 == 957) {
_root.lev3.gotoAndPlay(2);
_root.lev2.gotoAndPlay(2);
}
}
on (press) {
if (_root.load1 == 1854) {
_root.lev4.gotoAndPlay(2);
_root.lev3.gotoAndPlay(2);
_root.lev2.gotoAndPlay(2);
}
}
on (press) {
if (_root.load1 == 1937) {
_root.lev5.gotoAndPlay(2);
_root.lev4.gotoAndPlay(2);
_root.lev3.gotoAndPlay(2);
_root.lev2.gotoAndPlay(2);
}
}
on (press) {
if (_root.load1 == 2378) {
_root.lev7.gotoAndPlay(2);
_root.lev6.gotoAndPlay(2);
_root.lev5.gotoAndPlay(2);
_root.lev4.gotoAndPlay(2);
_root.lev3.gotoAndPlay(2);
_root.lev2.gotoAndPlay(2);
}
}
on (press) {
if (_root.load1 == 3892) {
_root.lev8.gotoAndPlay(2);
_root.lev7.gotoAndPlay(2);
_root.lev6.gotoAndPlay(2);
_root.lev5.gotoAndPlay(2);
_root.lev4.gotoAndPlay(2);
_root.lev3.gotoAndPlay(2);
_root.lev2.gotoAndPlay(2);
}
}
on (press) {
if (_root.load1 == 4007) {
_root.lev9.gotoAndPlay(2);
_root.lev8.gotoAndPlay(2);
_root.lev7.gotoAndPlay(2);
_root.lev6.gotoAndPlay(2);
_root.lev5.gotoAndPlay(2);
_root.lev4.gotoAndPlay(2);
_root.lev3.gotoAndPlay(2);
_root.lev2.gotoAndPlay(2);
}
}
on (press) {
if (_root.load1 == 5683) {
_root.lev10.gotoAndPlay(2);
_root.lev9.gotoAndPlay(2);
_root.lev8.gotoAndPlay(2);
_root.lev7.gotoAndPlay(2);
_root.lev6.gotoAndPlay(2);
_root.lev5.gotoAndPlay(2);
_root.lev4.gotoAndPlay(2);
_root.lev3.gotoAndPlay(2);
_root.lev2.gotoAndPlay(2);
}
}
Symbol 338 Button
on (press) {
gotoAndPlay ("levels");
}
Symbol 344 Button
on (press) {
_root.gotoAndPlay("10info");
}
Symbol 345 MovieClip Frame 1
stop();
Symbol 345 MovieClip Frame 2
stop();
Symbol 350 Button
on (press) {
_root.gotoAndPlay("11info");
}
Symbol 351 MovieClip Frame 1
stop();
Symbol 351 MovieClip Frame 2
stop();
Symbol 356 Button
on (press) {
_root.gotoAndPlay("12info");
}
Symbol 357 MovieClip Frame 1
stop();
Symbol 357 MovieClip Frame 2
stop();
Symbol 362 Button
on (press) {
_root.gotoAndPlay("13info");
}
Symbol 363 MovieClip Frame 1
stop();
Symbol 363 MovieClip Frame 2
stop();
Symbol 366 Button
on (press) {
gotoAndPlay ("level");
}
Symbol 367 Button
on (press) {
if (_root.load1 == 6904) {
_root.lev10.gotoAndPlay(2);
}
}
on (press) {
if (_root.load1 == 8054) {
_root.lev11.gotoAndPlay(2);
_root.lev10.gotoAndPlay(2);
}
}
on (press) {
if (_root.load1 == 90534) {
_root.lev12.gotoAndPlay(2);
_root.lev11.gotoAndPlay(2);
_root.lev10.gotoAndPlay(2);
}
}
on (press) {
if (_root.load1 == 1009546) {
_root.lev13.gotoAndPlay(2);
_root.lev12.gotoAndPlay(2);
_root.lev11.gotoAndPlay(2);
_root.lev10.gotoAndPlay(2);
}
}
Symbol 373 Button
on (press) {
getURL ("http://www.flashninjaclan.com", _blank);
}