Frame 2
_root.audio.gotoAndStop(2);
score = 0;
myscore = 0;
life = 3;
cow = 0;
starsSpeed = 4;
dif = 0;
Frame 3
stop();
if (cow == 1) {
if (life >= 1) {
_root.gotoAndStop("fly");
}
if (_root.life < 1) {
_root.gotoAndStop("cred");
}
}
Instance of Symbol 58 MovieClip "mainstars" in Frame 3
onClipEvent (load) {
stars.duplicateMovieClip("stars2", 1000);
stars2._x = stars._x + stars._width;
starsStartx = this._x;
}
onClipEvent (enterFrame) {
this._x = this._x - _root.starsSpeed;
if (this._x <= (starsStartx - stars._width)) {
this._x = starsStartx - _root.starsSpeed;
}
}
Instance of Symbol 58 MovieClip "mainstars" in Frame 3
onClipEvent (load) {
stars.duplicateMovieClip("stars2", 1000);
stars2._x = stars._x + stars._width;
starsStartx = this._x;
}
onClipEvent (enterFrame) {
this._x = this._x - _root.starsSpeed;
if (this._x <= (starsStartx - stars._width)) {
this._x = starsStartx - _root.starsSpeed;
}
}
Frame 4
stop();
enemySpeed = 2;
starsSpeed = enemySpeed + 3;
cow = 1;
Instance of Symbol 58 MovieClip "mainstars" in Frame 4
onClipEvent (load) {
stars.duplicateMovieClip("stars2", 1000);
stars2._x = stars._x + stars._width;
starsStartx = this._x;
}
onClipEvent (enterFrame) {
this._x = this._x - _root.starsSpeed;
if (this._x <= (starsStartx - stars._width)) {
this._x = starsStartx - _root.starsSpeed;
}
}
Instance of Symbol 61 MovieClip in Frame 4
onClipEvent (enterFrame) {
this._y = 188.8;
this._x = this._x - _root.starsSpeed;
if (this._x <= -600) {
this._x = 600;
}
}
Instance of Symbol 61 MovieClip in Frame 4
onClipEvent (enterFrame) {
this._y = 188.8;
this._x = this._x - _root.starsSpeed;
if (this._x <= -600) {
this._x = 600;
}
}
Instance of Symbol 82 MovieClip "spaceship" in Frame 4
onClipEvent (load) {
moveSpeed = 10;
scrollStart = false;
}
onClipEvent (enterFrame) {
if (Key.isDown(40)) {
this._y = this._y + moveSpeed;
} else if (Key.isDown(38)) {
this._y = this._y - moveSpeed;
}
if (Key.isDown(39)) {
this._x = this._x + moveSpeed;
} else if (Key.isDown(37)) {
this._x = this._x - moveSpeed;
}
if (this._y <= 27) {
this._y = 27;
}
if (this._y >= 240) {
this._y = 240;
}
if (this._x <= 5) {
this._x = 5;
}
if (this._x >= 150) {
this._x = 150;
}
}
Instance of Symbol 89 MovieClip "roid2" in Frame 4
onClipEvent (load) {
function reset() {
this._x = 600 + random(400);
this._y = random(213) + 27;
this.gotoAndPlay(random(250));
}
reset();
}
onClipEvent (enterFrame) {
this._x = this._x - (_root.enemySpeed + random(3));
if (this._x < -10) {
reset();
}
if (_root.dif == 4) {
this._y = 900;
}
}
Instance of Symbol 91 MovieClip "roid3" in Frame 4
onClipEvent (load) {
function reset() {
this._x = 600 + random(400);
this._y = random(213) + 27;
this.gotoAndPlay(random(250));
}
reset();
}
onClipEvent (enterFrame) {
this._x = this._x - (_root.enemySpeed + random(3));
if (this._x < -10) {
reset();
}
}
Instance of Symbol 93 MovieClip "roid4" in Frame 4
onClipEvent (load) {
function reset() {
this._x = 600 + random(400);
this._y = random(213) + 27;
this.gotoAndPlay(random(333));
}
reset();
}
onClipEvent (enterFrame) {
this._x = this._x - (_root.enemySpeed + random(3));
if (this._x < -10) {
reset();
}
if (_root.dif == 4) {
this._y = 900;
}
}
Instance of Symbol 95 MovieClip "roid1" in Frame 4
onClipEvent (load) {
function reset() {
this._x = 600 + random(400);
this._y = random(213) + 27;
this.gotoAndPlay(random(335));
}
reset();
}
onClipEvent (enterFrame) {
this._x = this._x - (_root.enemySpeed + random(3));
if (this._x < -10) {
reset();
}
if (_root.dif == 4) {
this._y = 900;
}
}
Instance of Symbol 58 MovieClip "mainstars" in Frame 5
onClipEvent (load) {
stars.duplicateMovieClip("stars2", 1000);
stars2._x = stars._x + stars._width;
starsStartx = this._x;
}
onClipEvent (enterFrame) {
this._x = this._x - _root.starsSpeed;
if (this._x <= (starsStartx - stars._width)) {
this._x = starsStartx - _root.starsSpeed;
}
}
Instance of Symbol 58 MovieClip "mainstars" in Frame 5
onClipEvent (load) {
stars.duplicateMovieClip("stars2", 1000);
stars2._x = stars._x + stars._width;
starsStartx = this._x;
}
onClipEvent (enterFrame) {
this._x = this._x - _root.starsSpeed;
if (this._x <= (starsStartx - stars._width)) {
this._x = starsStartx - _root.starsSpeed;
}
}
Frame 6
if (_root.dif == 3) {
_root.scoretable.filename = "http://rykscripts.com/scores/highscores.sco";
}
if (_root.dif == 2) {
_root.scoretable.filename = "http://rykscripts.com/scores/mid.sco";
}
if (_root.dif == 1) {
_root.scoretable.filename = "http://rykscripts.com/scores/easy.sco";
}
if (_root.dif == 4) {
_root.scoretable.filename = "http://rykscripts.com/scores/bonus.sco";
}
_root.scoretable.scoresize = 10;
_root.scoretable.action = "VIEW";
_root.scoretable.viewtype = "FLASH";
_root.scoretable.winname = name;
_root.scoretable.winscore = score;
_root.scoretable.loadVariables("http://rykscripts.com/scores.php", "GET");
Frame 15
stop();
Frame 16
if (_root.dif == 3) {
_root.scoretable.filename = "/scores/highscores.sco";
}
if (_root.dif == 2) {
_root.scoretable.filename = "/scores/mid.sco";
}
if (_root.dif == 1) {
_root.scoretable.filename = "/scores/easy.sco";
}
if (_root.dif == 4) {
_root.scoretable.filename = "/scores/bonus.sco";
}
_root.scoretable.scoresize = 10;
_root.scoretable.action = "INSERT";
_root.scoretable.viewtype = "FLASH";
_root.scoretable.winname = name;
_root.scoretable.winscore = score;
_root.scoretable.loadVariables("http://rykscripts.com/scores.php", "GET");
Frame 25
gotoAndPlay ("hscores");
score = 0;
Symbol 14 MovieClip Frame 1
stop();
Symbol 15 Button
on (release) {
getURL ("http://www.rykscripts.com", "Air Craft");
}
Symbol 20 Button
on (release) {
_root.gotoAndPlay(2);
}
Symbol 21 MovieClip Frame 1
_root.stop();
PercentLoaded = (_root.getBytesLoaded() / _root.getBytesTotal()) * 100;
if (PercentLoaded != 100) {
bar._xscale = PercentLoaded;
} else {
gotoAndStop ("loaded");
}
Symbol 21 MovieClip Frame 2
gotoAndPlay (1);
Symbol 26 Button
on (press) {
stopAllSounds();
}
Symbol 30 Button
on (release) {
stopAllSounds();
_root.audio.gotoAndStop(2);
}
Symbol 32 Button
on (release) {
stopAllSounds();
_root.audio.gotoAndStop(4);
}
Symbol 36 MovieClip Frame 1
stop();
Symbol 36 MovieClip Frame 2
stop();
Symbol 46 Button
on (release) {
gotoAndStop ("fly");
_root.dif = 1;
}
Symbol 49 Button
on (release) {
gotoAndStop ("fly");
_root.dif = 3;
}
Symbol 53 Button
on (release) {
gotoAndStop ("fly");
_root.dif = 2;
}
Symbol 55 Button
on (release) {
gotoAndStop ("fly");
_root.dif = 4;
}
Symbol 81 MovieClip Frame 39
_root.gotoAndStop(3);
Symbol 82 MovieClip Frame 1
_root.score = _root.score + 10;
if (_root.dif == 2) {
_root.enemySpeed = _root.enemySpeed + 0.031;
_root.starsSpeed = _root.starsSpeed + 0.031;
}
if (_root.dif == 1) {
_root.enemySpeed = _root.enemySpeed + 0.023;
_root.starsSpeed = _root.starsSpeed + 0.023;
}
if (_root.dif == 3) {
_root.enemySpeed = _root.enemySpeed + 0.046;
_root.starsSpeed = _root.starsSpeed + 0.046;
}
if (_root.dif == 4) {
_root.enemySpeed = _root.enemySpeed + 0.1;
_root.starsSpeed = _root.starsSpeed + 0.1;
}
Instance of Symbol 63 MovieClip in Symbol 82 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.roid1)) {
_root.life = _root.life - 1;
_root.spaceship.gotoAndStop(37);
}
if (this.hitTest(_root.roid2)) {
_root.life = _root.life - 1;
_root.spaceship.gotoAndStop(37);
}
if (this.hitTest(_root.roid3)) {
_root.life = _root.life - 1;
_root.spaceship.gotoAndStop(37);
}
if (this.hitTest(_root.roid4)) {
_root.life = _root.life - 1;
_root.spaceship.gotoAndStop(37);
}
}
Symbol 82 MovieClip Frame 4
_root.score = _root.score + 10;
if (_root.dif == 2) {
_root.enemySpeed = _root.enemySpeed + 0.031;
_root.starsSpeed = _root.starsSpeed + 0.031;
}
if (_root.dif == 1) {
_root.enemySpeed = _root.enemySpeed + 0.023;
_root.starsSpeed = _root.starsSpeed + 0.023;
}
if (_root.dif == 3) {
_root.enemySpeed = _root.enemySpeed + 0.046;
_root.starsSpeed = _root.starsSpeed + 0.046;
}
if (_root.dif == 4) {
_root.enemySpeed = _root.enemySpeed + 0.1;
_root.starsSpeed = _root.starsSpeed + 0.1;
}
Instance of Symbol 65 MovieClip in Symbol 82 MovieClip Frame 4
onClipEvent (enterFrame) {
if (this.hitTest(_root.roid1)) {
_root.life = _root.life - 1;
_root.spaceship.gotoAndStop(37);
}
if (this.hitTest(_root.roid2)) {
_root.life = _root.life - 1;
_root.spaceship.gotoAndStop(37);
}
if (this.hitTest(_root.roid3)) {
_root.life = _root.life - 1;
_root.spaceship.gotoAndStop(37);
}
if (this.hitTest(_root.roid4)) {
_root.life = _root.life - 1;
_root.spaceship.gotoAndStop(37);
}
}
Symbol 82 MovieClip Frame 7
_root.score = _root.score + 10;
if (_root.dif == 2) {
_root.enemySpeed = _root.enemySpeed + 0.031;
_root.starsSpeed = _root.starsSpeed + 0.031;
}
if (_root.dif == 1) {
_root.enemySpeed = _root.enemySpeed + 0.023;
_root.starsSpeed = _root.starsSpeed + 0.023;
}
if (_root.dif == 3) {
_root.enemySpeed = _root.enemySpeed + 0.046;
_root.starsSpeed = _root.starsSpeed + 0.046;
}
if (_root.dif == 4) {
_root.enemySpeed = _root.enemySpeed + 0.1;
_root.starsSpeed = _root.starsSpeed + 0.1;
}
Instance of Symbol 63 MovieClip in Symbol 82 MovieClip Frame 7
onClipEvent (enterFrame) {
if (this.hitTest(_root.roid1)) {
_root.life = _root.life - 1;
_root.spaceship.gotoAndStop(37);
}
if (this.hitTest(_root.roid2)) {
_root.life = _root.life - 1;
_root.spaceship.gotoAndStop(37);
}
if (this.hitTest(_root.roid3)) {
_root.life = _root.life - 1;
_root.spaceship.gotoAndStop(37);
}
if (this.hitTest(_root.roid4)) {
_root.life = _root.life - 1;
_root.spaceship.gotoAndStop(37);
}
}
Symbol 82 MovieClip Frame 10
_root.score = _root.score + 10;
if (_root.dif == 2) {
_root.enemySpeed = _root.enemySpeed + 0.031;
_root.starsSpeed = _root.starsSpeed + 0.031;
}
if (_root.dif == 1) {
_root.enemySpeed = _root.enemySpeed + 0.023;
_root.starsSpeed = _root.starsSpeed + 0.023;
}
if (_root.dif == 3) {
_root.enemySpeed = _root.enemySpeed + 0.046;
_root.starsSpeed = _root.starsSpeed + 0.046;
}
if (_root.dif == 4) {
_root.enemySpeed = _root.enemySpeed + 0.1;
_root.starsSpeed = _root.starsSpeed + 0.1;
}
Instance of Symbol 65 MovieClip in Symbol 82 MovieClip Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.roid1)) {
_root.life = _root.life - 1;
_root.spaceship.gotoAndStop(37);
}
if (this.hitTest(_root.roid2)) {
_root.life = _root.life - 1;
_root.spaceship.gotoAndStop(37);
}
if (this.hitTest(_root.roid3)) {
_root.life = _root.life - 1;
_root.spaceship.gotoAndStop(37);
}
if (this.hitTest(_root.roid4)) {
_root.life = _root.life - 1;
_root.spaceship.gotoAndStop(37);
}
}
Symbol 82 MovieClip Frame 13
_root.score = _root.score + 10;
if (_root.dif == 2) {
_root.enemySpeed = _root.enemySpeed + 0.031;
_root.starsSpeed = _root.starsSpeed + 0.031;
}
if (_root.dif == 1) {
_root.enemySpeed = _root.enemySpeed + 0.023;
_root.starsSpeed = _root.starsSpeed + 0.023;
}
if (_root.dif == 3) {
_root.enemySpeed = _root.enemySpeed + 0.046;
_root.starsSpeed = _root.starsSpeed + 0.046;
}
if (_root.dif == 4) {
_root.enemySpeed = _root.enemySpeed + 0.1;
_root.starsSpeed = _root.starsSpeed + 0.1;
}
Instance of Symbol 63 MovieClip in Symbol 82 MovieClip Frame 13
onClipEvent (enterFrame) {
if (this.hitTest(_root.roid1)) {
_root.life = _root.life - 1;
_root.spaceship.gotoAndStop(37);
}
if (this.hitTest(_root.roid2)) {
_root.life = _root.life - 1;
_root.spaceship.gotoAndStop(37);
}
if (this.hitTest(_root.roid3)) {
_root.life = _root.life - 1;
_root.spaceship.gotoAndStop(37);
}
if (this.hitTest(_root.roid4)) {
_root.life = _root.life - 1;
_root.spaceship.gotoAndStop(37);
}
}
Symbol 82 MovieClip Frame 16
_root.score = _root.score + 10;
if (_root.dif == 2) {
_root.enemySpeed = _root.enemySpeed + 0.031;
_root.starsSpeed = _root.starsSpeed + 0.031;
}
if (_root.dif == 1) {
_root.enemySpeed = _root.enemySpeed + 0.023;
_root.starsSpeed = _root.starsSpeed + 0.023;
}
if (_root.dif == 3) {
_root.enemySpeed = _root.enemySpeed + 0.046;
_root.starsSpeed = _root.starsSpeed + 0.046;
}
if (_root.dif == 4) {
_root.enemySpeed = _root.enemySpeed + 0.1;
_root.starsSpeed = _root.starsSpeed + 0.1;
}
Instance of Symbol 65 MovieClip in Symbol 82 MovieClip Frame 16
onClipEvent (enterFrame) {
if (this.hitTest(_root.roid1)) {
_root.life = _root.life - 1;
_root.spaceship.gotoAndStop(37);
}
if (this.hitTest(_root.roid2)) {
_root.life = _root.life - 1;
_root.spaceship.gotoAndStop(37);
}
if (this.hitTest(_root.roid3)) {
_root.life = _root.life - 1;
_root.spaceship.gotoAndStop(37);
}
if (this.hitTest(_root.roid4)) {
_root.life = _root.life - 1;
_root.spaceship.gotoAndStop(37);
}
}
Symbol 82 MovieClip Frame 19
_root.score = _root.score + 10;
if (_root.dif == 2) {
_root.enemySpeed = _root.enemySpeed + 0.031;
_root.starsSpeed = _root.starsSpeed + 0.031;
}
if (_root.dif == 1) {
_root.enemySpeed = _root.enemySpeed + 0.023;
_root.starsSpeed = _root.starsSpeed + 0.023;
}
if (_root.dif == 3) {
_root.enemySpeed = _root.enemySpeed + 0.046;
_root.starsSpeed = _root.starsSpeed + 0.046;
}
if (_root.dif == 4) {
_root.enemySpeed = _root.enemySpeed + 0.1;
_root.starsSpeed = _root.starsSpeed + 0.1;
}
Instance of Symbol 63 MovieClip in Symbol 82 MovieClip Frame 19
onClipEvent (enterFrame) {
if (this.hitTest(_root.roid1)) {
_root.life = _root.life - 1;
_root.spaceship.gotoAndStop(37);
}
if (this.hitTest(_root.roid2)) {
_root.life = _root.life - 1;
_root.spaceship.gotoAndStop(37);
}
if (this.hitTest(_root.roid3)) {
_root.life = _root.life - 1;
_root.spaceship.gotoAndStop(37);
}
if (this.hitTest(_root.roid4)) {
_root.life = _root.life - 1;
_root.spaceship.gotoAndStop(37);
}
}
Symbol 82 MovieClip Frame 22
_root.score = _root.score + 10;
if (_root.dif == 2) {
_root.enemySpeed = _root.enemySpeed + 0.031;
_root.starsSpeed = _root.starsSpeed + 0.031;
}
if (_root.dif == 1) {
_root.enemySpeed = _root.enemySpeed + 0.023;
_root.starsSpeed = _root.starsSpeed + 0.023;
}
if (_root.dif == 3) {
_root.enemySpeed = _root.enemySpeed + 0.046;
_root.starsSpeed = _root.starsSpeed + 0.046;
}
if (_root.dif == 4) {
_root.enemySpeed = _root.enemySpeed + 0.1;
_root.starsSpeed = _root.starsSpeed + 0.1;
}
Instance of Symbol 65 MovieClip in Symbol 82 MovieClip Frame 22
onClipEvent (enterFrame) {
if (this.hitTest(_root.roid1)) {
_root.life = _root.life - 1;
_root.spaceship.gotoAndStop(37);
}
if (this.hitTest(_root.roid2)) {
_root.life = _root.life - 1;
_root.spaceship.gotoAndStop(37);
}
if (this.hitTest(_root.roid3)) {
_root.life = _root.life - 1;
_root.spaceship.gotoAndStop(37);
}
if (this.hitTest(_root.roid4)) {
_root.life = _root.life - 1;
_root.spaceship.gotoAndStop(37);
}
}
Symbol 82 MovieClip Frame 25
_root.score = _root.score + 10;
if (_root.dif == 2) {
_root.enemySpeed = _root.enemySpeed + 0.031;
_root.starsSpeed = _root.starsSpeed + 0.031;
}
if (_root.dif == 1) {
_root.enemySpeed = _root.enemySpeed + 0.023;
_root.starsSpeed = _root.starsSpeed + 0.023;
}
if (_root.dif == 3) {
_root.enemySpeed = _root.enemySpeed + 0.046;
_root.starsSpeed = _root.starsSpeed + 0.046;
}
if (_root.dif == 4) {
_root.enemySpeed = _root.enemySpeed + 0.1;
_root.starsSpeed = _root.starsSpeed + 0.1;
}
Instance of Symbol 63 MovieClip in Symbol 82 MovieClip Frame 25
onClipEvent (enterFrame) {
if (this.hitTest(_root.roid1)) {
_root.life = _root.life - 1;
_root.spaceship.gotoAndStop(37);
}
if (this.hitTest(_root.roid2)) {
_root.life = _root.life - 1;
_root.spaceship.gotoAndStop(37);
}
if (this.hitTest(_root.roid3)) {
_root.life = _root.life - 1;
_root.spaceship.gotoAndStop(37);
}
if (this.hitTest(_root.roid4)) {
_root.life = _root.life - 1;
_root.spaceship.gotoAndStop(37);
}
}
Symbol 82 MovieClip Frame 28
_root.score = _root.score + 10;
if (_root.dif == 2) {
_root.enemySpeed = _root.enemySpeed + 0.031;
_root.starsSpeed = _root.starsSpeed + 0.031;
}
if (_root.dif == 1) {
_root.enemySpeed = _root.enemySpeed + 0.023;
_root.starsSpeed = _root.starsSpeed + 0.023;
}
if (_root.dif == 3) {
_root.enemySpeed = _root.enemySpeed + 0.046;
_root.starsSpeed = _root.starsSpeed + 0.046;
}
if (_root.dif == 4) {
_root.enemySpeed = _root.enemySpeed + 0.1;
_root.starsSpeed = _root.starsSpeed + 0.1;
}
Instance of Symbol 65 MovieClip in Symbol 82 MovieClip Frame 28
onClipEvent (enterFrame) {
if (this.hitTest(_root.roid1)) {
_root.life = _root.life - 1;
_root.spaceship.gotoAndStop(37);
}
if (this.hitTest(_root.roid2)) {
_root.life = _root.life - 1;
_root.spaceship.gotoAndStop(37);
}
if (this.hitTest(_root.roid3)) {
_root.life = _root.life - 1;
_root.spaceship.gotoAndStop(37);
}
if (this.hitTest(_root.roid4)) {
_root.life = _root.life - 1;
_root.spaceship.gotoAndStop(37);
}
}
Symbol 82 MovieClip Frame 31
_root.score = _root.score + 10;
if (_root.dif == 2) {
_root.enemySpeed = _root.enemySpeed + 0.031;
_root.starsSpeed = _root.starsSpeed + 0.031;
}
if (_root.dif == 1) {
_root.enemySpeed = _root.enemySpeed + 0.023;
_root.starsSpeed = _root.starsSpeed + 0.023;
}
if (_root.dif == 3) {
_root.enemySpeed = _root.enemySpeed + 0.046;
_root.starsSpeed = _root.starsSpeed + 0.046;
}
if (_root.dif == 4) {
_root.enemySpeed = _root.enemySpeed + 0.1;
_root.starsSpeed = _root.starsSpeed + 0.1;
}
Instance of Symbol 63 MovieClip in Symbol 82 MovieClip Frame 31
onClipEvent (enterFrame) {
if (this.hitTest(_root.roid1)) {
_root.life = _root.life - 1;
_root.spaceship.gotoAndStop(37);
}
if (this.hitTest(_root.roid2)) {
_root.life = _root.life - 1;
_root.spaceship.gotoAndStop(37);
}
if (this.hitTest(_root.roid3)) {
_root.life = _root.life - 1;
_root.spaceship.gotoAndStop(37);
}
if (this.hitTest(_root.roid4)) {
_root.life = _root.life - 1;
_root.spaceship.gotoAndStop(37);
}
}
Symbol 82 MovieClip Frame 34
_root.score = _root.score + 10;
if (_root.dif == 2) {
_root.enemySpeed = _root.enemySpeed + 0.031;
_root.starsSpeed = _root.starsSpeed + 0.031;
}
if (_root.dif == 1) {
_root.enemySpeed = _root.enemySpeed + 0.023;
_root.starsSpeed = _root.starsSpeed + 0.023;
}
if (_root.dif == 3) {
_root.enemySpeed = _root.enemySpeed + 0.046;
_root.starsSpeed = _root.starsSpeed + 0.046;
}
if (_root.dif == 4) {
_root.enemySpeed = _root.enemySpeed + 0.1;
_root.starsSpeed = _root.starsSpeed + 0.1;
}
Instance of Symbol 65 MovieClip in Symbol 82 MovieClip Frame 34
onClipEvent (enterFrame) {
if (this.hitTest(_root.roid1)) {
_root.life = _root.life - 1;
_root.spaceship.gotoAndStop(37);
}
if (this.hitTest(_root.roid2)) {
_root.life = _root.life - 1;
_root.spaceship.gotoAndStop(37);
}
if (this.hitTest(_root.roid3)) {
_root.life = _root.life - 1;
_root.spaceship.gotoAndStop(37);
}
if (this.hitTest(_root.roid4)) {
_root.life = _root.life - 1;
_root.spaceship.gotoAndStop(37);
}
}
Symbol 82 MovieClip Frame 36
if (_root.dif == 2) {
_root.enemySpeed = _root.enemySpeed + 0.031;
_root.starsSpeed = _root.starsSpeed + 0.031;
}
if (_root.dif == 1) {
_root.enemySpeed = _root.enemySpeed + 0.023;
_root.starsSpeed = _root.starsSpeed + 0.023;
}
if (_root.dif == 3) {
_root.enemySpeed = _root.enemySpeed + 0.046;
_root.starsSpeed = _root.starsSpeed + 0.046;
}
if (_root.dif == 4) {
_root.enemySpeed = _root.enemySpeed + 0.1;
_root.starsSpeed = _root.starsSpeed + 0.1;
}
gotoAndPlay (1);
Symbol 82 MovieClip Frame 37
stop();
Symbol 105 Button
on (release) {
_root.gotoAndStop(3);
_root.life = _root.life + 3;
_root.score = 0;
_root.cow = 0;
}
Symbol 109 Button
on (press, release) {
getURL ("http://www.galactigames.com/ref.php?id=62", "_blank");
}
Symbol 144 Button
on (release) {
gotoAndPlay ("11");
}