Frame 1
function doSomething() {
_quality = "HIGH";
}
function doSomething2() {
_quality = "MEDIUM";
}
function doSomething3() {
_quality = "LOW";
}
stop();
MENU = new ContextMenu();
MENU.hideBuiltInItems();
Functioned = new ContextMenuItem("High", doSomething);
Functioned2 = new ContextMenuItem("Medium", doSomething2);
Functioned3 = new ContextMenuItem("Low", doSomething3);
MENU.customItems.push(Functioned);
MENU.customItems.push(Functioned2);
MENU.customItems.push(Functioned3);
_root.menu = MENU;
Instance of Symbol 67 MovieClip in Frame 1
on (release) {
getURL ("http://www.worldcup.galacti.com", "_blank");
}
Instance of Symbol 75 MovieClip in Frame 1
onClipEvent (enterFrame) {
_root.percent = Math.round((_root.getBytesLoaded() / _root.getBytesTotal()) * 100);
_root.percentName = _root.percent + "%";
if (_root.percent == 100) {
this.gotoAndStop(2);
}
}
Frame 2
stop();
Instance of Symbol 92 MovieClip in Frame 2
on (release) {
getURL ("http://www.corkysurprise.com", "_blank");
}
Frame 3
stop();
Instance of Symbol 95 MovieClip in Frame 3
on (release) {
getURL ("http://www.galactigames.com", "_blank");
}
Frame 4
stop();
stopAllSounds();
menuMusic.stop();
gameMusic.stop();
menuMusic = new Sound(this);
menuMusic.attachSound("menuMusic");
menuMusic.start(0, 9999);
gameMusic = new Sound(m);
gameMusic.attachSound("gameMusic");
Instance of Symbol 67 MovieClip in Frame 4
on (release) {
getURL ("http://www.worldcup.galacti.com", "_blank");
}
Frame 5
stop();
Instance of Symbol 67 MovieClip in Frame 5
on (release) {
getURL ("http://www.worldcup.galacti.com", "_blank");
}
Frame 6
stop();
getsc_lv = new LoadVars();
getsc_lv.bid = 204;
rec_lv = new LoadVars();
getsc_lv.sendAndLoad("http://bot.pldmstudios.com/g10.php", rec_lv, "POST");
rec_lv.onLoad = function (success) {
if (success) {
i = 1;
while (i < 6) {
_root["pl" + i] = rec_lv["name" + i];
_root["sc" + i] = rec_lv["score" + i];
if (rec_lv["name" + i] == undefined) {
_root["pl" + i] = "none";
}
if (rec_lv["score" + i] == undefined) {
_root["sc" + i] = "";
}
i++;
}
_root.gotoAndStop("highScoreDisplay");
} else {
_root.gotoAndStop("error");
}
};
Instance of Symbol 67 MovieClip in Frame 7
on (release) {
getURL ("http://www.worldcup.galacti.com", "_blank");
}
Instance of Symbol 136 MovieClip in Frame 8
on (release) {
getURL ("http://bot.armorstudios.com/highscores.php?id=204", "_blank");
}
Instance of Symbol 67 MovieClip in Frame 9
on (release) {
getURL ("http://www.worldcup.galacti.com", "_blank");
}
Instance of Symbol 17 MovieClip "area" in Frame 9
onClipEvent (load) {
_visible = false;
}
Instance of Symbol 17 MovieClip "area" in Frame 9
onClipEvent (load) {
_visible = false;
}
Instance of Symbol 17 MovieClip "area" in Frame 9
onClipEvent (load) {
_visible = false;
}
Instance of Symbol 17 MovieClip "areaB" in Frame 9
onClipEvent (load) {
_visible = false;
}
Instance of Symbol 17 MovieClip "area" in Frame 9
onClipEvent (load) {
_visible = false;
}
Instance of Symbol 17 MovieClip "area" in Frame 9
onClipEvent (load) {
_visible = false;
}
Frame 10
function loadSounds() {
kick = new Sound();
kick.attachSound("kick");
BOING1 = new Sound();
BOING1.attachSound("BOING1");
BOING2 = new Sound();
BOING2.attachSound("BOING2");
splat1 = new Sound();
splat1.attachSound("splat1");
splat2 = new Sound();
splat2.attachSound("splat1");
splat3 = new Sound();
splat3.attachSound("splat3");
splat4 = new Sound();
splat4.attachSound("splat4");
twang = new Sound();
twang.attachSound("twang");
miss = new Sound();
miss.attachSound("miss");
boom = new Sound();
boom.attachSound("boom1");
swallow = new Sound();
swallow.attachSound("swallow");
}
_root.killAll = true;
loadSounds();
menuMusic.stop();
Frame 11
function makeObject() {
amount = Math.round(Math.random() * 2) + 0;
i = 0;
while (i < amount) {
x = 1000;
y = 3000;
oX = Math.round(Math.random() * (y - x)) + x;
var _local2 = "Object" + _root.depthHolder;
_root.attachMovie("Object", _local2, _root.depthHolder);
_root.depthHolder++;
_root[_local2]._x = oX;
_root[_local2]._y = BG._y - 90;
_root.cam.scrollTarget.push(_local2);
i++;
}
}
function resetButton() {
ResetButton.gotoAndStop(2);
}
stop();
_root.killAll = false;
_root.depthHolder = 0;
_root.shoot = false;
_root.cameraActive = false;
distance = 0;
Instance of Symbol 165 MovieClip in Frame 11
onClipEvent (mouseDown) {
this.stop();
this.sL.gotoAndStop(2);
}
onClipEvent (enterFrame) {
if (_root.shoot) {
_visible = false;
} else {
_visible = true;
}
if (_currentframe <= 21) {
r = _currentframe;
}
if (_currentframe > 21) {
r = _totalframes - _currentframe;
}
_root.lineR = r;
}
Instance of Symbol 49 MovieClip "ball" in Frame 11
onClipEvent (load) {
function findAngle() {
if (found) {
return(undefined);
}
_root.makeObject();
deltaX = _x - _root.iBX;
deltaY = _y - _root.iBY;
angle = -Math.atan2(deltaX, deltaY);
ySpeed = _root.shotPower * Math.cos(angle);
oldYSpeed = ySpeed;
xSpeed = _root.shotPower * Math.sin(angle);
_root.attention = this;
_root.cameraActive = true;
found = true;
}
function bounce() {
if (caught) {
return(undefined);
}
ySpeed = oldYSpeed;
oldYSpeed = oldYSpeed * 0.8;
if (ySpeed > 5) {
if (!doneSound) {
_root.kick.start();
doneSound = true;
}
}
}
function bounceUp(amount, momentum) {
if (caught) {
return(undefined);
}
ySpeed = amount;
oldYSpeed = ySpeed;
xSpeed = xSpeed + momentum;
}
function slowDown(xvel) {
if (caught) {
return(undefined);
}
xSpeed = xSpeed * xvel;
if (momentum == "stop") {
xSpeed = 0;
}
}
caught = false;
onfloor = true;
airResis = 0.99;
friction = 0.98;
gravity = 1.4;
time = 0;
doneSound = false;
soundTime = 0;
this.cacheAsBitmap = true;
found = false;
}
onClipEvent (enterFrame) {
if (_root.shoot) {
if ((xSpeed < 0.5) and (xSpeed > -0.5)) {
if ((ySpeed < 1.5) and (ySpeed > -1.5)) {
time++;
if (time > 30) {
if ((xSpeed < 0.5) and (xSpeed > -0.5)) {
xSpeed = 0;
ySpeed = 0;
_root.resetButton();
}
}
}
}
}
if (caught) {
return(undefined);
}
if (_root.shoot) {
findAngle();
_y = (_y - ySpeed);
_x = (_x + xSpeed);
if (!onfloor) {
xSpeed = xSpeed * airResis;
}
ySpeed = ySpeed - gravity;
if (onfloor) {
xSpeed = xSpeed * friction;
}
_rotation = (_rotation + xSpeed);
if (!(xSpeed === undefined)) {
distanceXD = xSpeed / 10;
_root.distance = _root.distance + Math.round(distanceXD);
_root.distanceDisplay = _root.distance + "ft";
if (_root.distance <= 0) {
_root.distanceDisplay = "No Distance!";
}
}
if (_root.bound.hitTest(_x, _y + (_height / 2), true)) {
bounce();
onfloor = true;
} else {
onfloor = false;
}
}
while (_root.bound.hitTest(_x, _y - (_height / 2), true)) {
_y = (_y-1);
}
if (doneSound) {
soundTime++;
if (soundTime > 5) {
soundTime = 0;
doneSound = false;
}
}
}
Instance of Symbol 167 MovieClip "cam" in Frame 11
onClipEvent (load) {
_visible = false;
Motion = 3;
scrollTarget = new Array();
scrollTarget = ["ball", "player", "BG", "man"];
}
onClipEvent (enterFrame) {
if (!_root.cameraActive) {
return(undefined);
}
distanceX = Math.round(_x - _root.attention._x);
for (i in scrollTarget) {
_parent[scrollTarget[i]]._x = _parent[scrollTarget[i]]._x + (distanceX / Motion);
}
_root.distanceX = distanceX / Motion;
}
Instance of Symbol 179 MovieClip "BG" in Frame 11
onClipEvent (load) {
this.cacheAsBitmap = true;
this.swapDepths(10000);
grass.duplicateMovieClip("grassb", 1000);
grassb._x = grass._x + grass._width;
grassb.duplicateMovieClip("grassc", 1001);
grassc._x = grassb._x + grassb._width;
grass.duplicateMovieClip("grassd", 1002);
grassd._x = (grass._x - grass._width) + 1;
grassd.duplicateMovieClip("grasse", 1003);
grasse._x = (grassd._x - grassd._width) + 1;
}
onClipEvent (enterFrame) {
if (_root.killAll) {
this.removeMovieClip();
}
if (_x < -300) {
if (madeloll == undefined) {
_root.makeObject();
madeloll = 1;
}
}
if (_x < -600) {
if (made == undefined) {
_root.makeObject();
made = 1;
}
}
if (_x < -600) {
if (olmade == undefined) {
_root.makeObject();
olmade = 1;
}
}
if (_x < -900) {
if (madevk == undefined) {
_root.makeObject();
madevk = 1;
}
}
if (_x < -1000) {
if (madevkm == undefined) {
_root.makeObject();
madevkm = 1;
}
}
if (_x < -1200) {
if (madevekkm == undefined) {
_root.makeObject();
madevekkm = 1;
}
}
if (_x < -1500) {
_root.makeObject();
_x = 0;
}
if (_x > 1500) {
_root.makeObject();
_x = 0;
}
}
Instance of Symbol 184 MovieClip "arrow" in Frame 11
onClipEvent (load) {
_visible = false;
}
onClipEvent (enterFrame) {
if (_root.ball._y < 0) {
_x = _root.ball._x;
_visible = true;
disY = -Math.round(_root.ball._y);
} else {
_visible = false;
}
}
Instance of Symbol 195 MovieClip "ResetButton" in Frame 11
onClipEvent (load) {
function reset() {
_root.killAll = true;
_root.gotoAndPlay("engine");
this.removeMovieClip();
}
}
onClipEvent (enterFrame) {
this.swapDepths(30000);
if (_root.killAll) {
this.removeMovieClip();
}
}
Instance of Symbol 199 MovieClip in Frame 11
onClipEvent (load) {
this.stop();
d = false;
this.swapDepths(203001);
}
onClipEvent (enterFrame) {
if (_root.killAll) {
this.removeMovieClip();
}
}
on (release) {
_root.killAll = true;
_root.gotoAndPlay("engine");
_root.ResetButton.removeMovieClip();
this.removeMovieClip();
}
onClipEvent (enterFrame) {
if (_root.shoot) {
if (!d) {
this.gotoAndPlay(2);
d = true;
}
}
}
Instance of Symbol 200 MovieClip in Frame 11
onClipEvent (load) {
this.stop();
this.swapDepths(204001);
}
onClipEvent (enterFrame) {
if (_root.killAll) {
this.removeMovieClip();
}
}
on (release) {
_root.ResetButton.removeMovieClip();
_root.killAll = true;
_root.gotoAndStop("menu");
}
on (rollOver) {
this.gotoAndStop(2);
}
on (rollOut) {
this.gotoAndStop(1);
}
Symbol 21 MovieClip Frame 1
fire = false;
known = false;
Instance of Symbol 17 MovieClip "area" in Symbol 21 MovieClip Frame 1
onClipEvent (load) {
_visible = false;
}
Symbol 21 MovieClip Frame 5
_root.boom.start();
Symbol 21 MovieClip Frame 15
gotoAndStop (1);
Instance of Symbol 17 MovieClip "area" in Symbol 23 MovieClip Frame 1
onClipEvent (load) {
_visible = false;
}
Symbol 23 MovieClip Frame 7
_root.twang.start();
Symbol 23 MovieClip Frame 25
gotoAndStop (1);
Instance of Symbol 17 MovieClip "area" in Symbol 25 MovieClip Frame 1
onClipEvent (load) {
_visible = false;
}
Instance of Symbol 17 MovieClip "areaB" in Symbol 25 MovieClip Frame 1
onClipEvent (load) {
_visible = false;
}
Instance of Symbol 17 MovieClip "area" in Symbol 28 MovieClip Frame 1
onClipEvent (load) {
_visible = false;
}
Symbol 28 MovieClip Frame 5
c = random(2);
if (c == 0) {
_root.BOING1.start();
}
if (c == 1) {
_root.BOING2.start();
}
delete c;
Symbol 28 MovieClip Frame 10
gotoAndStop (1);
Symbol 40 MovieClip Frame 4
noise = random(5);
if (noise == 0) {
noise = 1;
}
_root["splat" + noise].start();
Symbol 40 MovieClip Frame 10
stop();
Symbol 41 MovieClip Frame 1
stop();
Symbol 51 MovieClip Frame 1
stop();
Instance of Symbol 17 MovieClip "area" in Symbol 51 MovieClip Frame 1
onClipEvent (load) {
_visible = false;
}
Symbol 51 MovieClip Frame 2
_root.miss.start();
Symbol 51 MovieClip Frame 4
stop();
_root.ball.caught = true;
Symbol 52 MovieClip [Object] Frame 1
stop();
this.cacheAsBitmap = true;
this.onEnterFrame = function () {
if (_root.killAll) {
this.removeMovieClip();
}
if (_x < -700) {
this.removeMovieClip();
}
};
x = 1;
y = _totalframes;
frame = Math.round(Math.random() * (y - x)) + x;
this.gotoAndStop(frame);
Instance of Symbol 21 MovieClip in Symbol 52 MovieClip [Object] Frame 1
onClipEvent (load) {
this.stop();
fire = false;
known = false;
}
onClipEvent (enterFrame) {
if (!_root.ball.caught) {
if (this.area.hitTest(_root.ball)) {
if (!fire) {
if (!known) {
oldXS = _root.ball.xSpeed;
oldYS = _root.ball.oldYSpeed;
if (oldYS < 0) {
oldYS = -oldYS;
}
if (oldXS < 0) {
oldXS = -oldYX;
}
if (oldXS < 5) {
oldXS = 5;
}
if (oldYS < 20) {
oldYS = 20;
}
if (oldXS < 15) {
oldXS = 15;
}
known = true;
}
this.play();
_root.ball.xSpeed = 0;
_root.ball.ySpeed = 0;
_root.ball._x = _parent._x;
_root.ball._y = _parent._y;
}
if (_currentframe >= 5) {
fire = true;
_root.ball.bounceUp(oldYS * 1.5, 15);
}
}
}
}
Symbol 52 MovieClip [Object] Frame 2
stop();
Instance of Symbol 23 MovieClip in Symbol 52 MovieClip [Object] Frame 2
onClipEvent (load) {
this.stop();
}
onClipEvent (enterFrame) {
if (!_root.ball.caught) {
if (this.area.hitTest(_root.ball)) {
_root.ball.bounceUp(10, -5);
this.play();
}
}
}
Symbol 52 MovieClip [Object] Frame 3
stop();
Instance of Symbol 25 MovieClip in Symbol 52 MovieClip [Object] Frame 3
onClipEvent (enterFrame) {
if (!_root.ball.caught) {
if (this.area.hitTest(_root.ball)) {
_root.ball.bounceUp(8, 5);
}
if (this.areaB.hitTest(_root.ball)) {
_root.ball.slowDown(0.5);
}
}
}
Symbol 52 MovieClip [Object] Frame 4
stop();
Instance of Symbol 28 MovieClip in Symbol 52 MovieClip [Object] Frame 4
onClipEvent (load) {
this.stop();
}
onClipEvent (enterFrame) {
if (_root.killAll) {
this.removeMovieClip();
}
if (!_root.ball.caught) {
if (this.area.hitTest(_root.ball)) {
this.play();
oldXS = _root.ball.xSpeed;
oldYS = _root.ball.oldYSpeed;
if (oldYS < 0) {
oldYS = -oldYS;
}
if (oldYS < 20) {
oldYS = 20;
}
if (oldXS < 0) {
oldXS = -oldYX;
}
if (oldXS < 10) {
oldXS = 10;
}
if (_currentframe >= 3) {
m = _root.ball.oldYSpeed;
if (m < 10) {
m = 10;
}
_root.ball.bounceUp(oldYS, 10);
}
}
}
}
Symbol 52 MovieClip [Object] Frame 5
stop();
Instance of Symbol 41 MovieClip in Symbol 52 MovieClip [Object] Frame 5
onClipEvent (enterFrame) {
if (!_root.ball.caught) {
if (this.hitTest(_root.ball)) {
if (_root.ball.onfloor) {
this.gotoAndStop(2);
_root.ball.slowDown(0.8);
}
}
}
}
Symbol 52 MovieClip [Object] Frame 6
stop();
Instance of Symbol 28 MovieClip in Symbol 52 MovieClip [Object] Frame 6
onClipEvent (load) {
this.stop();
}
onClipEvent (enterFrame) {
if (_root.killAll) {
this.removeMovieClip();
}
if (!_root.ball.caught) {
if (this.area.hitTest(_root.ball)) {
this.play();
oldXS = _root.ball.xSpeed;
oldYS = _root.ball.oldYSpeed;
if (oldYS < 0) {
oldYS = -oldYS;
}
if (oldYS < 20) {
oldYS = 20;
}
if (oldXS < 0) {
oldXS = -oldYX;
}
if (oldXS < 10) {
oldXS = 10;
}
if (_currentframe >= 3) {
m = _root.ball.oldYSpeed;
if (m < 10) {
m = 10;
}
_root.ball.bounceUp(oldYS, 10);
}
}
}
}
Symbol 52 MovieClip [Object] Frame 7
stop();
Instance of Symbol 51 MovieClip in Symbol 52 MovieClip [Object] Frame 7
onClipEvent (load) {
done = false;
}
onClipEvent (enterFrame) {
if (!_root.ball.caught) {
if (this.area.hitTest(_root.ball)) {
if (!done) {
_root.ball.xSpeed = 0;
_root.ball.ySpeed = 0;
this.gotoAndPlay(2);
_root.ball.caught = true;
_root.ball._visible = false;
_root.ball._x = _parent._x;
_root.ball._y = _parent._y - 100;
done = true;
}
_root.ball.xSpeed = 0;
_root.ball.ySpeed = 0;
}
}
}
Symbol 52 MovieClip [Object] Frame 8
stop();
this.cacheAsBitmap = true;
this.onEnterFrame = function () {
if (_root.killAll) {
this.removeMovieClip();
}
if (_x < -700) {
this.removeMovieClip();
}
};
x = 1;
y = _totalframes;
frame = Math.round(Math.random() * (y - x)) + x;
this.gotoAndStop(frame);
Instance of Symbol 21 MovieClip in Symbol 52 MovieClip [Object] Frame 8
onClipEvent (load) {
this.stop();
fire = false;
known = false;
}
onClipEvent (enterFrame) {
if (!_root.ball.caught) {
if (this.area.hitTest(_root.ball)) {
if (!fire) {
if (!known) {
oldXS = _root.ball.xSpeed;
oldYS = _root.ball.oldYSpeed;
if (oldYS < 0) {
oldYS = -oldYS;
}
if (oldXS < 0) {
oldXS = -oldYX;
}
if (oldXS < 5) {
oldXS = 5;
}
if (oldYS < 20) {
oldYS = 20;
}
if (oldXS < 15) {
oldXS = 15;
}
known = true;
}
this.play();
_root.ball.xSpeed = 0;
_root.ball.ySpeed = 0;
_root.ball._x = _parent._x;
_root.ball._y = _parent._y;
}
if (_currentframe >= 5) {
fire = true;
_root.ball.bounceUp(oldYS * 1.5, 15);
}
}
}
}
Symbol 52 MovieClip [Object] Frame 9
stop();
Instance of Symbol 28 MovieClip in Symbol 52 MovieClip [Object] Frame 9
onClipEvent (load) {
this.stop();
}
onClipEvent (enterFrame) {
if (_root.killAll) {
this.removeMovieClip();
}
if (!_root.ball.caught) {
if (this.area.hitTest(_root.ball)) {
this.play();
oldXS = _root.ball.xSpeed;
oldYS = _root.ball.oldYSpeed;
if (oldYS < 0) {
oldYS = -oldYS;
}
if (oldYS < 20) {
oldYS = 20;
}
if (oldXS < 0) {
oldXS = -oldYX;
}
if (oldXS < 10) {
oldXS = 10;
}
if (_currentframe >= 3) {
m = _root.ball.oldYSpeed;
if (m < 10) {
m = 10;
}
_root.ball.bounceUp(oldYS, 10);
}
}
}
}
Symbol 52 MovieClip [Object] Frame 10
stop();
Symbol 52 MovieClip [Object] Frame 11
stop();
Instance of Symbol 41 MovieClip in Symbol 52 MovieClip [Object] Frame 11
onClipEvent (enterFrame) {
if (!_root.ball.caught) {
if (this.hitTest(_root.ball)) {
if (_root.ball.onfloor) {
this.gotoAndStop(2);
_root.ball.slowDown(0.8);
}
}
}
}
Instance of Symbol 55 MovieClip in Symbol 56 MovieClip Frame 1
onClipEvent (load) {
swapDepths(10001);
}
Instance of Symbol 55 MovieClip in Symbol 56 MovieClip Frame 1
onClipEvent (load) {
swapDepths(10001);
}
Symbol 63 Button
on (release) {
getURL ("http://www.worldcup.galacti.com", "_blank");
}
Symbol 75 MovieClip Frame 1
stop();
Symbol 75 MovieClip Frame 2
stop();
Instance of Symbol 74 MovieClip in Symbol 75 MovieClip Frame 2
on (press) {
_root.gotoAndStop("logos");
}
Symbol 92 MovieClip Frame 106
_root.play();
Symbol 95 MovieClip Frame 55
_root.play();
Symbol 98 Button
on (release) {
_root.gameMusic.start(0, 9999);
_root.gotoAndPlay("engine");
}
Symbol 101 Button
on (release) {
_root.gotoAndStop("instructions");
}
Symbol 104 Button
on (release) {
_root.gotoAndStop("highscores");
}
Symbol 107 Button
on (release) {
_root.gotoAndStop("credits");
}
Symbol 108 Button
on (release) {
getURL ("http://www.worldcup.galacti.com", "_blank");
}
Symbol 117 Button
on (release) {
_root.gotoAndStop("menu");
}
Symbol 164 MovieClip Frame 1
stop();
Instance of Symbol 159 MovieClip in Symbol 164 MovieClip Frame 1
onClipEvent (load) {
_visible = false;
}
onClipEvent (enterFrame) {
point = new Object();
point.x = _x;
point.y = _y;
_parent.localToGlobal(point);
_root.iBX = point.x;
_root.iBY = point.y;
}
Instance of Symbol 163 MovieClip in Symbol 164 MovieClip Frame 2
onClipEvent (load) {
active = true;
}
onClipEvent (mouseDown) {
if (!_root.shoot) {
active = false;
this.stop();
_root.shotPower = powerPercent * 0.9;
_root.player.play();
}
}
onClipEvent (enterFrame) {
if (!active) {
return(undefined);
}
powerPercent = (power / _totalframes) * 100;
powerPercent = powerPercent * 2;
if (_currentframe <= 10) {
power = _currentframe;
}
if (_currentframe >= 11) {
power = _totalframes - _currentframe;
}
if (_root.shotPower < 5) {
_root.shotPower = 5;
}
}
Symbol 175 MovieClip Frame 1
stop();
Symbol 175 MovieClip Frame 21
_root.shoot = true;
_root.kick.start();
gotoAndStop (1);
Instance of Symbol 177 MovieClip in Symbol 178 MovieClip Frame 1
onClipEvent (load) {
swapDepths(10001);
}
Instance of Symbol 177 MovieClip in Symbol 178 MovieClip Frame 1
onClipEvent (load) {
swapDepths(10001);
}
Symbol 194 MovieClip Frame 1
_root.swallow.start();
Symbol 194 MovieClip Frame 11
stop();
Instance of Symbol 188 MovieClip in Symbol 194 MovieClip Frame 11
on (press) {
_parent._parent.reset();
}
Instance of Symbol 190 MovieClip in Symbol 194 MovieClip Frame 11
on (press) {
if (_root.distanceDisplay == "No Distance!") {
_root.scoreName = "Don't even try";
return(undefined);
}
if (_root.distance == 0) {
_root.scoreName = "Submitting a score of 0? No Chance :)";
return(undefined);
}
if (_root.scoreName == "NAME GOES HERE") {
_root.scoreName = "put a name HERE";
return(undefined);
}
if (_root.scoreName == "") {
_root.scoreName = "put a name HERE";
return(undefined);
}
if (_root.scoreName == "put a name HERE") {
return(undefined);
}
if (_root.scoreName == undefined) {
return(undefined);
}
_root.killAll = true;
pldm128948 = new LoadVars();
pldm128948.namevar = _root.scoreName;
pldm128948.scorevar = _root.distance;
pldm128948.mid = 204;
pldm128948.pro = "f752ebbcee8eb4863e53243f281bc4c6";
pldm128948.sendAndLoad("http://bot.armorstudios.com/hs.php", pldm128948, "POST");
_root.gotoAndStop("highscores");
_root.ResetButton.removeMovieClip();
}
Instance of Symbol 193 MovieClip in Symbol 194 MovieClip Frame 11
onClipEvent (mouseDown) {
if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
if (_root.scoreName == "NAME GOES HERE") {
_root.scoreName = "";
}
}
}
Symbol 195 MovieClip Frame 1
stop();
Symbol 195 MovieClip Frame 2
stop();
Symbol 199 MovieClip Frame 10
stop();