Frame 1
fscommand ("fullscreen", true);
Frame 625
var titleTune = new Sound();
titleTune.attachSound("titleTune");
titleTune.start(0, 50);
Frame 626
stop();
var playPress = false;
var helpPress = false;
var creditsPress = false;
var quitPress = false;
this.play_btn.onRelease = function () {
playPress = true;
_root.trans_mc.play();
};
this.help_btn.onRelease = function () {
helpPress = true;
_root.trans_mc.play();
};
this.credits_btn.onRelease = function () {
play_btn.enabled = false;
credits_btn.enabled = false;
help_btn.enabled = false;
quit_btn.enabled = false;
_root.credits_mc.play();
};
this.quit_btn.onRelease = function () {
play();
};
Instance of Symbol 158 MovieClip in Frame 626
onClipEvent (enterFrame) {
this._x = this._x - 2;
if (this._x < -10) {
this._y = Math.random() * 340;
this._x = 675;
}
}
Instance of Symbol 158 MovieClip in Frame 626
onClipEvent (enterFrame) {
this._x = this._x - 2;
if (this._x < -10) {
this._y = Math.random() * 340;
this._x = 675;
}
}
Instance of Symbol 158 MovieClip in Frame 626
onClipEvent (enterFrame) {
this._x = this._x - 2;
if (this._x < -10) {
this._y = Math.random() * 340;
this._x = 675;
}
}
Frame 648
stop();
this.yesQuit_btn.onRelease = function () {
quitPress = true;
_root.trans_mc.play();
};
this.noQuit_btn.onRelease = function () {
play();
};
Frame 669
gotoAndStop ("main");
Frame 670
stop();
Frame 675
stop();
var dead = false;
var bossDead = false;
score = 0;
this.onEnterFrame = function () {
};
_root.ship_mc._x = 158;
_root.ship_mc._y = 132;
Instance of Symbol 150 MovieClip "ship_mc" in Frame 675
onClipEvent (load) {
speed = 10;
xb = _x;
yb = _y;
}
onClipEvent (enterFrame) {
if (_root.dead == false) {
if (Key.isDown(39) and (this._x < 550)) {
xb = xb + speed;
} else if (Key.isDown(37) and (this._x > 200)) {
xb = xb - speed;
}
if (Key.isDown(40) and (this._y < 340)) {
yb = yb + speed;
} else if (Key.isDown(38) and (this._y > 100)) {
yb = yb - speed;
}
this._x = _x + ((xb - _x) / speed);
this._y = _y + ((yb - _y) / speed);
if (this.hitTest(_root.sau1_mc)) {
_root.ship_mc.gotoAndPlay(2);
_root.shipHealth_mc.play();
}
if (this.hitTest(_root.sau2_mc)) {
_root.ship_mc.gotoAndPlay(2);
_root.shipHealth_mc.play();
}
if (this.hitTest(_root.sau3_mc)) {
_root.ship_mc.gotoAndPlay(2);
_root.shipHealth_mc.play();
}
if (this.hitTest(_root.sau4_mc)) {
_root.ship_mc.gotoAndPlay(2);
_root.shipHealth_mc.play();
}
if (this.hitTest(_root.sau5_mc)) {
_root.ship_mc.gotoAndPlay(2);
_root.shipHealth_mc.play();
}
if (this.hitTest(_root.sideSaus1_mc)) {
_root.ship_mc.gotoAndPlay(2);
_root.shipHealth_mc.play();
}
if (this.hitTest(_root.sideSaus2_mc)) {
_root.ship_mc.gotoAndPlay(2);
_root.shipHealth_mc.play();
}
if (this.hitTest(_root.sausageBoss)) {
_root.shipHealth_mc.gotoAndPlay(50);
}
if (this.hitTest(_root.powerUp_mc)) {
_root.powerUp_mc._x = -50;
_root.shipHealth_mc.gotoAndPlay(1);
_root.powerUp.start();
}
}
}
Frame 676
stop();
var i = 0;
var s = 0;
var score = 0;
var timer = 8;
var clock = 2262;
var tunes = new Sound();
tunes.attachSound("stageTune");
tunes.setVolume(50);
tunes.start();
var smallBoom = new Sound();
smallBoom.attachSound("smallBoom");
var shooter = new Sound();
shooter.attachSound("shooter");
var splatNoise = new Sound();
splatNoise.attachSound("splatNoise");
var eyeSquish = new Sound();
eyeSquish.attachSound("eyeSquish");
var bigBang = new Sound();
bigBang.attachSound("bigbang");
var powerUp = new Sound();
powerUp.attachSound("powerup");
this.onEnterFrame = function () {
clock = clock - 1;
if (clock > 0) {
_root.back1_mc._x = _root.back1_mc._x - 0.55;
_root.back2_mc._x = _root.back2_mc._x - 0.35;
} else if (clock == 0) {
tunes.stop();
tunes.attachSound("bossTune");
tunes.start(0, 30);
} else {
_root.back1_mc._x = _root.back1_mc._x;
_root.back2_mc._x = _root.back2_mc._x;
}
s++;
timer++;
if (Key.isDown(32)) {
i++;
if (timer >= 8) {
shooter.start();
_root.attachMovie("bullet", "bullet" + i, _root.getNextHighestDepth());
_root["bullet" + i]._x = ship_mc._x + 3;
_root["bullet" + i]._y = ship_mc._y;
timer = 0;
}
}
};
Instance of Symbol 435 MovieClip "sausageBoss" in Frame 676
onClipEvent (load) {
bossEnterSpeed = 2;
var upDown = 2;
var bossPos = this._y;
}
onClipEvent (enterFrame) {
bossPos = this._y;
if (bossPos >= 252) {
upDown = -2;
}
if (bossPos <= 180) {
upDown = 2;
}
this._y = this._y + upDown;
if (_root.clock < 0) {
this._x = this._x - bossEnterSpeed;
if (this._x < 615) {
bossEnterSpeed = 1.5;
}
if (this._x < 590) {
bossEnterSpeed = 1;
}
if (this._x < 565) {
bossEnterSpeed = 0.5;
}
if (this._x < 540) {
bossEnterSpeed = 0;
}
}
}
Instance of Symbol 276 MovieClip "sau1_mc" in Frame 676
onClipEvent (enterFrame) {
this._x = this._x - 2;
if (_root.clock > 0) {
if (this._x < -10) {
this._y = Math.random() * 340;
this._x = 675;
}
}
}
Instance of Symbol 276 MovieClip "sau2_mc" in Frame 676
onClipEvent (enterFrame) {
this._x = this._x - 2;
if (_root.clock > 0) {
if (this._x < -10) {
this._y = Math.random() * 340;
this._x = 675;
}
}
}
Instance of Symbol 440 MovieClip "sideSaus1_mc" in Frame 676
onClipEvent (enterFrame) {
this._x = this._x - 2;
if (_root.clock > 0) {
if (this._y < -10) {
this._x = Math.random() * 340;
this._x = this._x + 300;
this._y = 480;
}
}
}
Instance of Symbol 451 MovieClip in Frame 676
onClipEvent (enterFrame) {
this._x = this._x - 2;
this._rotation = this._rotation + 1;
}
Instance of Symbol 276 MovieClip "sau3_mc" in Frame 676
onClipEvent (enterFrame) {
if (_root.clock < 1500) {
this._x = this._x - 2;
if (_root.clock > 0) {
if (this._x < -10) {
this._y = Math.random() * 340;
this._x = 675;
}
}
}
}
Instance of Symbol 276 MovieClip "sau4_mc" in Frame 676
onClipEvent (enterFrame) {
if (_root.clock < 1000) {
this._x = this._x - 2;
if (_root.clock > 0) {
if (this._x < -10) {
this._y = Math.random() * 340;
this._x = 675;
}
}
}
}
Instance of Symbol 276 MovieClip "sau5_mc" in Frame 676
onClipEvent (enterFrame) {
if (_root.clock < 500) {
this._x = this._x - 2;
if (_root.clock > 0) {
if (this._x < -10) {
this._y = Math.random() * 340;
this._x = 675;
}
}
}
}
Instance of Symbol 456 MovieClip "sideSaus2_mc" in Frame 676
onClipEvent (enterFrame) {
if (_root.clock < 1000) {
this._x = this._x - 2;
if ((_root.clock > 0) || (_root.clock < 100)) {
if (this._y < -10) {
this._x = Math.random() * 340;
this._x = this._x + 300;
this._y = 480;
}
}
}
}
Instance of Symbol 463 MovieClip "powerUp_mc" in Frame 676
onClipEvent (enterFrame) {
if (_root.score > 4000) {
this._x = this._x - 2;
}
}
Frame 677
stop();
dead = true;
var fall = 1;
var deadBOOM = 0;
_root.attachMovie("smoke", "smoke" + _root.s, _root.getNextHighestDepth());
_root["smoke" + _root.s]._x = _root.ship_mc._x - 68;
_root["smoke" + _root.s]._y = _root.ship_mc._y;
_root["smoke" + _root.s]._xscale = _root["smoke" + _root.s]._xscale + 20;
_root["smoke" + _root.s]._yscale = _root["smoke" + _root.s]._xscale;
_root.ship_mc.gotoAndStop("dead");
this.onEnterFrame = function () {
if (Key.isDown(32)) {
}
fall = fall + 1;
_root.ship_mc._y = _root.ship_mc._y + fall;
if (_root.ship_mc._y > 480) {
_root.ship_mc._y = _root.ship_mc._y;
deadBOOM = deadBOOM + 1;
}
if (deadBOOM == 1) {
deadBOOM = 2;
tunes.stop();
bigBang.start();
_root.gameover_mc.play();
}
};
Instance of Symbol 463 MovieClip in Frame 677
onClipEvent (enterFrame) {
if (_root.score > 4000) {
this._x = this._x - 2;
if (this.hitTest(_root.ship_mc)) {
this._x = -50;
_root.shipHealth_mc.gotoAndPlay(1);
_root.powerUp.start();
}
}
}
Frame 678
var bossDead = true;
this.onEnterFrame = function () {
if (bossDead == true) {
if (Key.isDown(32)) {
}
}
};
Frame 701
_root.smallBoom.start();
Frame 702
_root.smallBoom.start();
Frame 708
_root.smallBoom.start();
Frame 709
_root.smallBoom.start();
Frame 710
_root.smallBoom.start();
Frame 712
_root.smallBoom.start();
Frame 718
_root.smallBoom.start();
Frame 722
_root.smallBoom.start();
Frame 725
_root.smallBoom.start();
Frame 727
_root.smallBoom.start();
Frame 732
_root.smallBoom.start();
Frame 733
_root.smallBoom.start();
Frame 737
_root.smallBoom.start();
Frame 743
_root.smallBoom.start();
Frame 749
tunes.stop();
bigBang.start();
Frame 806
finalScore_txt.text = score;
Frame 807
finalScore_txt.text = score;
Frame 808
finalScore_txt.text = score;
Frame 809
finalScore_txt.text = score;
Frame 810
finalScore_txt.text = score;
Frame 811
stop();
tunes.attachSound("happy");
tunes.start();
var replay = false;
quitPress = false;
this.replay_btn.onRelease = function () {
replay = true;
play();
};
this.main_btn.onRelease = function () {
play();
};
this.quit2_btn.onRelease = function () {
quitPress = true;
play();
};
finalScore_txt.text = score;
Frame 812
tunes.setVolume(90);
Frame 813
tunes.setVolume(80);
Frame 814
tunes.setVolume(70);
Frame 815
tunes.setVolume(60);
Frame 816
tunes.setVolume(50);
Frame 817
tunes.setVolume(40);
Frame 818
tunes.setVolume(30);
Frame 819
tunes.setVolume(20);
Frame 820
tunes.setVolume(10);
Frame 821
tunes.stop();
tunes.setVolume(100);
Frame 825
if (replay == true) {
gotoAndStop ("game");
replay = false;
}
if (quitPress == true) {
fscommand ("quit", true);
}
Instance of Symbol 158 MovieClip in Frame 825
onClipEvent (enterFrame) {
this._x = this._x - 2;
if (this._x < -10) {
this._y = Math.random() * 340;
this._x = 675;
}
}
Instance of Symbol 158 MovieClip in Frame 825
onClipEvent (enterFrame) {
this._x = this._x - 2;
if (this._x < -10) {
this._y = Math.random() * 340;
this._x = 675;
}
}
Instance of Symbol 158 MovieClip in Frame 825
onClipEvent (enterFrame) {
this._x = this._x - 2;
if (this._x < -10) {
this._y = Math.random() * 340;
this._x = 675;
}
}
Frame 828
_root.titleTune.start(0, 50);
_root.titleTune.setVolume(10);
Frame 829
_root.titleTune.setVolume(20);
Frame 830
_root.titleTune.setVolume(20);
Frame 831
_root.titleTune.setVolume(30);
Frame 832
_root.titleTune.setVolume(40);
Frame 833
_root.titleTune.setVolume(50);
Frame 834
_root.titleTune.setVolume(60);
Frame 835
_root.titleTune.setVolume(70);
Frame 836
_root.titleTune.setVolume(80);
Frame 837
_root.titleTune.setVolume(90);
Frame 838
gotoAndPlay ("main");
Symbol 21 MovieClip [smoke2] Frame 11
this.removeMovieClip();
Symbol 27 MovieClip [splat] Frame 2
_root.splatNoise.start();
Symbol 27 MovieClip [splat] Frame 6
this.removeMovieClip();
Symbol 29 MovieClip [bossBullet] Frame 1
this.onEnterFrame = function () {
this._x = this._x - 6;
if (this.hitTest(_root.ship_mc)) {
_root.shipHealth_mc.play();
_root.ship_mc.play();
this._y = -20;
}
};
Symbol 45 MovieClip [smoke] Frame 1
_root.smallBoom.start();
Symbol 45 MovieClip [smoke] Frame 16
this.removeMovieClip();
Symbol 47 MovieClip [bullet] Frame 1
this.onEnterFrame = function () {
this._x = this._x + 12;
if (this._x > 650) {
this.removeMovieClip();
}
if (this.hitTest(_root.sau1_mc)) {
_root.attachMovie("smoke", "smoke" + _root.s, _root.getNextHighestDepth());
_root["smoke" + _root.s]._x = _root.sau1_mc._x;
_root["smoke" + _root.s]._y = _root.sau1_mc._y;
_root.sau1_mc.play();
this.removeMovieClip();
}
if (this.hitTest(_root.sau2_mc)) {
_root.attachMovie("smoke", "smoke" + _root.s, _root.getNextHighestDepth());
_root["smoke" + _root.s]._x = _root.sau2_mc._x;
_root["smoke" + _root.s]._y = _root.sau2_mc._y;
_root.sau2_mc.play();
this.removeMovieClip();
}
if (this.hitTest(_root.sau3_mc)) {
_root.attachMovie("smoke", "smoke" + _root.s, _root.getNextHighestDepth());
_root["smoke" + _root.s]._x = _root.sau3_mc._x;
_root["smoke" + _root.s]._y = _root.sau3_mc._y;
_root.sau3_mc.play();
this.removeMovieClip();
}
if (this.hitTest(_root.sau4_mc)) {
_root.attachMovie("smoke", "smoke" + _root.s, _root.getNextHighestDepth());
_root["smoke" + _root.s]._x = _root.sau4_mc._x;
_root["smoke" + _root.s]._y = _root.sau4_mc._y;
_root.sau4_mc.play();
this.removeMovieClip();
}
if (this.hitTest(_root.sau5_mc)) {
_root.attachMovie("smoke", "smoke" + _root.s, _root.getNextHighestDepth());
_root["smoke" + _root.s]._x = _root.sau5_mc._x;
_root["smoke" + _root.s]._y = _root.sau5_mc._y;
_root.sau5_mc.play();
this.removeMovieClip();
}
if (this.hitTest(_root.sideSaus1_mc)) {
_root.attachMovie("smoke", "smoke" + _root.s, _root.getNextHighestDepth());
_root["smoke" + _root.s]._x = _root.sideSaus1_mc._x;
_root["smoke" + _root.s]._y = _root.sideSaus1_mc._y;
_root.sideSaus1_mc.play();
this.removeMovieClip();
}
if (this.hitTest(_root.sideSaus2_mc)) {
_root.attachMovie("smoke", "smoke" + _root.s, _root.getNextHighestDepth());
_root["smoke" + _root.s]._x = _root.sideSaus2_mc._x;
_root["smoke" + _root.s]._y = _root.sideSaus2_mc._y;
_root.sideSaus2_mc.play();
this.removeMovieClip();
}
if (this.hitTest(_root.sausageBoss.sausageBossEye1_mc)) {
_root.sausageBoss.sausageBossEye1_mc.play();
this.removeMovieClip();
}
if (this.hitTest(_root.sausageBoss.sausageBossEye2_mc)) {
_root.sausageBoss.sausageBossEye2_mc.play();
this.removeMovieClip();
}
if (this.hitTest(_root.sausageBoss.sausageBossEye3_mc)) {
_root.sausageBoss.sausageBossEye3_mc.play();
this.removeMovieClip();
}
if (this.hitTest(_root.bossBullet1_mc)) {
_root.attachMovie("splat", "splat" + _root.s, _root.getNextHighestDepth());
_root["splat" + _root.s]._x = _root.bossBullet1_mc._x;
_root["splat" + _root.s]._y = _root.bossBullet1_mc._y;
_root.bossBullet1_mc._y = -20;
this.removeMovieClip();
}
if (this.hitTest(_root.bossBullet2_mc)) {
_root.attachMovie("splat", "splat" + _root.s, _root.getNextHighestDepth());
_root["splat" + _root.s]._x = _root.bossBullet2_mc._x;
_root["splat" + _root.s]._y = _root.bossBullet2_mc._y;
_root.bossBullet2_mc._y = -20;
this.removeMovieClip();
}
if (this.hitTest(_root.bossBullet3_mc)) {
_root.attachMovie("splat", "splat" + _root.s, _root.getNextHighestDepth());
_root["splat" + _root.s]._x = _root.bossBullet3_mc._x;
_root["splat" + _root.s]._y = _root.bossBullet3_mc._y;
_root.bossBullet3_mc._y = -20;
this.removeMovieClip();
}
if (this.hitTest(_root.bossBullet4_mc)) {
_root.attachMovie("splat", "splat" + _root.s, _root.getNextHighestDepth());
_root["splat" + _root.s]._x = _root.bossBullet4_mc._x;
_root["splat" + _root.s]._y = _root.bossBullet4_mc._y;
_root.bossBullet4_mc._y = -20;
this.removeMovieClip();
}
if (this.hitTest(_root.bossBullet5_mc)) {
_root.attachMovie("splat", "splat" + _root.s, _root.getNextHighestDepth());
_root["splat" + _root.s]._x = _root.bossBullet5_mc._x;
_root["splat" + _root.s]._y = _root.bossBullet5_mc._y;
_root.bossBullet5_mc._y = -20;
this.removeMovieClip();
}
if (this.hitTest(_root.bossBullet6_mc)) {
_root.attachMovie("splat", "splat" + _root.s, _root.getNextHighestDepth());
_root["splat" + _root.s]._x = _root.bossBullet6_mc._x;
_root["splat" + _root.s]._y = _root.bossBullet6_mc._y;
_root.bossBullet6_mc._y = -20;
this.removeMovieClip();
}
if (this.hitTest(_root.bossBullet7_mc)) {
_root.attachMovie("splat", "splat" + _root.s, _root.getNextHighestDepth());
_root["splat" + _root.s]._x = _root.bossBullet7_mc._x;
_root["splat" + _root.s]._y = _root.bossBullet7_mc._y;
_root.bossBullet7_mc._y = -20;
this.removeMovieClip();
}
if (this.hitTest(_root.bossBullet8_mc)) {
_root.attachMovie("splat", "splat" + _root.s, _root.getNextHighestDepth());
_root["splat" + _root.s]._x = _root.bossBullet8_mc._x;
_root["splat" + _root.s]._y = _root.bossBullet8_mc._y;
_root.bossBullet8_mc._y = -20;
this.removeMovieClip();
}
if (_root.bossDead == true) {
this.removeMovieClip();
}
};
Symbol 59 Button
on (release) {
_root.play();
}
Symbol 60 MovieClip Frame 1
_root.stop();
PercentLoaded = (_root.getBytesLoaded() / _root.getBytesTotal()) * 100;
if (PercentLoaded != 100) {
bar._xscale = PercentLoaded;
} else {
gotoAndStop ("loaded");
}
Symbol 60 MovieClip Frame 2
gotoAndPlay (1);
Symbol 150 MovieClip Frame 1
stop();
Symbol 150 MovieClip Frame 4
gotoAndPlay (1);
Symbol 150 MovieClip Frame 5
stop();
Symbol 158 MovieClip Frame 1
onEnterFrame = function () {
this._x = this._x - 2;
this._rotation = this._rotation - 3;
if (this._x < -10) {
this._y = Math.random() * 480;
this._x = 675;
}
};
Symbol 198 MovieClip Frame 1
stop();
Symbol 198 MovieClip Frame 14
_root.titleTune.setVolume(90);
Symbol 198 MovieClip Frame 15
_root.titleTune.setVolume(80);
Symbol 198 MovieClip Frame 16
_root.titleTune.setVolume(70);
Symbol 198 MovieClip Frame 17
_root.titleTune.setVolume(60);
Symbol 198 MovieClip Frame 18
_root.titleTune.setVolume(50);
Symbol 198 MovieClip Frame 19
_root.titleTune.setVolume(40);
Symbol 198 MovieClip Frame 20
_root.titleTune.setVolume(30);
Symbol 198 MovieClip Frame 21
_root.titleTune.setVolume(20);
Symbol 198 MovieClip Frame 22
_root.titleTune.setVolume(20);
Symbol 198 MovieClip Frame 23
_root.titleTune.stop();
_root.titleTune.setVolume(100);
Symbol 198 MovieClip Frame 24
if (_root.playPress == true) {
_root.gotoAndPlay("game");
}
if (_root.helpPress == true) {
_root.gotoAndPlay("help");
}
if (_root.quitPress == true) {
fscommand ("quit", true);
}
Symbol 207 MovieClip Frame 1
stop();
Symbol 207 MovieClip Frame 23
stop();
_root.credits_mc.back_btn.onRelease = function () {
_root.play_btn.enabled = true;
_root.credits_btn.enabled = true;
_root.help_btn.enabled = true;
_root.quit_btn.enabled = true;
_root.credits_mc.play();
};
Symbol 276 MovieClip Frame 1
stop();
this.onEnterFrame = function () {
this._rotation = 0;
this._y = this._y;
};
Symbol 276 MovieClip Frame 2
_root.score = _root.score + 25;
Symbol 276 MovieClip Frame 3
stop();
this.onEnterFrame = function () {
this._rotation = this._rotation - 35;
this._y = this._y + 15;
if (_root.clock > 0) {
if (this._y > 500) {
gotoAndStop (1);
this._y = Math.random() * 340;
this._x = 675;
}
}
};
Symbol 276 MovieClip Frame 4
gotoAndStop (3);
Symbol 284 MovieClip Frame 1
stop();
Symbol 284 MovieClip Frame 2
stop();
Symbol 284 MovieClip Frame 3
stop();
Symbol 284 MovieClip Frame 4
stop();
Symbol 284 MovieClip Frame 5
stop();
Symbol 284 MovieClip Frame 6
stop();
Symbol 284 MovieClip Frame 7
stop();
Symbol 284 MovieClip Frame 8
stop();
Symbol 284 MovieClip Frame 9
stop();
Symbol 284 MovieClip Frame 10
stop();
Symbol 284 MovieClip Frame 11
stop();
Symbol 284 MovieClip Frame 12
stop();
Symbol 284 MovieClip Frame 13
stop();
Symbol 284 MovieClip Frame 14
stop();
Symbol 284 MovieClip Frame 15
stop();
Symbol 284 MovieClip Frame 16
stop();
Symbol 284 MovieClip Frame 17
stop();
Symbol 284 MovieClip Frame 18
stop();
Symbol 284 MovieClip Frame 19
stop();
Symbol 284 MovieClip Frame 20
stop();
Symbol 284 MovieClip Frame 21
stop();
Symbol 284 MovieClip Frame 22
stop();
Symbol 284 MovieClip Frame 23
stop();
Symbol 284 MovieClip Frame 24
stop();
Symbol 284 MovieClip Frame 25
stop();
Symbol 284 MovieClip Frame 26
stop();
Symbol 284 MovieClip Frame 27
stop();
Symbol 284 MovieClip Frame 28
stop();
Symbol 284 MovieClip Frame 29
stop();
Symbol 284 MovieClip Frame 30
stop();
Symbol 284 MovieClip Frame 31
stop();
Symbol 284 MovieClip Frame 32
stop();
Symbol 284 MovieClip Frame 33
stop();
Symbol 284 MovieClip Frame 34
stop();
Symbol 284 MovieClip Frame 35
stop();
Symbol 284 MovieClip Frame 36
stop();
Symbol 284 MovieClip Frame 37
stop();
Symbol 284 MovieClip Frame 38
stop();
Symbol 284 MovieClip Frame 39
stop();
Symbol 284 MovieClip Frame 40
stop();
Symbol 284 MovieClip Frame 41
stop();
Symbol 284 MovieClip Frame 42
stop();
Symbol 284 MovieClip Frame 43
stop();
Symbol 284 MovieClip Frame 44
stop();
Symbol 284 MovieClip Frame 45
stop();
Symbol 284 MovieClip Frame 46
stop();
Symbol 284 MovieClip Frame 47
stop();
Symbol 284 MovieClip Frame 48
stop();
Symbol 284 MovieClip Frame 49
stop();
Symbol 284 MovieClip Frame 50
_root.gotoAndStop("die");
Symbol 284 MovieClip Frame 52
gotoAndPlay (51);
Symbol 289 MovieClip Frame 1
stop();
Symbol 289 MovieClip Frame 2
stop();
Symbol 289 MovieClip Frame 3
stop();
Symbol 289 MovieClip Frame 4
stop();
Symbol 289 MovieClip Frame 5
stop();
Symbol 289 MovieClip Frame 6
stop();
Symbol 289 MovieClip Frame 7
stop();
Symbol 289 MovieClip Frame 8
stop();
Symbol 289 MovieClip Frame 9
stop();
Symbol 289 MovieClip Frame 10
stop();
Symbol 289 MovieClip Frame 11
stop();
Symbol 289 MovieClip Frame 12
stop();
Symbol 289 MovieClip Frame 13
stop();
Symbol 289 MovieClip Frame 14
stop();
Symbol 289 MovieClip Frame 15
stop();
Symbol 289 MovieClip Frame 16
stop();
Symbol 289 MovieClip Frame 17
stop();
Symbol 289 MovieClip Frame 18
stop();
Symbol 289 MovieClip Frame 19
stop();
Symbol 289 MovieClip Frame 20
stop();
Symbol 289 MovieClip Frame 21
stop();
Symbol 289 MovieClip Frame 22
stop();
Symbol 289 MovieClip Frame 23
stop();
Symbol 289 MovieClip Frame 24
stop();
Symbol 289 MovieClip Frame 25
stop();
Symbol 289 MovieClip Frame 26
stop();
Symbol 289 MovieClip Frame 27
stop();
Symbol 289 MovieClip Frame 28
stop();
Symbol 289 MovieClip Frame 29
stop();
Symbol 289 MovieClip Frame 30
_root.score = _root.score + 10000;
_root.gotoAndPlay("bossDie");
Instance of Symbol 276 MovieClip "sau2_mc" in Symbol 301 MovieClip Frame 329
onClipEvent (enterFrame) {
this._x = this._x - 2;
}
Instance of Symbol 276 MovieClip in Symbol 301 MovieClip Frame 456
onClipEvent (enterFrame) {
this.gotoAndStop(3);
}
Symbol 301 MovieClip Frame 714
_root.gotoAndPlay("toMain");
Symbol 321 MovieClip Frame 146
_root.play();
Symbol 346 MovieClip Frame 20
if (_root.clock < -48) {
if (_root.bossBullet5_mc._x < -10) {
_root.bossBullet5_mc._x = _root.sausageBoss._x - 170;
_root.bossBullet5_mc._y = _root.sausageBoss._y + 37.5;
} else if (_root.bossBullet7_mc._x < -10) {
_root.bossBullet7_mc._x = _root.sausageBoss._x - 170;
_root.bossBullet7_mc._y = _root.sausageBoss._y + 37.5;
}
}
Symbol 346 MovieClip Frame 45
if (_root.clock < -48) {
if (_root.bossBullet6_mc._x < -10) {
_root.bossBullet6_mc._x = _root.sausageBoss._x - 150.9;
_root.bossBullet6_mc._y = _root.sausageBoss._y + 100;
} else if (_root.bossBullet8_mc._x < -10) {
_root.bossBullet8_mc._x = _root.sausageBoss._x - 150.9;
_root.bossBullet8_mc._y = _root.sausageBoss._y + 100;
}
}
Symbol 363 MovieClip Frame 20
if (_root.clock < -48) {
if (_root.bossBullet1_mc._x < -10) {
_root.bossBullet1_mc._x = _root.sausageBoss._x - 170;
_root.bossBullet1_mc._y = _root.sausageBoss._y - 30.1;
} else if (_root.bossBullet3_mc._x < -10) {
_root.bossBullet3_mc._x = _root.sausageBoss._x - 170;
_root.bossBullet3_mc._y = _root.sausageBoss._y - 30.1;
}
}
Symbol 363 MovieClip Frame 45
if (_root.clock < -48) {
if (_root.bossBullet2_mc._x < -10) {
_root.bossBullet2_mc._x = _root.sausageBoss._x - 150.9;
_root.bossBullet2_mc._y = _root.sausageBoss._y - 90;
} else if (_root.bossBullet4_mc._x < -10) {
_root.bossBullet4_mc._x = _root.sausageBoss._x - 150.9;
_root.bossBullet4_mc._y = _root.sausageBoss._y - 90;
}
}
Symbol 381 MovieClip Frame 1
stop();
Symbol 381 MovieClip Frame 2
if (_root.clock < 0) {
_root.eyeSquish.start();
_root.bossHealth_mc.play();
}
Symbol 397 MovieClip Frame 1
stop();
Symbol 397 MovieClip Frame 2
if (_root.clock < 0) {
_root.eyeSquish.start();
_root.bossHealth_mc.play();
}
Symbol 413 MovieClip Frame 1
stop();
Symbol 413 MovieClip Frame 2
if (_root.clock < 0) {
_root.eyeSquish.start();
_root.bossHealth_mc.play();
}
Symbol 435 MovieClip Frame 48
gotoAndPlay (1);
Symbol 438 MovieClip Frame 2
_root.sideSaus1_mc._y = _root.sideSaus1_mc._y - 6;
Symbol 438 MovieClip Frame 3
_root.sideSaus1_mc._y = _root.sideSaus1_mc._y - 6;
Symbol 438 MovieClip Frame 4
_root.sideSaus1_mc._y = _root.sideSaus1_mc._y - 6;
Symbol 438 MovieClip Frame 5
_root.sideSaus1_mc._y = _root.sideSaus1_mc._y - 6;
Symbol 438 MovieClip Frame 6
_root.sideSaus1_mc._y = _root.sideSaus1_mc._y - 6;
Symbol 438 MovieClip Frame 7
_root.sideSaus1_mc._y = _root.sideSaus1_mc._y - 6;
Symbol 438 MovieClip Frame 8
_root.sideSaus1_mc._y = _root.sideSaus1_mc._y - 6;
Symbol 438 MovieClip Frame 9
_root.sideSaus1_mc._y = _root.sideSaus1_mc._y - 6;
Symbol 438 MovieClip Frame 10
_root.sideSaus1_mc._y = _root.sideSaus1_mc._y - 5;
Symbol 438 MovieClip Frame 11
_root.sideSaus1_mc._y = _root.sideSaus1_mc._y - 5;
Symbol 438 MovieClip Frame 12
_root.sideSaus1_mc._y = _root.sideSaus1_mc._y - 5;
Symbol 438 MovieClip Frame 13
_root.sideSaus1_mc._y = _root.sideSaus1_mc._y - 5;
Symbol 438 MovieClip Frame 14
_root.sideSaus1_mc._y = _root.sideSaus1_mc._y - 5;
Symbol 438 MovieClip Frame 15
_root.sideSaus1_mc._y = _root.sideSaus1_mc._y - 4;
Symbol 438 MovieClip Frame 16
_root.sideSaus1_mc._y = _root.sideSaus1_mc._y - 4;
Symbol 438 MovieClip Frame 17
_root.sideSaus1_mc._y = _root.sideSaus1_mc._y - 4;
Symbol 438 MovieClip Frame 18
_root.sideSaus1_mc._y = _root.sideSaus1_mc._y - 4;
Symbol 438 MovieClip Frame 19
_root.sideSaus1_mc._y = _root.sideSaus1_mc._y - 4;
Symbol 438 MovieClip Frame 20
_root.sideSaus1_mc._y = _root.sideSaus1_mc._y - 3;
Symbol 438 MovieClip Frame 21
_root.sideSaus1_mc._y = _root.sideSaus1_mc._y - 3;
Symbol 438 MovieClip Frame 22
_root.sideSaus1_mc._y = _root.sideSaus1_mc._y - 3;
Symbol 438 MovieClip Frame 23
_root.sideSaus1_mc._y = _root.sideSaus1_mc._y - 3;
Symbol 438 MovieClip Frame 24
_root.sideSaus1_mc._y = _root.sideSaus1_mc._y - 2;
Symbol 438 MovieClip Frame 25
_root.sideSaus1_mc._y = _root.sideSaus1_mc._y - 2;
Symbol 438 MovieClip Frame 26
_root.sideSaus1_mc._y = _root.sideSaus1_mc._y - 1;
Symbol 438 MovieClip Frame 27
_root.sideSaus1_mc._y = _root.sideSaus1_mc._y - 0.5;
Symbol 438 MovieClip Frame 28
_root.sideSaus1_mc._y = _root.sideSaus1_mc._y - 0.25;
Symbol 440 MovieClip Frame 1
stop();
this.onEnterFrame = function () {
this._rotation = 0;
this._y = this._y;
};
Symbol 440 MovieClip Frame 2
_root.score = _root.score + 200;
Symbol 440 MovieClip Frame 3
stop();
this.onEnterFrame = function () {
this._rotation = this._rotation - 35;
this._y = this._y + 15;
if (_root.clock > 0) {
if (this._y > 500) {
gotoAndStop (1);
this._x = Math.random() * 340;
this._x = this._x + 300;
this._y = 480;
}
}
};
Symbol 440 MovieClip Frame 4
gotoAndStop (3);
Symbol 454 MovieClip Frame 2
_root.sideSaus2_mc._y = _root.sideSaus2_mc._y - 6;
Symbol 454 MovieClip Frame 3
_root.sideSaus2_mc._y = _root.sideSaus2_mc._y - 6;
Symbol 454 MovieClip Frame 4
_root.sideSaus2_mc._y = _root.sideSaus2_mc._y - 6;
Symbol 454 MovieClip Frame 5
_root.sideSaus2_mc._y = _root.sideSaus2_mc._y - 6;
Symbol 454 MovieClip Frame 6
_root.sideSaus2_mc._y = _root.sideSaus2_mc._y - 6;
Symbol 454 MovieClip Frame 7
_root.sideSaus2_mc._y = _root.sideSaus2_mc._y - 6;
Symbol 454 MovieClip Frame 8
_root.sideSaus2_mc._y = _root.sideSaus2_mc._y - 6;
Symbol 454 MovieClip Frame 9
_root.sideSaus2_mc._y = _root.sideSaus2_mc._y - 6;
Symbol 454 MovieClip Frame 10
_root.sideSaus2_mc._y = _root.sideSaus2_mc._y - 5;
Symbol 454 MovieClip Frame 11
_root.sideSaus2_mc._y = _root.sideSaus2_mc._y - 5;
Symbol 454 MovieClip Frame 12
_root.sideSaus2_mc._y = _root.sideSaus2_mc._y - 5;
Symbol 454 MovieClip Frame 13
_root.sideSaus2_mc._y = _root.sideSaus2_mc._y - 5;
Symbol 454 MovieClip Frame 14
_root.sideSaus2_mc._y = _root.sideSaus2_mc._y - 5;
Symbol 454 MovieClip Frame 15
_root.sideSaus2_mc._y = _root.sideSaus2_mc._y - 4;
Symbol 454 MovieClip Frame 16
_root.sideSaus2_mc._y = _root.sideSaus2_mc._y - 4;
Symbol 454 MovieClip Frame 17
_root.sideSaus2_mc._y = _root.sideSaus2_mc._y - 4;
Symbol 454 MovieClip Frame 18
_root.sideSaus2_mc._y = _root.sideSaus2_mc._y - 4;
Symbol 454 MovieClip Frame 19
_root.sideSaus2_mc._y = _root.sideSaus2_mc._y - 4;
Symbol 454 MovieClip Frame 20
_root.sideSaus2_mc._y = _root.sideSaus2_mc._y - 3;
Symbol 454 MovieClip Frame 21
_root.sideSaus2_mc._y = _root.sideSaus2_mc._y - 3;
Symbol 454 MovieClip Frame 22
_root.sideSaus2_mc._y = _root.sideSaus2_mc._y - 3;
Symbol 454 MovieClip Frame 23
_root.sideSaus2_mc._y = _root.sideSaus2_mc._y - 3;
Symbol 454 MovieClip Frame 24
_root.sideSaus2_mc._y = _root.sideSaus2_mc._y - 2;
Symbol 454 MovieClip Frame 25
_root.sideSaus2_mc._y = _root.sideSaus2_mc._y - 2;
Symbol 454 MovieClip Frame 26
_root.sideSaus2_mc._y = _root.sideSaus2_mc._y - 1;
Symbol 454 MovieClip Frame 27
_root.sideSaus2_mc._y = _root.sideSaus2_mc._y - 0.5;
Symbol 454 MovieClip Frame 28
_root.sideSaus2_mc._y = _root.sideSaus2_mc._y - 0.25;
Symbol 456 MovieClip Frame 1
stop();
this.onEnterFrame = function () {
this._rotation = 0;
this._y = this._y;
};
Symbol 456 MovieClip Frame 2
_root.score = _root.score + 200;
Symbol 456 MovieClip Frame 3
stop();
this.onEnterFrame = function () {
this._rotation = this._rotation - 35;
this._y = this._y + 15;
if (_root.clock > 0) {
if (this._y > 500) {
gotoAndStop (1);
this._x = Math.random() * 340;
this._x = this._x + 300;
this._y = 480;
}
}
};
Symbol 456 MovieClip Frame 4
gotoAndStop (3);
Symbol 467 MovieClip Frame 1
stop();
Symbol 467 MovieClip Frame 95
_root.gotoAndPlay("toMain");