Frame 1
MusicCounter = 0;
MusicCounter2 = 0;
Stage.showMenu = false;
Instance of Symbol 43 MovieClip "preloader" in Frame 1
onClipEvent (enterFrame) {
function onEnterFrame() {
var _local3 = _root.getBytesTotal() / 1024;
var _local2 = _root.getBytesLoaded() / 1024;
var _local4 = Math.round((_local2 / _local3) * 100);
percentDone = _local4 + "% loaded";
bar._xscale = _local4;
if (_local2 == _local3) {
_root.nextFrame();
}
}
Button.prototype.useHandCursor = false;
mCM = new ContextMenu();
mCM.hideBuiltInItems();
_root.preloader.menu = mCM;
}
Instance of Symbol 48 MovieClip in Frame 1
onClipEvent (enterFrame) {
startDrag (this, true);
Mouse.hide();
}
Frame 2
play();
Instance of Symbol 48 MovieClip in Frame 2
onClipEvent (enterFrame) {
startDrag (this, true);
Mouse.hide();
}
Instance of Symbol 48 MovieClip in Frame 30
onClipEvent (enterFrame) {
startDrag (this, true);
Mouse.hide();
}
Frame 31
stop();
Instance of Symbol 48 MovieClip in Frame 31
onClipEvent (enterFrame) {
startDrag (this, true);
Mouse.hide();
}
Instance of Symbol 48 MovieClip in Frame 32
onClipEvent (enterFrame) {
startDrag (this, true);
Mouse.hide();
}
Instance of Symbol 68 MovieClip "Title" in Frame 91
onClipEvent (enterFrame) {
this.EasterEGG.tabEnabled = false;
if (EasterEgg == 0) {
unloadMovie (this.EasterEGG);
}
}
Instance of Symbol 48 MovieClip in Frame 91
onClipEvent (enterFrame) {
startDrag (this, true);
Mouse.hide();
}
Frame 95
MultiPlayer = 0;
buttonName.tabEnabled = false;
_root.B = 1;
stop();
_root.Single.tabEnabled = false;
_root.Multi.tabEnabled = false;
_root.Highscore.tabEnabled = false;
_root.Options.tabEnabled = false;
if (_root.MusicCounter == 0) {
mySound4 = new Sound();
mySound4.attachSound("MenuMusic");
mySound4.start("MenuMusic", 99999999);
if (_root.MusicCounter2 == 0) {
mySound2 = new Sound();
mySound2.attachSound("TitleVoice");
mySound2.start("", 0);
MusicCounter = MusicCounter + 1;
MusicCounter2 = MusicCounter2 + 1;
}
}
Instance of Symbol 68 MovieClip "Title" in Frame 95
onClipEvent (enterFrame) {
this.EasterEGG.tabEnabled = false;
if (EasterEgg == 0) {
unloadMovie (this.EasterEGG);
}
}
Instance of Symbol 118 MovieClip in Frame 95
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 120 MovieClip in Frame 95
onClipEvent (enterFrame) {
if (Key.isDown(66)) {
_root.B = _root.B + 1;
if (_root.B >= 4) {
_root.B = 1;
}
}
}
Instance of Symbol 48 MovieClip in Frame 95
onClipEvent (enterFrame) {
startDrag (this, true);
Mouse.hide();
}
Instance of Symbol 118 MovieClip in Frame 96
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 135
stop();
Frame 148
stopAllSounds();
Frame 149
CPUscore = 0;
PLAYERscore = 0;
MusicCounter = 0;
mySound = new Sound();
mySound.attachSound("Music2");
mySound.start("Music2", 99999999);
Instance of Symbol 150 MovieClip in Frame 149
onClipEvent (enterFrame) {
if (Key.isDown(49)) {
_root.nextFrame();
}
if (Key.isDown(50)) {
_root.gotoAndStop(66);
}
if (Key.isDown(51)) {
_root.gotoAndStop(67);
}
}
Frame 158
stop();
_root.Easy.tabEnabled = false;
_root.Medium2.tabEnabled = false;
_root.Hard.tabEnabled = false;
Frame 159
Mouse.show();
difficulty = 1;
stop();
stop();
Instance of Symbol 188 MovieClip "item" in Frame 159
onClipEvent (load) {
this._x = random(400);
this._y = random(200);
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.Player)) {
this.play();
_root.PLAYERscore = _root.PLAYERscore + 10;
this._x = random(550);
this._y = random(400);
}
if (this.hitTest(_root.Green)) {
this.play();
_root.CPUscore = _root.CPUscore + 10;
this._x = random(550);
this._y = random(400);
}
}
Instance of Symbol 191 MovieClip "Green" in Frame 159
onClipEvent (load) {
var xaccel = 0.5;
var yaccel = 0.5;
var xmaxspeed = 6.7;
var ymaxspeed = 6.7;
var xspeed = 0;
var yspeed = 0;
var xbounds = 542;
var ybounds = 400;
this._x = random(300);
this._y = random(200);
}
onClipEvent (enterFrame) {
xkey = false;
ykey = false;
if (_root.item._y < _y) {
ykey = true;
if (yspeed > (-ymaxspeed)) {
yspeed = yspeed - yaccel;
}
}
if (_root.item._y > _y) {
ykey = true;
if (yspeed < ymaxspeed) {
yspeed = yspeed + yaccel;
}
}
if (_root.item._x > _x) {
xkey = true;
if (xspeed < xmaxspeed) {
xspeed = xspeed + xaccel;
}
}
if (_root.item._x < _x) {
xkey = true;
if (xspeed > (-xmaxspeed)) {
xspeed = xspeed - xaccel;
}
}
if (((this._x + xspeed) > 0) && ((this._x + xspeed) < xbounds)) {
this._x = this._x + xspeed;
} else {
xspeed = 0;
if (this._x > 200) {
this._x = xbounds;
} else {
this._x = 0;
}
}
if (((this._y + yspeed) > 0) && ((this._y + yspeed) < ybounds)) {
this._y = this._y + yspeed;
} else {
yspeed = 0;
if (this._y > 200) {
this._y = ybounds;
} else {
this._y = 0;
}
}
if (!xkey) {
if (xspeed > 0) {
xspeed--;
} else if (xspeed < 0) {
xspeed++;
}
}
if (!ykey) {
if (yspeed > 0) {
yspeed--;
} else if (yspeed < 0) {
yspeed++;
}
}
}
Instance of Symbol 194 MovieClip "Player" in Frame 159
onClipEvent (load) {
var xaccel = 1.5;
var yaccel = 1.5;
var xmaxspeed = 10;
var ymaxspeed = 10;
var xspeed = 0;
var yspeed = 0;
var xbounds = 542;
var ybounds = 400;
}
onClipEvent (enterFrame) {
xkey = false;
ykey = false;
if (Key.isDown(38)) {
ykey = true;
if (yspeed > (-ymaxspeed)) {
yspeed = yspeed - yaccel;
}
}
if (Key.isDown(40)) {
ykey = true;
if (yspeed < ymaxspeed) {
yspeed = yspeed + yaccel;
}
}
if (Key.isDown(39)) {
xkey = true;
if (xspeed < xmaxspeed) {
xspeed = xspeed + xaccel;
}
}
if (Key.isDown(37)) {
xkey = true;
if (xspeed > (-xmaxspeed)) {
xspeed = xspeed - xaccel;
}
}
if (((this._x + xspeed) > 0) && ((this._x + xspeed) < xbounds)) {
this._x = this._x + xspeed;
} else {
xspeed = 0;
if (this._x > 200) {
this._x = xbounds;
} else {
this._x = 0;
}
}
if (((this._y + yspeed) > 0) && ((this._y + yspeed) < ybounds)) {
this._y = this._y + yspeed;
} else {
yspeed = 0;
if (this._y > 200) {
this._y = ybounds;
} else {
this._y = 0;
}
}
if (!xkey) {
if (xspeed > 0) {
xspeed--;
} else if (xspeed < 0) {
xspeed++;
}
}
if (!ykey) {
if (yspeed > 0) {
yspeed--;
} else if (yspeed < 0) {
yspeed++;
}
}
}
Instance of Symbol 214 MovieClip "volSlider" in Frame 159
onClipEvent (load) {
_parent.volSlider.drag._x = _parent.volSlider.drag._x + 50;
}
onClipEvent (enterFrame) {
vol = _parent.volSlider.drag._x + 50;
_root.mySound.setVolume(vol);
_parent.volAt = Math.round(vol);
}
Instance of Symbol 220 MovieClip in Frame 159
onClipEvent (enterFrame) {
if (_root.PLAYERscore >= 250) {
_root.gotoAndStop("You_Won");
}
if (_root.CPUscore >= 250) {
_root.gotoAndStop("You_Lost");
}
if (Key.isDown(80)) {
stopAllSounds();
MusicCounter = 0;
_root.gotoAndStop(2);
}
}
Frame 160
Mouse.show();
CPUscore = 0;
PLAYERscore = 0;
difficulty = 2;
stop();
Instance of Symbol 220 MovieClip in Frame 160
onClipEvent (enterFrame) {
if (_root.PLAYERscore >= 250) {
_root.gotoAndStop(68);
}
if (_root.CPUscore >= 250) {
_root.gotoAndStop(69);
}
if (Key.isDown(80)) {
stopAllSounds();
MusicCounter = 0;
_root.gotoAndStop(2);
}
}
Frame 161
Mouse.show();
CPUscore = 0;
PLAYERscore = 0;
difficulty = 3;
stop();
Frame 162
stop();
Instance of Symbol 48 MovieClip in Frame 162
onClipEvent (enterFrame) {
startDrag (this, true);
Mouse.hide();
}
Frame 163
stop();
Frame 164
MultiPlayer = 0;
Instance of Symbol 48 MovieClip in Frame 164
onClipEvent (enterFrame) {
startDrag (this, true);
Mouse.hide();
}
Frame 183
stopAllSounds();
Instance of Symbol 256 MovieClip in Frame 183
onClipEvent (enterFrame) {
if (Key.isDown(32)) {
_root.nextFrame();
}
}
Frame 184
Secondscore = 0;
Playerscore = 0;
MusicCounter = 0;
mySound = new Sound();
mySound.attachSound("MusicMulti");
mySound.start("MusicMulti", 99999999);
Instance of Symbol 281 MovieClip "Player2" in Frame 184
onClipEvent (load) {
var xaccel = 1.5;
var yaccel = 1.5;
var xmaxspeed = 10;
var ymaxspeed = 10;
var xspeed = 0;
var yspeed = 0;
var xbounds = 542;
var ybounds = 400;
}
onClipEvent (enterFrame) {
xkey = false;
ykey = false;
if (Key.isDown(87)) {
ykey = true;
if (yspeed > (-ymaxspeed)) {
yspeed = yspeed - yaccel;
}
}
if (Key.isDown(83)) {
ykey = true;
if (yspeed < ymaxspeed) {
yspeed = yspeed + yaccel;
}
}
if (Key.isDown(68)) {
xkey = true;
if (xspeed < xmaxspeed) {
xspeed = xspeed + xaccel;
}
}
if (Key.isDown(65)) {
xkey = true;
if (xspeed > (-xmaxspeed)) {
xspeed = xspeed - xaccel;
}
}
if (((this._x + xspeed) > 0) && ((this._x + xspeed) < xbounds)) {
this._x = this._x + xspeed;
} else {
xspeed = 0;
if (this._x > 200) {
this._x = xbounds;
} else {
this._x = 0;
}
}
if (((this._y + yspeed) > 0) && ((this._y + yspeed) < ybounds)) {
this._y = this._y + yspeed;
} else {
yspeed = 0;
if (this._y > 200) {
this._y = ybounds;
} else {
this._y = 0;
}
}
if (!xkey) {
if (xspeed > 0) {
xspeed--;
} else if (xspeed < 0) {
xspeed++;
}
}
if (!ykey) {
if (yspeed > 0) {
yspeed--;
} else if (yspeed < 0) {
yspeed++;
}
}
}
Instance of Symbol 194 MovieClip "Ball" in Frame 184
onClipEvent (load) {
var xaccel = 1.5;
var yaccel = 1.5;
var xmaxspeed = 10;
var ymaxspeed = 10;
var xspeed = 0;
var yspeed = 0;
var xbounds = 542;
var ybounds = 400;
}
onClipEvent (enterFrame) {
xkey = false;
ykey = false;
if (Key.isDown(38)) {
ykey = true;
if (yspeed > (-ymaxspeed)) {
yspeed = yspeed - yaccel;
}
}
if (Key.isDown(40)) {
ykey = true;
if (yspeed < ymaxspeed) {
yspeed = yspeed + yaccel;
}
}
if (Key.isDown(39)) {
xkey = true;
if (xspeed < xmaxspeed) {
xspeed = xspeed + xaccel;
}
}
if (Key.isDown(37)) {
xkey = true;
if (xspeed > (-xmaxspeed)) {
xspeed = xspeed - xaccel;
}
}
if (((this._x + xspeed) > 0) && ((this._x + xspeed) < xbounds)) {
this._x = this._x + xspeed;
} else {
xspeed = 0;
if (this._x > 200) {
this._x = xbounds;
} else {
this._x = 0;
}
}
if (((this._y + yspeed) > 0) && ((this._y + yspeed) < ybounds)) {
this._y = this._y + yspeed;
} else {
yspeed = 0;
if (this._y > 200) {
this._y = ybounds;
} else {
this._y = 0;
}
}
if (!xkey) {
if (xspeed > 0) {
xspeed--;
} else if (xspeed < 0) {
xspeed++;
}
}
if (!ykey) {
if (yspeed > 0) {
yspeed--;
} else if (yspeed < 0) {
yspeed++;
}
}
}
Frame 204
stop();
Frame 205
Mouse.show();
_root.difficulty = 1;
_root.Playerscore = 0;
_root.Secondscore = 0;
stop();
Instance of Symbol 281 MovieClip "Player2" in Frame 205
onClipEvent (load) {
var xaccel = 1.5;
var yaccel = 1.5;
var xmaxspeed = 10;
var ymaxspeed = 10;
var xspeed = 0;
var yspeed = 0;
var xbounds = 542;
var ybounds = 400;
}
onClipEvent (enterFrame) {
xkey = false;
ykey = false;
if (Key.isDown(87)) {
ykey = true;
if (yspeed > (-ymaxspeed)) {
yspeed = yspeed - yaccel;
}
}
if (Key.isDown(83)) {
ykey = true;
if (yspeed < ymaxspeed) {
yspeed = yspeed + yaccel;
}
}
if (Key.isDown(68)) {
xkey = true;
if (xspeed < xmaxspeed) {
xspeed = xspeed + xaccel;
}
}
if (Key.isDown(65)) {
xkey = true;
if (xspeed > (-xmaxspeed)) {
xspeed = xspeed - xaccel;
}
}
if (((this._x + xspeed) > 0) && ((this._x + xspeed) < xbounds)) {
this._x = this._x + xspeed;
} else {
xspeed = 0;
if (this._x > 200) {
this._x = xbounds;
} else {
this._x = 0;
}
}
if (((this._y + yspeed) > 0) && ((this._y + yspeed) < ybounds)) {
this._y = this._y + yspeed;
} else {
yspeed = 0;
if (this._y > 200) {
this._y = ybounds;
} else {
this._y = 0;
}
}
if (!xkey) {
if (xspeed > 0) {
xspeed--;
} else if (xspeed < 0) {
xspeed++;
}
}
if (!ykey) {
if (yspeed > 0) {
yspeed--;
} else if (yspeed < 0) {
yspeed++;
}
}
}
Instance of Symbol 188 MovieClip "item" in Frame 205
onClipEvent (load) {
this._x = random(300);
this._y = random(200);
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.Ball)) {
this.play();
_root.Playerscore = _root.Playerscore + 10;
this._x = random(550);
this._y = random(400);
}
if (this.hitTest(_root.Player2)) {
this.play();
_root.Secondscore = _root.Secondscore + 10;
this._x = random(550);
this._y = random(400);
if (_root.Secondscore >= 250) {
_root.nextFrame();
}
}
}
Instance of Symbol 214 MovieClip "volSlider" in Frame 205
onClipEvent (load) {
_parent.volSlider.drag._x = _parent.volSlider.drag._x + 50;
}
onClipEvent (enterFrame) {
vol = _parent.volSlider.drag._x + 50;
_root.mySound.setVolume(vol);
_parent.volAt = Math.round(vol);
}
Instance of Symbol 220 MovieClip in Frame 205
onClipEvent (enterFrame) {
if (_root.PLAYERscore >= 250) {
nextFrame();
}
if (_root.Secondscore >= 250) {
nextFrame();
}
if (Key.isDown(80)) {
stopAllSounds();
MusicCounter = 0;
_root.gotoAndStop("Main_Menu");
}
}
Frame 206
stop();
if (_root.Secondscore >= 250) {
_root.nextFrame();
}
Instance of Symbol 48 MovieClip in Frame 206
onClipEvent (enterFrame) {
startDrag (this, true);
Mouse.hide();
}
Frame 207
stop();
Frame 208
MultiPlayer = 0;
Instance of Symbol 48 MovieClip in Frame 208
onClipEvent (enterFrame) {
startDrag (this, true);
Mouse.hide();
}
Instance of Symbol 330 MovieClip in Frame 237
onClipEvent (enterFrame) {
if (Key.isDown(32)) {
_root.nextFrame();
}
}
Frame 257
stopAllSounds();
Frame 267
mySound6 = new Sound();
mySound6.attachSound("MusicMulti");
mySound6.start("MusicMulti", 99999999);
Instance of Symbol 330 MovieClip in Frame 267
onClipEvent (enterFrame) {
if (Key.isDown(32)) {
_root.gotoAndStop("Highscore Mode1", 1);
}
}
Frame 268
Health = 1000;
score = 0;
maxscore = 0;
SpeedBoost = 1000;
stop();
MusicCounter = 0;
speed = 1;
stop();
Instance of Symbol 330 MovieClip in Frame 268
onClipEvent (enterFrame) {
if (Key.isDown(32)) {
_root.nextFrame();
}
}
Instance of Symbol 48 MovieClip in Frame 268
onClipEvent (enterFrame) {
startDrag (this, true);
Mouse.hide();
}
Frame 269
Health = 1000;
stop();
difficulty = 1;
stop();
stop();
Instance of Symbol 360 MovieClip "item" in Frame 269
onClipEvent (load) {
this._x = random(542);
this._y = random(392);
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.Ball)) {
this.play();
if (!(_root.score === 0)) {
_root.Enemy3.ymaxspeed = _root.Enemy3.ymaxspeed + 0.2;
_root.Enemy3.xmaxspeed = _root.Enemy3.xmaxspeed + 0.2;
_root.Enemy3.yaccel = _root.Enemy3.yaccel + 0.005;
_root.Enemy3.xaccel = _root.Enemy3.xaccel + 0.005;
}
}
}
Instance of Symbol 364 MovieClip "Enemy3" in Frame 269
onClipEvent (load) {
var xaccel = 1;
var yaccel = 1;
var xmaxspeed = 0.5;
var ymaxspeed = 0.5;
var xspeed = 0;
var yspeed = 0;
var xbounds = 542;
var ybounds = 400;
this._x = random(300);
this._y = random(200);
}
onClipEvent (enterFrame) {
xkey = false;
ykey = false;
if (_root.Ball._y < _y) {
ykey = true;
if (yspeed > (-ymaxspeed)) {
yspeed = yspeed - yaccel;
}
}
if (_root.Ball._y > _y) {
ykey = true;
if (yspeed < ymaxspeed) {
yspeed = yspeed + yaccel;
}
}
if (_root.Ball._x > _x) {
xkey = true;
if (xspeed < xmaxspeed) {
xspeed = xspeed + xaccel;
}
}
if (_root.Ball._x < _x) {
xkey = true;
if (xspeed > (-xmaxspeed)) {
xspeed = xspeed - xaccel;
}
}
if (((this._x + xspeed) > 0) && ((this._x + xspeed) < xbounds)) {
this._x = this._x + xspeed;
} else {
xspeed = 0;
if (this._x > 200) {
this._x = xbounds;
} else {
this._x = 0;
}
}
if (((this._y + yspeed) > 0) && ((this._y + yspeed) < ybounds)) {
this._y = this._y + yspeed;
} else {
yspeed = 0;
if (this._y > 200) {
this._y = ybounds;
} else {
this._y = 0;
}
}
if (!xkey) {
if (xspeed > 0) {
xspeed--;
} else if (xspeed < 0) {
xspeed++;
}
}
if (!ykey) {
if (yspeed > 0) {
yspeed--;
} else if (yspeed < 0) {
yspeed++;
}
}
if (this.hitTest(_root.Ball)) {
_root.Health = _root.Health - 20;
if (_root.Health <= 1) {
_root.nextFrame();
}
}
}
Instance of Symbol 368 MovieClip "Ball" in Frame 269
onClipEvent (load) {
var xaccel = 1.5;
var yaccel = 1.5;
var xmaxspeed = 10;
var ymaxspeed = 10;
var xspeed = 0;
var yspeed = 0;
var xbounds = 542;
var ybounds = 400;
}
onClipEvent (enterFrame) {
xkey = false;
ykey = false;
if (Key.isDown(38)) {
ykey = true;
if (yspeed > (-ymaxspeed)) {
yspeed = yspeed - yaccel;
}
}
if (Key.isDown(40)) {
ykey = true;
if (yspeed < ymaxspeed) {
yspeed = yspeed + yaccel;
}
}
if (Key.isDown(39)) {
xkey = true;
if (xspeed < xmaxspeed) {
xspeed = xspeed + xaccel;
}
}
if (Key.isDown(37)) {
xkey = true;
if (xspeed > (-xmaxspeed)) {
xspeed = xspeed - xaccel;
}
}
if (((this._x + xspeed) > 0) && ((this._x + xspeed) < xbounds)) {
this._x = this._x + xspeed;
} else {
xspeed = 0;
if (this._x > 200) {
this._x = xbounds;
} else {
this._x = 0;
}
}
if (((this._y + yspeed) > 0) && ((this._y + yspeed) < ybounds)) {
this._y = this._y + yspeed;
} else {
yspeed = 0;
if (this._y > 200) {
this._y = ybounds;
} else {
this._y = 0;
}
}
if (!xkey) {
if (xspeed > 0) {
xspeed--;
} else if (xspeed < 0) {
xspeed++;
}
}
if (!ykey) {
if (yspeed > 0) {
yspeed--;
} else if (yspeed < 0) {
yspeed++;
}
}
if (Key.isDown(17)) {
_root.speeder.play();
}
}
Instance of Symbol 220 MovieClip in Frame 269
onClipEvent (enterFrame) {
if (Key.isDown(80)) {
stopAllSounds();
MusicCounter = 0;
_root.gotoAndStop("Main_Menu");
}
}
Instance of Symbol 214 MovieClip "volSlider" in Frame 269
onClipEvent (load) {
_parent.volSlider.drag._x = _parent.volSlider.drag._x + 50;
}
onClipEvent (enterFrame) {
vol = _parent.volSlider.drag._x + 50;
_root.mySound.setVolume(vol);
_parent.volAt = Math.round(vol);
}
Frame 270
stop();
Instance of Symbol 48 MovieClip in Frame 272
onClipEvent (enterFrame) {
startDrag (this, true);
Mouse.hide();
}
Frame 301
COMscore = 0;
P1score = 0;
MultiPlayer = 0;
Instance of Symbol 150 MovieClip in Frame 301
onClipEvent (enterFrame) {
if (Key.isDown(49)) {
_root.nextFrame();
}
if (Key.isDown(50)) {
_root.gotoAndPlay(66);
}
if (Key.isDown(51)) {
_root.gotoAndPlay(67);
}
}
Frame 317
stopAllSounds();
Frame 318
mySound = new Sound();
mySound.attachSound("Music2");
mySound.start("Music2", 99999999);
MusicCounter = 0;
Frame 331
stop();
Instance of Symbol 150 MovieClip in Frame 331
onClipEvent (enterFrame) {
if (Key.isDown(49)) {
_root.nextFrame();
}
if (Key.isDown(50)) {
_root.gotoAndPlay(62);
}
if (Key.isDown(51)) {
_root.gotoAndPlay(63);
}
}
Frame 332
Mouse.show();
difficulty = 1;
stop();
Instance of Symbol 188 MovieClip "item" in Frame 332
onClipEvent (load) {
this._x = random(400);
this._y = random(200);
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.Ball)) {
this.play();
_root.P1score = _root.P1score + 10;
this._x = random(550);
this._y = random(400);
}
if (this.hitTest(_root.TeamMate)) {
this.play();
_root.P1score = _root.P1score + 10;
this._x = random(550);
this._y = random(400);
}
if (this.hitTest(_root.Enemy)) {
this.play();
_root.COMscore = _root.COMscore + 10;
this._x = random(550);
this._y = random(400);
}
if (this.hitTest(_root.Enemy2)) {
this.play();
_root.COMscore = _root.COMscore + 10;
this._x = random(550);
this._y = random(400);
}
}
Instance of Symbol 191 MovieClip "Enemy" in Frame 332
onClipEvent (load) {
var xaccel = 1.2;
var yaccel = 1.2;
var xmaxspeed = 8;
var ymaxspeed = 8;
var xspeed = 0;
var yspeed = 0;
var xbounds = 542;
var ybounds = 400;
}
onClipEvent (enterFrame) {
xkey = false;
ykey = false;
if (_root.item._y < _y) {
ykey = true;
if (yspeed > (-ymaxspeed)) {
yspeed = yspeed - yaccel;
}
}
if (_root.item._y > _y) {
ykey = true;
if (yspeed < ymaxspeed) {
yspeed = yspeed + yaccel;
}
}
if (_root.item._x > _x) {
xkey = true;
if (xspeed < xmaxspeed) {
xspeed = xspeed + xaccel;
}
}
if (_root.item._x < _x) {
xkey = true;
if (xspeed > (-xmaxspeed)) {
xspeed = xspeed - xaccel;
}
}
if (((this._x + xspeed) > 0) && ((this._x + xspeed) < xbounds)) {
this._x = this._x + xspeed;
} else {
xspeed = 0;
if (this._x > 200) {
this._x = xbounds;
} else {
this._x = 0;
}
}
if (((this._y + yspeed) > 0) && ((this._y + yspeed) < ybounds)) {
this._y = this._y + yspeed;
} else {
yspeed = 0;
if (this._y > 200) {
this._y = ybounds;
} else {
this._y = 0;
}
}
if (!xkey) {
if (xspeed > 0) {
xspeed--;
} else if (xspeed < 0) {
xspeed++;
}
}
if (!ykey) {
if (yspeed > 0) {
yspeed--;
} else if (yspeed < 0) {
yspeed++;
}
}
}
Instance of Symbol 194 MovieClip "Ball" in Frame 332
onClipEvent (load) {
var xaccel = 1.5;
var yaccel = 1.5;
var xmaxspeed = 10;
var ymaxspeed = 10;
var xspeed = 0;
var yspeed = 0;
var xbounds = 542;
var ybounds = 400;
}
onClipEvent (enterFrame) {
xkey = false;
ykey = false;
if (Key.isDown(38)) {
ykey = true;
if (yspeed > (-ymaxspeed)) {
yspeed = yspeed - yaccel;
}
}
if (Key.isDown(40)) {
ykey = true;
if (yspeed < ymaxspeed) {
yspeed = yspeed + yaccel;
}
}
if (Key.isDown(39)) {
xkey = true;
if (xspeed < xmaxspeed) {
xspeed = xspeed + xaccel;
}
}
if (Key.isDown(37)) {
xkey = true;
if (xspeed > (-xmaxspeed)) {
xspeed = xspeed - xaccel;
}
}
if (((this._x + xspeed) > 0) && ((this._x + xspeed) < xbounds)) {
this._x = this._x + xspeed;
} else {
xspeed = 0;
if (this._x > 200) {
this._x = xbounds;
} else {
this._x = 0;
}
}
if (((this._y + yspeed) > 0) && ((this._y + yspeed) < ybounds)) {
this._y = this._y + yspeed;
} else {
yspeed = 0;
if (this._y > 200) {
this._y = ybounds;
} else {
this._y = 0;
}
}
if (!xkey) {
if (xspeed > 0) {
xspeed--;
} else if (xspeed < 0) {
xspeed++;
}
}
if (!ykey) {
if (yspeed > 0) {
yspeed--;
} else if (yspeed < 0) {
yspeed++;
}
}
if (Key.isDown(17)) {
_root.speeder.play();
}
}
Instance of Symbol 194 MovieClip "TeamMate" in Frame 332
onClipEvent (load) {
var xaccel = 1.2;
var yaccel = 1.2;
var xmaxspeed = 8;
var ymaxspeed = 8;
var xspeed = 0;
var yspeed = 0;
var xbounds = 542;
var ybounds = 400;
}
onClipEvent (enterFrame) {
xkey = false;
ykey = false;
if (_root.item._y < _y) {
ykey = true;
if (yspeed > (-ymaxspeed)) {
yspeed = yspeed - yaccel;
}
}
if (_root.item._y > _y) {
ykey = true;
if (yspeed < ymaxspeed) {
yspeed = yspeed + yaccel;
}
}
if (_root.item._x > _x) {
xkey = true;
if (xspeed < xmaxspeed) {
xspeed = xspeed + xaccel;
}
}
if (_root.item._x < _x) {
xkey = true;
if (xspeed > (-xmaxspeed)) {
xspeed = xspeed - xaccel;
}
}
if (((this._x + xspeed) > 0) && ((this._x + xspeed) < xbounds)) {
this._x = this._x + xspeed;
} else {
xspeed = 0;
if (this._x > 200) {
this._x = xbounds;
} else {
this._x = 0;
}
}
if (((this._y + yspeed) > 0) && ((this._y + yspeed) < ybounds)) {
this._y = this._y + yspeed;
} else {
yspeed = 0;
if (this._y > 200) {
this._y = ybounds;
} else {
this._y = 0;
}
}
if (!xkey) {
if (xspeed > 0) {
xspeed--;
} else if (xspeed < 0) {
xspeed++;
}
}
if (!ykey) {
if (yspeed > 0) {
yspeed--;
} else if (yspeed < 0) {
yspeed++;
}
}
}
Instance of Symbol 191 MovieClip "Enemy2" in Frame 332
onClipEvent (load) {
var xaccel = 1.2;
var yaccel = 1.2;
var xmaxspeed = 8;
var ymaxspeed = 8;
var xspeed = 0;
var yspeed = 0;
var xbounds = 542;
var ybounds = 400;
}
onClipEvent (enterFrame) {
xkey = false;
ykey = false;
if (_root.item._y < _y) {
ykey = true;
if (yspeed > (-ymaxspeed)) {
yspeed = yspeed - yaccel;
}
}
if (_root.item._y > _y) {
ykey = true;
if (yspeed < ymaxspeed) {
yspeed = yspeed + yaccel;
}
}
if (_root.item._x > _x) {
xkey = true;
if (xspeed < xmaxspeed) {
xspeed = xspeed + xaccel;
}
}
if (_root.item._x < _x) {
xkey = true;
if (xspeed > (-xmaxspeed)) {
xspeed = xspeed - xaccel;
}
}
if (((this._x + xspeed) > 0) && ((this._x + xspeed) < xbounds)) {
this._x = this._x + xspeed;
} else {
xspeed = 0;
if (this._x > 200) {
this._x = xbounds;
} else {
this._x = 0;
}
}
if (((this._y + yspeed) > 0) && ((this._y + yspeed) < ybounds)) {
this._y = this._y + yspeed;
} else {
yspeed = 0;
if (this._y > 200) {
this._y = ybounds;
} else {
this._y = 0;
}
}
if (!xkey) {
if (xspeed > 0) {
xspeed--;
} else if (xspeed < 0) {
xspeed++;
}
}
if (!ykey) {
if (yspeed > 0) {
yspeed--;
} else if (yspeed < 0) {
yspeed++;
}
}
}
Instance of Symbol 214 MovieClip "volSlider" in Frame 332
onClipEvent (load) {
_parent.volSlider.drag._x = _parent.volSlider.drag._x + 50;
}
onClipEvent (enterFrame) {
vol = _parent.volSlider.drag._x + 50;
_root.mySound.setVolume(vol);
_parent.volAt = Math.round(vol);
}
Instance of Symbol 220 MovieClip in Frame 332
onClipEvent (enterFrame) {
if (_root.P1score >= 250) {
_root.nextFrame();
if (_root.COMscore >= 250) {
_root.nextFrame();
}
}
if (Key.isDown(80)) {
stopAllSounds();
MusicCounter = 0;
_root.gotoAndStop("Main_Menu");
}
}
Frame 333
Mouse.show();
difficulty = 2;
stop();
Instance of Symbol 191 MovieClip "Enemy" in Frame 333
onClipEvent (load) {
var xaccel = 1.2;
var yaccel = 1.2;
var xmaxspeed = 8;
var ymaxspeed = 8;
var xspeed = 0;
var yspeed = 0;
var xbounds = 542;
var ybounds = 400;
this._x = random(300);
this._y = random(200);
}
onClipEvent (enterFrame) {
xkey = false;
ykey = false;
if (_root.item._y < _y) {
ykey = true;
if (yspeed > (-ymaxspeed)) {
yspeed = yspeed - yaccel;
}
}
if (_root.item._y > _y) {
ykey = true;
if (yspeed < ymaxspeed) {
yspeed = yspeed + yaccel;
}
}
if (_root.item._x > _x) {
xkey = true;
if (xspeed < xmaxspeed) {
xspeed = xspeed + xaccel;
}
}
if (_root.item._x < _x) {
xkey = true;
if (xspeed > (-xmaxspeed)) {
xspeed = xspeed - xaccel;
}
}
if (((this._x + xspeed) > 0) && ((this._x + xspeed) < xbounds)) {
this._x = this._x + xspeed;
} else {
xspeed = 0;
if (this._x > 200) {
this._x = xbounds;
} else {
this._x = 0;
}
}
if (((this._y + yspeed) > 0) && ((this._y + yspeed) < ybounds)) {
this._y = this._y + yspeed;
} else {
yspeed = 0;
if (this._y > 200) {
this._y = ybounds;
} else {
this._y = 0;
}
}
if (!xkey) {
if (xspeed > 0) {
xspeed--;
} else if (xspeed < 0) {
xspeed++;
}
}
if (!ykey) {
if (yspeed > 0) {
yspeed--;
} else if (yspeed < 0) {
yspeed++;
}
}
}
Instance of Symbol 220 MovieClip in Frame 333
onClipEvent (enterFrame) {
if (_root.P1score >= 250) {
_root.gotoAndStop(64);
}
if (_root.COMscore >= 250) {
_root.gotoAndStop(65);
}
if (Key.isDown(80)) {
stopAllSounds();
MusicCounter = 0;
_root.gotoAndStop("Main_Menu");
}
}
Instance of Symbol 194 MovieClip "TeamMate" in Frame 333
onClipEvent (load) {
var xaccel = 1.2;
var yaccel = 1.2;
var xmaxspeed = 8;
var ymaxspeed = 8;
var xspeed = 0;
var yspeed = 0;
var xbounds = 542;
var ybounds = 400;
this._x = random(300);
this._y = random(200);
}
onClipEvent (enterFrame) {
xkey = false;
ykey = false;
if (_root.item._y < _y) {
ykey = true;
if (yspeed > (-ymaxspeed)) {
yspeed = yspeed - yaccel;
}
}
if (_root.item._y > _y) {
ykey = true;
if (yspeed < ymaxspeed) {
yspeed = yspeed + yaccel;
}
}
if (_root.item._x > _x) {
xkey = true;
if (xspeed < xmaxspeed) {
xspeed = xspeed + xaccel;
}
}
if (_root.item._x < _x) {
xkey = true;
if (xspeed > (-xmaxspeed)) {
xspeed = xspeed - xaccel;
}
}
if (((this._x + xspeed) > 0) && ((this._x + xspeed) < xbounds)) {
this._x = this._x + xspeed;
} else {
xspeed = 0;
if (this._x > 200) {
this._x = xbounds;
} else {
this._x = 0;
}
}
if (((this._y + yspeed) > 0) && ((this._y + yspeed) < ybounds)) {
this._y = this._y + yspeed;
} else {
yspeed = 0;
if (this._y > 200) {
this._y = ybounds;
} else {
this._y = 0;
}
}
if (!xkey) {
if (xspeed > 0) {
xspeed--;
} else if (xspeed < 0) {
xspeed++;
}
}
if (!ykey) {
if (yspeed > 0) {
yspeed--;
} else if (yspeed < 0) {
yspeed++;
}
}
}
Instance of Symbol 191 MovieClip "Enemy2" in Frame 333
onClipEvent (load) {
var xaccel = 1.2;
var yaccel = 1.2;
var xmaxspeed = 8;
var ymaxspeed = 8;
var xspeed = 0;
var yspeed = 0;
var xbounds = 542;
var ybounds = 400;
this._x = random(300);
this._y = random(200);
}
onClipEvent (enterFrame) {
xkey = false;
ykey = false;
if (_root.item._y < _y) {
ykey = true;
if (yspeed > (-ymaxspeed)) {
yspeed = yspeed - yaccel;
}
}
if (_root.item._y > _y) {
ykey = true;
if (yspeed < ymaxspeed) {
yspeed = yspeed + yaccel;
}
}
if (_root.item._x > _x) {
xkey = true;
if (xspeed < xmaxspeed) {
xspeed = xspeed + xaccel;
}
}
if (_root.item._x < _x) {
xkey = true;
if (xspeed > (-xmaxspeed)) {
xspeed = xspeed - xaccel;
}
}
if (((this._x + xspeed) > 0) && ((this._x + xspeed) < xbounds)) {
this._x = this._x + xspeed;
} else {
xspeed = 0;
if (this._x > 200) {
this._x = xbounds;
} else {
this._x = 0;
}
}
if (((this._y + yspeed) > 0) && ((this._y + yspeed) < ybounds)) {
this._y = this._y + yspeed;
} else {
yspeed = 0;
if (this._y > 200) {
this._y = ybounds;
} else {
this._y = 0;
}
}
if (!xkey) {
if (xspeed > 0) {
xspeed--;
} else if (xspeed < 0) {
xspeed++;
}
}
if (!ykey) {
if (yspeed > 0) {
yspeed--;
} else if (yspeed < 0) {
yspeed++;
}
}
}
Frame 334
Mouse.show();
difficulty = 3;
stop();
Instance of Symbol 220 MovieClip in Frame 334
onClipEvent (enterFrame) {
if (_root.P1score >= 250) {
_root.gotoAndStop(64);
}
if (_root.COMscore >= 250) {
_root.gotoAndStop(65);
}
if (Key.isDown(80)) {
stopAllSounds();
MusicCounter = 0;
_root.gotoAndStop("Main_Menu");
}
}
Frame 335
stop();
Frame 336
stop();
Instance of Symbol 48 MovieClip in Frame 337
onClipEvent (enterFrame) {
startDrag (this, true);
Mouse.hide();
}
Frame 366
COMscore = 0;
P1score = 0;
MultiPlayer = 0;
Instance of Symbol 150 MovieClip in Frame 366
onClipEvent (enterFrame) {
if (Key.isDown(49)) {
_root.nextFrame();
}
if (Key.isDown(50)) {
_root.gotoAndPlay(66);
}
if (Key.isDown(51)) {
_root.gotoAndPlay(67);
}
}
Frame 382
stopAllSounds();
Frame 383
mySound = new Sound();
mySound.attachSound("Music2");
mySound.start("Music2", 99999999);
MusicCounter = 0;
Frame 396
stop();
_root.Easy.tabEnabled = false;
_root.Medium2.tabEnabled = false;
_root.Hard.tabEnabled = false;
Instance of Symbol 150 MovieClip in Frame 396
onClipEvent (enterFrame) {
if (Key.isDown(49)) {
_root.nextFrame();
}
if (Key.isDown(50)) {
_root.gotoAndPlay(62);
}
if (Key.isDown(51)) {
_root.gotoAndPlay(63);
}
}
Frame 397
Mouse.show();
difficulty = 1;
stop();
Instance of Symbol 188 MovieClip "item" in Frame 397
onClipEvent (load) {
this._x = random(400);
this._y = random(200);
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.Ball)) {
this.play();
_root.P1score = _root.P1score + 10;
this._x = random(550);
this._y = random(400);
}
if (this.hitTest(_root.Player2)) {
this.play();
_root.P1score = _root.P1score + 10;
this._x = random(550);
this._y = random(400);
}
if (this.hitTest(_root.Enemy)) {
this.play();
_root.COMscore = _root.COMscore + 10;
this._x = random(550);
this._y = random(400);
}
if (this.hitTest(_root.Enemy2)) {
this.play();
_root.COMscore = _root.COMscore + 10;
this._x = random(550);
this._y = random(400);
}
}
Instance of Symbol 191 MovieClip "Enemy" in Frame 397
onClipEvent (load) {
var xaccel = 1.2;
var yaccel = 1.2;
var xmaxspeed = 8;
var ymaxspeed = 8;
var xspeed = 0;
var yspeed = 0;
var xbounds = 542;
var ybounds = 400;
}
onClipEvent (enterFrame) {
xkey = false;
ykey = false;
if (_root.item._y < _y) {
ykey = true;
if (yspeed > (-ymaxspeed)) {
yspeed = yspeed - yaccel;
}
}
if (_root.item._y > _y) {
ykey = true;
if (yspeed < ymaxspeed) {
yspeed = yspeed + yaccel;
}
}
if (_root.item._x > _x) {
xkey = true;
if (xspeed < xmaxspeed) {
xspeed = xspeed + xaccel;
}
}
if (_root.item._x < _x) {
xkey = true;
if (xspeed > (-xmaxspeed)) {
xspeed = xspeed - xaccel;
}
}
if (((this._x + xspeed) > 0) && ((this._x + xspeed) < xbounds)) {
this._x = this._x + xspeed;
} else {
xspeed = 0;
if (this._x > 200) {
this._x = xbounds;
} else {
this._x = 0;
}
}
if (((this._y + yspeed) > 0) && ((this._y + yspeed) < ybounds)) {
this._y = this._y + yspeed;
} else {
yspeed = 0;
if (this._y > 200) {
this._y = ybounds;
} else {
this._y = 0;
}
}
if (!xkey) {
if (xspeed > 0) {
xspeed--;
} else if (xspeed < 0) {
xspeed++;
}
}
if (!ykey) {
if (yspeed > 0) {
yspeed--;
} else if (yspeed < 0) {
yspeed++;
}
}
}
Instance of Symbol 191 MovieClip "Enemy2" in Frame 397
onClipEvent (load) {
var xaccel = 1.2;
var yaccel = 1.2;
var xmaxspeed = 8;
var ymaxspeed = 8;
var xspeed = 0;
var yspeed = 0;
var xbounds = 542;
var ybounds = 400;
}
onClipEvent (enterFrame) {
xkey = false;
ykey = false;
if (_root.item._y < _y) {
ykey = true;
if (yspeed > (-ymaxspeed)) {
yspeed = yspeed - yaccel;
}
}
if (_root.item._y > _y) {
ykey = true;
if (yspeed < ymaxspeed) {
yspeed = yspeed + yaccel;
}
}
if (_root.item._x > _x) {
xkey = true;
if (xspeed < xmaxspeed) {
xspeed = xspeed + xaccel;
}
}
if (_root.item._x < _x) {
xkey = true;
if (xspeed > (-xmaxspeed)) {
xspeed = xspeed - xaccel;
}
}
if (((this._x + xspeed) > 0) && ((this._x + xspeed) < xbounds)) {
this._x = this._x + xspeed;
} else {
xspeed = 0;
if (this._x > 200) {
this._x = xbounds;
} else {
this._x = 0;
}
}
if (((this._y + yspeed) > 0) && ((this._y + yspeed) < ybounds)) {
this._y = this._y + yspeed;
} else {
yspeed = 0;
if (this._y > 200) {
this._y = ybounds;
} else {
this._y = 0;
}
}
if (!xkey) {
if (xspeed > 0) {
xspeed--;
} else if (xspeed < 0) {
xspeed++;
}
}
if (!ykey) {
if (yspeed > 0) {
yspeed--;
} else if (yspeed < 0) {
yspeed++;
}
}
}
Instance of Symbol 214 MovieClip "volSlider" in Frame 397
onClipEvent (load) {
_parent.volSlider.drag._x = _parent.volSlider.drag._x + 50;
}
onClipEvent (enterFrame) {
vol = _parent.volSlider.drag._x + 50;
_root.mySound.setVolume(vol);
_parent.volAt = Math.round(vol);
}
Instance of Symbol 220 MovieClip in Frame 397
onClipEvent (enterFrame) {
if (_root.P1score >= 250) {
_root.nextFrame();
if (_root.COMscore >= 250) {
_root.nextFrame();
}
}
if (Key.isDown(80)) {
stopAllSounds();
MusicCounter = 0;
_root.gotoAndStop("Main_Menu");
}
}
Instance of Symbol 194 MovieClip "Ball" in Frame 397
onClipEvent (load) {
var xaccel = 1.5;
var yaccel = 1.5;
var xmaxspeed = 10;
var ymaxspeed = 10;
var xspeed = 0;
var yspeed = 0;
var xbounds = 542;
var ybounds = 400;
}
onClipEvent (enterFrame) {
xkey = false;
ykey = false;
if (Key.isDown(38)) {
ykey = true;
if (yspeed > (-ymaxspeed)) {
yspeed = yspeed - yaccel;
}
}
if (Key.isDown(40)) {
ykey = true;
if (yspeed < ymaxspeed) {
yspeed = yspeed + yaccel;
}
}
if (Key.isDown(39)) {
xkey = true;
if (xspeed < xmaxspeed) {
xspeed = xspeed + xaccel;
}
}
if (Key.isDown(37)) {
xkey = true;
if (xspeed > (-xmaxspeed)) {
xspeed = xspeed - xaccel;
}
}
if (((this._x + xspeed) > 0) && ((this._x + xspeed) < xbounds)) {
this._x = this._x + xspeed;
} else {
xspeed = 0;
if (this._x > 200) {
this._x = xbounds;
} else {
this._x = 0;
}
}
if (((this._y + yspeed) > 0) && ((this._y + yspeed) < ybounds)) {
this._y = this._y + yspeed;
} else {
yspeed = 0;
if (this._y > 200) {
this._y = ybounds;
} else {
this._y = 0;
}
}
if (!xkey) {
if (xspeed > 0) {
xspeed--;
} else if (xspeed < 0) {
xspeed++;
}
}
if (!ykey) {
if (yspeed > 0) {
yspeed--;
} else if (yspeed < 0) {
yspeed++;
}
}
}
Instance of Symbol 432 MovieClip "Player2" in Frame 397
onClipEvent (load) {
var xaccel = 1.5;
var yaccel = 1.5;
var xmaxspeed = 10;
var ymaxspeed = 10;
var xspeed = 0;
var yspeed = 0;
var xbounds = 542;
var ybounds = 400;
}
onClipEvent (enterFrame) {
xkey = false;
ykey = false;
if (Key.isDown(87)) {
ykey = true;
if (yspeed > (-ymaxspeed)) {
yspeed = yspeed - yaccel;
}
}
if (Key.isDown(83)) {
ykey = true;
if (yspeed < ymaxspeed) {
yspeed = yspeed + yaccel;
}
}
if (Key.isDown(68)) {
xkey = true;
if (xspeed < xmaxspeed) {
xspeed = xspeed + xaccel;
}
}
if (Key.isDown(65)) {
xkey = true;
if (xspeed > (-xmaxspeed)) {
xspeed = xspeed - xaccel;
}
}
if (((this._x + xspeed) > 0) && ((this._x + xspeed) < xbounds)) {
this._x = this._x + xspeed;
} else {
xspeed = 0;
if (this._x > 200) {
this._x = xbounds;
} else {
this._x = 0;
}
}
if (((this._y + yspeed) > 0) && ((this._y + yspeed) < ybounds)) {
this._y = this._y + yspeed;
} else {
yspeed = 0;
if (this._y > 200) {
this._y = ybounds;
} else {
this._y = 0;
}
}
if (!xkey) {
if (xspeed > 0) {
xspeed--;
} else if (xspeed < 0) {
xspeed++;
}
}
if (!ykey) {
if (yspeed > 0) {
yspeed--;
} else if (yspeed < 0) {
yspeed++;
}
}
}
Frame 398
Mouse.show();
difficulty = 2;
stop();
Instance of Symbol 188 MovieClip "item" in Frame 398
onClipEvent (load) {
this._x = random(400);
this._y = random(200);
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.Ball)) {
this.play();
_root.P1score = _root.P1score + 10;
this._x = random(550);
this._y = random(400);
}
if (this.hitTest(_root.TeamMate)) {
this.play();
_root.P1score = _root.P1score + 10;
this._x = random(550);
this._y = random(400);
}
if (this.hitTest(_root.Enemy)) {
this.play();
_root.COMscore = _root.COMscore + 10;
this._x = random(550);
this._y = random(400);
}
if (this.hitTest(_root.Enemy2)) {
this.play();
_root.COMscore = _root.COMscore + 10;
this._x = random(550);
this._y = random(400);
}
}
Instance of Symbol 191 MovieClip "Enemy" in Frame 398
onClipEvent (load) {
var xaccel = 1.2;
var yaccel = 1.2;
var xmaxspeed = 8;
var ymaxspeed = 8;
var xspeed = 0;
var yspeed = 0;
var xbounds = 542;
var ybounds = 400;
this._x = random(300);
this._y = random(200);
}
onClipEvent (enterFrame) {
xkey = false;
ykey = false;
if (_root.item._y < _y) {
ykey = true;
if (yspeed > (-ymaxspeed)) {
yspeed = yspeed - yaccel;
}
}
if (_root.item._y > _y) {
ykey = true;
if (yspeed < ymaxspeed) {
yspeed = yspeed + yaccel;
}
}
if (_root.item._x > _x) {
xkey = true;
if (xspeed < xmaxspeed) {
xspeed = xspeed + xaccel;
}
}
if (_root.item._x < _x) {
xkey = true;
if (xspeed > (-xmaxspeed)) {
xspeed = xspeed - xaccel;
}
}
if (((this._x + xspeed) > 0) && ((this._x + xspeed) < xbounds)) {
this._x = this._x + xspeed;
} else {
xspeed = 0;
if (this._x > 200) {
this._x = xbounds;
} else {
this._x = 0;
}
}
if (((this._y + yspeed) > 0) && ((this._y + yspeed) < ybounds)) {
this._y = this._y + yspeed;
} else {
yspeed = 0;
if (this._y > 200) {
this._y = ybounds;
} else {
this._y = 0;
}
}
if (!xkey) {
if (xspeed > 0) {
xspeed--;
} else if (xspeed < 0) {
xspeed++;
}
}
if (!ykey) {
if (yspeed > 0) {
yspeed--;
} else if (yspeed < 0) {
yspeed++;
}
}
}
Instance of Symbol 220 MovieClip in Frame 398
onClipEvent (enterFrame) {
if (_root.P1score >= 250) {
_root.gotoAndStop(64);
}
if (_root.COMscore >= 250) {
_root.gotoAndStop(65);
}
if (Key.isDown(80)) {
stopAllSounds();
MusicCounter = 0;
_root.gotoAndStop("Main_Menu");
}
}
Instance of Symbol 191 MovieClip "Enemy2" in Frame 398
onClipEvent (load) {
var xaccel = 1.2;
var yaccel = 1.2;
var xmaxspeed = 8;
var ymaxspeed = 8;
var xspeed = 0;
var yspeed = 0;
var xbounds = 542;
var ybounds = 400;
this._x = random(300);
this._y = random(200);
}
onClipEvent (enterFrame) {
xkey = false;
ykey = false;
if (_root.item._y < _y) {
ykey = true;
if (yspeed > (-ymaxspeed)) {
yspeed = yspeed - yaccel;
}
}
if (_root.item._y > _y) {
ykey = true;
if (yspeed < ymaxspeed) {
yspeed = yspeed + yaccel;
}
}
if (_root.item._x > _x) {
xkey = true;
if (xspeed < xmaxspeed) {
xspeed = xspeed + xaccel;
}
}
if (_root.item._x < _x) {
xkey = true;
if (xspeed > (-xmaxspeed)) {
xspeed = xspeed - xaccel;
}
}
if (((this._x + xspeed) > 0) && ((this._x + xspeed) < xbounds)) {
this._x = this._x + xspeed;
} else {
xspeed = 0;
if (this._x > 200) {
this._x = xbounds;
} else {
this._x = 0;
}
}
if (((this._y + yspeed) > 0) && ((this._y + yspeed) < ybounds)) {
this._y = this._y + yspeed;
} else {
yspeed = 0;
if (this._y > 200) {
this._y = ybounds;
} else {
this._y = 0;
}
}
if (!xkey) {
if (xspeed > 0) {
xspeed--;
} else if (xspeed < 0) {
xspeed++;
}
}
if (!ykey) {
if (yspeed > 0) {
yspeed--;
} else if (yspeed < 0) {
yspeed++;
}
}
}
Frame 399
Mouse.show();
difficulty = 3;
stop();
Frame 400
stop();
Frame 401
stop();
Instance of Symbol 118 MovieClip in Frame 402
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 48 MovieClip in Frame 402
onClipEvent (enterFrame) {
startDrag (this, true);
Mouse.hide();
}
Frame 432
Mouse.show();
_root.Low.tabEnabled = false;
_root.Medium.tabEnabled = false;
_root.High.tabEnabled = false;
_root.volSlider.tabEnabled = false;
stop();
Instance of Symbol 214 MovieClip "volSlider" in Frame 432
onClipEvent (load) {
_parent.volSlider.drag._x = _parent.volSlider.drag._x + 50;
}
onClipEvent (enterFrame) {
vol = _parent.volSlider.drag._x + 50;
_root.mySound2.setVolume(vol);
_parent.volAt = Math.round(vol);
}
Instance of Symbol 48 MovieClip in Frame 433
onClipEvent (enterFrame) {
startDrag (this, true);
Mouse.hide();
}
Frame 462
gotoAndStop (95);
Instance of Symbol 48 MovieClip in Frame 462
onClipEvent (enterFrame) {
startDrag (this, true);
Mouse.hide();
}
Frame 463
stopAllSounds();
Frame 737
MusicCounter = 0;
gotoAndPlay ("Main_Menu");
Symbol 18 Button
on (release) {
getURL ("http://ryan094.newgrounds.com/", _self, "GET");
}
Symbol 46 MovieClip Frame 50
stop();
Symbol 492 MovieClip [__Packages.ab3.rankz.Armor_Bot_30_En_AS1] Frame 0
class ab3.rankz.Armor_Bot_30_En_AS1 extends Object
{
static var _CharsReverseLookup;
var _Armor_Bot_30_En_AS1Str, _Armor_Bot_30_En_AS1Count;
function Armor_Bot_30_En_AS1 () {
super();
}
static function Encode(str) {
var _local1 = new ab3.rankz.Armor_Bot_30_En_AS1();
return(_local1.encodeArmor_Bot_30_En_AS1(str));
}
static function Decode(str) {
var _local1 = new ab3.rankz.Armor_Bot_30_En_AS1();
return(_local1.decodeArmor_Bot_30_En_AS1(str));
}
static function StringReplaceAll(source, find, replacement) {
return(source.split(find).join(replacement));
}
static function InitReverseChars() {
_CharsReverseLookup = new Array();
var _local1 = 0;
while (_local1 < _Chars.length) {
_CharsReverseLookup[_Chars[_local1]] = _local1;
_local1++;
}
return(true);
}
static function UrlDecode(str) {
str = StringReplaceAll(str, "\\", " ");
str = unescape(str);
return(str);
}
static function UrlEncode(str) {
str = escape(str);
str = StringReplaceAll(str, "\\", "%2B");
str = StringReplaceAll(str, "%20", "+");
return(str);
}
function setArmor_Bot_30_En_AS1Str(str) {
_Armor_Bot_30_En_AS1Str = str;
_Armor_Bot_30_En_AS1Count = 0;
}
function readArmor_Bot_30_En_AS1() {
if (!_Armor_Bot_30_En_AS1Str) {
return(_EndOfInput);
}
if (_Armor_Bot_30_En_AS1Count >= _Armor_Bot_30_En_AS1Str.length) {
return(_EndOfInput);
}
var _local2 = _Armor_Bot_30_En_AS1Str.charCodeAt(_Armor_Bot_30_En_AS1Count) & 255;
_Armor_Bot_30_En_AS1Count++;
return(_local2);
}
function encodeArmor_Bot_30_En_AS1(str) {
setArmor_Bot_30_En_AS1Str(str);
var _local3 = "";
var _local2 = new Array(3);
var _local5 = 0;
var _local4 = false;
while ((!_local4) && (((_local2[0] = readArmor_Bot_30_En_AS1())) != _EndOfInput)) {
_local2[1] = readArmor_Bot_30_En_AS1();
_local2[2] = readArmor_Bot_30_En_AS1();
_local3 = _local3 + _Chars[_local2[0] >> 2];
if (_local2[1] != _EndOfInput) {
_local3 = _local3 + _Chars[((_local2[0] << 4) & 48) | (_local2[1] >> 4)];
if (_local2[2] != _EndOfInput) {
_local3 = _local3 + _Chars[((_local2[1] << 2) & 60) | (_local2[2] >> 6)];
_local3 = _local3 + _Chars[_local2[2] & 63];
} else {
_local3 = _local3 + _Chars[(_local2[1] << 2) & 60];
_local3 = _local3 + "=";
_local4 = true;
}
} else {
_local3 = _local3 + _Chars[(_local2[0] << 4) & 48];
_local3 = _local3 + "=";
_local3 = _local3 + "=";
_local4 = true;
}
_local5 = _local5 + 4;
if (_local5 >= 76) {
_local3 = _local3 + newline;
_local5 = 0;
}
}
return(_local3);
}
function readReverseArmor_Bot_30_En_AS1() {
if (!_Armor_Bot_30_En_AS1Str) {
return(_EndOfInput);
}
while (true) {
if (_Armor_Bot_30_En_AS1Count >= _Armor_Bot_30_En_AS1Str.length) {
return(_EndOfInput);
}
var _local2 = _Armor_Bot_30_En_AS1Str.charAt(_Armor_Bot_30_En_AS1Count);
_Armor_Bot_30_En_AS1Count++;
if (_CharsReverseLookup[_local2]) {
return(_CharsReverseLookup[_local2]);
}
if (_local2 == "A") {
return(0);
}
}
}
function ntos(n) {
var _local1 = n.toString(16);
if (_local1.length == 1) {
_local1 = "0" + _local1;
}
_local1 = "%" + _local1;
return(unescape(_local1));
}
function decodeArmor_Bot_30_En_AS1(str) {
setArmor_Bot_30_En_AS1Str(str);
var _local3 = "";
var _local2 = new Array(4);
var _local4 = false;
while (((!_local4) && (((_local2[0] = readReverseArmor_Bot_30_En_AS1())) != _EndOfInput)) && (((_local2[1] = readReverseArmor_Bot_30_En_AS1())) != _EndOfInput)) {
_local2[2] = readReverseArmor_Bot_30_En_AS1();
_local2[3] = readReverseArmor_Bot_30_En_AS1();
_local3 = _local3 + ntos(((_local2[0] << 2) & 255) | (_local2[1] >> 4));
if (_local2[2] != _EndOfInput) {
_local3 = _local3 + ntos(((_local2[1] << 4) & 255) | (_local2[2] >> 2));
if (_local2[3] != _EndOfInput) {
_local3 = _local3 + ntos(((_local2[2] << 6) & 255) | _local2[3]);
} else {
_local4 = true;
}
} else {
_local4 = true;
}
}
return(_local3);
}
function toHex(n) {
var _local4 = "";
var _local3 = true;
var _local1 = 32;
while (_local1 > 0) {
_local1 = _local1 - 4;
var _local2 = (n >> _local1) & 15;
if ((!_local3) || (_local2 != 0)) {
_local3 = false;
_local4 = _local4 + _Digits[_local2];
}
}
return(((_local4 == "") ? "0" : (_local4)));
}
function pad(str, len, pad) {
var _local2 = str;
var _local1 = str.length;
while (_local1 < len) {
_local2 = pad + _local2;
_local1++;
}
return(_local2);
}
function encodeHex(str) {
var _local4 = "";
var _local2 = 0;
while (_local2 < str.length) {
_local4 = _local4 + pad(toHex(str.charCodeAt(_local2) & 255), 2, "0");
_local2++;
}
return(_local4);
}
function decodeHex(str) {
var _local5 = "";
var _local3 = "";
var _local2 = 0;
while (_local2 < str.length) {
_local3 = _local3 + str.charAt(_local2);
if (_local3.length == 2) {
_local5 = _local5 + ntos(parseInt("0x" + _local3));
_local3 = "";
}
_local2++;
}
return(_local5);
}
static var _EndOfInput = -1;
static var _Chars = new Array("A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z", "a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z", "0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "+", "/");
static var _CharsReverseLookupInited = InitReverseChars();
static var _Digits = new Array("0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "a", "b", "c", "d", "e", "f");
}
Instance of Symbol 43 MovieClip "preloader" in Symbol 49 MovieClip Frame 1
onClipEvent (enterFrame) {
function onEnterFrame() {
var _local3 = _root.getBytesTotal() / 1024;
var _local2 = _root.getBytesLoaded() / 1024;
var _local4 = Math.round((_local2 / _local3) * 100);
percentDone = _local4 + "% loaded";
bar._xscale = _local4;
if (_local2 == _local3) {
_root.nextFrame();
}
}
Button.prototype.useHandCursor = false;
mCM = new ContextMenu();
mCM.hideBuiltInItems();
_root.preloader.menu = mCM;
}
Symbol 56 MovieClip Frame 250
_root.gotoAndPlay("Transition");
Symbol 61 Button
on (release) {
gotoAndPlay ("Transition");
}
Symbol 67 Button
on (release) {
_root.gotoAndPlay("Easter_Egg");
}
Symbol 74 Button
on (rollOver) {
_root.Description.nextFrame();
}
on (rollOut) {
_root.Description.gotoAndStop(1);
}
on (release) {
play();
}
Symbol 100 MovieClip Frame 1
stop();
Symbol 100 MovieClip Frame 9
if (_root.MultiPlayer == 1) {
gotoAndStop (10);
}
Symbol 100 MovieClip Frame 10
if (_root.MultiPlayer == 0) {
gotoAndStop (9);
}
Symbol 100 MovieClip Frame 11
if (_root.MultiPlayer == 1) {
gotoAndStop (12);
}
Symbol 100 MovieClip Frame 12
if (_root.MultiPlayer == 0) {
gotoAndStop (11);
}
Symbol 100 MovieClip Frame 13
if (_root.MultiPlayer == 1) {
gotoAndStop (14);
}
Symbol 100 MovieClip Frame 14
if (_root.MultiPlayer == 0) {
gotoAndStop (13);
}
Symbol 106 Button
on (rollOver) {
_root.Description.gotoAndStop(3);
}
on (rollOut) {
_root.Description.gotoAndStop(1);
}
on (release) {
MultiPlayer = MultiPlayer + 1;
play();
}
Symbol 110 Button
on (rollOver) {
_root.Description.gotoAndStop(4);
}
on (rollOut) {
_root.Description.gotoAndStop(1);
}
on (release) {
gotoAndPlay (208);
}
Symbol 116 Button
on (rollOver) {
_root.Description.gotoAndStop(5);
}
on (rollOut) {
_root.Description.gotoAndStop(1);
}
on (release) {
gotoAndPlay (402);
}
Symbol 122 Button
on (rollOver) {
_root.Description.gotoAndStop(4);
}
on (rollOut) {
_root.Description.gotoAndStop(1);
}
Symbol 123 Button
on (rollOver) {
_root.Description.gotoAndStop(5);
}
on (rollOut) {
_root.Description.gotoAndStop(1);
}
Symbol 141 Button
on (release) {
_root.gotoAndStop("Main Menu", 1);
}
Symbol 142 Button
on (release) {
if (_root.MultiPlayer == 0) {
play();
}
if (_root.MultiPlayer >= 1) {
gotoAndPlay (164);
}
}
on (rollOver) {
if (_root.MultiPlayer == 0) {
}
_root.Description.gotoAndStop(9);
}
on (rollOver) {
if (_root.MultiPlayer == 1) {
}
_root.Description.gotoAndStop(10);
}
on (rollOut) {
_root.Description.gotoAndStop(1);
}
Symbol 143 Button
on (release) {
if (_root.MultiPlayer == 0) {
gotoAndPlay (272);
}
}
on (release) {
if (_root.MultiPlayer >= 1) {
gotoAndPlay (337);
}
}
on (rollOver) {
if (MultiPlayer == 0) {
}
_root.Description.gotoAndStop("Team Play Single");
}
on (rollOver) {
if (MultiPlayer == 1) {
}
_root.Description.gotoAndStop("Team Play Multi");
}
on (rollOut) {
_root.Description.gotoAndStop(1);
}
Symbol 146 Button
on (release) {
gotoAndStop (95);
}
Symbol 157 Button
on (release) {
gotoAndStop (97);
}
Symbol 162 Button
on (release) {
nextFrame();
}
Symbol 167 Button
on (release) {
gotoAndStop (98);
}
Symbol 180 Button
on (release) {
_root.gotoAndStop(66);
}
Symbol 181 Button
on (release) {
_root.gotoAndStop(67);
}
Symbol 188 MovieClip Frame 10
stop();
Symbol 191 MovieClip Frame 1
play();
Symbol 191 MovieClip Frame 20
gotoAndPlay (1);
Symbol 194 MovieClip Frame 1
stop();
Symbol 194 MovieClip Frame 2
stop();
Symbol 205 MovieClip Frame 1
play();
_root.Ball.xaccel = 0;
_root.Ball.yaccel = 0;
_root.Player.xaccel = 0;
_root.Player.yaccel = 0;
_root.TeamMate.xaccel = 0;
_root.TeamMate.yaccel = 0;
_root.Enemy.xaccel = 0;
_root.Enemy.yaccel = 0;
_root.Enemy2.xaccel = 0;
_root.Enemy2.yaccel = 0;
_root.Ball2.xaccel = 0;
_root.Ball2.yaccel = 0;
_root.Enemy3.xaccel = 0;
_root.Enemy3.yaccel = 0;
_root.Player2.xaccel = 0;
_root.Player2.yaccel = 0;
_root.Green.yaccel = 0;
_root.Green.xaccel = 0;
_root.Green2.yaccel = 0;
_root.Green2.xaccel = 0;
_root.Green3.yaccel = 0;
_root.Green3.xaccel = 0;
_root.Player.yaccel = 0;
_root.Player.xaccel = 0;
_root.Player.yaccel = 0;
_root.Player.xaccel = 0;
_root.Starterpoint = 0;
Symbol 205 MovieClip Frame 57
if (_root.difficulty == 1) {
_root.Player.xaccel = 1.5;
_root.Player.yaccel = 1.5;
_root.TeamMate.xaccel = 1.5;
_root.TeamMate.yaccel = 1.5;
_root.Enemy.xaccel = 1;
_root.Enemy.yaccel = 1;
_root.Enemy2.xaccel = 1.1;
_root.Enemy2.yaccel = 1.1;
_root.Ball2.xaccel = 1;
_root.Ball2.yaccel = 1;
_root.Enemy3.xaccel = 1;
_root.Enemy3.yaccel = 1;
_root.Player2.xaccel = 1.5;
_root.Player2.yaccel = 1.5;
_root.Green.yaccel = 0.8;
_root.Green.xaccel = 0.8;
_root.Ball.yaccel = 1.5;
_root.Ball.xaccel = 1.5;
}
if (_root.difficulty == 2) {
_root.Player.xaccel = 1.5;
_root.Player.yaccel = 1.5;
_root.TeamMate.xaccel = 1.5;
_root.TeamMate.yaccel = 1.5;
_root.Enemy.xaccel = 1;
_root.Enemy.yaccel = 1;
_root.Enemy2.xaccel = 1.1;
_root.Enemy2.yaccel = 1.1;
_root.Ball2.xaccel = 1;
_root.Ball2.yaccel = 1;
_root.Green.yaccel = 1;
_root.Green.xaccel = 1;
}
if (_root.difficulty == 3) {
_root.Ball.speed = 10;
_root.TeamMate.speed = 8;
_root.Enemy.speed = 8;
_root.Enemy2.speed = 8;
_root.Ball2.speed = 10;
_root.Enemy3.speed = 1;
_root.Player2.speed = 10;
_root.Player.speed = 10;
_root.Green.yaccel = 1.5;
_root.Green.xaccel = 1.5;
}
Symbol 205 MovieClip Frame 66
stop();
_root.Starterpoint = 1;
unloadMovie (_root.Starter);
Symbol 212 Button
on (press) {
startDrag ("", false, -50, 0, 50, 0);
}
on (release, dragOut) {
stopDrag();
}
Symbol 221 MovieClip Frame 1
stop();
_root.Ball.speed = 10;
_root.Ball2.speed = 10;
Pauser = 1;
Symbol 221 MovieClip Frame 2
stop();
_root.Ball.speed = 0;
_root.Ball2.speed = 0;
Pauser = 0;
Symbol 222 MovieClip Frame 1
stop();
Symbol 222 MovieClip Frame 2
stop();
Symbol 229 Button
on (release) {
MusicCounter = 0;
stopAllSounds();
_root.gotoAndPlay(1);
}
Symbol 233 Button
on (release) {
_root.PausedMenu.play();
_root.Paused.play();
_root.Paused.Black.gotoAndStop(2);
}
Symbol 234 MovieClip Frame 1
stop();
_root.Ball.xaccel = 1.5;
_root.Ball.yaccel = 1.5;
_root.Player2.xaccel = 1.5;
_root.Player2.yaccel = 1.5;
_root.Enemy.xaccel = 0;
_root.Enemy.yaccel = 0;
_root.Ball2.xaccel = 0;
_root.Ball2.yaccel = 0;
_root.Enemy2.xaccel = 0;
_root.Enemy2.yaccel = 0;
_root.TeamMate.xaccel = 0;
_root.TeamMate.yaccel = 0;
Symbol 234 MovieClip Frame 2
stop();
vol3 = 35;
_root.mySound4.setVolume(vol3);
Music = Math.round(vol3);
stop();
if (_root.difficulty == 1) {
_root.Ball.speed = 10;
_root.Enemy.speed = 10;
_root.Ball2.speed = 10;
_root.Enemy2.speed = 10;
_root.TeamMate.speed = 10;
_root.Green.speed = 6.7;
_root.Starter.play();
_root.Player2.speed = 10;
if (_root.difficulty == 2) {
_root.Ball.speed = 10;
_root.Enemy.speed = 10;
_root.Ball2.speed = 10;
_root.Enemy2.speed = 10;
_root.TeamMate.speed = 10;
_root.Green.speed = 7;
_root.Starter.play();
_root.Player2.speed = 10;
if (_root.difficulty == 3) {
_root.Ball.speed = 10;
_root.Enemy.speed = 10;
_root.Ball2.speed = 10;
_root.Enemy2.speed = 10;
_root.TeamMate.speed = 10;
_root.Green.speed = 7.5;
_root.Player2.speed = 10;
_root.Starter.play();
}
}
}
_root.Ball.xaccel = 0;
_root.Ball.yaccel = 0;
_root.Player2.xaccel = 0;
_root.Player2.yaccel = 0;
_root.Enemy.xaccel = 0;
_root.Enemy.yaccel = 0;
_root.Ball2.xaccel = 0;
_root.Ball2.yaccel = 0;
_root.Enemy2.xaccel = 0;
_root.Enemy2.yaccel = 0;
_root.TeamMate.xaccel = 0;
_root.TeamMate.yaccel = 0;
Symbol 247 Button
on (release) {
_root.gotoAndStop(1);
}
Symbol 248 Button
on (release) {
_root.gotoAndStop(64);
}
Symbol 252 Button
on (release) {
MusicCounter = 0;
stopAllSounds();
gotoAndStop (95);
}
Symbol 254 Button
on (release) {
_root.gotoAndStop("Single_Menu");
}
Instance of Symbol 270 MovieClip "HealthBar2" in Symbol 271 MovieClip Frame 1
onClipEvent (enterFrame) {
this._width = _root.Health / 3.15;
}
Symbol 287 Button
on (release) {
nextFrame();
}
Symbol 295 MovieClip Frame 1
stop();
Symbol 295 MovieClip Frame 2
stop();
Symbol 295 MovieClip Frame 3
stop();
Symbol 305 Button
on (release) {
_quality = "low";
}
Symbol 309 Button
on (release) {
_quality = "medium";
}
Symbol 313 Button
on (release) {
_quality = "high";
}
Symbol 317 Button
on (release) {
prevFrame();
_root.Paused.gotoAndStop(2);
}
Symbol 320 MovieClip Frame 1
stop();
_root.PausedMenu.Pauser = 1;
Symbol 320 MovieClip Frame 2
stop();
_root.PausedMenu.Pauser = 0;
_root.Starter.stop();
Symbol 322 Button
on (release) {
_root.CPUScore = 0;
_root.PlayerScore = 0;
_root.prevFrame();
}
Symbol 324 Button
on (release) {
_root.gotoAndStop(41);
}
Symbol 347 Button
on (release) {
nextFrame();
}
Instance of Symbol 350 MovieClip "HealthBar2" in Symbol 351 MovieClip Frame 1
onClipEvent (enterFrame) {
this._width = _root.Health / 3.15;
}
Symbol 357 Button
on (release) {
nextFrame();
}
Symbol 360 MovieClip Frame 10
stop();
Symbol 360 MovieClip Frame 11
_root.score = _root.score + 5;
_root.score = _root.score + 5;
_root.maxscore = _root.maxscore + 10;
this._x = random(550);
this._y = random(300);
Symbol 368 MovieClip Frame 1
stop();
Symbol 376 MovieClip Frame 1
stop();
Symbol 376 MovieClip Frame 2
_root.Ball.ymaxspeed = 15;
_root.Ball.xmaxspeed = 15;
_root.Ball.yaccel = 2.2;
_root.Ball.xaccel = 2.2;
Symbol 376 MovieClip Frame 255
stop();
_root.Ball.ymaxspeed = 10;
_root.Ball.xmaxspeed = 10;
_root.Ball.yaccel = 1.5;
_root.Ball.xaccel = 1.5;
unloadMovie (_root.speeder);
Symbol 387 Button
on (release) {
gotoAndStop ("Highscore_Menu");
}
Symbol 393 Button
on (press) {
function __rankz_send__(par1, par2, par3, par4) {
par227 = new LoadVars();
par228 = new LoadVars();
par227.flashkey = par2;
par227.SU0249 = par1;
par227.bmFtZTE = ab3.rankz.Armor_Bot_30_En_AS1.Encode(par3);
par227.c2NvcmUx = ab3.rankz.Armor_Bot_30_En_AS1.Encode(par4 + "j%e%a%n%s");
par227.flashkey = par227.flashkey.split("=").join("");
par227.SU0249 = par227.SU0249.split("=").join("");
par228.onLoad = function (success) {
if (success) {
trace(par228.msg);
} else {
trace(par228.loaded);
}
};
par227.sendAndLoad("http://rankz.armorbot.com/submit/", par228, "POST");
}
bXlnYW1lX25hbWVfdmFyaWFibGU = namet;
bXlnYW1lX3Njb3JlX3ZhcmlhYmxl = score;
__rankz_send__("MjQwOWolZSVhJW4lcw==", "VHhFWWFyb1Y=", bXlnYW1lX25hbWVfdmFyaWFibGU, bXlnYW1lX3Njb3JlX3ZhcmlhYmxl);
getURL ("http://rankz.armorbot.com/Dodge-Em/", _self, "POST");
nextFrame();
}
Symbol 400 Button
on (release) {
gotoAndStop (337);
}
Symbol 401 Button
on (release) {
gotoAndStop (338);
}
Symbol 406 Button
on (release) {
_root.gotoAndStop(63);
}
Symbol 420 Button
on (release) {
_root.gotoAndStop(65);
}
Symbol 421 Button
on (release) {
MusicCounter = 0;
stopAllSounds();
gotoAndStop (272);
}
Symbol 423 Button
on (release) {
gotoAndStop (402);
}
Symbol 424 Button
on (release) {
gotoAndStop (403);
}
Symbol 440 Button
on (release) {
MusicCounter = 0;
stopAllSounds();
gotoAndStop (337);
}
Symbol 442 Button
on (rollOver) {
_root.Description.gotoAndStop(3);
}
on (rollOut) {
_root.Description.gotoAndStop(1);
}
Symbol 457 Button
on (release) {
_quality = "low";
}
on (rollOver) {
_root.Description.gotoAndStop(8);
}
on (rollOut) {
_root.Description.gotoAndStop(1);
}
Symbol 461 Button
on (release) {
_quality = "medium";
}
on (rollOver) {
_root.Description.gotoAndStop(7);
}
on (rollOut) {
_root.Description.gotoAndPlay(1);
}
Symbol 465 Button
on (release) {
_quality = "high";
}
on (rollOver) {
_root.Description.gotoAndStop(6);
}
on (rollOut) {
_root.Description.gotoAndPlay(1);
}
Symbol 466 Button
on (release) {
play();
}