Frame 1
stop();
_quality = "MEDIUM";
_root.difficulty = 2;
_root.punchbutton = 90;
_root.kickbutton = 88;
_root.upbutton = 38;
_root.downbutton = 40;
_root.leftbutton = 37;
_root.rightbutton = 39;
_root.characterunlocked = false;
function doSomething() {
}
MENU = new ContextMenu();
MENU.hideBuiltInItems();
Functioned = new ContextMenuItem("Be sure to visit my site");
MENU.customItems.push(Functioned);
_root.menu = MENU;
Frame 3
function doSomething() {
}
MENU = new ContextMenu();
MENU.hideBuiltInItems();
Functioned = new ContextMenuItem("Be sure to visit my site");
MENU.customItems.push(Functioned);
_root.menu = MENU;
PicoSound = new Sound(this);
PicoSound.attachSound("loop1");
DarnellSound = new Sound(this);
DarnellSound.attachSound("loop2");
NeneSound = new Sound(this);
NeneSound.attachSound("loop3");
AlucardSound = new Sound(this);
AlucardSound.attachSound("loop4");
CyclopsSound = new Sound(this);
CyclopsSound.attachSound("loop5");
HanzouSound = new Sound(this);
HanzouSound.attachSound("loop6");
UberkidSound = new Sound(this);
UberkidSound.attachSound("loop7");
CasandraSound = new Sound(this);
CasandraSound.attachSound("loop9");
ConvictSound = new Sound(this);
ConvictSound.attachSound("loop10");
GhettobotSound = new Sound(this);
GhettobotSound.attachSound("loop8");
TeacherSound = new Sound(this);
TeacherSound.attachSound("loop11");
hurt1 = new Sound(this);
hurt1.attachSound("hurt1");
hurt2 = new Sound(this);
hurt2.attachSound("hurt2");
hurt3 = new Sound(this);
hurt3.attachSound("hurt3");
hurt4 = new Sound(this);
hurt4.attachSound("hurt4");
land = new Sound(this);
land.attachSound("land");
block = new Sound(this);
block.attachSound("block");
menu = new Sound(this);
menu.attachSound("menu");
jump = new Sound(this);
jump.attachSound("jump");
play();
Frame 4
stop();
Frame 5
_root.layout = 1;
stop();
Frame 6
function doSomething() {
}
stop();
MENU = new ContextMenu();
MENU.hideBuiltInItems();
Functioned = new ContextMenuItem("Be sure to visit my site");
MENU.customItems.push(Functioned);
_root.menu = MENU;
_root.layout = 1;
arcadecount = false;
arcadek = 0;
_root.code = 0;
onEnterFrame = function () {
if (_root.code == 0) {
if (!Key.isDown(_root.upbutton)) {
_root.allow = true;
} else if (Key.isDown(_root.upbutton) && (_root.allow == true)) {
_root.code = 1;
_root.allow = false;
}
}
if (_root.code == 1) {
if (!Key.isDown(_root.upbutton)) {
_root.allow = true;
} else if (Key.isDown(_root.upbutton) && (_root.allow == true)) {
_root.code = 2;
_root.allow = false;
}
}
if (_root.code == 2) {
if (!Key.isDown(_root.downbutton)) {
_root.allow = true;
} else if (Key.isDown(_root.downbutton) && (_root.allow == true)) {
_root.code = 3;
_root.allow = false;
}
}
if (_root.code == 3) {
if (!Key.isDown(_root.downbutton)) {
_root.allow = true;
} else if (Key.isDown(_root.downbutton) && (_root.allow == true)) {
_root.code = 4;
_root.allow = false;
}
}
if (_root.code == 4) {
if (!Key.isDown(_root.leftbutton)) {
_root.allow = true;
} else if (Key.isDown(_root.leftbutton) && (_root.allow == true)) {
_root.code = 5;
_root.allow = false;
}
}
if (_root.code == 5) {
if (!Key.isDown(_root.rightbutton)) {
_root.allow = true;
} else if (Key.isDown(_root.rightbutton) && (_root.allow == true)) {
_root.code = 6;
_root.allow = false;
}
}
if (_root.code == 6) {
if (!Key.isDown(_root.leftbutton)) {
_root.allow = true;
} else if (Key.isDown(_root.leftbutton) && (_root.allow == true)) {
_root.code = 7;
_root.allow = false;
}
}
if (_root.code == 7) {
if (!Key.isDown(_root.rightbutton)) {
_root.allow = true;
} else if (Key.isDown(_root.rightbutton) && (_root.allow == true)) {
_root.code = 8;
_root.allow = false;
}
}
if (_root.code == 8) {
if (!Key.isDown(_root.punchbutton)) {
_root.allow = true;
} else if (Key.isDown(_root.punchbutton) && (_root.allow == true)) {
_root.code = 9;
_root.allow = false;
}
}
if (_root.code == 9) {
if (!Key.isDown(_root.kickbutton)) {
_root.allow = true;
} else if (Key.isDown(_root.kickbutton) && (_root.allow == true)) {
_root.code = 10;
_root.allow = false;
}
}
if (_root.code == 10) {
if (!Key.isDown(13)) {
_root.allow = true;
} else if (Key.isDown(13) && (_root.allow == true)) {
_root.code = 11;
_root.allow = false;
}
}
if (_root.arcadecount == true) {
arcadek++;
}
if (arcadek > 50) {
gotoAndStop (31);
}
if (_root.code == 11) {
_root.characterunlocked = true;
_root.code = 0;
}
};
Instance of Symbol 321 MovieClip in Frame 6
onClipEvent (load) {
this._x = random(300) + 1000;
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
onClipEvent (enterFrame) {
this._x = this._x - speed;
if (this._x < -500) {
this._x = random(300) + 1000;
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
}
Instance of Symbol 321 MovieClip in Frame 6
onClipEvent (load) {
this._x = random(300) + 1000;
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
onClipEvent (enterFrame) {
this._x = this._x - speed;
if (this._x < -500) {
this._x = random(300) + 1000;
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
}
Instance of Symbol 321 MovieClip in Frame 6
onClipEvent (load) {
this._x = random(300) + 1000;
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
onClipEvent (enterFrame) {
this._x = this._x - speed;
if (this._x < -500) {
this._x = random(300) + 1000;
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
}
Instance of Symbol 321 MovieClip in Frame 6
onClipEvent (load) {
this._x = random(300) + 1000;
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
onClipEvent (enterFrame) {
this._x = this._x - speed;
if (this._x < -500) {
this._x = random(300) + 1000;
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
}
Instance of Symbol 321 MovieClip in Frame 6
onClipEvent (load) {
this._x = random(300) + 1000;
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
onClipEvent (enterFrame) {
this._x = this._x - speed;
if (this._x < -500) {
this._x = random(300) + 1000;
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
}
Instance of Symbol 267 MovieClip in Frame 6
onClipEvent (load) {
Xpos = this._x;
this.gotoAndStop(_root.layout);
}
onClipEvent (enterFrame) {
this._x = Xpos + (0.2 * (_root.camera._x - 375));
}
Instance of Symbol 277 MovieClip in Frame 6
onClipEvent (load) {
Xpos = this._x;
this.gotoAndStop(_root.layout);
}
onClipEvent (enterFrame) {
this._x = Xpos + (0.1 * (_root.camera._x - 375));
}
Instance of Symbol 249 MovieClip "ground" in Frame 6
onClipEvent (load) {
Xpos = this._x;
this.gotoAndStop(_root.layout);
}
onClipEvent (enterFrame) {
this._x = Xpos + (0 * (_root.camera._x - 375));
}
Frame 7
stop();
_root.backtostart = false;
bts = 0;
onEnterFrame = function () {
if (_root.backtostart == true) {
bts++;
}
if (bts > 13) {
if (_root.options._currentframe == 15) {
this.options.menuthing.gotoAndStop(1);
} else {
gotoAndStop (6);
}
bts = 0;
_root.backtostart = false;
}
};
Frame 8
stop();
_root.backtostart = false;
bts = 0;
arcadecount = false;
arcadek = 0;
creditcount = false;
creditk = 0;
musiccount = false;
musick = 0;
onEnterFrame = function () {
if (_root.backtostart == true) {
bts++;
}
if (bts > 13) {
gotoAndStop (6);
bts = 0;
_root.backtostart = false;
}
if (_root.arcadecount == true) {
arcadek++;
}
if (arcadek > 50) {
gotoAndStop (29);
}
if (_root.creditcount == true) {
creditk++;
}
if (creditk > 9) {
gotoAndStop (36);
}
if (_root.musiccount == true) {
musick++;
}
if (musick > 9) {
gotoAndStop (28);
}
};
Frame 9
stop();
storycount = false;
_root.backtostart = false;
storyk = 0;
bts = 0;
onEnterFrame = function () {
if (_root.backtostart == true) {
bts++;
}
if (bts > 13) {
gotoAndStop (6);
}
if (_root.storycount == true) {
storyk++;
}
if (storyk > 10) {
_root.blackout.play();
}
if (storyk > 50) {
stopAllSounds();
gotoAndStop (10);
}
};
Frame 10
stop();
onEnterFrame = function () {
if (!Key.isDown(32)) {
_root.allow = true;
} else if (Key.isDown(32) && (_root.allow == true)) {
this.cutscene.play();
_root.allow = false;
}
};
_root.layout = 4;
Frame 11
stop();
onEnterFrame = function () {
if (!Key.isDown(32)) {
_root.allow = true;
} else if (Key.isDown(32) && (_root.allow == true)) {
this.cutscene.play();
_root.allow = false;
}
};
_root.layout = 4;
_root.player2char = 4;
_root.volumelol = 100;
Instance of Symbol 301 MovieClip in Frame 11
onClipEvent (load) {
Xpos = this._x;
this.gotoAndStop(_root.layout);
}
onClipEvent (enterFrame) {
this._x = Xpos + (0.3 * (_root.camera._x - 375));
}
Instance of Symbol 267 MovieClip in Frame 11
onClipEvent (load) {
Xpos = this._x;
if (_root.layout == 1) {
this.gotoAndStop(1);
} else if (_root.layout == 2) {
this.gotoAndStop(2);
} else if (_root.layout == 3) {
this.gotoAndStop(3);
} else if (_root.layout == 4) {
this.gotoAndStop(4);
} else if (_root.layout == 5) {
this.gotoAndStop(5);
} else if (_root.layout == 6) {
this.gotoAndStop(6);
} else if (_root.layout == 7) {
this.gotoAndStop(7);
} else if (_root.layout == 8) {
this.gotoAndStop(8);
} else if (_root.layout == 9) {
this.gotoAndStop(9);
} else if (_root.layout == 10) {
this.gotoAndStop(10);
} else if (_root.layout == 11) {
this.gotoAndStop(11);
} else if (_root.layout == 12) {
this.gotoAndStop(12);
} else if (_root.layout == 13) {
this.gotoAndStop(13);
} else if (_root.layout == 14) {
this.gotoAndStop(14);
} else if (_root.layout == 15) {
this.gotoAndStop(15);
}
}
onClipEvent (enterFrame) {
this._x = Xpos + (0.2 * (_root.camera._x - 375));
}
Instance of Symbol 277 MovieClip in Frame 11
onClipEvent (load) {
Xpos = this._x;
this.gotoAndStop(_root.layout);
}
onClipEvent (enterFrame) {
this._x = Xpos + (0.1 * (_root.camera._x - 375));
}
Instance of Symbol 249 MovieClip "ground" in Frame 11
onClipEvent (load) {
Xpos = this._x;
if (_root.layout == 1) {
this.gotoAndStop(1);
} else if (_root.layout == 2) {
this.gotoAndStop(2);
} else if (_root.layout == 3) {
this.gotoAndStop(3);
} else if (_root.layout == 4) {
this.gotoAndStop(4);
} else if (_root.layout == 5) {
this.gotoAndStop(5);
} else if (_root.layout == 6) {
this.gotoAndStop(6);
} else if (_root.layout == 7) {
this.gotoAndStop(7);
} else if (_root.layout == 8) {
this.gotoAndStop(8);
} else if (_root.layout == 9) {
this.gotoAndStop(9);
} else if (_root.layout == 10) {
this.gotoAndStop(10);
} else if (_root.layout == 11) {
this.gotoAndStop(11);
} else if (_root.layout == 12) {
this.gotoAndStop(12);
} else if (_root.layout == 13) {
this.gotoAndStop(13);
} else if (_root.layout == 14) {
this.gotoAndStop(14);
} else if (_root.layout == 15) {
this.gotoAndStop(15);
}
}
onClipEvent (enterFrame) {
this._x = Xpos + (0 * (_root.camera._x - 375));
}
Instance of Symbol 517 MovieClip in Frame 11
onClipEvent (load) {
if (this._currentframe == 1) {
if (_root.layout == 1) {
this.gotoAndStop(2);
} else if (_root.layout == 2) {
this.gotoAndStop(3);
} else if (_root.layout == 3) {
this.gotoAndStop(4);
} else if (_root.layout == 4) {
this.gotoAndStop(5);
} else if (_root.layout == 5) {
this.gotoAndStop(6);
} else if (_root.layout == 6) {
this.gotoAndStop(7);
} else if (_root.layout == 7) {
this.gotoAndStop(8);
} else if (_root.layout == 8) {
this.gotoAndStop(9);
} else if (_root.layout == 9) {
this.gotoAndStop(10);
} else if (_root.layout == 10) {
this.gotoAndStop(11);
} else if (_root.layout == 11) {
this.gotoAndStop(12);
} else if (_root.layout == 12) {
this.gotoAndStop(13);
} else if (_root.layout == 13) {
this.gotoAndStop(14);
} else if (_root.layout == 14) {
this.gotoAndStop(15);
} else if (_root.layout == 15) {
this.gotoAndStop(16);
}
}
}
Frame 12
timer2 = 0;
_root.playerwon = false;
_root.gameplay = false;
_root.life1.text = 150;
_root.life2.text = 150;
_root.gameover = false;
_root.health1away.text = 0;
_root.health2away.text = 0;
_root.volumelol = 100;
_root.dyingani = false;
stop();
onEnterFrame = function () {
if (timer2 < 100) {
_root.volumelol = 100 - timer2;
} else {
_root.volumelol = 0;
}
if (_root.gameover == true) {
timer2++;
}
if (timer2 == 10) {
_root.ko.play();
}
if (timer2 > 80) {
if (_root.life1.text <= 0) {
_root.blacklose.play();
_root.blackout.gotoAndStop(1);
} else {
_root.blackout.play();
_root.blacklose.gotoAndStop(1);
}
} else {
_root.blackout.gotoAndStop(1);
_root.blacklose.gotoAndStop(1);
}
if (_root.health1away.text > 0) {
health1away.text--;
_root.life1.text--;
}
if (_root.health1away.text <= 0) {
health1away.text = 0;
}
if (_root.health2away.text > 0) {
health2away.text--;
_root.life2.text--;
}
if (_root.health2away.text <= 0) {
health2away.text = 0;
}
if (_root.life1.text <= 0) {
_root.gameover = true;
}
if (_root.life2.text <= 0) {
_root.gameover = true;
}
};
Instance of Symbol 321 MovieClip in Frame 12
onClipEvent (load) {
this._x = random(300) + 1000;
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
onClipEvent (enterFrame) {
this._x = this._x - speed;
if (this._x < -500) {
this._x = random(300) + 1000;
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
}
Instance of Symbol 321 MovieClip in Frame 12
onClipEvent (load) {
this._x = random(300) + 1000;
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
onClipEvent (enterFrame) {
this._x = this._x - speed;
if (this._x < -500) {
this._x = random(300) + 1000;
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
}
Instance of Symbol 321 MovieClip in Frame 12
onClipEvent (load) {
this._x = random(300) + 1000;
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
onClipEvent (enterFrame) {
this._x = this._x - speed;
if (this._x < -500) {
this._x = random(300) + 1000;
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
}
Instance of Symbol 321 MovieClip in Frame 12
onClipEvent (load) {
this._x = random(300) + 1000;
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
onClipEvent (enterFrame) {
this._x = this._x - speed;
if (this._x < -500) {
this._x = random(300) + 1000;
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
}
Instance of Symbol 321 MovieClip in Frame 12
onClipEvent (load) {
this._x = random(300) + 1000;
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
onClipEvent (enterFrame) {
this._x = this._x - speed;
if (this._x < -500) {
this._x = random(300) + 1000;
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
}
Instance of Symbol 321 MovieClip in Frame 12
onClipEvent (load) {
this._x = random(750);
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
onClipEvent (enterFrame) {
this._x = this._x - speed;
if (this._x < -500) {
this._x = random(300) + 1000;
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
}
Instance of Symbol 321 MovieClip in Frame 12
onClipEvent (load) {
this._x = random(750);
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
onClipEvent (enterFrame) {
this._x = this._x - speed;
if (this._x < -500) {
this._x = random(300) + 1000;
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
}
Instance of Symbol 321 MovieClip in Frame 12
onClipEvent (load) {
this._x = random(750);
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
onClipEvent (enterFrame) {
this._x = this._x - speed;
if (this._x < -500) {
this._x = random(300) + 1000;
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
}
Instance of Symbol 321 MovieClip in Frame 12
onClipEvent (load) {
this._x = random(750);
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
onClipEvent (enterFrame) {
this._x = this._x - speed;
if (this._x < -500) {
this._x = random(300) + 1000;
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
}
Instance of Symbol 301 MovieClip in Frame 12
onClipEvent (load) {
Xpos = this._x;
this.gotoAndStop(_root.layout);
}
onClipEvent (enterFrame) {
this._x = Xpos + (0.3 * (_root.camera._x - 375));
}
Instance of Symbol 267 MovieClip in Frame 12
onClipEvent (load) {
Xpos = this._x;
if (_root.layout == 1) {
this.gotoAndStop(1);
} else if (_root.layout == 2) {
this.gotoAndStop(2);
} else if (_root.layout == 3) {
this.gotoAndStop(3);
} else if (_root.layout == 4) {
this.gotoAndStop(4);
} else if (_root.layout == 5) {
this.gotoAndStop(5);
} else if (_root.layout == 6) {
this.gotoAndStop(6);
} else if (_root.layout == 7) {
this.gotoAndStop(7);
} else if (_root.layout == 8) {
this.gotoAndStop(8);
} else if (_root.layout == 9) {
this.gotoAndStop(9);
} else if (_root.layout == 10) {
this.gotoAndStop(10);
} else if (_root.layout == 11) {
this.gotoAndStop(11);
} else if (_root.layout == 12) {
this.gotoAndStop(12);
} else if (_root.layout == 13) {
this.gotoAndStop(13);
} else if (_root.layout == 14) {
this.gotoAndStop(14);
} else if (_root.layout == 15) {
this.gotoAndStop(15);
}
}
onClipEvent (enterFrame) {
this._x = Xpos + (0.2 * (_root.camera._x - 375));
}
Instance of Symbol 277 MovieClip in Frame 12
onClipEvent (load) {
Xpos = this._x;
this.gotoAndStop(_root.layout);
}
onClipEvent (enterFrame) {
this._x = Xpos + (0.1 * (_root.camera._x - 375));
}
Instance of Symbol 249 MovieClip "ground" in Frame 12
onClipEvent (load) {
Xpos = this._x;
if (_root.layout == 1) {
this.gotoAndStop(1);
} else if (_root.layout == 2) {
this.gotoAndStop(2);
} else if (_root.layout == 3) {
this.gotoAndStop(3);
} else if (_root.layout == 4) {
this.gotoAndStop(4);
} else if (_root.layout == 5) {
this.gotoAndStop(5);
} else if (_root.layout == 6) {
this.gotoAndStop(6);
} else if (_root.layout == 7) {
this.gotoAndStop(7);
} else if (_root.layout == 8) {
this.gotoAndStop(8);
} else if (_root.layout == 9) {
this.gotoAndStop(9);
} else if (_root.layout == 10) {
this.gotoAndStop(10);
} else if (_root.layout == 11) {
this.gotoAndStop(11);
} else if (_root.layout == 12) {
this.gotoAndStop(12);
} else if (_root.layout == 13) {
this.gotoAndStop(13);
} else if (_root.layout == 14) {
this.gotoAndStop(14);
} else if (_root.layout == 15) {
this.gotoAndStop(15);
}
}
onClipEvent (enterFrame) {
this._x = Xpos + (0 * (_root.camera._x - 375));
}
Instance of Symbol 1933 MovieClip "player2" in Frame 12
onClipEvent (load) {
this.gotoAndStop(_root.player2char);
}
onClipEvent (enterFrame) {
this._y = 475;
}
Instance of Symbol 1934 MovieClip "player1" in Frame 12
onClipEvent (load) {
this.gotoAndStop(_root.player1char);
}
onClipEvent (enterFrame) {
this._y = 475;
}
Instance of Symbol 1937 MovieClip in Frame 12
onClipEvent (enterFrame) {
this._x = _root.side1._x;
this._y = _root.side1._y - 217.5;
if (_root.health1._currentframe < _root.health2._currentframe) {
this.gotoAndStop(1);
this._xscale = -100;
}
if (_root.health1._currentframe > _root.health2._currentframe) {
this.gotoAndStop(1);
this._xscale = 100;
}
if (_root.health1._currentframe == _root.health2._currentframe) {
this.gotoAndStop(2);
this._xscale = 100;
}
}
Instance of Symbol 1942 MovieClip "health1" in Frame 12
onClipEvent (enterFrame) {
this.gotoAndStop(_root.life1.text);
this._x = _root.side1._x - 325;
this._y = _root.side1._y - 230;
}
Instance of Symbol 1942 MovieClip "health2" in Frame 12
onClipEvent (enterFrame) {
this.gotoAndStop(_root.life2.text);
this._x = _root.side1._x + 325;
this._y = _root.side1._y - 230;
}
Instance of Symbol 1956 MovieClip in Frame 12
onClipEvent (load) {
this.gotoAndStop(_root.player1char);
}
onClipEvent (enterFrame) {
this._x = _root.side1._x - 95;
this._y = _root.side1._y - 195;
}
Instance of Symbol 1956 MovieClip in Frame 12
onClipEvent (load) {
this.gotoAndStop(_root.player2char);
}
onClipEvent (enterFrame) {
this._x = _root.side1._x + 40;
this._y = _root.side1._y - 195;
}
Instance of Symbol 1957 MovieClip "side1" in Frame 12
onClipEvent (enterFrame) {
this._x = _root.camera._x;
}
Instance of Symbol 1957 MovieClip "side2" in Frame 12
onClipEvent (enterFrame) {
this._x = _root.camera._x;
}
Instance of Symbol 1959 MovieClip "camera" in Frame 12
onClipEvent (enterFrame) {
if ((!_root.player2.hitTest(_root.side1)) || (!_root.player2.hitTest(_root.side2))) {
if ((!_root.player1.hitTest(_root.side1)) || (!_root.player1.hitTest(_root.side2))) {
if (this._x > 225) {
if (((_root.player1._x + _root.player1.char._x) < (this._x - 250)) || ((_root.player2._x + _root.player2.char._x) < (this._x - 250))) {
this._x = this._x - 5;
}
}
}
}
if ((!_root.player2.hitTest(_root.side1)) || (!_root.player2.hitTest(_root.side2))) {
if ((!_root.player1.hitTest(_root.side1)) || (!_root.player1.hitTest(_root.side2))) {
if (this._x < 525) {
if (((_root.player1._x + _root.player1.char._x) > (this._x + 250)) || ((_root.player2._x + _root.player2.char._x) > (this._x + 250))) {
this._x = this._x + 5;
}
}
}
}
}
Instance of Symbol 1970 MovieClip "ready" in Frame 12
onClipEvent (enterFrame) {
if (_root.blackin._currentframe == 20) {
this.play();
}
}
Instance of Symbol 1998 MovieClip "ko" in Frame 12
onClipEvent (enterFrame) {
this._x = _root.camera._x - 73.2;
this._y = _root.camera._y - 39;
}
Instance of Symbol 448 MovieClip "blackout" in Frame 12
onClipEvent (load) {
gotoAndStop (10);
}
onClipEvent (enterFrame) {
this._x = _root.camera._x - 375;
}
Instance of Symbol 2013 MovieClip "blacklose" in Frame 12
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
this._x = _root.camera._x - 375;
}
Instance of Symbol 2023 MovieClip "pausee" in Frame 12
onClipEvent (enterFrame) {
if ((_root.ready._currentframe == 72) && (_root.gameover == false)) {
if (this._currentframe == 1) {
if (Key.isDown(32) || (Key.isDown(13))) {
_root.stop();
this.play();
_root.gameplay = false;
}
}
}
this._x = _root.camera._x - 375;
}
Frame 13
stop();
onEnterFrame = function () {
if (!Key.isDown(32)) {
_root.allow = true;
} else if (Key.isDown(32) && (_root.allow == true)) {
this.cutscene.play();
_root.allow = false;
}
};
_root.layout = 5;
_root.player2char = 5;
_root.volumelol = 100;
Instance of Symbol 301 MovieClip in Frame 13
onClipEvent (load) {
Xpos = this._x;
this.gotoAndStop(_root.layout);
}
onClipEvent (enterFrame) {
this._x = Xpos + (0.3 * (_root.camera._x - 375));
}
Instance of Symbol 267 MovieClip in Frame 13
onClipEvent (load) {
Xpos = this._x;
if (_root.layout == 1) {
this.gotoAndStop(1);
} else if (_root.layout == 2) {
this.gotoAndStop(2);
} else if (_root.layout == 3) {
this.gotoAndStop(3);
} else if (_root.layout == 4) {
this.gotoAndStop(4);
} else if (_root.layout == 5) {
this.gotoAndStop(5);
} else if (_root.layout == 6) {
this.gotoAndStop(6);
} else if (_root.layout == 7) {
this.gotoAndStop(7);
} else if (_root.layout == 8) {
this.gotoAndStop(8);
} else if (_root.layout == 9) {
this.gotoAndStop(9);
} else if (_root.layout == 10) {
this.gotoAndStop(10);
} else if (_root.layout == 11) {
this.gotoAndStop(11);
} else if (_root.layout == 12) {
this.gotoAndStop(12);
} else if (_root.layout == 13) {
this.gotoAndStop(13);
} else if (_root.layout == 14) {
this.gotoAndStop(14);
} else if (_root.layout == 15) {
this.gotoAndStop(15);
}
}
onClipEvent (enterFrame) {
this._x = Xpos + (0.2 * (_root.camera._x - 375));
}
Instance of Symbol 277 MovieClip in Frame 13
onClipEvent (load) {
Xpos = this._x;
this.gotoAndStop(_root.layout);
}
onClipEvent (enterFrame) {
this._x = Xpos + (0.1 * (_root.camera._x - 375));
}
Instance of Symbol 249 MovieClip "ground" in Frame 13
onClipEvent (load) {
Xpos = this._x;
if (_root.layout == 1) {
this.gotoAndStop(1);
} else if (_root.layout == 2) {
this.gotoAndStop(2);
} else if (_root.layout == 3) {
this.gotoAndStop(3);
} else if (_root.layout == 4) {
this.gotoAndStop(4);
} else if (_root.layout == 5) {
this.gotoAndStop(5);
} else if (_root.layout == 6) {
this.gotoAndStop(6);
} else if (_root.layout == 7) {
this.gotoAndStop(7);
} else if (_root.layout == 8) {
this.gotoAndStop(8);
} else if (_root.layout == 9) {
this.gotoAndStop(9);
} else if (_root.layout == 10) {
this.gotoAndStop(10);
} else if (_root.layout == 11) {
this.gotoAndStop(11);
} else if (_root.layout == 12) {
this.gotoAndStop(12);
} else if (_root.layout == 13) {
this.gotoAndStop(13);
} else if (_root.layout == 14) {
this.gotoAndStop(14);
} else if (_root.layout == 15) {
this.gotoAndStop(15);
}
}
onClipEvent (enterFrame) {
this._x = Xpos + (0 * (_root.camera._x - 375));
}
Instance of Symbol 517 MovieClip in Frame 13
onClipEvent (load) {
if (_root.layout == 1) {
this.gotoAndStop(2);
} else if (_root.layout == 2) {
this.gotoAndStop(3);
} else if (_root.layout == 3) {
this.gotoAndStop(4);
} else if (_root.layout == 4) {
this.gotoAndStop(5);
} else if (_root.layout == 5) {
this.gotoAndStop(6);
} else if (_root.layout == 6) {
this.gotoAndStop(7);
} else if (_root.layout == 7) {
this.gotoAndStop(8);
} else if (_root.layout == 8) {
this.gotoAndStop(9);
} else if (_root.layout == 9) {
this.gotoAndStop(10);
} else if (_root.layout == 10) {
this.gotoAndStop(11);
} else if (_root.layout == 11) {
this.gotoAndStop(12);
} else if (_root.layout == 12) {
this.gotoAndStop(13);
} else if (_root.layout == 13) {
this.gotoAndStop(14);
} else if (_root.layout == 14) {
this.gotoAndStop(15);
} else if (_root.layout == 15) {
this.gotoAndStop(16);
}
}
Frame 14
timer2 = 0;
_root.playerwon = false;
_root.gameplay = false;
_root.life1.text = 150;
_root.life2.text = 150;
_root.gameover = false;
_root.health1away.text = 0;
_root.health2away.text = 0;
_root.volumelol = 100;
_root.dyingani = false;
stop();
onEnterFrame = function () {
if (timer2 < 100) {
_root.volumelol = 100 - timer2;
} else {
_root.volumelol = 0;
}
if (_root.gameover == true) {
timer2++;
}
if (timer2 == 10) {
_root.ko.play();
}
if (timer2 > 80) {
if (_root.life1.text <= 0) {
_root.blacklose.play();
_root.blackout.gotoAndStop(1);
} else {
_root.blackout.play();
_root.blacklose.gotoAndStop(1);
}
} else {
_root.blackout.gotoAndStop(1);
_root.blacklose.gotoAndStop(1);
}
if (_root.health1away.text > 0) {
health1away.text--;
_root.life1.text--;
}
if (_root.health1away.text <= 0) {
health1away.text = 0;
}
if (_root.health2away.text > 0) {
health2away.text--;
_root.life2.text--;
}
if (_root.health2away.text <= 0) {
health2away.text = 0;
}
if (_root.life1.text <= 0) {
_root.gameover = true;
}
if (_root.life2.text <= 0) {
_root.gameover = true;
}
};
Instance of Symbol 321 MovieClip in Frame 14
onClipEvent (load) {
this._x = random(300) + 1000;
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
onClipEvent (enterFrame) {
this._x = this._x - speed;
if (this._x < -500) {
this._x = random(300) + 1000;
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
}
Instance of Symbol 321 MovieClip in Frame 14
onClipEvent (load) {
this._x = random(300) + 1000;
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
onClipEvent (enterFrame) {
this._x = this._x - speed;
if (this._x < -500) {
this._x = random(300) + 1000;
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
}
Instance of Symbol 321 MovieClip in Frame 14
onClipEvent (load) {
this._x = random(300) + 1000;
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
onClipEvent (enterFrame) {
this._x = this._x - speed;
if (this._x < -500) {
this._x = random(300) + 1000;
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
}
Instance of Symbol 321 MovieClip in Frame 14
onClipEvent (load) {
this._x = random(300) + 1000;
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
onClipEvent (enterFrame) {
this._x = this._x - speed;
if (this._x < -500) {
this._x = random(300) + 1000;
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
}
Instance of Symbol 321 MovieClip in Frame 14
onClipEvent (load) {
this._x = random(300) + 1000;
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
onClipEvent (enterFrame) {
this._x = this._x - speed;
if (this._x < -500) {
this._x = random(300) + 1000;
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
}
Instance of Symbol 321 MovieClip in Frame 14
onClipEvent (load) {
this._x = random(750);
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
onClipEvent (enterFrame) {
this._x = this._x - speed;
if (this._x < -500) {
this._x = random(300) + 1000;
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
}
Instance of Symbol 321 MovieClip in Frame 14
onClipEvent (load) {
this._x = random(750);
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
onClipEvent (enterFrame) {
this._x = this._x - speed;
if (this._x < -500) {
this._x = random(300) + 1000;
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
}
Instance of Symbol 321 MovieClip in Frame 14
onClipEvent (load) {
this._x = random(750);
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
onClipEvent (enterFrame) {
this._x = this._x - speed;
if (this._x < -500) {
this._x = random(300) + 1000;
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
}
Instance of Symbol 321 MovieClip in Frame 14
onClipEvent (load) {
this._x = random(750);
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
onClipEvent (enterFrame) {
this._x = this._x - speed;
if (this._x < -500) {
this._x = random(300) + 1000;
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
}
Instance of Symbol 301 MovieClip in Frame 14
onClipEvent (load) {
Xpos = this._x;
this.gotoAndStop(_root.layout);
}
onClipEvent (enterFrame) {
this._x = Xpos + (0.3 * (_root.camera._x - 375));
}
Instance of Symbol 267 MovieClip in Frame 14
onClipEvent (load) {
Xpos = this._x;
if (_root.layout == 1) {
this.gotoAndStop(1);
} else if (_root.layout == 2) {
this.gotoAndStop(2);
} else if (_root.layout == 3) {
this.gotoAndStop(3);
} else if (_root.layout == 4) {
this.gotoAndStop(4);
} else if (_root.layout == 5) {
this.gotoAndStop(5);
} else if (_root.layout == 6) {
this.gotoAndStop(6);
} else if (_root.layout == 7) {
this.gotoAndStop(7);
} else if (_root.layout == 8) {
this.gotoAndStop(8);
} else if (_root.layout == 9) {
this.gotoAndStop(9);
} else if (_root.layout == 10) {
this.gotoAndStop(10);
} else if (_root.layout == 11) {
this.gotoAndStop(11);
} else if (_root.layout == 12) {
this.gotoAndStop(12);
} else if (_root.layout == 13) {
this.gotoAndStop(13);
} else if (_root.layout == 14) {
this.gotoAndStop(14);
} else if (_root.layout == 15) {
this.gotoAndStop(15);
}
}
onClipEvent (enterFrame) {
this._x = Xpos + (0.2 * (_root.camera._x - 375));
}
Instance of Symbol 277 MovieClip in Frame 14
onClipEvent (load) {
Xpos = this._x;
this.gotoAndStop(_root.layout);
}
onClipEvent (enterFrame) {
this._x = Xpos + (0.1 * (_root.camera._x - 375));
}
Instance of Symbol 249 MovieClip "ground" in Frame 14
onClipEvent (load) {
Xpos = this._x;
if (_root.layout == 1) {
this.gotoAndStop(1);
} else if (_root.layout == 2) {
this.gotoAndStop(2);
} else if (_root.layout == 3) {
this.gotoAndStop(3);
} else if (_root.layout == 4) {
this.gotoAndStop(4);
} else if (_root.layout == 5) {
this.gotoAndStop(5);
} else if (_root.layout == 6) {
this.gotoAndStop(6);
} else if (_root.layout == 7) {
this.gotoAndStop(7);
} else if (_root.layout == 8) {
this.gotoAndStop(8);
} else if (_root.layout == 9) {
this.gotoAndStop(9);
} else if (_root.layout == 10) {
this.gotoAndStop(10);
} else if (_root.layout == 11) {
this.gotoAndStop(11);
} else if (_root.layout == 12) {
this.gotoAndStop(12);
} else if (_root.layout == 13) {
this.gotoAndStop(13);
} else if (_root.layout == 14) {
this.gotoAndStop(14);
} else if (_root.layout == 15) {
this.gotoAndStop(15);
}
}
onClipEvent (enterFrame) {
this._x = Xpos + (0 * (_root.camera._x - 375));
}
Instance of Symbol 1933 MovieClip "player2" in Frame 14
onClipEvent (load) {
this.gotoAndStop(_root.player2char);
}
onClipEvent (enterFrame) {
this._y = 475;
}
Instance of Symbol 1934 MovieClip "player1" in Frame 14
onClipEvent (load) {
this.gotoAndStop(_root.player1char);
}
onClipEvent (enterFrame) {
this._y = 475;
}
Instance of Symbol 1937 MovieClip in Frame 14
onClipEvent (enterFrame) {
this._x = _root.side1._x;
this._y = _root.side1._y - 217.5;
if (_root.health1._currentframe < _root.health2._currentframe) {
this.gotoAndStop(1);
this._xscale = -100;
}
if (_root.health1._currentframe > _root.health2._currentframe) {
this.gotoAndStop(1);
this._xscale = 100;
}
if (_root.health1._currentframe == _root.health2._currentframe) {
this.gotoAndStop(2);
this._xscale = 100;
}
}
Instance of Symbol 1942 MovieClip "health1" in Frame 14
onClipEvent (enterFrame) {
this.gotoAndStop(_root.life1.text);
this._x = _root.side1._x - 325;
this._y = _root.side1._y - 230;
}
Instance of Symbol 1942 MovieClip "health2" in Frame 14
onClipEvent (enterFrame) {
this.gotoAndStop(_root.life2.text);
this._x = _root.side1._x + 325;
this._y = _root.side1._y - 230;
}
Instance of Symbol 1956 MovieClip in Frame 14
onClipEvent (load) {
this.gotoAndStop(_root.player1char);
}
onClipEvent (enterFrame) {
this._x = _root.side1._x - 95;
this._y = _root.side1._y - 195;
}
Instance of Symbol 1956 MovieClip in Frame 14
onClipEvent (load) {
this.gotoAndStop(_root.player2char);
}
onClipEvent (enterFrame) {
this._x = _root.side1._x + 40;
this._y = _root.side1._y - 195;
}
Instance of Symbol 1957 MovieClip "side1" in Frame 14
onClipEvent (enterFrame) {
this._x = _root.camera._x;
}
Instance of Symbol 1957 MovieClip "side2" in Frame 14
onClipEvent (enterFrame) {
this._x = _root.camera._x;
}
Instance of Symbol 1959 MovieClip "camera" in Frame 14
onClipEvent (enterFrame) {
if ((!_root.player2.hitTest(_root.side1)) || (!_root.player2.hitTest(_root.side2))) {
if ((!_root.player1.hitTest(_root.side1)) || (!_root.player1.hitTest(_root.side2))) {
if (this._x > 225) {
if (((_root.player1._x + _root.player1.char._x) < (this._x - 250)) || ((_root.player2._x + _root.player2.char._x) < (this._x - 250))) {
this._x = this._x - 5;
}
}
}
}
if ((!_root.player2.hitTest(_root.side1)) || (!_root.player2.hitTest(_root.side2))) {
if ((!_root.player1.hitTest(_root.side1)) || (!_root.player1.hitTest(_root.side2))) {
if (this._x < 525) {
if (((_root.player1._x + _root.player1.char._x) > (this._x + 250)) || ((_root.player2._x + _root.player2.char._x) > (this._x + 250))) {
this._x = this._x + 5;
}
}
}
}
}
Instance of Symbol 1970 MovieClip "ready" in Frame 14
onClipEvent (enterFrame) {
if (_root.blackin._currentframe == 20) {
this.play();
}
}
Instance of Symbol 1998 MovieClip "ko" in Frame 14
onClipEvent (enterFrame) {
this._x = _root.camera._x - 73.2;
this._y = _root.camera._y - 39;
}
Instance of Symbol 448 MovieClip "blackout" in Frame 14
onClipEvent (load) {
gotoAndStop (10);
}
onClipEvent (enterFrame) {
this._x = _root.camera._x - 375;
}
Instance of Symbol 2013 MovieClip "blacklose" in Frame 14
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
this._x = _root.camera._x - 375;
}
Instance of Symbol 2023 MovieClip "pausee" in Frame 14
onClipEvent (enterFrame) {
if ((_root.ready._currentframe == 72) && (_root.gameover == false)) {
if (this._currentframe == 1) {
if (Key.isDown(32) || (Key.isDown(13))) {
_root.stop();
this.play();
_root.gameplay = false;
}
}
}
this._x = _root.camera._x - 375;
}
Frame 15
stop();
onEnterFrame = function () {
if (!Key.isDown(32)) {
_root.allow = true;
} else if (Key.isDown(32) && (_root.allow == true)) {
this.cutscene.play();
_root.allow = false;
}
};
_root.layout = 6;
_root.player2char = 6;
_root.volumelol = 100;
Instance of Symbol 301 MovieClip in Frame 15
onClipEvent (load) {
Xpos = this._x;
this.gotoAndStop(_root.layout);
}
onClipEvent (enterFrame) {
this._x = Xpos + (0.3 * (_root.camera._x - 375));
}
Instance of Symbol 267 MovieClip in Frame 15
onClipEvent (load) {
Xpos = this._x;
if (_root.layout == 1) {
this.gotoAndStop(1);
} else if (_root.layout == 2) {
this.gotoAndStop(2);
} else if (_root.layout == 3) {
this.gotoAndStop(3);
} else if (_root.layout == 4) {
this.gotoAndStop(4);
} else if (_root.layout == 5) {
this.gotoAndStop(5);
} else if (_root.layout == 6) {
this.gotoAndStop(6);
} else if (_root.layout == 7) {
this.gotoAndStop(7);
} else if (_root.layout == 8) {
this.gotoAndStop(8);
} else if (_root.layout == 9) {
this.gotoAndStop(9);
} else if (_root.layout == 10) {
this.gotoAndStop(10);
} else if (_root.layout == 11) {
this.gotoAndStop(11);
} else if (_root.layout == 12) {
this.gotoAndStop(12);
} else if (_root.layout == 13) {
this.gotoAndStop(13);
} else if (_root.layout == 14) {
this.gotoAndStop(14);
} else if (_root.layout == 15) {
this.gotoAndStop(15);
}
}
onClipEvent (enterFrame) {
this._x = Xpos + (0.2 * (_root.camera._x - 375));
}
Instance of Symbol 277 MovieClip in Frame 15
onClipEvent (load) {
Xpos = this._x;
this.gotoAndStop(_root.layout);
}
onClipEvent (enterFrame) {
this._x = Xpos + (0.1 * (_root.camera._x - 375));
}
Instance of Symbol 249 MovieClip "ground" in Frame 15
onClipEvent (load) {
Xpos = this._x;
if (_root.layout == 1) {
this.gotoAndStop(1);
} else if (_root.layout == 2) {
this.gotoAndStop(2);
} else if (_root.layout == 3) {
this.gotoAndStop(3);
} else if (_root.layout == 4) {
this.gotoAndStop(4);
} else if (_root.layout == 5) {
this.gotoAndStop(5);
} else if (_root.layout == 6) {
this.gotoAndStop(6);
} else if (_root.layout == 7) {
this.gotoAndStop(7);
} else if (_root.layout == 8) {
this.gotoAndStop(8);
} else if (_root.layout == 9) {
this.gotoAndStop(9);
} else if (_root.layout == 10) {
this.gotoAndStop(10);
} else if (_root.layout == 11) {
this.gotoAndStop(11);
} else if (_root.layout == 12) {
this.gotoAndStop(12);
} else if (_root.layout == 13) {
this.gotoAndStop(13);
} else if (_root.layout == 14) {
this.gotoAndStop(14);
} else if (_root.layout == 15) {
this.gotoAndStop(15);
}
}
onClipEvent (enterFrame) {
this._x = Xpos + (0 * (_root.camera._x - 375));
}
Instance of Symbol 517 MovieClip in Frame 15
onClipEvent (load) {
if (_root.layout == 1) {
this.gotoAndStop(2);
} else if (_root.layout == 2) {
this.gotoAndStop(3);
} else if (_root.layout == 3) {
this.gotoAndStop(4);
} else if (_root.layout == 4) {
this.gotoAndStop(5);
} else if (_root.layout == 5) {
this.gotoAndStop(6);
} else if (_root.layout == 6) {
this.gotoAndStop(7);
} else if (_root.layout == 7) {
this.gotoAndStop(8);
} else if (_root.layout == 8) {
this.gotoAndStop(9);
} else if (_root.layout == 9) {
this.gotoAndStop(10);
} else if (_root.layout == 10) {
this.gotoAndStop(11);
} else if (_root.layout == 11) {
this.gotoAndStop(12);
} else if (_root.layout == 12) {
this.gotoAndStop(13);
} else if (_root.layout == 13) {
this.gotoAndStop(14);
} else if (_root.layout == 14) {
this.gotoAndStop(15);
} else if (_root.layout == 15) {
this.gotoAndStop(16);
}
}
Frame 16
timer2 = 0;
_root.playerwon = false;
_root.gameplay = false;
_root.life1.text = 150;
_root.life2.text = 150;
_root.gameover = false;
_root.health1away.text = 0;
_root.health2away.text = 0;
_root.volumelol = 100;
_root.dyingani = false;
stop();
onEnterFrame = function () {
if (timer2 < 100) {
_root.volumelol = 100 - timer2;
} else {
_root.volumelol = 0;
}
if (_root.gameover == true) {
timer2++;
}
if (timer2 == 10) {
_root.ko.play();
}
if (timer2 > 80) {
if (_root.life1.text <= 0) {
_root.blacklose.play();
_root.blackout.gotoAndStop(1);
} else {
_root.blackout.play();
_root.blacklose.gotoAndStop(1);
}
} else {
_root.blackout.gotoAndStop(1);
_root.blacklose.gotoAndStop(1);
}
if (_root.health1away.text > 0) {
health1away.text--;
_root.life1.text--;
}
if (_root.health1away.text <= 0) {
health1away.text = 0;
}
if (_root.health2away.text > 0) {
health2away.text--;
_root.life2.text--;
}
if (_root.health2away.text <= 0) {
health2away.text = 0;
}
if (_root.life1.text <= 0) {
_root.gameover = true;
}
if (_root.life2.text <= 0) {
_root.gameover = true;
}
};
Instance of Symbol 321 MovieClip in Frame 16
onClipEvent (load) {
this._x = random(300) + 1000;
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
onClipEvent (enterFrame) {
this._x = this._x - speed;
if (this._x < -500) {
this._x = random(300) + 1000;
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
}
Instance of Symbol 321 MovieClip in Frame 16
onClipEvent (load) {
this._x = random(300) + 1000;
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
onClipEvent (enterFrame) {
this._x = this._x - speed;
if (this._x < -500) {
this._x = random(300) + 1000;
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
}
Instance of Symbol 321 MovieClip in Frame 16
onClipEvent (load) {
this._x = random(300) + 1000;
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
onClipEvent (enterFrame) {
this._x = this._x - speed;
if (this._x < -500) {
this._x = random(300) + 1000;
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
}
Instance of Symbol 321 MovieClip in Frame 16
onClipEvent (load) {
this._x = random(300) + 1000;
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
onClipEvent (enterFrame) {
this._x = this._x - speed;
if (this._x < -500) {
this._x = random(300) + 1000;
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
}
Instance of Symbol 321 MovieClip in Frame 16
onClipEvent (load) {
this._x = random(300) + 1000;
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
onClipEvent (enterFrame) {
this._x = this._x - speed;
if (this._x < -500) {
this._x = random(300) + 1000;
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
}
Instance of Symbol 321 MovieClip in Frame 16
onClipEvent (load) {
this._x = random(750);
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
onClipEvent (enterFrame) {
this._x = this._x - speed;
if (this._x < -500) {
this._x = random(300) + 1000;
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
}
Instance of Symbol 321 MovieClip in Frame 16
onClipEvent (load) {
this._x = random(750);
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
onClipEvent (enterFrame) {
this._x = this._x - speed;
if (this._x < -500) {
this._x = random(300) + 1000;
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
}
Instance of Symbol 321 MovieClip in Frame 16
onClipEvent (load) {
this._x = random(750);
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
onClipEvent (enterFrame) {
this._x = this._x - speed;
if (this._x < -500) {
this._x = random(300) + 1000;
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
}
Instance of Symbol 321 MovieClip in Frame 16
onClipEvent (load) {
this._x = random(750);
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
onClipEvent (enterFrame) {
this._x = this._x - speed;
if (this._x < -500) {
this._x = random(300) + 1000;
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
}
Instance of Symbol 301 MovieClip in Frame 16
onClipEvent (load) {
Xpos = this._x;
this.gotoAndStop(_root.layout);
}
onClipEvent (enterFrame) {
this._x = Xpos + (0.3 * (_root.camera._x - 375));
}
Instance of Symbol 267 MovieClip in Frame 16
onClipEvent (load) {
Xpos = this._x;
if (_root.layout == 1) {
this.gotoAndStop(1);
} else if (_root.layout == 2) {
this.gotoAndStop(2);
} else if (_root.layout == 3) {
this.gotoAndStop(3);
} else if (_root.layout == 4) {
this.gotoAndStop(4);
} else if (_root.layout == 5) {
this.gotoAndStop(5);
} else if (_root.layout == 6) {
this.gotoAndStop(6);
} else if (_root.layout == 7) {
this.gotoAndStop(7);
} else if (_root.layout == 8) {
this.gotoAndStop(8);
} else if (_root.layout == 9) {
this.gotoAndStop(9);
} else if (_root.layout == 10) {
this.gotoAndStop(10);
} else if (_root.layout == 11) {
this.gotoAndStop(11);
} else if (_root.layout == 12) {
this.gotoAndStop(12);
} else if (_root.layout == 13) {
this.gotoAndStop(13);
} else if (_root.layout == 14) {
this.gotoAndStop(14);
} else if (_root.layout == 15) {
this.gotoAndStop(15);
}
}
onClipEvent (enterFrame) {
this._x = Xpos + (0.2 * (_root.camera._x - 375));
}
Instance of Symbol 277 MovieClip in Frame 16
onClipEvent (load) {
Xpos = this._x;
this.gotoAndStop(_root.layout);
}
onClipEvent (enterFrame) {
this._x = Xpos + (0.1 * (_root.camera._x - 375));
}
Instance of Symbol 249 MovieClip "ground" in Frame 16
onClipEvent (load) {
Xpos = this._x;
if (_root.layout == 1) {
this.gotoAndStop(1);
} else if (_root.layout == 2) {
this.gotoAndStop(2);
} else if (_root.layout == 3) {
this.gotoAndStop(3);
} else if (_root.layout == 4) {
this.gotoAndStop(4);
} else if (_root.layout == 5) {
this.gotoAndStop(5);
} else if (_root.layout == 6) {
this.gotoAndStop(6);
} else if (_root.layout == 7) {
this.gotoAndStop(7);
} else if (_root.layout == 8) {
this.gotoAndStop(8);
} else if (_root.layout == 9) {
this.gotoAndStop(9);
} else if (_root.layout == 10) {
this.gotoAndStop(10);
} else if (_root.layout == 11) {
this.gotoAndStop(11);
} else if (_root.layout == 12) {
this.gotoAndStop(12);
} else if (_root.layout == 13) {
this.gotoAndStop(13);
} else if (_root.layout == 14) {
this.gotoAndStop(14);
} else if (_root.layout == 15) {
this.gotoAndStop(15);
}
}
onClipEvent (enterFrame) {
this._x = Xpos + (0 * (_root.camera._x - 375));
}
Instance of Symbol 1933 MovieClip "player2" in Frame 16
onClipEvent (load) {
this.gotoAndStop(_root.player2char);
}
onClipEvent (enterFrame) {
this._y = 475;
}
Instance of Symbol 1934 MovieClip "player1" in Frame 16
onClipEvent (load) {
this.gotoAndStop(_root.player1char);
}
onClipEvent (enterFrame) {
this._y = 475;
}
Instance of Symbol 1937 MovieClip in Frame 16
onClipEvent (enterFrame) {
this._x = _root.side1._x;
this._y = _root.side1._y - 217.5;
if (_root.health1._currentframe < _root.health2._currentframe) {
this.gotoAndStop(1);
this._xscale = -100;
}
if (_root.health1._currentframe > _root.health2._currentframe) {
this.gotoAndStop(1);
this._xscale = 100;
}
if (_root.health1._currentframe == _root.health2._currentframe) {
this.gotoAndStop(2);
this._xscale = 100;
}
}
Instance of Symbol 1942 MovieClip "health1" in Frame 16
onClipEvent (enterFrame) {
this.gotoAndStop(_root.life1.text);
this._x = _root.side1._x - 325;
this._y = _root.side1._y - 230;
}
Instance of Symbol 1942 MovieClip "health2" in Frame 16
onClipEvent (enterFrame) {
this.gotoAndStop(_root.life2.text);
this._x = _root.side1._x + 325;
this._y = _root.side1._y - 230;
}
Instance of Symbol 1956 MovieClip in Frame 16
onClipEvent (load) {
this.gotoAndStop(_root.player1char);
}
onClipEvent (enterFrame) {
this._x = _root.side1._x - 95;
this._y = _root.side1._y - 195;
}
Instance of Symbol 1956 MovieClip in Frame 16
onClipEvent (load) {
this.gotoAndStop(_root.player2char);
}
onClipEvent (enterFrame) {
this._x = _root.side1._x + 40;
this._y = _root.side1._y - 195;
}
Instance of Symbol 1957 MovieClip "side1" in Frame 16
onClipEvent (enterFrame) {
this._x = _root.camera._x;
}
Instance of Symbol 1957 MovieClip "side2" in Frame 16
onClipEvent (enterFrame) {
this._x = _root.camera._x;
}
Instance of Symbol 1959 MovieClip "camera" in Frame 16
onClipEvent (enterFrame) {
if ((!_root.player2.hitTest(_root.side1)) || (!_root.player2.hitTest(_root.side2))) {
if ((!_root.player1.hitTest(_root.side1)) || (!_root.player1.hitTest(_root.side2))) {
if (this._x > 225) {
if (((_root.player1._x + _root.player1.char._x) < (this._x - 250)) || ((_root.player2._x + _root.player2.char._x) < (this._x - 250))) {
this._x = this._x - 5;
}
}
}
}
if ((!_root.player2.hitTest(_root.side1)) || (!_root.player2.hitTest(_root.side2))) {
if ((!_root.player1.hitTest(_root.side1)) || (!_root.player1.hitTest(_root.side2))) {
if (this._x < 525) {
if (((_root.player1._x + _root.player1.char._x) > (this._x + 250)) || ((_root.player2._x + _root.player2.char._x) > (this._x + 250))) {
this._x = this._x + 5;
}
}
}
}
}
Instance of Symbol 1970 MovieClip "ready" in Frame 16
onClipEvent (enterFrame) {
if (_root.blackin._currentframe == 20) {
this.play();
}
}
Instance of Symbol 1998 MovieClip "ko" in Frame 16
onClipEvent (enterFrame) {
this._x = _root.camera._x - 73.2;
this._y = _root.camera._y - 39;
}
Instance of Symbol 448 MovieClip "blackout" in Frame 16
onClipEvent (load) {
gotoAndStop (10);
}
onClipEvent (enterFrame) {
this._x = _root.camera._x - 375;
}
Instance of Symbol 2013 MovieClip "blacklose" in Frame 16
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
this._x = _root.camera._x - 375;
}
Instance of Symbol 2023 MovieClip "pausee" in Frame 16
onClipEvent (enterFrame) {
if ((_root.ready._currentframe == 72) && (_root.gameover == false)) {
if (this._currentframe == 1) {
if (Key.isDown(32) || (Key.isDown(13))) {
_root.stop();
this.play();
_root.gameplay = false;
}
}
}
this._x = _root.camera._x - 375;
}
Frame 17
stop();
onEnterFrame = function () {
if (!Key.isDown(32)) {
_root.allow = true;
} else if (Key.isDown(32) && (_root.allow == true)) {
this.cutscene.play();
_root.allow = false;
}
};
_root.layout = 7;
_root.player2char = 7;
_root.volumelol = 100;
Instance of Symbol 301 MovieClip in Frame 17
onClipEvent (load) {
Xpos = this._x;
this.gotoAndStop(_root.layout);
}
onClipEvent (enterFrame) {
this._x = Xpos + (0.3 * (_root.camera._x - 375));
}
Instance of Symbol 267 MovieClip in Frame 17
onClipEvent (load) {
Xpos = this._x;
if (_root.layout == 1) {
this.gotoAndStop(1);
} else if (_root.layout == 2) {
this.gotoAndStop(2);
} else if (_root.layout == 3) {
this.gotoAndStop(3);
} else if (_root.layout == 4) {
this.gotoAndStop(4);
} else if (_root.layout == 5) {
this.gotoAndStop(5);
} else if (_root.layout == 6) {
this.gotoAndStop(6);
} else if (_root.layout == 7) {
this.gotoAndStop(7);
} else if (_root.layout == 8) {
this.gotoAndStop(8);
} else if (_root.layout == 9) {
this.gotoAndStop(9);
} else if (_root.layout == 10) {
this.gotoAndStop(10);
} else if (_root.layout == 11) {
this.gotoAndStop(11);
} else if (_root.layout == 12) {
this.gotoAndStop(12);
} else if (_root.layout == 13) {
this.gotoAndStop(13);
} else if (_root.layout == 14) {
this.gotoAndStop(14);
} else if (_root.layout == 15) {
this.gotoAndStop(15);
}
}
onClipEvent (enterFrame) {
this._x = Xpos + (0.2 * (_root.camera._x - 375));
}
Instance of Symbol 277 MovieClip in Frame 17
onClipEvent (load) {
Xpos = this._x;
this.gotoAndStop(_root.layout);
}
onClipEvent (enterFrame) {
this._x = Xpos + (0.1 * (_root.camera._x - 375));
}
Instance of Symbol 249 MovieClip "ground" in Frame 17
onClipEvent (load) {
Xpos = this._x;
if (_root.layout == 1) {
this.gotoAndStop(1);
} else if (_root.layout == 2) {
this.gotoAndStop(2);
} else if (_root.layout == 3) {
this.gotoAndStop(3);
} else if (_root.layout == 4) {
this.gotoAndStop(4);
} else if (_root.layout == 5) {
this.gotoAndStop(5);
} else if (_root.layout == 6) {
this.gotoAndStop(6);
} else if (_root.layout == 7) {
this.gotoAndStop(7);
} else if (_root.layout == 8) {
this.gotoAndStop(8);
} else if (_root.layout == 9) {
this.gotoAndStop(9);
} else if (_root.layout == 10) {
this.gotoAndStop(10);
} else if (_root.layout == 11) {
this.gotoAndStop(11);
} else if (_root.layout == 12) {
this.gotoAndStop(12);
} else if (_root.layout == 13) {
this.gotoAndStop(13);
} else if (_root.layout == 14) {
this.gotoAndStop(14);
} else if (_root.layout == 15) {
this.gotoAndStop(15);
}
}
onClipEvent (enterFrame) {
this._x = Xpos + (0 * (_root.camera._x - 375));
}
Instance of Symbol 517 MovieClip in Frame 17
onClipEvent (load) {
if (_root.layout == 1) {
this.gotoAndStop(2);
} else if (_root.layout == 2) {
this.gotoAndStop(3);
} else if (_root.layout == 3) {
this.gotoAndStop(4);
} else if (_root.layout == 4) {
this.gotoAndStop(5);
} else if (_root.layout == 5) {
this.gotoAndStop(6);
} else if (_root.layout == 6) {
this.gotoAndStop(7);
} else if (_root.layout == 7) {
this.gotoAndStop(8);
} else if (_root.layout == 8) {
this.gotoAndStop(9);
} else if (_root.layout == 9) {
this.gotoAndStop(10);
} else if (_root.layout == 10) {
this.gotoAndStop(11);
} else if (_root.layout == 11) {
this.gotoAndStop(12);
} else if (_root.layout == 12) {
this.gotoAndStop(13);
} else if (_root.layout == 13) {
this.gotoAndStop(14);
} else if (_root.layout == 14) {
this.gotoAndStop(15);
} else if (_root.layout == 15) {
this.gotoAndStop(16);
}
}
Frame 18
timer2 = 0;
_root.playerwon = false;
_root.gameplay = false;
_root.life1.text = 150;
_root.life2.text = 150;
_root.gameover = false;
_root.health1away.text = 0;
_root.health2away.text = 0;
_root.volumelol = 100;
_root.dyingani = false;
stop();
onEnterFrame = function () {
if (timer2 < 100) {
_root.volumelol = 100 - timer2;
} else {
_root.volumelol = 0;
}
if (_root.gameover == true) {
timer2++;
}
if (timer2 == 10) {
_root.ko.play();
}
if (timer2 > 80) {
if (_root.life1.text <= 0) {
_root.blacklose.play();
_root.blackout.gotoAndStop(1);
} else {
_root.blackout.play();
_root.blacklose.gotoAndStop(1);
}
} else {
_root.blackout.gotoAndStop(1);
_root.blacklose.gotoAndStop(1);
}
if (_root.health1away.text > 0) {
health1away.text--;
_root.life1.text--;
}
if (_root.health1away.text <= 0) {
health1away.text = 0;
}
if (_root.health2away.text > 0) {
health2away.text--;
_root.life2.text--;
}
if (_root.health2away.text <= 0) {
health2away.text = 0;
}
if (_root.life1.text <= 0) {
_root.gameover = true;
}
if (_root.life2.text <= 0) {
_root.gameover = true;
}
};
Instance of Symbol 321 MovieClip in Frame 18
onClipEvent (load) {
this._x = random(300) + 1000;
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
onClipEvent (enterFrame) {
this._x = this._x - speed;
if (this._x < -500) {
this._x = random(300) + 1000;
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
}
Instance of Symbol 321 MovieClip in Frame 18
onClipEvent (load) {
this._x = random(300) + 1000;
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
onClipEvent (enterFrame) {
this._x = this._x - speed;
if (this._x < -500) {
this._x = random(300) + 1000;
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
}
Instance of Symbol 321 MovieClip in Frame 18
onClipEvent (load) {
this._x = random(300) + 1000;
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
onClipEvent (enterFrame) {
this._x = this._x - speed;
if (this._x < -500) {
this._x = random(300) + 1000;
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
}
Instance of Symbol 321 MovieClip in Frame 18
onClipEvent (load) {
this._x = random(300) + 1000;
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
onClipEvent (enterFrame) {
this._x = this._x - speed;
if (this._x < -500) {
this._x = random(300) + 1000;
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
}
Instance of Symbol 321 MovieClip in Frame 18
onClipEvent (load) {
this._x = random(300) + 1000;
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
onClipEvent (enterFrame) {
this._x = this._x - speed;
if (this._x < -500) {
this._x = random(300) + 1000;
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
}
Instance of Symbol 321 MovieClip in Frame 18
onClipEvent (load) {
this._x = random(750);
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
onClipEvent (enterFrame) {
this._x = this._x - speed;
if (this._x < -500) {
this._x = random(300) + 1000;
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
}
Instance of Symbol 321 MovieClip in Frame 18
onClipEvent (load) {
this._x = random(750);
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
onClipEvent (enterFrame) {
this._x = this._x - speed;
if (this._x < -500) {
this._x = random(300) + 1000;
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
}
Instance of Symbol 321 MovieClip in Frame 18
onClipEvent (load) {
this._x = random(750);
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
onClipEvent (enterFrame) {
this._x = this._x - speed;
if (this._x < -500) {
this._x = random(300) + 1000;
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
}
Instance of Symbol 321 MovieClip in Frame 18
onClipEvent (load) {
this._x = random(750);
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
onClipEvent (enterFrame) {
this._x = this._x - speed;
if (this._x < -500) {
this._x = random(300) + 1000;
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
}
Instance of Symbol 301 MovieClip in Frame 18
onClipEvent (load) {
Xpos = this._x;
this.gotoAndStop(_root.layout);
}
onClipEvent (enterFrame) {
this._x = Xpos + (0.3 * (_root.camera._x - 375));
}
Instance of Symbol 267 MovieClip in Frame 18
onClipEvent (load) {
Xpos = this._x;
if (_root.layout == 1) {
this.gotoAndStop(1);
} else if (_root.layout == 2) {
this.gotoAndStop(2);
} else if (_root.layout == 3) {
this.gotoAndStop(3);
} else if (_root.layout == 4) {
this.gotoAndStop(4);
} else if (_root.layout == 5) {
this.gotoAndStop(5);
} else if (_root.layout == 6) {
this.gotoAndStop(6);
} else if (_root.layout == 7) {
this.gotoAndStop(7);
} else if (_root.layout == 8) {
this.gotoAndStop(8);
} else if (_root.layout == 9) {
this.gotoAndStop(9);
} else if (_root.layout == 10) {
this.gotoAndStop(10);
} else if (_root.layout == 11) {
this.gotoAndStop(11);
} else if (_root.layout == 12) {
this.gotoAndStop(12);
} else if (_root.layout == 13) {
this.gotoAndStop(13);
} else if (_root.layout == 14) {
this.gotoAndStop(14);
} else if (_root.layout == 15) {
this.gotoAndStop(15);
}
}
onClipEvent (enterFrame) {
this._x = Xpos + (0.2 * (_root.camera._x - 375));
}
Instance of Symbol 277 MovieClip in Frame 18
onClipEvent (load) {
Xpos = this._x;
this.gotoAndStop(_root.layout);
}
onClipEvent (enterFrame) {
this._x = Xpos + (0.1 * (_root.camera._x - 375));
}
Instance of Symbol 249 MovieClip "ground" in Frame 18
onClipEvent (load) {
Xpos = this._x;
if (_root.layout == 1) {
this.gotoAndStop(1);
} else if (_root.layout == 2) {
this.gotoAndStop(2);
} else if (_root.layout == 3) {
this.gotoAndStop(3);
} else if (_root.layout == 4) {
this.gotoAndStop(4);
} else if (_root.layout == 5) {
this.gotoAndStop(5);
} else if (_root.layout == 6) {
this.gotoAndStop(6);
} else if (_root.layout == 7) {
this.gotoAndStop(7);
} else if (_root.layout == 8) {
this.gotoAndStop(8);
} else if (_root.layout == 9) {
this.gotoAndStop(9);
} else if (_root.layout == 10) {
this.gotoAndStop(10);
} else if (_root.layout == 11) {
this.gotoAndStop(11);
} else if (_root.layout == 12) {
this.gotoAndStop(12);
} else if (_root.layout == 13) {
this.gotoAndStop(13);
} else if (_root.layout == 14) {
this.gotoAndStop(14);
} else if (_root.layout == 15) {
this.gotoAndStop(15);
}
}
onClipEvent (enterFrame) {
this._x = Xpos + (0 * (_root.camera._x - 375));
}
Instance of Symbol 1933 MovieClip "player2" in Frame 18
onClipEvent (load) {
this.gotoAndStop(_root.player2char);
}
onClipEvent (enterFrame) {
this._y = 475;
}
Instance of Symbol 1934 MovieClip "player1" in Frame 18
onClipEvent (load) {
this.gotoAndStop(_root.player1char);
}
onClipEvent (enterFrame) {
this._y = 475;
}
Instance of Symbol 1937 MovieClip in Frame 18
onClipEvent (enterFrame) {
this._x = _root.side1._x;
this._y = _root.side1._y - 217.5;
if (_root.health1._currentframe < _root.health2._currentframe) {
this.gotoAndStop(1);
this._xscale = -100;
}
if (_root.health1._currentframe > _root.health2._currentframe) {
this.gotoAndStop(1);
this._xscale = 100;
}
if (_root.health1._currentframe == _root.health2._currentframe) {
this.gotoAndStop(2);
this._xscale = 100;
}
}
Instance of Symbol 1942 MovieClip "health1" in Frame 18
onClipEvent (enterFrame) {
this.gotoAndStop(_root.life1.text);
this._x = _root.side1._x - 325;
this._y = _root.side1._y - 230;
}
Instance of Symbol 1942 MovieClip "health2" in Frame 18
onClipEvent (enterFrame) {
this.gotoAndStop(_root.life2.text);
this._x = _root.side1._x + 325;
this._y = _root.side1._y - 230;
}
Instance of Symbol 1956 MovieClip in Frame 18
onClipEvent (load) {
this.gotoAndStop(_root.player1char);
}
onClipEvent (enterFrame) {
this._x = _root.side1._x - 95;
this._y = _root.side1._y - 195;
}
Instance of Symbol 1956 MovieClip in Frame 18
onClipEvent (load) {
this.gotoAndStop(_root.player2char);
}
onClipEvent (enterFrame) {
this._x = _root.side1._x + 40;
this._y = _root.side1._y - 195;
}
Instance of Symbol 1957 MovieClip "side1" in Frame 18
onClipEvent (enterFrame) {
this._x = _root.camera._x;
}
Instance of Symbol 1957 MovieClip "side2" in Frame 18
onClipEvent (enterFrame) {
this._x = _root.camera._x;
}
Instance of Symbol 1959 MovieClip "camera" in Frame 18
onClipEvent (enterFrame) {
if ((!_root.player2.hitTest(_root.side1)) || (!_root.player2.hitTest(_root.side2))) {
if ((!_root.player1.hitTest(_root.side1)) || (!_root.player1.hitTest(_root.side2))) {
if (this._x > 225) {
if (((_root.player1._x + _root.player1.char._x) < (this._x - 250)) || ((_root.player2._x + _root.player2.char._x) < (this._x - 250))) {
this._x = this._x - 5;
}
}
}
}
if ((!_root.player2.hitTest(_root.side1)) || (!_root.player2.hitTest(_root.side2))) {
if ((!_root.player1.hitTest(_root.side1)) || (!_root.player1.hitTest(_root.side2))) {
if (this._x < 525) {
if (((_root.player1._x + _root.player1.char._x) > (this._x + 250)) || ((_root.player2._x + _root.player2.char._x) > (this._x + 250))) {
this._x = this._x + 5;
}
}
}
}
}
Instance of Symbol 1970 MovieClip "ready" in Frame 18
onClipEvent (enterFrame) {
if (_root.blackin._currentframe == 20) {
this.play();
}
}
Instance of Symbol 1998 MovieClip "ko" in Frame 18
onClipEvent (enterFrame) {
this._x = _root.camera._x - 73.2;
this._y = _root.camera._y - 39;
}
Instance of Symbol 448 MovieClip "blackout" in Frame 18
onClipEvent (load) {
gotoAndStop (10);
}
onClipEvent (enterFrame) {
this._x = _root.camera._x - 375;
}
Instance of Symbol 2013 MovieClip "blacklose" in Frame 18
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
this._x = _root.camera._x - 375;
}
Instance of Symbol 2023 MovieClip "pausee" in Frame 18
onClipEvent (enterFrame) {
if ((_root.ready._currentframe == 72) && (_root.gameover == false)) {
if (this._currentframe == 1) {
if (Key.isDown(32) || (Key.isDown(13))) {
_root.stop();
this.play();
_root.gameplay = false;
}
}
}
this._x = _root.camera._x - 375;
}
Frame 19
stop();
onEnterFrame = function () {
if (!Key.isDown(32)) {
_root.allow = true;
} else if (Key.isDown(32) && (_root.allow == true)) {
this.cutscene.play();
_root.allow = false;
}
};
_root.layout = 9;
_root.player2char = 9;
_root.volumelol = 100;
Instance of Symbol 301 MovieClip in Frame 19
onClipEvent (load) {
Xpos = this._x;
this.gotoAndStop(_root.layout);
}
onClipEvent (enterFrame) {
this._x = Xpos + (0.3 * (_root.camera._x - 375));
}
Instance of Symbol 267 MovieClip in Frame 19
onClipEvent (load) {
Xpos = this._x;
if (_root.layout == 1) {
this.gotoAndStop(1);
} else if (_root.layout == 2) {
this.gotoAndStop(2);
} else if (_root.layout == 3) {
this.gotoAndStop(3);
} else if (_root.layout == 4) {
this.gotoAndStop(4);
} else if (_root.layout == 5) {
this.gotoAndStop(5);
} else if (_root.layout == 6) {
this.gotoAndStop(6);
} else if (_root.layout == 7) {
this.gotoAndStop(7);
} else if (_root.layout == 8) {
this.gotoAndStop(8);
} else if (_root.layout == 9) {
this.gotoAndStop(9);
} else if (_root.layout == 10) {
this.gotoAndStop(10);
} else if (_root.layout == 11) {
this.gotoAndStop(11);
} else if (_root.layout == 12) {
this.gotoAndStop(12);
} else if (_root.layout == 13) {
this.gotoAndStop(13);
} else if (_root.layout == 14) {
this.gotoAndStop(14);
} else if (_root.layout == 15) {
this.gotoAndStop(15);
}
}
onClipEvent (enterFrame) {
this._x = Xpos + (0.2 * (_root.camera._x - 375));
}
Instance of Symbol 277 MovieClip in Frame 19
onClipEvent (load) {
Xpos = this._x;
this.gotoAndStop(_root.layout);
}
onClipEvent (enterFrame) {
this._x = Xpos + (0.1 * (_root.camera._x - 375));
}
Instance of Symbol 249 MovieClip "ground" in Frame 19
onClipEvent (load) {
Xpos = this._x;
if (_root.layout == 1) {
this.gotoAndStop(1);
} else if (_root.layout == 2) {
this.gotoAndStop(2);
} else if (_root.layout == 3) {
this.gotoAndStop(3);
} else if (_root.layout == 4) {
this.gotoAndStop(4);
} else if (_root.layout == 5) {
this.gotoAndStop(5);
} else if (_root.layout == 6) {
this.gotoAndStop(6);
} else if (_root.layout == 7) {
this.gotoAndStop(7);
} else if (_root.layout == 8) {
this.gotoAndStop(8);
} else if (_root.layout == 9) {
this.gotoAndStop(9);
} else if (_root.layout == 10) {
this.gotoAndStop(10);
} else if (_root.layout == 11) {
this.gotoAndStop(11);
} else if (_root.layout == 12) {
this.gotoAndStop(12);
} else if (_root.layout == 13) {
this.gotoAndStop(13);
} else if (_root.layout == 14) {
this.gotoAndStop(14);
} else if (_root.layout == 15) {
this.gotoAndStop(15);
}
}
onClipEvent (enterFrame) {
this._x = Xpos + (0 * (_root.camera._x - 375));
}
Instance of Symbol 517 MovieClip in Frame 19
onClipEvent (load) {
if (_root.layout == 1) {
this.gotoAndStop(2);
} else if (_root.layout == 2) {
this.gotoAndStop(3);
} else if (_root.layout == 3) {
this.gotoAndStop(4);
} else if (_root.layout == 4) {
this.gotoAndStop(5);
} else if (_root.layout == 5) {
this.gotoAndStop(6);
} else if (_root.layout == 6) {
this.gotoAndStop(7);
} else if (_root.layout == 7) {
this.gotoAndStop(8);
} else if (_root.layout == 8) {
this.gotoAndStop(9);
} else if (_root.layout == 9) {
this.gotoAndStop(10);
} else if (_root.layout == 10) {
this.gotoAndStop(11);
} else if (_root.layout == 11) {
this.gotoAndStop(12);
} else if (_root.layout == 12) {
this.gotoAndStop(13);
} else if (_root.layout == 13) {
this.gotoAndStop(14);
} else if (_root.layout == 14) {
this.gotoAndStop(15);
} else if (_root.layout == 15) {
this.gotoAndStop(16);
}
}
Frame 20
timer2 = 0;
_root.playerwon = false;
_root.gameplay = false;
_root.life1.text = 150;
_root.life2.text = 150;
_root.gameover = false;
_root.health1away.text = 0;
_root.health2away.text = 0;
_root.volumelol = 100;
_root.dyingani = false;
stop();
onEnterFrame = function () {
if (timer2 < 100) {
_root.volumelol = 100 - timer2;
} else {
_root.volumelol = 0;
}
if (_root.gameover == true) {
timer2++;
}
if (timer2 == 10) {
_root.ko.play();
}
if (timer2 > 80) {
if (_root.life1.text <= 0) {
_root.blacklose.play();
_root.blackout.gotoAndStop(1);
} else {
_root.blackout.play();
_root.blacklose.gotoAndStop(1);
}
} else {
_root.blackout.gotoAndStop(1);
_root.blacklose.gotoAndStop(1);
}
if (_root.health1away.text > 0) {
health1away.text--;
_root.life1.text--;
}
if (_root.health1away.text <= 0) {
health1away.text = 0;
}
if (_root.health2away.text > 0) {
health2away.text--;
_root.life2.text--;
}
if (_root.health2away.text <= 0) {
health2away.text = 0;
}
if (_root.life1.text <= 0) {
_root.gameover = true;
}
if (_root.life2.text <= 0) {
_root.gameover = true;
}
};
Instance of Symbol 321 MovieClip in Frame 20
onClipEvent (load) {
this._x = random(300) + 1000;
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
onClipEvent (enterFrame) {
this._x = this._x - speed;
if (this._x < -500) {
this._x = random(300) + 1000;
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
}
Instance of Symbol 321 MovieClip in Frame 20
onClipEvent (load) {
this._x = random(300) + 1000;
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
onClipEvent (enterFrame) {
this._x = this._x - speed;
if (this._x < -500) {
this._x = random(300) + 1000;
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
}
Instance of Symbol 321 MovieClip in Frame 20
onClipEvent (load) {
this._x = random(300) + 1000;
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
onClipEvent (enterFrame) {
this._x = this._x - speed;
if (this._x < -500) {
this._x = random(300) + 1000;
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
}
Instance of Symbol 321 MovieClip in Frame 20
onClipEvent (load) {
this._x = random(300) + 1000;
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
onClipEvent (enterFrame) {
this._x = this._x - speed;
if (this._x < -500) {
this._x = random(300) + 1000;
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
}
Instance of Symbol 321 MovieClip in Frame 20
onClipEvent (load) {
this._x = random(300) + 1000;
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
onClipEvent (enterFrame) {
this._x = this._x - speed;
if (this._x < -500) {
this._x = random(300) + 1000;
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
}
Instance of Symbol 321 MovieClip in Frame 20
onClipEvent (load) {
this._x = random(750);
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
onClipEvent (enterFrame) {
this._x = this._x - speed;
if (this._x < -500) {
this._x = random(300) + 1000;
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
}
Instance of Symbol 321 MovieClip in Frame 20
onClipEvent (load) {
this._x = random(750);
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
onClipEvent (enterFrame) {
this._x = this._x - speed;
if (this._x < -500) {
this._x = random(300) + 1000;
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
}
Instance of Symbol 321 MovieClip in Frame 20
onClipEvent (load) {
this._x = random(750);
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
onClipEvent (enterFrame) {
this._x = this._x - speed;
if (this._x < -500) {
this._x = random(300) + 1000;
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
}
Instance of Symbol 321 MovieClip in Frame 20
onClipEvent (load) {
this._x = random(750);
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
onClipEvent (enterFrame) {
this._x = this._x - speed;
if (this._x < -500) {
this._x = random(300) + 1000;
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
}
Instance of Symbol 301 MovieClip in Frame 20
onClipEvent (load) {
Xpos = this._x;
this.gotoAndStop(_root.layout);
}
onClipEvent (enterFrame) {
this._x = Xpos + (0.3 * (_root.camera._x - 375));
}
Instance of Symbol 267 MovieClip in Frame 20
onClipEvent (load) {
Xpos = this._x;
if (_root.layout == 1) {
this.gotoAndStop(1);
} else if (_root.layout == 2) {
this.gotoAndStop(2);
} else if (_root.layout == 3) {
this.gotoAndStop(3);
} else if (_root.layout == 4) {
this.gotoAndStop(4);
} else if (_root.layout == 5) {
this.gotoAndStop(5);
} else if (_root.layout == 6) {
this.gotoAndStop(6);
} else if (_root.layout == 7) {
this.gotoAndStop(7);
} else if (_root.layout == 8) {
this.gotoAndStop(8);
} else if (_root.layout == 9) {
this.gotoAndStop(9);
} else if (_root.layout == 10) {
this.gotoAndStop(10);
} else if (_root.layout == 11) {
this.gotoAndStop(11);
} else if (_root.layout == 12) {
this.gotoAndStop(12);
} else if (_root.layout == 13) {
this.gotoAndStop(13);
} else if (_root.layout == 14) {
this.gotoAndStop(14);
} else if (_root.layout == 15) {
this.gotoAndStop(15);
}
}
onClipEvent (enterFrame) {
this._x = Xpos + (0.2 * (_root.camera._x - 375));
}
Instance of Symbol 277 MovieClip in Frame 20
onClipEvent (load) {
Xpos = this._x;
this.gotoAndStop(_root.layout);
}
onClipEvent (enterFrame) {
this._x = Xpos + (0.1 * (_root.camera._x - 375));
}
Instance of Symbol 249 MovieClip "ground" in Frame 20
onClipEvent (load) {
Xpos = this._x;
if (_root.layout == 1) {
this.gotoAndStop(1);
} else if (_root.layout == 2) {
this.gotoAndStop(2);
} else if (_root.layout == 3) {
this.gotoAndStop(3);
} else if (_root.layout == 4) {
this.gotoAndStop(4);
} else if (_root.layout == 5) {
this.gotoAndStop(5);
} else if (_root.layout == 6) {
this.gotoAndStop(6);
} else if (_root.layout == 7) {
this.gotoAndStop(7);
} else if (_root.layout == 8) {
this.gotoAndStop(8);
} else if (_root.layout == 9) {
this.gotoAndStop(9);
} else if (_root.layout == 10) {
this.gotoAndStop(10);
} else if (_root.layout == 11) {
this.gotoAndStop(11);
} else if (_root.layout == 12) {
this.gotoAndStop(12);
} else if (_root.layout == 13) {
this.gotoAndStop(13);
} else if (_root.layout == 14) {
this.gotoAndStop(14);
} else if (_root.layout == 15) {
this.gotoAndStop(15);
}
}
onClipEvent (enterFrame) {
this._x = Xpos + (0 * (_root.camera._x - 375));
}
Instance of Symbol 1933 MovieClip "player2" in Frame 20
onClipEvent (load) {
this.gotoAndStop(_root.player2char);
}
onClipEvent (enterFrame) {
this._y = 475;
}
Instance of Symbol 1934 MovieClip "player1" in Frame 20
onClipEvent (load) {
this.gotoAndStop(_root.player1char);
}
onClipEvent (enterFrame) {
this._y = 475;
}
Instance of Symbol 1937 MovieClip in Frame 20
onClipEvent (enterFrame) {
this._x = _root.side1._x;
this._y = _root.side1._y - 217.5;
if (_root.health1._currentframe < _root.health2._currentframe) {
this.gotoAndStop(1);
this._xscale = -100;
}
if (_root.health1._currentframe > _root.health2._currentframe) {
this.gotoAndStop(1);
this._xscale = 100;
}
if (_root.health1._currentframe == _root.health2._currentframe) {
this.gotoAndStop(2);
this._xscale = 100;
}
}
Instance of Symbol 1942 MovieClip "health1" in Frame 20
onClipEvent (enterFrame) {
this.gotoAndStop(_root.life1.text);
this._x = _root.side1._x - 325;
this._y = _root.side1._y - 230;
}
Instance of Symbol 1942 MovieClip "health2" in Frame 20
onClipEvent (enterFrame) {
this.gotoAndStop(_root.life2.text);
this._x = _root.side1._x + 325;
this._y = _root.side1._y - 230;
}
Instance of Symbol 1956 MovieClip in Frame 20
onClipEvent (load) {
this.gotoAndStop(_root.player1char);
}
onClipEvent (enterFrame) {
this._x = _root.side1._x - 95;
this._y = _root.side1._y - 195;
}
Instance of Symbol 1956 MovieClip in Frame 20
onClipEvent (load) {
this.gotoAndStop(_root.player2char);
}
onClipEvent (enterFrame) {
this._x = _root.side1._x + 40;
this._y = _root.side1._y - 195;
}
Instance of Symbol 1957 MovieClip "side1" in Frame 20
onClipEvent (enterFrame) {
this._x = _root.camera._x;
}
Instance of Symbol 1957 MovieClip "side2" in Frame 20
onClipEvent (enterFrame) {
this._x = _root.camera._x;
}
Instance of Symbol 1959 MovieClip "camera" in Frame 20
onClipEvent (enterFrame) {
if ((!_root.player2.hitTest(_root.side1)) || (!_root.player2.hitTest(_root.side2))) {
if ((!_root.player1.hitTest(_root.side1)) || (!_root.player1.hitTest(_root.side2))) {
if (this._x > 225) {
if (((_root.player1._x + _root.player1.char._x) < (this._x - 250)) || ((_root.player2._x + _root.player2.char._x) < (this._x - 250))) {
this._x = this._x - 5;
}
}
}
}
if ((!_root.player2.hitTest(_root.side1)) || (!_root.player2.hitTest(_root.side2))) {
if ((!_root.player1.hitTest(_root.side1)) || (!_root.player1.hitTest(_root.side2))) {
if (this._x < 525) {
if (((_root.player1._x + _root.player1.char._x) > (this._x + 250)) || ((_root.player2._x + _root.player2.char._x) > (this._x + 250))) {
this._x = this._x + 5;
}
}
}
}
}
Instance of Symbol 1970 MovieClip "ready" in Frame 20
onClipEvent (enterFrame) {
if (_root.blackin._currentframe == 20) {
this.play();
}
}
Instance of Symbol 1998 MovieClip "ko" in Frame 20
onClipEvent (enterFrame) {
this._x = _root.camera._x - 73.2;
this._y = _root.camera._y - 39;
}
Instance of Symbol 448 MovieClip "blackout" in Frame 20
onClipEvent (load) {
gotoAndStop (10);
}
onClipEvent (enterFrame) {
this._x = _root.camera._x - 375;
}
Instance of Symbol 2013 MovieClip "blacklose" in Frame 20
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
this._x = _root.camera._x - 375;
}
Instance of Symbol 2023 MovieClip "pausee" in Frame 20
onClipEvent (enterFrame) {
if ((_root.ready._currentframe == 72) && (_root.gameover == false)) {
if (this._currentframe == 1) {
if (Key.isDown(32) || (Key.isDown(13))) {
_root.stop();
this.play();
_root.gameplay = false;
}
}
}
this._x = _root.camera._x - 375;
}
Frame 21
stop();
onEnterFrame = function () {
if (!Key.isDown(32)) {
_root.allow = true;
} else if (Key.isDown(32) && (_root.allow == true)) {
this.cutscene.play();
_root.allow = false;
}
};
_root.layout = 10;
_root.player2char = 10;
_root.volumelol = 100;
Instance of Symbol 301 MovieClip in Frame 21
onClipEvent (load) {
Xpos = this._x;
this.gotoAndStop(_root.layout);
}
onClipEvent (enterFrame) {
this._x = Xpos + (0.3 * (_root.camera._x - 375));
}
Instance of Symbol 267 MovieClip in Frame 21
onClipEvent (load) {
Xpos = this._x;
if (_root.layout == 1) {
this.gotoAndStop(1);
} else if (_root.layout == 2) {
this.gotoAndStop(2);
} else if (_root.layout == 3) {
this.gotoAndStop(3);
} else if (_root.layout == 4) {
this.gotoAndStop(4);
} else if (_root.layout == 5) {
this.gotoAndStop(5);
} else if (_root.layout == 6) {
this.gotoAndStop(6);
} else if (_root.layout == 7) {
this.gotoAndStop(7);
} else if (_root.layout == 8) {
this.gotoAndStop(8);
} else if (_root.layout == 9) {
this.gotoAndStop(9);
} else if (_root.layout == 10) {
this.gotoAndStop(10);
} else if (_root.layout == 11) {
this.gotoAndStop(11);
} else if (_root.layout == 12) {
this.gotoAndStop(12);
} else if (_root.layout == 13) {
this.gotoAndStop(13);
} else if (_root.layout == 14) {
this.gotoAndStop(14);
} else if (_root.layout == 15) {
this.gotoAndStop(15);
}
}
onClipEvent (enterFrame) {
this._x = Xpos + (0.2 * (_root.camera._x - 375));
}
Instance of Symbol 277 MovieClip in Frame 21
onClipEvent (load) {
Xpos = this._x;
this.gotoAndStop(_root.layout);
}
onClipEvent (enterFrame) {
this._x = Xpos + (0.1 * (_root.camera._x - 375));
}
Instance of Symbol 249 MovieClip "ground" in Frame 21
onClipEvent (load) {
Xpos = this._x;
if (_root.layout == 1) {
this.gotoAndStop(1);
} else if (_root.layout == 2) {
this.gotoAndStop(2);
} else if (_root.layout == 3) {
this.gotoAndStop(3);
} else if (_root.layout == 4) {
this.gotoAndStop(4);
} else if (_root.layout == 5) {
this.gotoAndStop(5);
} else if (_root.layout == 6) {
this.gotoAndStop(6);
} else if (_root.layout == 7) {
this.gotoAndStop(7);
} else if (_root.layout == 8) {
this.gotoAndStop(8);
} else if (_root.layout == 9) {
this.gotoAndStop(9);
} else if (_root.layout == 10) {
this.gotoAndStop(10);
} else if (_root.layout == 11) {
this.gotoAndStop(11);
} else if (_root.layout == 12) {
this.gotoAndStop(12);
} else if (_root.layout == 13) {
this.gotoAndStop(13);
} else if (_root.layout == 14) {
this.gotoAndStop(14);
} else if (_root.layout == 15) {
this.gotoAndStop(15);
}
}
onClipEvent (enterFrame) {
this._x = Xpos + (0 * (_root.camera._x - 375));
}
Instance of Symbol 517 MovieClip in Frame 21
onClipEvent (load) {
if (_root.layout == 1) {
this.gotoAndStop(2);
} else if (_root.layout == 2) {
this.gotoAndStop(3);
} else if (_root.layout == 3) {
this.gotoAndStop(4);
} else if (_root.layout == 4) {
this.gotoAndStop(5);
} else if (_root.layout == 5) {
this.gotoAndStop(6);
} else if (_root.layout == 6) {
this.gotoAndStop(7);
} else if (_root.layout == 7) {
this.gotoAndStop(8);
} else if (_root.layout == 8) {
this.gotoAndStop(9);
} else if (_root.layout == 9) {
this.gotoAndStop(10);
} else if (_root.layout == 10) {
this.gotoAndStop(11);
} else if (_root.layout == 11) {
this.gotoAndStop(12);
} else if (_root.layout == 12) {
this.gotoAndStop(13);
} else if (_root.layout == 13) {
this.gotoAndStop(14);
} else if (_root.layout == 14) {
this.gotoAndStop(15);
} else if (_root.layout == 15) {
this.gotoAndStop(16);
}
}
Frame 22
timer2 = 0;
_root.playerwon = false;
_root.gameplay = false;
_root.life1.text = 150;
_root.life2.text = 150;
_root.gameover = false;
_root.health1away.text = 0;
_root.health2away.text = 0;
_root.volumelol = 100;
_root.dyingani = false;
stop();
onEnterFrame = function () {
if (timer2 < 100) {
_root.volumelol = 100 - timer2;
} else {
_root.volumelol = 0;
}
if (_root.gameover == true) {
timer2++;
}
if (timer2 == 10) {
_root.ko.play();
}
if (timer2 > 80) {
if (_root.life1.text <= 0) {
_root.blacklose.play();
_root.blackout.gotoAndStop(1);
} else {
_root.blackout.play();
_root.blacklose.gotoAndStop(1);
}
} else {
_root.blackout.gotoAndStop(1);
_root.blacklose.gotoAndStop(1);
}
if (_root.health1away.text > 0) {
health1away.text--;
_root.life1.text--;
}
if (_root.health1away.text <= 0) {
health1away.text = 0;
}
if (_root.health2away.text > 0) {
health2away.text--;
_root.life2.text--;
}
if (_root.health2away.text <= 0) {
health2away.text = 0;
}
if (_root.life1.text <= 0) {
_root.gameover = true;
}
if (_root.life2.text <= 0) {
_root.gameover = true;
}
};
Instance of Symbol 321 MovieClip in Frame 22
onClipEvent (load) {
this._x = random(300) + 1000;
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
onClipEvent (enterFrame) {
this._x = this._x - speed;
if (this._x < -500) {
this._x = random(300) + 1000;
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
}
Instance of Symbol 321 MovieClip in Frame 22
onClipEvent (load) {
this._x = random(300) + 1000;
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
onClipEvent (enterFrame) {
this._x = this._x - speed;
if (this._x < -500) {
this._x = random(300) + 1000;
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
}
Instance of Symbol 321 MovieClip in Frame 22
onClipEvent (load) {
this._x = random(300) + 1000;
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
onClipEvent (enterFrame) {
this._x = this._x - speed;
if (this._x < -500) {
this._x = random(300) + 1000;
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
}
Instance of Symbol 321 MovieClip in Frame 22
onClipEvent (load) {
this._x = random(300) + 1000;
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
onClipEvent (enterFrame) {
this._x = this._x - speed;
if (this._x < -500) {
this._x = random(300) + 1000;
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
}
Instance of Symbol 321 MovieClip in Frame 22
onClipEvent (load) {
this._x = random(300) + 1000;
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
onClipEvent (enterFrame) {
this._x = this._x - speed;
if (this._x < -500) {
this._x = random(300) + 1000;
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
}
Instance of Symbol 321 MovieClip in Frame 22
onClipEvent (load) {
this._x = random(750);
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
onClipEvent (enterFrame) {
this._x = this._x - speed;
if (this._x < -500) {
this._x = random(300) + 1000;
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
}
Instance of Symbol 321 MovieClip in Frame 22
onClipEvent (load) {
this._x = random(750);
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
onClipEvent (enterFrame) {
this._x = this._x - speed;
if (this._x < -500) {
this._x = random(300) + 1000;
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
}
Instance of Symbol 321 MovieClip in Frame 22
onClipEvent (load) {
this._x = random(750);
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
onClipEvent (enterFrame) {
this._x = this._x - speed;
if (this._x < -500) {
this._x = random(300) + 1000;
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
}
Instance of Symbol 321 MovieClip in Frame 22
onClipEvent (load) {
this._x = random(750);
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
onClipEvent (enterFrame) {
this._x = this._x - speed;
if (this._x < -500) {
this._x = random(300) + 1000;
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
}
Instance of Symbol 301 MovieClip in Frame 22
onClipEvent (load) {
Xpos = this._x;
this.gotoAndStop(_root.layout);
}
onClipEvent (enterFrame) {
this._x = Xpos + (0.3 * (_root.camera._x - 375));
}
Instance of Symbol 267 MovieClip in Frame 22
onClipEvent (load) {
Xpos = this._x;
if (_root.layout == 1) {
this.gotoAndStop(1);
} else if (_root.layout == 2) {
this.gotoAndStop(2);
} else if (_root.layout == 3) {
this.gotoAndStop(3);
} else if (_root.layout == 4) {
this.gotoAndStop(4);
} else if (_root.layout == 5) {
this.gotoAndStop(5);
} else if (_root.layout == 6) {
this.gotoAndStop(6);
} else if (_root.layout == 7) {
this.gotoAndStop(7);
} else if (_root.layout == 8) {
this.gotoAndStop(8);
} else if (_root.layout == 9) {
this.gotoAndStop(9);
} else if (_root.layout == 10) {
this.gotoAndStop(10);
} else if (_root.layout == 11) {
this.gotoAndStop(11);
} else if (_root.layout == 12) {
this.gotoAndStop(12);
} else if (_root.layout == 13) {
this.gotoAndStop(13);
} else if (_root.layout == 14) {
this.gotoAndStop(14);
} else if (_root.layout == 15) {
this.gotoAndStop(15);
}
}
onClipEvent (enterFrame) {
this._x = Xpos + (0.2 * (_root.camera._x - 375));
}
Instance of Symbol 277 MovieClip in Frame 22
onClipEvent (load) {
Xpos = this._x;
this.gotoAndStop(_root.layout);
}
onClipEvent (enterFrame) {
this._x = Xpos + (0.1 * (_root.camera._x - 375));
}
Instance of Symbol 249 MovieClip "ground" in Frame 22
onClipEvent (load) {
Xpos = this._x;
if (_root.layout == 1) {
this.gotoAndStop(1);
} else if (_root.layout == 2) {
this.gotoAndStop(2);
} else if (_root.layout == 3) {
this.gotoAndStop(3);
} else if (_root.layout == 4) {
this.gotoAndStop(4);
} else if (_root.layout == 5) {
this.gotoAndStop(5);
} else if (_root.layout == 6) {
this.gotoAndStop(6);
} else if (_root.layout == 7) {
this.gotoAndStop(7);
} else if (_root.layout == 8) {
this.gotoAndStop(8);
} else if (_root.layout == 9) {
this.gotoAndStop(9);
} else if (_root.layout == 10) {
this.gotoAndStop(10);
} else if (_root.layout == 11) {
this.gotoAndStop(11);
} else if (_root.layout == 12) {
this.gotoAndStop(12);
} else if (_root.layout == 13) {
this.gotoAndStop(13);
} else if (_root.layout == 14) {
this.gotoAndStop(14);
} else if (_root.layout == 15) {
this.gotoAndStop(15);
}
}
onClipEvent (enterFrame) {
this._x = Xpos + (0 * (_root.camera._x - 375));
}
Instance of Symbol 1933 MovieClip "player2" in Frame 22
onClipEvent (load) {
this.gotoAndStop(_root.player2char);
}
onClipEvent (enterFrame) {
this._y = 475;
}
Instance of Symbol 1934 MovieClip "player1" in Frame 22
onClipEvent (load) {
this.gotoAndStop(_root.player1char);
}
onClipEvent (enterFrame) {
this._y = 475;
}
Instance of Symbol 1937 MovieClip in Frame 22
onClipEvent (enterFrame) {
this._x = _root.side1._x;
this._y = _root.side1._y - 217.5;
if (_root.health1._currentframe < _root.health2._currentframe) {
this.gotoAndStop(1);
this._xscale = -100;
}
if (_root.health1._currentframe > _root.health2._currentframe) {
this.gotoAndStop(1);
this._xscale = 100;
}
if (_root.health1._currentframe == _root.health2._currentframe) {
this.gotoAndStop(2);
this._xscale = 100;
}
}
Instance of Symbol 1942 MovieClip "health1" in Frame 22
onClipEvent (enterFrame) {
this.gotoAndStop(_root.life1.text);
this._x = _root.side1._x - 325;
this._y = _root.side1._y - 230;
}
Instance of Symbol 1942 MovieClip "health2" in Frame 22
onClipEvent (enterFrame) {
this.gotoAndStop(_root.life2.text);
this._x = _root.side1._x + 325;
this._y = _root.side1._y - 230;
}
Instance of Symbol 1956 MovieClip in Frame 22
onClipEvent (load) {
this.gotoAndStop(_root.player1char);
}
onClipEvent (enterFrame) {
this._x = _root.side1._x - 95;
this._y = _root.side1._y - 195;
}
Instance of Symbol 1956 MovieClip in Frame 22
onClipEvent (load) {
this.gotoAndStop(_root.player2char);
}
onClipEvent (enterFrame) {
this._x = _root.side1._x + 40;
this._y = _root.side1._y - 195;
}
Instance of Symbol 1957 MovieClip "side1" in Frame 22
onClipEvent (enterFrame) {
this._x = _root.camera._x;
}
Instance of Symbol 1957 MovieClip "side2" in Frame 22
onClipEvent (enterFrame) {
this._x = _root.camera._x;
}
Instance of Symbol 1959 MovieClip "camera" in Frame 22
onClipEvent (enterFrame) {
if ((!_root.player2.hitTest(_root.side1)) || (!_root.player2.hitTest(_root.side2))) {
if ((!_root.player1.hitTest(_root.side1)) || (!_root.player1.hitTest(_root.side2))) {
if (this._x > 225) {
if (((_root.player1._x + _root.player1.char._x) < (this._x - 250)) || ((_root.player2._x + _root.player2.char._x) < (this._x - 250))) {
this._x = this._x - 5;
}
}
}
}
if ((!_root.player2.hitTest(_root.side1)) || (!_root.player2.hitTest(_root.side2))) {
if ((!_root.player1.hitTest(_root.side1)) || (!_root.player1.hitTest(_root.side2))) {
if (this._x < 525) {
if (((_root.player1._x + _root.player1.char._x) > (this._x + 250)) || ((_root.player2._x + _root.player2.char._x) > (this._x + 250))) {
this._x = this._x + 5;
}
}
}
}
}
Instance of Symbol 1970 MovieClip "ready" in Frame 22
onClipEvent (enterFrame) {
if (_root.blackin._currentframe == 20) {
this.play();
}
}
Instance of Symbol 1998 MovieClip "ko" in Frame 22
onClipEvent (enterFrame) {
this._x = _root.camera._x - 73.2;
this._y = _root.camera._y - 39;
}
Instance of Symbol 448 MovieClip "blackout" in Frame 22
onClipEvent (load) {
gotoAndStop (10);
}
onClipEvent (enterFrame) {
this._x = _root.camera._x - 375;
}
Instance of Symbol 2013 MovieClip "blacklose" in Frame 22
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
this._x = _root.camera._x - 375;
}
Instance of Symbol 2023 MovieClip "pausee" in Frame 22
onClipEvent (enterFrame) {
if ((_root.ready._currentframe == 72) && (_root.gameover == false)) {
if (this._currentframe == 1) {
if (Key.isDown(32) || (Key.isDown(13))) {
_root.stop();
this.play();
_root.gameplay = false;
}
}
}
this._x = _root.camera._x - 375;
}
Frame 23
stop();
onEnterFrame = function () {
if (!Key.isDown(32)) {
_root.allow = true;
} else if (Key.isDown(32) && (_root.allow == true)) {
this.cutscene.play();
_root.allow = false;
}
};
_root.layout = 8;
_root.player2char = 8;
_root.volumelol = 100;
Frame 24
stop();
Frame 25
nextFrame();
Instance of Symbol 517 MovieClip in Frame 25
onClipEvent (load) {
if (_root.layout == 1) {
this.gotoAndStop(2);
} else if (_root.layout == 2) {
this.gotoAndStop(3);
} else if (_root.layout == 3) {
this.gotoAndStop(4);
} else if (_root.layout == 4) {
this.gotoAndStop(5);
} else if (_root.layout == 5) {
this.gotoAndStop(6);
} else if (_root.layout == 6) {
this.gotoAndStop(7);
} else if (_root.layout == 7) {
this.gotoAndStop(8);
} else if (_root.layout == 8) {
this.gotoAndStop(9);
} else if (_root.layout == 9) {
this.gotoAndStop(10);
} else if (_root.layout == 10) {
this.gotoAndStop(11);
} else if (_root.layout == 11) {
this.gotoAndStop(12);
} else if (_root.layout == 12) {
this.gotoAndStop(13);
} else if (_root.layout == 13) {
this.gotoAndStop(14);
} else if (_root.layout == 14) {
this.gotoAndStop(15);
} else if (_root.layout == 15) {
this.gotoAndStop(16);
}
}
Frame 26
timer2 = 0;
_root.playerwon = false;
_root.gameplay = false;
_root.life1.text = 150;
_root.life2.text = 150;
_root.gameover = false;
_root.health1away.text = 0;
_root.health2away.text = 0;
_root.volumelol = 100;
_root.dyingani = false;
stop();
onEnterFrame = function () {
if (timer2 < 100) {
_root.volumelol = 100 - timer2;
} else {
_root.volumelol = 0;
}
if (_root.gameover == true) {
timer2++;
}
if (timer2 == 10) {
_root.ko.play();
}
if (timer2 > 80) {
if (_root.life1.text <= 0) {
_root.blacklose.play();
_root.blackout.gotoAndStop(1);
} else {
_root.blackout.play();
_root.blacklose.gotoAndStop(1);
}
} else {
_root.blackout.gotoAndStop(1);
_root.blacklose.gotoAndStop(1);
}
if (_root.health1away.text > 0) {
health1away.text--;
_root.life1.text--;
}
if (_root.health1away.text <= 0) {
health1away.text = 0;
}
if (_root.health2away.text > 0) {
health2away.text--;
_root.life2.text--;
}
if (_root.health2away.text <= 0) {
health2away.text = 0;
}
if (_root.life1.text <= 0) {
_root.gameover = true;
}
if (_root.life2.text <= 0) {
_root.gameover = true;
}
};
Instance of Symbol 321 MovieClip in Frame 26
onClipEvent (load) {
this._x = random(300) + 1000;
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
onClipEvent (enterFrame) {
this._x = this._x - speed;
if (this._x < -500) {
this._x = random(300) + 1000;
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
}
Instance of Symbol 321 MovieClip in Frame 26
onClipEvent (load) {
this._x = random(300) + 1000;
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
onClipEvent (enterFrame) {
this._x = this._x - speed;
if (this._x < -500) {
this._x = random(300) + 1000;
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
}
Instance of Symbol 321 MovieClip in Frame 26
onClipEvent (load) {
this._x = random(300) + 1000;
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
onClipEvent (enterFrame) {
this._x = this._x - speed;
if (this._x < -500) {
this._x = random(300) + 1000;
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
}
Instance of Symbol 321 MovieClip in Frame 26
onClipEvent (load) {
this._x = random(300) + 1000;
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
onClipEvent (enterFrame) {
this._x = this._x - speed;
if (this._x < -500) {
this._x = random(300) + 1000;
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
}
Instance of Symbol 321 MovieClip in Frame 26
onClipEvent (load) {
this._x = random(300) + 1000;
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
onClipEvent (enterFrame) {
this._x = this._x - speed;
if (this._x < -500) {
this._x = random(300) + 1000;
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
}
Instance of Symbol 321 MovieClip in Frame 26
onClipEvent (load) {
this._x = random(750);
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
onClipEvent (enterFrame) {
this._x = this._x - speed;
if (this._x < -500) {
this._x = random(300) + 1000;
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
}
Instance of Symbol 321 MovieClip in Frame 26
onClipEvent (load) {
this._x = random(750);
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
onClipEvent (enterFrame) {
this._x = this._x - speed;
if (this._x < -500) {
this._x = random(300) + 1000;
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
}
Instance of Symbol 321 MovieClip in Frame 26
onClipEvent (load) {
this._x = random(750);
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
onClipEvent (enterFrame) {
this._x = this._x - speed;
if (this._x < -500) {
this._x = random(300) + 1000;
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
}
Instance of Symbol 321 MovieClip in Frame 26
onClipEvent (load) {
this._x = random(750);
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
onClipEvent (enterFrame) {
this._x = this._x - speed;
if (this._x < -500) {
this._x = random(300) + 1000;
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
}
Instance of Symbol 301 MovieClip in Frame 26
onClipEvent (load) {
Xpos = this._x;
this.gotoAndStop(_root.layout);
}
onClipEvent (enterFrame) {
this._x = Xpos + (0.3 * (_root.camera._x - 375));
}
Instance of Symbol 267 MovieClip in Frame 26
onClipEvent (load) {
Xpos = this._x;
if (_root.layout == 1) {
this.gotoAndStop(1);
} else if (_root.layout == 2) {
this.gotoAndStop(2);
} else if (_root.layout == 3) {
this.gotoAndStop(3);
} else if (_root.layout == 4) {
this.gotoAndStop(4);
} else if (_root.layout == 5) {
this.gotoAndStop(5);
} else if (_root.layout == 6) {
this.gotoAndStop(6);
} else if (_root.layout == 7) {
this.gotoAndStop(7);
} else if (_root.layout == 8) {
this.gotoAndStop(8);
} else if (_root.layout == 9) {
this.gotoAndStop(9);
} else if (_root.layout == 10) {
this.gotoAndStop(10);
} else if (_root.layout == 11) {
this.gotoAndStop(11);
} else if (_root.layout == 12) {
this.gotoAndStop(12);
} else if (_root.layout == 13) {
this.gotoAndStop(13);
} else if (_root.layout == 14) {
this.gotoAndStop(14);
} else if (_root.layout == 15) {
this.gotoAndStop(15);
}
}
onClipEvent (enterFrame) {
this._x = Xpos + (0.2 * (_root.camera._x - 375));
}
Instance of Symbol 277 MovieClip in Frame 26
onClipEvent (load) {
Xpos = this._x;
this.gotoAndStop(_root.layout);
}
onClipEvent (enterFrame) {
this._x = Xpos + (0.1 * (_root.camera._x - 375));
}
Instance of Symbol 249 MovieClip "ground" in Frame 26
onClipEvent (load) {
Xpos = this._x;
if (_root.layout == 1) {
this.gotoAndStop(1);
} else if (_root.layout == 2) {
this.gotoAndStop(2);
} else if (_root.layout == 3) {
this.gotoAndStop(3);
} else if (_root.layout == 4) {
this.gotoAndStop(4);
} else if (_root.layout == 5) {
this.gotoAndStop(5);
} else if (_root.layout == 6) {
this.gotoAndStop(6);
} else if (_root.layout == 7) {
this.gotoAndStop(7);
} else if (_root.layout == 8) {
this.gotoAndStop(8);
} else if (_root.layout == 9) {
this.gotoAndStop(9);
} else if (_root.layout == 10) {
this.gotoAndStop(10);
} else if (_root.layout == 11) {
this.gotoAndStop(11);
} else if (_root.layout == 12) {
this.gotoAndStop(12);
} else if (_root.layout == 13) {
this.gotoAndStop(13);
} else if (_root.layout == 14) {
this.gotoAndStop(14);
} else if (_root.layout == 15) {
this.gotoAndStop(15);
}
}
onClipEvent (enterFrame) {
this._x = Xpos + (0 * (_root.camera._x - 375));
}
Instance of Symbol 1933 MovieClip "player2" in Frame 26
onClipEvent (load) {
this.gotoAndStop(_root.player2char);
}
onClipEvent (enterFrame) {
this._y = 475;
}
Instance of Symbol 1934 MovieClip "player1" in Frame 26
onClipEvent (load) {
this.gotoAndStop(_root.player1char);
}
onClipEvent (enterFrame) {
this._y = 475;
}
Instance of Symbol 1937 MovieClip in Frame 26
onClipEvent (enterFrame) {
this._x = _root.side1._x;
this._y = _root.side1._y - 217.5;
if (_root.health1._currentframe < _root.health2._currentframe) {
this.gotoAndStop(1);
this._xscale = -100;
}
if (_root.health1._currentframe > _root.health2._currentframe) {
this.gotoAndStop(1);
this._xscale = 100;
}
if (_root.health1._currentframe == _root.health2._currentframe) {
this.gotoAndStop(2);
this._xscale = 100;
}
}
Instance of Symbol 1942 MovieClip "health1" in Frame 26
onClipEvent (enterFrame) {
this.gotoAndStop(_root.life1.text);
this._x = _root.side1._x - 325;
this._y = _root.side1._y - 230;
}
Instance of Symbol 1942 MovieClip "health2" in Frame 26
onClipEvent (enterFrame) {
this.gotoAndStop(_root.life2.text);
this._x = _root.side1._x + 325;
this._y = _root.side1._y - 230;
}
Instance of Symbol 1956 MovieClip in Frame 26
onClipEvent (load) {
this.gotoAndStop(_root.player1char);
}
onClipEvent (enterFrame) {
this._x = _root.side1._x - 95;
this._y = _root.side1._y - 195;
}
Instance of Symbol 1956 MovieClip in Frame 26
onClipEvent (load) {
this.gotoAndStop(_root.player2char);
}
onClipEvent (enterFrame) {
this._x = _root.side1._x + 40;
this._y = _root.side1._y - 195;
}
Instance of Symbol 1957 MovieClip "side1" in Frame 26
onClipEvent (enterFrame) {
this._x = _root.camera._x;
}
Instance of Symbol 1957 MovieClip "side2" in Frame 26
onClipEvent (enterFrame) {
this._x = _root.camera._x;
}
Instance of Symbol 1959 MovieClip "camera" in Frame 26
onClipEvent (enterFrame) {
if ((!_root.player2.hitTest(_root.side1)) || (!_root.player2.hitTest(_root.side2))) {
if ((!_root.player1.hitTest(_root.side1)) || (!_root.player1.hitTest(_root.side2))) {
if (this._x > 225) {
if (((_root.player1._x + _root.player1.char._x) < (this._x - 250)) || ((_root.player2._x + _root.player2.char._x) < (this._x - 250))) {
this._x = this._x - 5;
}
}
}
}
if ((!_root.player2.hitTest(_root.side1)) || (!_root.player2.hitTest(_root.side2))) {
if ((!_root.player1.hitTest(_root.side1)) || (!_root.player1.hitTest(_root.side2))) {
if (this._x < 525) {
if (((_root.player1._x + _root.player1.char._x) > (this._x + 250)) || ((_root.player2._x + _root.player2.char._x) > (this._x + 250))) {
this._x = this._x + 5;
}
}
}
}
}
Instance of Symbol 1970 MovieClip "ready" in Frame 26
onClipEvent (enterFrame) {
if (_root.blackin._currentframe == 20) {
this.play();
}
}
Instance of Symbol 1998 MovieClip "ko" in Frame 26
onClipEvent (enterFrame) {
this._x = _root.camera._x - 73.2;
this._y = _root.camera._y - 39;
}
Instance of Symbol 448 MovieClip "blackout" in Frame 26
onClipEvent (load) {
gotoAndStop (10);
}
onClipEvent (enterFrame) {
this._x = _root.camera._x - 375;
}
Instance of Symbol 2013 MovieClip "blacklose" in Frame 26
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
this._x = _root.camera._x - 375;
}
Instance of Symbol 2023 MovieClip "pausee" in Frame 26
onClipEvent (enterFrame) {
if ((_root.ready._currentframe == 72) && (_root.gameover == false)) {
if (this._currentframe == 1) {
if (Key.isDown(32) || (Key.isDown(13))) {
_root.stop();
this.play();
_root.gameplay = false;
}
}
}
this._x = _root.camera._x - 375;
}
Frame 27
_root.characterunlocked = true;
stop();
Instance of Symbol 2000 MovieClip "blackin" in Frame 27
onClipEvent (load) {
this.gotoAndPlay(1);
}
Frame 28
stop();
Instance of Symbol 448 MovieClip "blackout" in Frame 28
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (this._currentframe == 39) {
nextFrame();
}
}
Frame 29
timer = 0;
_root.gameplay = false;
_root.player1char = 0;
_root.playergo = false;
_root.layout = 1;
stop();
arcadecount = false;
arcadek = 0;
onEnterFrame = function () {
if (_root.arcadecount == true) {
arcadek++;
}
if (arcadek > 50) {
gotoAndStop (6);
}
if (_root.playergo == true) {
timer++;
}
if (timer == 2) {
menu.start(0, 1);
}
if ((timer == 2) || (timer == 5)) {
_root.mugshot1._alpha = 0;
}
if ((timer == 3) || (timer == 6)) {
_root.mugshot1._alpha = 100;
}
if (timer > 40) {
_root.blackout.play();
}
if (timer > 79) {
_root.nextFrame();
}
};
stop();
Instance of Symbol 2265 MovieClip in Frame 29
onClipEvent (load) {
this._alpha = 0;
}
onClipEvent (enterFrame) {
this.gotoAndStop(_root.player1char);
if (_root.player1char == 0) {
this._alpha = 0;
} else {
this._alpha = 100;
}
}
Instance of Symbol 2265 MovieClip "mugshot1" in Frame 29
onClipEvent (load) {
this._alpha = 0;
}
onClipEvent (enterFrame) {
this.gotoAndStop(_root.player1char);
if (_root.player1char == 0) {
this._alpha = 0;
} else {
this._alpha = 100;
}
}
Instance of Symbol 1956 MovieClip in Frame 29
onClipEvent (load) {
this._alpha = 0;
}
onClipEvent (enterFrame) {
this.gotoAndStop(_root.player1char);
if (_root.player1char == 0) {
this._alpha = 0;
} else {
this._alpha = 100;
}
}
Instance of Symbol 2272 MovieClip in Frame 29
onClipEvent (load) {
this.gotoAndStop(1);
playerchosen = false;
}
on (rollOver) {
if (_root.playergo == false) {
if (playerchosen == false) {
this.gotoAndStop(2);
_root.player1char = 1;
}
}
}
on (rollOut) {
if (_root.playergo == false) {
if (playerchosen == false) {
this.gotoAndStop(1);
}
}
}
on (press) {
if (_root.playergo == false) {
if (playerchosen == false) {
this.gotoAndStop(3);
}
}
}
on (release) {
if (_root.playergo == false) {
playerchosen = true;
}
}
onClipEvent (enterFrame) {
if (playerchosen == true) {
this.gotoAndStop(2);
_root.playergo = true;
}
}
Instance of Symbol 2276 MovieClip in Frame 29
onClipEvent (load) {
this.gotoAndStop(1);
playerchosen = false;
}
on (rollOver) {
if (_root.playergo == false) {
if (playerchosen == false) {
this.gotoAndStop(2);
_root.player1char = 2;
}
}
}
on (rollOut) {
if (_root.playergo == false) {
if (playerchosen == false) {
this.gotoAndStop(1);
}
}
}
on (press) {
if (_root.playergo == false) {
if (playerchosen == false) {
this.gotoAndStop(3);
}
}
}
on (release) {
if (_root.playergo == false) {
playerchosen = true;
}
}
onClipEvent (enterFrame) {
if (playerchosen == true) {
this.gotoAndStop(2);
_root.playergo = true;
}
}
Instance of Symbol 2278 MovieClip in Frame 29
onClipEvent (load) {
this.gotoAndStop(1);
playerchosen = false;
}
on (rollOver) {
if (_root.playergo == false) {
if (playerchosen == false) {
this.gotoAndStop(2);
_root.player1char = 3;
}
}
}
on (rollOut) {
if (_root.playergo == false) {
if (playerchosen == false) {
this.gotoAndStop(1);
}
}
}
on (press) {
if (_root.playergo == false) {
if (playerchosen == false) {
this.gotoAndStop(3);
}
}
}
on (release) {
if (_root.playergo == false) {
playerchosen = true;
}
}
onClipEvent (enterFrame) {
if (playerchosen == true) {
this.gotoAndStop(2);
_root.playergo = true;
}
}
Instance of Symbol 2280 MovieClip in Frame 29
onClipEvent (load) {
this.gotoAndStop(1);
playerchosen = false;
}
on (rollOver) {
if (_root.playergo == false) {
if (playerchosen == false) {
this.gotoAndStop(2);
_root.player1char = 4;
}
}
}
on (rollOut) {
if (_root.playergo == false) {
if (playerchosen == false) {
this.gotoAndStop(1);
}
}
}
on (press) {
if (_root.playergo == false) {
if (playerchosen == false) {
this.gotoAndStop(3);
}
}
}
on (release) {
if (_root.playergo == false) {
playerchosen = true;
}
}
onClipEvent (enterFrame) {
if (playerchosen == true) {
this.gotoAndStop(2);
_root.playergo = true;
}
}
Instance of Symbol 2282 MovieClip in Frame 29
onClipEvent (load) {
this.gotoAndStop(1);
playerchosen = false;
}
on (rollOver) {
if (_root.playergo == false) {
if (playerchosen == false) {
this.gotoAndStop(2);
_root.player1char = 5;
}
}
}
on (rollOut) {
if (_root.playergo == false) {
if (playerchosen == false) {
this.gotoAndStop(1);
}
}
}
on (press) {
if (_root.playergo == false) {
if (playerchosen == false) {
this.gotoAndStop(3);
}
}
}
on (release) {
if (_root.playergo == false) {
playerchosen = true;
}
}
onClipEvent (enterFrame) {
if (playerchosen == true) {
this.gotoAndStop(2);
_root.playergo = true;
}
}
Instance of Symbol 2284 MovieClip in Frame 29
onClipEvent (load) {
this.gotoAndStop(1);
playerchosen = false;
}
on (rollOver) {
if (_root.playergo == false) {
if (playerchosen == false) {
this.gotoAndStop(2);
_root.player1char = 6;
}
}
}
on (rollOut) {
if (_root.playergo == false) {
if (playerchosen == false) {
this.gotoAndStop(1);
}
}
}
on (press) {
if (_root.playergo == false) {
if (playerchosen == false) {
this.gotoAndStop(3);
}
}
}
on (release) {
if (_root.playergo == false) {
playerchosen = true;
}
}
onClipEvent (enterFrame) {
if (playerchosen == true) {
this.gotoAndStop(2);
_root.playergo = true;
}
}
Instance of Symbol 2286 MovieClip in Frame 29
onClipEvent (load) {
this.gotoAndStop(1);
playerchosen = false;
}
on (rollOver) {
if (_root.playergo == false) {
if (playerchosen == false) {
this.gotoAndStop(2);
_root.player1char = 7;
}
}
}
on (rollOut) {
if (_root.playergo == false) {
if (playerchosen == false) {
this.gotoAndStop(1);
}
}
}
on (press) {
if (_root.playergo == false) {
if (playerchosen == false) {
this.gotoAndStop(3);
}
}
}
on (release) {
if (_root.playergo == false) {
playerchosen = true;
}
}
onClipEvent (enterFrame) {
if (playerchosen == true) {
this.gotoAndStop(2);
_root.playergo = true;
}
}
Instance of Symbol 2288 MovieClip in Frame 29
onClipEvent (load) {
this.gotoAndStop(1);
playerchosen = false;
}
on (rollOver) {
if (_root.playergo == false) {
if (playerchosen == false) {
this.gotoAndStop(2);
_root.player1char = 8;
}
}
}
on (rollOut) {
if (_root.playergo == false) {
if (playerchosen == false) {
this.gotoAndStop(1);
}
}
}
on (press) {
if (_root.playergo == false) {
if (playerchosen == false) {
this.gotoAndStop(3);
}
}
}
on (release) {
if (_root.playergo == false) {
playerchosen = true;
}
}
onClipEvent (enterFrame) {
if (playerchosen == true) {
this.gotoAndStop(2);
_root.playergo = true;
}
}
Instance of Symbol 2291 MovieClip in Frame 29
onClipEvent (load) {
if (_root.characterunlocked == true) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
playerchosen = false;
}
on (rollOver) {
if (_root.characterunlocked == true) {
if (_root.playergo == false) {
if (playerchosen == false) {
this.gotoAndStop(3);
_root.player1char = 9;
}
}
}
}
on (rollOut) {
if (_root.characterunlocked == true) {
if (_root.playergo == false) {
if (playerchosen == false) {
this.gotoAndStop(2);
}
}
}
}
on (press) {
if (_root.characterunlocked == true) {
if (_root.playergo == false) {
if (playerchosen == false) {
this.gotoAndStop(4);
}
}
}
}
on (release) {
if (_root.characterunlocked == true) {
if (_root.playergo == false) {
playerchosen = true;
}
}
}
onClipEvent (enterFrame) {
if (_root.characterunlocked == true) {
if (playerchosen == true) {
this.gotoAndStop(3);
_root.playergo = true;
}
}
}
Instance of Symbol 2293 MovieClip in Frame 29
onClipEvent (load) {
if (_root.characterunlocked == true) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
playerchosen = false;
}
on (rollOver) {
if (_root.characterunlocked == true) {
if (_root.playergo == false) {
if (playerchosen == false) {
this.gotoAndStop(3);
_root.player1char = 10;
}
}
}
}
on (rollOut) {
if (_root.characterunlocked == true) {
if (_root.playergo == false) {
if (playerchosen == false) {
this.gotoAndStop(2);
}
}
}
}
on (press) {
if (_root.characterunlocked == true) {
if (_root.playergo == false) {
if (playerchosen == false) {
this.gotoAndStop(4);
}
}
}
}
on (release) {
if (_root.characterunlocked == true) {
if (_root.playergo == false) {
playerchosen = true;
}
}
}
onClipEvent (enterFrame) {
if (_root.characterunlocked == true) {
if (playerchosen == true) {
this.gotoAndStop(3);
_root.playergo = true;
}
}
}
Frame 30
timer2 = 0;
_root.playerwon = false;
_root.gameplay = false;
_root.life1.text = 150;
_root.life2.text = 150;
_root.gameover = false;
_root.health1away.text = 0;
_root.health2away.text = 0;
_root.volumelol = 100;
_root.dyingani = false;
stop();
onEnterFrame = function () {
if (timer2 < 100) {
_root.volumelol = 100 - timer2;
} else {
_root.volumelol = 0;
}
if (_root.gameover == true) {
timer2++;
}
if (timer2 == 10) {
_root.ko.play();
}
if (timer2 > 80) {
_root.blackout.play();
} else {
_root.blackout.gotoAndStop(1);
}
if (_root.health1away.text > 0) {
_root.health1away.text = 0;
}
if (_root.health2away.text > 0) {
_root.health2away.text = 0;
}
};
Instance of Symbol 321 MovieClip in Frame 30
onClipEvent (load) {
this._x = random(300) + 1000;
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
onClipEvent (enterFrame) {
this._x = this._x - speed;
if (this._x < -500) {
this._x = random(300) + 1000;
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
}
Instance of Symbol 321 MovieClip in Frame 30
onClipEvent (load) {
this._x = random(300) + 1000;
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
onClipEvent (enterFrame) {
this._x = this._x - speed;
if (this._x < -500) {
this._x = random(300) + 1000;
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
}
Instance of Symbol 321 MovieClip in Frame 30
onClipEvent (load) {
this._x = random(300) + 1000;
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
onClipEvent (enterFrame) {
this._x = this._x - speed;
if (this._x < -500) {
this._x = random(300) + 1000;
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
}
Instance of Symbol 321 MovieClip in Frame 30
onClipEvent (load) {
this._x = random(300) + 1000;
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
onClipEvent (enterFrame) {
this._x = this._x - speed;
if (this._x < -500) {
this._x = random(300) + 1000;
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
}
Instance of Symbol 321 MovieClip in Frame 30
onClipEvent (load) {
this._x = random(300) + 1000;
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
onClipEvent (enterFrame) {
this._x = this._x - speed;
if (this._x < -500) {
this._x = random(300) + 1000;
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
}
Instance of Symbol 321 MovieClip in Frame 30
onClipEvent (load) {
this._x = random(750);
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
onClipEvent (enterFrame) {
this._x = this._x - speed;
if (this._x < -500) {
this._x = random(300) + 1000;
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
}
Instance of Symbol 321 MovieClip in Frame 30
onClipEvent (load) {
this._x = random(750);
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
onClipEvent (enterFrame) {
this._x = this._x - speed;
if (this._x < -500) {
this._x = random(300) + 1000;
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
}
Instance of Symbol 321 MovieClip in Frame 30
onClipEvent (load) {
this._x = random(750);
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
onClipEvent (enterFrame) {
this._x = this._x - speed;
if (this._x < -500) {
this._x = random(300) + 1000;
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
}
Instance of Symbol 321 MovieClip in Frame 30
onClipEvent (load) {
this._x = random(750);
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
onClipEvent (enterFrame) {
this._x = this._x - speed;
if (this._x < -500) {
this._x = random(300) + 1000;
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
}
Instance of Symbol 301 MovieClip in Frame 30
onClipEvent (load) {
Xpos = this._x;
this.gotoAndStop(_root.layout);
}
onClipEvent (enterFrame) {
this._x = Xpos + (0.3 * (_root.camera._x - 375));
}
Instance of Symbol 267 MovieClip in Frame 30
onClipEvent (load) {
Xpos = this._x;
if (_root.layout == 1) {
this.gotoAndStop(1);
} else if (_root.layout == 2) {
this.gotoAndStop(2);
} else if (_root.layout == 3) {
this.gotoAndStop(3);
} else if (_root.layout == 4) {
this.gotoAndStop(4);
} else if (_root.layout == 5) {
this.gotoAndStop(5);
} else if (_root.layout == 6) {
this.gotoAndStop(6);
} else if (_root.layout == 7) {
this.gotoAndStop(7);
} else if (_root.layout == 8) {
this.gotoAndStop(8);
} else if (_root.layout == 9) {
this.gotoAndStop(9);
} else if (_root.layout == 10) {
this.gotoAndStop(10);
} else if (_root.layout == 11) {
this.gotoAndStop(11);
} else if (_root.layout == 12) {
this.gotoAndStop(12);
} else if (_root.layout == 13) {
this.gotoAndStop(13);
} else if (_root.layout == 14) {
this.gotoAndStop(14);
} else if (_root.layout == 15) {
this.gotoAndStop(15);
}
}
onClipEvent (enterFrame) {
this._x = Xpos + (0.2 * (_root.camera._x - 375));
}
Instance of Symbol 277 MovieClip in Frame 30
onClipEvent (load) {
Xpos = this._x;
this.gotoAndStop(_root.layout);
}
onClipEvent (enterFrame) {
this._x = Xpos + (0.1 * (_root.camera._x - 375));
}
Instance of Symbol 249 MovieClip "ground" in Frame 30
onClipEvent (load) {
Xpos = this._x;
if (_root.layout == 1) {
this.gotoAndStop(1);
} else if (_root.layout == 2) {
this.gotoAndStop(2);
} else if (_root.layout == 3) {
this.gotoAndStop(3);
} else if (_root.layout == 4) {
this.gotoAndStop(4);
} else if (_root.layout == 5) {
this.gotoAndStop(5);
} else if (_root.layout == 6) {
this.gotoAndStop(6);
} else if (_root.layout == 7) {
this.gotoAndStop(7);
} else if (_root.layout == 8) {
this.gotoAndStop(8);
} else if (_root.layout == 9) {
this.gotoAndStop(9);
} else if (_root.layout == 10) {
this.gotoAndStop(10);
} else if (_root.layout == 11) {
this.gotoAndStop(11);
} else if (_root.layout == 12) {
this.gotoAndStop(12);
} else if (_root.layout == 13) {
this.gotoAndStop(13);
} else if (_root.layout == 14) {
this.gotoAndStop(14);
} else if (_root.layout == 15) {
this.gotoAndStop(15);
}
}
onClipEvent (enterFrame) {
this._x = Xpos + (0 * (_root.camera._x - 375));
}
Instance of Symbol 2300 MovieClip "player2" in Frame 30
onClipEvent (load) {
this.gotoAndStop(_root.player2char);
}
onClipEvent (enterFrame) {
this._y = 475;
}
Instance of Symbol 1934 MovieClip "player1" in Frame 30
onClipEvent (load) {
this.gotoAndStop(_root.player1char);
}
onClipEvent (enterFrame) {
this._y = 475;
}
Instance of Symbol 1957 MovieClip "side1" in Frame 30
onClipEvent (enterFrame) {
this._x = _root.camera._x;
}
Instance of Symbol 1957 MovieClip "side2" in Frame 30
onClipEvent (enterFrame) {
this._x = _root.camera._x;
}
Instance of Symbol 517 MovieClip in Frame 30
onClipEvent (load) {
if (_root.layout == 1) {
this.gotoAndStop(2);
} else if (_root.layout == 2) {
this.gotoAndStop(3);
} else if (_root.layout == 3) {
this.gotoAndStop(4);
} else if (_root.layout == 4) {
this.gotoAndStop(5);
} else if (_root.layout == 5) {
this.gotoAndStop(6);
} else if (_root.layout == 6) {
this.gotoAndStop(7);
} else if (_root.layout == 7) {
this.gotoAndStop(8);
} else if (_root.layout == 8) {
this.gotoAndStop(9);
} else if (_root.layout == 9) {
this.gotoAndStop(10);
} else if (_root.layout == 10) {
this.gotoAndStop(11);
}
}
Instance of Symbol 1959 MovieClip "camera" in Frame 30
onClipEvent (enterFrame) {
if ((!_root.player2.hitTest(_root.side1)) || (!_root.player2.hitTest(_root.side2))) {
if ((!_root.player1.hitTest(_root.side1)) || (!_root.player1.hitTest(_root.side2))) {
if (this._x > 225) {
if (((_root.player1._x + _root.player1.char._x) < (this._x - 250)) || ((_root.player2._x + _root.player2.char._x) < (this._x - 250))) {
this._x = this._x - 5;
}
}
}
}
if ((!_root.player2.hitTest(_root.side1)) || (!_root.player2.hitTest(_root.side2))) {
if ((!_root.player1.hitTest(_root.side1)) || (!_root.player1.hitTest(_root.side2))) {
if (this._x < 525) {
if (((_root.player1._x + _root.player1.char._x) > (this._x + 250)) || ((_root.player2._x + _root.player2.char._x) > (this._x + 250))) {
this._x = this._x + 5;
}
}
}
}
}
Instance of Symbol 1970 MovieClip "ready" in Frame 30
onClipEvent (enterFrame) {
if (_root.blackin._currentframe == 20) {
this.play();
}
}
Instance of Symbol 1998 MovieClip "ko" in Frame 30
onClipEvent (enterFrame) {
this._x = _root.camera._x - 73.2;
this._y = _root.camera._y - 39;
}
Instance of Symbol 448 MovieClip "blackout" in Frame 30
onClipEvent (load) {
gotoAndStop (29);
}
onClipEvent (enterFrame) {
this._x = _root.camera._x - 375;
}
Instance of Symbol 2023 MovieClip "pausee" in Frame 30
onClipEvent (enterFrame) {
if ((_root.ready._currentframe == 72) && (_root.gameover == false)) {
if (this._currentframe == 1) {
if (Key.isDown(32) || (Key.isDown(13))) {
_root.stop();
this.play();
_root.gameplay = false;
}
}
}
this._x = _root.camera._x - 375;
}
Frame 31
timer = 0;
_root.gameplay = false;
_root.player1char = 0;
_root.playergo = false;
_root.layout = 1;
stop();
arcadecount = false;
arcadek = 0;
onEnterFrame = function () {
if (_root.arcadecount == true) {
arcadek++;
}
if (arcadek > 50) {
gotoAndStop (6);
}
if (_root.playergo == true) {
timer++;
}
if (timer == 2) {
menu.start(0, 1);
}
if ((timer == 2) || (timer == 5)) {
_root.mugshot1._alpha = 0;
}
if ((timer == 3) || (timer == 6)) {
_root.mugshot1._alpha = 100;
}
if (_root.player1char == 1) {
_root.player2char = 2;
} else {
_root.player2char = 1;
}
if (timer > 18) {
_root.blackout.play();
}
};
stop();
Instance of Symbol 2265 MovieClip in Frame 31
onClipEvent (load) {
this._alpha = 0;
}
onClipEvent (enterFrame) {
this.gotoAndStop(_root.player1char);
if (_root.player1char == 0) {
this._alpha = 0;
} else {
this._alpha = 100;
}
}
Instance of Symbol 2265 MovieClip "mugshot1" in Frame 31
onClipEvent (load) {
this._alpha = 0;
}
onClipEvent (enterFrame) {
this.gotoAndStop(_root.player1char);
if (_root.player1char == 0) {
this._alpha = 0;
} else {
this._alpha = 100;
}
}
Instance of Symbol 1956 MovieClip in Frame 31
onClipEvent (load) {
this._alpha = 0;
}
onClipEvent (enterFrame) {
this.gotoAndStop(_root.player1char);
if (_root.player1char == 0) {
this._alpha = 0;
} else {
this._alpha = 100;
}
}
Instance of Symbol 2272 MovieClip in Frame 31
onClipEvent (load) {
this.gotoAndStop(1);
playerchosen = false;
}
on (rollOver) {
if (_root.playergo == false) {
if (playerchosen == false) {
this.gotoAndStop(2);
_root.player1char = 1;
}
}
}
on (rollOut) {
if (_root.playergo == false) {
if (playerchosen == false) {
this.gotoAndStop(1);
}
}
}
on (press) {
if (_root.playergo == false) {
if (playerchosen == false) {
this.gotoAndStop(3);
}
}
}
on (release) {
if (_root.playergo == false) {
playerchosen = true;
}
}
onClipEvent (enterFrame) {
if (playerchosen == true) {
this.gotoAndStop(2);
_root.playergo = true;
}
}
Instance of Symbol 2276 MovieClip in Frame 31
onClipEvent (load) {
this.gotoAndStop(1);
playerchosen = false;
}
on (rollOver) {
if (_root.playergo == false) {
if (playerchosen == false) {
this.gotoAndStop(2);
_root.player1char = 2;
}
}
}
on (rollOut) {
if (_root.playergo == false) {
if (playerchosen == false) {
this.gotoAndStop(1);
}
}
}
on (press) {
if (_root.playergo == false) {
if (playerchosen == false) {
this.gotoAndStop(3);
}
}
}
on (release) {
if (_root.playergo == false) {
playerchosen = true;
}
}
onClipEvent (enterFrame) {
if (playerchosen == true) {
this.gotoAndStop(2);
_root.playergo = true;
}
}
Instance of Symbol 2278 MovieClip in Frame 31
onClipEvent (load) {
this.gotoAndStop(1);
playerchosen = false;
}
on (rollOver) {
if (_root.playergo == false) {
if (playerchosen == false) {
this.gotoAndStop(2);
_root.player1char = 3;
}
}
}
on (rollOut) {
if (_root.playergo == false) {
if (playerchosen == false) {
this.gotoAndStop(1);
}
}
}
on (press) {
if (_root.playergo == false) {
if (playerchosen == false) {
this.gotoAndStop(3);
}
}
}
on (release) {
if (_root.playergo == false) {
playerchosen = true;
}
}
onClipEvent (enterFrame) {
if (playerchosen == true) {
this.gotoAndStop(2);
_root.playergo = true;
}
}
Instance of Symbol 2280 MovieClip in Frame 31
onClipEvent (load) {
this.gotoAndStop(1);
playerchosen = false;
}
on (rollOver) {
if (_root.playergo == false) {
if (playerchosen == false) {
this.gotoAndStop(2);
_root.player1char = 4;
}
}
}
on (rollOut) {
if (_root.playergo == false) {
if (playerchosen == false) {
this.gotoAndStop(1);
}
}
}
on (press) {
if (_root.playergo == false) {
if (playerchosen == false) {
this.gotoAndStop(3);
}
}
}
on (release) {
if (_root.playergo == false) {
playerchosen = true;
}
}
onClipEvent (enterFrame) {
if (playerchosen == true) {
this.gotoAndStop(2);
_root.playergo = true;
}
}
Instance of Symbol 2282 MovieClip in Frame 31
onClipEvent (load) {
this.gotoAndStop(1);
playerchosen = false;
}
on (rollOver) {
if (_root.playergo == false) {
if (playerchosen == false) {
this.gotoAndStop(2);
_root.player1char = 5;
}
}
}
on (rollOut) {
if (_root.playergo == false) {
if (playerchosen == false) {
this.gotoAndStop(1);
}
}
}
on (press) {
if (_root.playergo == false) {
if (playerchosen == false) {
this.gotoAndStop(3);
}
}
}
on (release) {
if (_root.playergo == false) {
playerchosen = true;
}
}
onClipEvent (enterFrame) {
if (playerchosen == true) {
this.gotoAndStop(2);
_root.playergo = true;
}
}
Instance of Symbol 2284 MovieClip in Frame 31
onClipEvent (load) {
this.gotoAndStop(1);
playerchosen = false;
}
on (rollOver) {
if (_root.playergo == false) {
if (playerchosen == false) {
this.gotoAndStop(2);
_root.player1char = 6;
}
}
}
on (rollOut) {
if (_root.playergo == false) {
if (playerchosen == false) {
this.gotoAndStop(1);
}
}
}
on (press) {
if (_root.playergo == false) {
if (playerchosen == false) {
this.gotoAndStop(3);
}
}
}
on (release) {
if (_root.playergo == false) {
playerchosen = true;
}
}
onClipEvent (enterFrame) {
if (playerchosen == true) {
this.gotoAndStop(2);
_root.playergo = true;
}
}
Instance of Symbol 2286 MovieClip in Frame 31
onClipEvent (load) {
this.gotoAndStop(1);
playerchosen = false;
}
on (rollOver) {
if (_root.playergo == false) {
if (playerchosen == false) {
this.gotoAndStop(2);
_root.player1char = 7;
}
}
}
on (rollOut) {
if (_root.playergo == false) {
if (playerchosen == false) {
this.gotoAndStop(1);
}
}
}
on (press) {
if (_root.playergo == false) {
if (playerchosen == false) {
this.gotoAndStop(3);
}
}
}
on (release) {
if (_root.playergo == false) {
playerchosen = true;
}
}
onClipEvent (enterFrame) {
if (playerchosen == true) {
this.gotoAndStop(2);
_root.playergo = true;
}
}
Instance of Symbol 2288 MovieClip in Frame 31
onClipEvent (load) {
this.gotoAndStop(1);
playerchosen = false;
}
on (rollOver) {
if (_root.playergo == false) {
if (playerchosen == false) {
this.gotoAndStop(2);
_root.player1char = 8;
}
}
}
on (rollOut) {
if (_root.playergo == false) {
if (playerchosen == false) {
this.gotoAndStop(1);
}
}
}
on (press) {
if (_root.playergo == false) {
if (playerchosen == false) {
this.gotoAndStop(3);
}
}
}
on (release) {
if (_root.playergo == false) {
playerchosen = true;
}
}
onClipEvent (enterFrame) {
if (playerchosen == true) {
this.gotoAndStop(2);
_root.playergo = true;
}
}
Instance of Symbol 2291 MovieClip in Frame 31
onClipEvent (load) {
if (_root.characterunlocked == true) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
playerchosen = false;
}
on (rollOver) {
if (_root.characterunlocked == true) {
if (_root.playergo == false) {
if (playerchosen == false) {
this.gotoAndStop(3);
_root.player1char = 9;
}
}
}
}
on (rollOut) {
if (_root.characterunlocked == true) {
if (_root.playergo == false) {
if (playerchosen == false) {
this.gotoAndStop(2);
}
}
}
}
on (press) {
if (_root.characterunlocked == true) {
if (_root.playergo == false) {
if (playerchosen == false) {
this.gotoAndStop(4);
}
}
}
}
on (release) {
if (_root.characterunlocked == true) {
if (_root.playergo == false) {
playerchosen = true;
}
}
}
onClipEvent (enterFrame) {
if (_root.characterunlocked == true) {
if (playerchosen == true) {
this.gotoAndStop(3);
_root.playergo = true;
}
}
}
Instance of Symbol 2293 MovieClip in Frame 31
onClipEvent (load) {
if (_root.characterunlocked == true) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
playerchosen = false;
}
on (rollOver) {
if (_root.characterunlocked == true) {
if (_root.playergo == false) {
if (playerchosen == false) {
this.gotoAndStop(3);
_root.player1char = 10;
}
}
}
}
on (rollOut) {
if (_root.characterunlocked == true) {
if (_root.playergo == false) {
if (playerchosen == false) {
this.gotoAndStop(2);
}
}
}
}
on (press) {
if (_root.characterunlocked == true) {
if (_root.playergo == false) {
if (playerchosen == false) {
this.gotoAndStop(4);
}
}
}
}
on (release) {
if (_root.characterunlocked == true) {
if (_root.playergo == false) {
playerchosen = true;
}
}
}
onClipEvent (enterFrame) {
if (_root.characterunlocked == true) {
if (playerchosen == true) {
this.gotoAndStop(3);
_root.playergo = true;
}
}
}
Frame 32
stopAllSounds();
timer = 0;
stop();
_root.gameplay = false;
_root.playergo = false;
_root.layout = _root.player2char;
onEnterFrame = function () {
if (_root.playergo == true) {
timer++;
}
if (timer > 60) {
_root.blackout.play();
}
};
Instance of Symbol 2265 MovieClip "mugshot1" in Frame 32
onClipEvent (load) {
stopping = false;
this.gotoAndStop(_root.player1char);
comeinspeed = 0;
}
onClipEvent (enterFrame) {
if (stopping == false) {
this._x = this._x + comeinspeed;
comeinspeed = comeinspeed + 2;
if ((this._x >= 0) && (comeinspeed > 0)) {
comeinspeed = (comeinspeed * -1) + 10;
}
if (((comeinspeed > -5) && (comeinspeed < 3)) && (this._x >= -5)) {
comeinspeed = 0;
this._x = 0;
stopping = true;
}
}
if (stopping == true) {
_root.playergo = true;
this._x = 0;
}
}
Instance of Symbol 2265 MovieClip "mugshot1" in Frame 32
onClipEvent (load) {
stopping = false;
this.gotoAndStop(_root.player2char);
comeinspeed = 0;
}
onClipEvent (enterFrame) {
if (stopping == false) {
this._x = this._x - comeinspeed;
comeinspeed = comeinspeed + 2;
if ((this._x <= 750) && (comeinspeed > 0)) {
comeinspeed = (comeinspeed * -1) + 10;
}
if (((comeinspeed > -5) && (comeinspeed < 3)) && (this._x <= 755)) {
comeinspeed = 0;
this._x = 750;
stopping = true;
}
}
if (stopping == true) {
this._x = 750;
}
}
Instance of Symbol 448 MovieClip "blackout" in Frame 32
onClipEvent (load) {
this.stop();
}
Frame 33
timer2 = 0;
_root.playerwon = false;
_root.gameplay = false;
_root.life1.text = 150;
_root.life2.text = 150;
_root.gameover = false;
_root.health1away.text = 0;
_root.health2away.text = 0;
_root.volumelol = 100;
_root.dyingani = false;
stop();
onEnterFrame = function () {
if (timer2 < 100) {
_root.volumelol = 100 - timer2;
} else {
_root.volumelol = 0;
}
if (_root.gameover == true) {
timer2++;
}
if (timer2 == 10) {
_root.ko.play();
}
if (timer2 > 80) {
if (_root.life1.text <= 0) {
_root.blacklose.play();
_root.blackout.gotoAndStop(1);
} else {
_root.blackout.play();
_root.blacklose.gotoAndStop(1);
}
} else {
_root.blackout.gotoAndStop(1);
_root.blacklose.gotoAndStop(1);
}
if (_root.health1away.text > 0) {
health1away.text--;
_root.life1.text--;
}
if (_root.health1away.text <= 0) {
health1away.text = 0;
}
if (_root.health2away.text > 0) {
health2away.text--;
_root.life2.text--;
}
if (_root.health2away.text <= 0) {
health2away.text = 0;
}
if (_root.life1.text <= 0) {
_root.gameover = true;
}
if (_root.life2.text <= 0) {
_root.gameover = true;
}
};
Instance of Symbol 321 MovieClip in Frame 33
onClipEvent (load) {
this._x = random(300) + 1000;
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
onClipEvent (enterFrame) {
this._x = this._x - speed;
if (this._x < -500) {
this._x = random(300) + 1000;
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
}
Instance of Symbol 321 MovieClip in Frame 33
onClipEvent (load) {
this._x = random(300) + 1000;
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
onClipEvent (enterFrame) {
this._x = this._x - speed;
if (this._x < -500) {
this._x = random(300) + 1000;
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
}
Instance of Symbol 321 MovieClip in Frame 33
onClipEvent (load) {
this._x = random(300) + 1000;
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
onClipEvent (enterFrame) {
this._x = this._x - speed;
if (this._x < -500) {
this._x = random(300) + 1000;
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
}
Instance of Symbol 321 MovieClip in Frame 33
onClipEvent (load) {
this._x = random(300) + 1000;
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
onClipEvent (enterFrame) {
this._x = this._x - speed;
if (this._x < -500) {
this._x = random(300) + 1000;
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
}
Instance of Symbol 321 MovieClip in Frame 33
onClipEvent (load) {
this._x = random(300) + 1000;
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
onClipEvent (enterFrame) {
this._x = this._x - speed;
if (this._x < -500) {
this._x = random(300) + 1000;
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
}
Instance of Symbol 321 MovieClip in Frame 33
onClipEvent (load) {
this._x = random(750);
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
onClipEvent (enterFrame) {
this._x = this._x - speed;
if (this._x < -500) {
this._x = random(300) + 1000;
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
}
Instance of Symbol 321 MovieClip in Frame 33
onClipEvent (load) {
this._x = random(750);
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
onClipEvent (enterFrame) {
this._x = this._x - speed;
if (this._x < -500) {
this._x = random(300) + 1000;
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
}
Instance of Symbol 321 MovieClip in Frame 33
onClipEvent (load) {
this._x = random(750);
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
onClipEvent (enterFrame) {
this._x = this._x - speed;
if (this._x < -500) {
this._x = random(300) + 1000;
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
}
Instance of Symbol 321 MovieClip in Frame 33
onClipEvent (load) {
this._x = random(750);
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
onClipEvent (enterFrame) {
this._x = this._x - speed;
if (this._x < -500) {
this._x = random(300) + 1000;
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
}
Instance of Symbol 301 MovieClip in Frame 33
onClipEvent (load) {
Xpos = this._x;
this.gotoAndStop(_root.layout);
}
onClipEvent (enterFrame) {
this._x = Xpos + (0.3 * (_root.camera._x - 375));
}
Instance of Symbol 267 MovieClip in Frame 33
onClipEvent (load) {
Xpos = this._x;
if (_root.layout == 1) {
this.gotoAndStop(1);
} else if (_root.layout == 2) {
this.gotoAndStop(2);
} else if (_root.layout == 3) {
this.gotoAndStop(3);
} else if (_root.layout == 4) {
this.gotoAndStop(4);
} else if (_root.layout == 5) {
this.gotoAndStop(5);
} else if (_root.layout == 6) {
this.gotoAndStop(6);
} else if (_root.layout == 7) {
this.gotoAndStop(7);
} else if (_root.layout == 8) {
this.gotoAndStop(8);
} else if (_root.layout == 9) {
this.gotoAndStop(9);
} else if (_root.layout == 10) {
this.gotoAndStop(10);
} else if (_root.layout == 11) {
this.gotoAndStop(11);
} else if (_root.layout == 12) {
this.gotoAndStop(12);
} else if (_root.layout == 13) {
this.gotoAndStop(13);
} else if (_root.layout == 14) {
this.gotoAndStop(14);
} else if (_root.layout == 15) {
this.gotoAndStop(15);
}
}
onClipEvent (enterFrame) {
this._x = Xpos + (0.2 * (_root.camera._x - 375));
}
Instance of Symbol 277 MovieClip in Frame 33
onClipEvent (load) {
Xpos = this._x;
this.gotoAndStop(_root.layout);
}
onClipEvent (enterFrame) {
this._x = Xpos + (0.1 * (_root.camera._x - 375));
}
Instance of Symbol 249 MovieClip "ground" in Frame 33
onClipEvent (load) {
Xpos = this._x;
if (_root.layout == 1) {
this.gotoAndStop(1);
} else if (_root.layout == 2) {
this.gotoAndStop(2);
} else if (_root.layout == 3) {
this.gotoAndStop(3);
} else if (_root.layout == 4) {
this.gotoAndStop(4);
} else if (_root.layout == 5) {
this.gotoAndStop(5);
} else if (_root.layout == 6) {
this.gotoAndStop(6);
} else if (_root.layout == 7) {
this.gotoAndStop(7);
} else if (_root.layout == 8) {
this.gotoAndStop(8);
} else if (_root.layout == 9) {
this.gotoAndStop(9);
} else if (_root.layout == 10) {
this.gotoAndStop(10);
} else if (_root.layout == 11) {
this.gotoAndStop(11);
} else if (_root.layout == 12) {
this.gotoAndStop(12);
} else if (_root.layout == 13) {
this.gotoAndStop(13);
} else if (_root.layout == 14) {
this.gotoAndStop(14);
} else if (_root.layout == 15) {
this.gotoAndStop(15);
}
}
onClipEvent (enterFrame) {
this._x = Xpos + (0 * (_root.camera._x - 375));
}
Instance of Symbol 1933 MovieClip "player2" in Frame 33
onClipEvent (load) {
this.gotoAndStop(_root.player2char);
}
onClipEvent (enterFrame) {
this._y = 475;
}
Instance of Symbol 1934 MovieClip "player1" in Frame 33
onClipEvent (load) {
this.gotoAndStop(_root.player1char);
}
onClipEvent (enterFrame) {
this._y = 475;
}
Instance of Symbol 1937 MovieClip in Frame 33
onClipEvent (enterFrame) {
this._x = _root.side1._x;
this._y = _root.side1._y - 217.5;
if (_root.health1._currentframe < _root.health2._currentframe) {
this.gotoAndStop(1);
this._xscale = -100;
}
if (_root.health1._currentframe > _root.health2._currentframe) {
this.gotoAndStop(1);
this._xscale = 100;
}
if (_root.health1._currentframe == _root.health2._currentframe) {
this.gotoAndStop(2);
this._xscale = 100;
}
}
Instance of Symbol 1942 MovieClip "health1" in Frame 33
onClipEvent (enterFrame) {
this.gotoAndStop(_root.life1.text);
this._x = _root.side1._x - 325;
this._y = _root.side1._y - 230;
}
Instance of Symbol 1942 MovieClip "health2" in Frame 33
onClipEvent (enterFrame) {
this.gotoAndStop(_root.life2.text);
this._x = _root.side1._x + 325;
this._y = _root.side1._y - 230;
}
Instance of Symbol 1956 MovieClip in Frame 33
onClipEvent (load) {
this.gotoAndStop(_root.player1char);
}
onClipEvent (enterFrame) {
this._x = _root.side1._x - 95;
this._y = _root.side1._y - 195;
}
Instance of Symbol 1956 MovieClip in Frame 33
onClipEvent (load) {
this.gotoAndStop(_root.player2char);
}
onClipEvent (enterFrame) {
this._x = _root.side1._x + 40;
this._y = _root.side1._y - 195;
}
Instance of Symbol 1957 MovieClip "side1" in Frame 33
onClipEvent (enterFrame) {
this._x = _root.camera._x;
}
Instance of Symbol 1957 MovieClip "side2" in Frame 33
onClipEvent (enterFrame) {
this._x = _root.camera._x;
}
Instance of Symbol 517 MovieClip in Frame 33
onClipEvent (load) {
if (_root.layout == 1) {
this.gotoAndStop(2);
} else if (_root.layout == 2) {
this.gotoAndStop(3);
} else if (_root.layout == 3) {
this.gotoAndStop(4);
} else if (_root.layout == 4) {
this.gotoAndStop(5);
} else if (_root.layout == 5) {
this.gotoAndStop(6);
} else if (_root.layout == 6) {
this.gotoAndStop(7);
} else if (_root.layout == 7) {
this.gotoAndStop(8);
} else if (_root.layout == 8) {
this.gotoAndStop(9);
} else if (_root.layout == 9) {
this.gotoAndStop(10);
} else if (_root.layout == 10) {
this.gotoAndStop(11);
}
}
Instance of Symbol 1959 MovieClip "camera" in Frame 33
onClipEvent (enterFrame) {
if ((!_root.player2.hitTest(_root.side1)) || (!_root.player2.hitTest(_root.side2))) {
if ((!_root.player1.hitTest(_root.side1)) || (!_root.player1.hitTest(_root.side2))) {
if (this._x > 225) {
if (((_root.player1._x + _root.player1.char._x) < (this._x - 250)) || ((_root.player2._x + _root.player2.char._x) < (this._x - 250))) {
this._x = this._x - 5;
}
}
}
}
if ((!_root.player2.hitTest(_root.side1)) || (!_root.player2.hitTest(_root.side2))) {
if ((!_root.player1.hitTest(_root.side1)) || (!_root.player1.hitTest(_root.side2))) {
if (this._x < 525) {
if (((_root.player1._x + _root.player1.char._x) > (this._x + 250)) || ((_root.player2._x + _root.player2.char._x) > (this._x + 250))) {
this._x = this._x + 5;
}
}
}
}
}
Instance of Symbol 1970 MovieClip "ready" in Frame 33
onClipEvent (enterFrame) {
if (_root.blackin._currentframe == 20) {
this.play();
}
}
Instance of Symbol 1998 MovieClip "ko" in Frame 33
onClipEvent (enterFrame) {
this._x = _root.camera._x - 73.2;
this._y = _root.camera._y - 39;
}
Instance of Symbol 448 MovieClip "blackout" in Frame 33
onClipEvent (load) {
gotoAndStop (31);
}
onClipEvent (enterFrame) {
this._x = _root.camera._x - 375;
}
Instance of Symbol 2023 MovieClip "pausee" in Frame 33
onClipEvent (enterFrame) {
if ((_root.ready._currentframe == 72) && (_root.gameover == false)) {
if (this._currentframe == 1) {
if (Key.isDown(32) || (Key.isDown(13))) {
_root.stop();
this.play();
_root.gameplay = false;
}
}
}
this._x = _root.camera._x - 375;
}
Instance of Symbol 2013 MovieClip "blacklose" in Frame 33
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
this._x = _root.camera._x - 375;
}
Frame 34
_root.player2char++;
if (_root.player2char == _root.player1char) {
_root.player2char++;
}
if (((_root.player2char > 8) && (_root.characterunlocked == false)) || ((_root.player2char > 10) && (_root.characterunlocked == true))) {
_root.nextFrame();
} else {
gotoAndStop (32);
}
Frame 35
stop();
_root.backtostart = false;
bts = 0;
onEnterFrame = function () {
if (_root.backtostart == true) {
bts++;
}
if (bts > 38) {
_root.gotoAndStop(5);
bts = 0;
_root.backtostart = false;
}
};
Instance of Symbol 2315 MovieClip in Frame 35
onClipEvent (load) {
this.gotoAndStop(_root.difficulty);
}
Instance of Symbol 2317 MovieClip in Frame 35
onClipEvent (load) {
if (_root.characterunlocked == false) {
this._alpha = 100;
} else {
this._alpha = 0;
}
}
Instance of Symbol 448 MovieClip "blackout" in Frame 35
onClipEvent (load) {
this.stop();
}
Frame 36
stop();
Instance of Symbol 2219 MovieClip in Frame 36
onClipEvent (enterFrame) {
if (this._currentframe == 1904) {
_root.nextFrame();
}
}
Frame 37
gotoAndStop (6);
Symbol 11 MovieClip Frame 1
stop();
Symbol 11 MovieClip Frame 510
stop();
_parent.play();
Symbol 18 Button
on (release) {
_root.gotoAndPlay(3);
}
Symbol 19 MovieClip Frame 1
percentage_loaded = (_root.getBytesLoaded() / _root.getBytesTotal()) * 100;
loadbar_goto = Math.floor(percentage_loaded) * 5;
play();
Symbol 19 MovieClip Frame 2
if (percentage_loaded < 100) {
with (this.barload) {
gotoAndStop(loadbar_goto);
}
gotoAndPlay (1);
} else {
with (this.barload) {
gotoAndPlay(500);
}
stop();
}
Symbol 19 MovieClip Frame 4
stop();
Symbol 23 Button
on (release) {
getURL ("http://www.newgrounds.com/collection/picoday2007.html", "_blank");
}
Symbol 150 MovieClip Frame 111
stop();
Symbol 238 MovieClip Frame 1
stop();
Symbol 239 MovieClip Frame 380
_root.play();
Symbol 249 MovieClip Frame 1
stop();
Symbol 249 MovieClip Frame 5
stop();
Symbol 267 MovieClip Frame 1
stop();
Symbol 277 MovieClip Frame 1
stop();
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) {
onoff = random(100) + 20;
timer = 0;
onoff2 = random(15) + 10;
timer2 = 0;
fade = false;
fade2 = false;
}
onClipEvent (enterFrame) {
if (this._alpha >= 100) {
timer2 = 0;
fade2 = false;
timer++;
if (timer >= onoff) {
fade = true;
}
}
if (fade == true) {
this._alpha = this._alpha - 5;
if (this._alpha == 0) {
onoff = random(100) + 20;
fade = false;
}
}
if (this._alpha <= 0) {
timer = 0;
fade = false;
timer2++;
if (timer2 >= onoff2) {
fade2 = true;
}
}
if (fade2 == true) {
this._alpha = this._alpha + 10;
if (this._alpha == 100) {
onoff2 = random(15) + 10;
fade2 = false;
}
}
}
Symbol 301 MovieClip Frame 1
stop();
Symbol 301 MovieClip Frame 4
stop();
Symbol 306 Button
on (release) {
if (_root.arcadecount == false) {
gotoAndStop (4);
}
}
Symbol 310 Button
on (release) {
_root.arcadeani.play();
_root.arcadecount = true;
stopAllSounds();
}
Symbol 314 Button
on (release) {
if (_root.arcadecount == false) {
gotoAndStop (2);
}
}
Symbol 318 Button
on (release) {
if (_root.arcadecount == false) {
gotoAndStop (3);
}
}
Instance of Symbol 249 MovieClip "ground" in Symbol 319 MovieClip Frame 3
onClipEvent (load) {
Xpos = this._x;
this.gotoAndStop(_root.layout);
}
onClipEvent (enterFrame) {
this._x = Xpos + (0 * (_root.camera._x - 375));
}
Instance of Symbol 267 MovieClip in Symbol 319 MovieClip Frame 7
onClipEvent (load) {
Xpos = this._x;
this.gotoAndStop(_root.layout);
}
onClipEvent (enterFrame) {
this._x = Xpos + (0.2 * (_root.camera._x - 375));
}
Instance of Symbol 277 MovieClip in Symbol 319 MovieClip Frame 8
onClipEvent (load) {
Xpos = this._x;
this.gotoAndStop(_root.layout);
}
onClipEvent (enterFrame) {
this._x = Xpos + (0.1 * (_root.camera._x - 375));
}
Instance of Symbol 301 MovieClip in Symbol 319 MovieClip Frame 11
onClipEvent (load) {
Xpos = this._x;
this.gotoAndStop(_root.layout);
}
onClipEvent (enterFrame) {
this._x = Xpos + (0.3 * (_root.camera._x - 375));
}
Symbol 319 MovieClip Frame 25
_root.play();
Symbol 323 Button
on (release) {
if (_root.arcadecount == false) {
gotoAndStop (9);
}
}
Symbol 324 Button
on (release) {
if (_root.arcadecount == false) {
gotoAndStop (7);
}
}
Symbol 325 Button
on (release) {
if (_root.arcadecount == false) {
gotoAndStop (8);
}
}
Symbol 332 MovieClip Frame 1
stop();
Instance of Symbol 331 MovieClip in Symbol 332 MovieClip Frame 21
onClipEvent (load) {
if (_root.characterunlocked >= 4) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
playerchosen = false;
}
on (rollOver) {
if ((!this._currentframe) == 1) {
if (_root.playergo == false) {
if (playerchosen == false) {
this.gotoAndStop(3);
_root.player1char = 7;
}
}
}
}
on (rollOut) {
if ((!this._currentframe) == 1) {
if (_root.playergo == false) {
if (playerchosen == false) {
this.gotoAndStop(2);
}
}
}
}
on (press) {
if ((!this._currentframe) == 1) {
if (_root.playergo == false) {
if (playerchosen == false) {
this.gotoAndStop(4);
}
}
}
}
on (release) {
if ((!this._currentframe) == 1) {
if (_root.playergo == false) {
playerchosen = true;
}
}
}
onClipEvent (enterFrame) {
if ((!this._currentframe) == 1) {
if (playerchosen == true) {
this.gotoAndStop(3);
_root.playergo = true;
}
}
}
Instance of Symbol 331 MovieClip in Symbol 332 MovieClip Frame 22
onClipEvent (load) {
if (_root.characterunlocked >= 4) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
playerchosen = false;
}
on (rollOver) {
if ((!this._currentframe) == 1) {
if (_root.playergo == false) {
if (playerchosen == false) {
this.gotoAndStop(3);
_root.player1char = 6;
}
}
}
}
on (rollOut) {
if ((!this._currentframe) == 1) {
if (_root.playergo == false) {
if (playerchosen == false) {
this.gotoAndStop(2);
}
}
}
}
on (press) {
if ((!this._currentframe) == 1) {
if (_root.playergo == false) {
if (playerchosen == false) {
this.gotoAndStop(4);
}
}
}
}
on (release) {
if ((!this._currentframe) == 1) {
if (_root.playergo == false) {
playerchosen = true;
}
}
}
onClipEvent (enterFrame) {
if ((!this._currentframe) == 1) {
if (playerchosen == true) {
this.gotoAndStop(3);
_root.playergo = true;
}
}
}
Instance of Symbol 331 MovieClip in Symbol 332 MovieClip Frame 23
onClipEvent (load) {
if (_root.characterunlocked >= 3) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
playerchosen = false;
}
on (rollOver) {
if ((!this._currentframe) == 1) {
if (_root.playergo == false) {
if (playerchosen == false) {
this.gotoAndStop(3);
_root.player1char = 8;
}
}
}
}
on (rollOut) {
if ((!this._currentframe) == 1) {
if (_root.playergo == false) {
if (playerchosen == false) {
this.gotoAndStop(2);
}
}
}
}
on (press) {
if ((!this._currentframe) == 1) {
if (_root.playergo == false) {
if (playerchosen == false) {
this.gotoAndStop(4);
}
}
}
}
on (release) {
if ((!this._currentframe) == 1) {
if (_root.playergo == false) {
playerchosen = true;
}
}
}
onClipEvent (enterFrame) {
if ((!this._currentframe) == 1) {
if (playerchosen == true) {
this.gotoAndStop(3);
_root.playergo = true;
}
}
}
Instance of Symbol 331 MovieClip in Symbol 332 MovieClip Frame 24
onClipEvent (load) {
if (_root.characterunlocked >= 2) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
playerchosen = false;
}
on (rollOver) {
if ((!this._currentframe) == 1) {
if (_root.playergo == false) {
if (playerchosen == false) {
this.gotoAndStop(3);
_root.player1char = 7;
}
}
}
}
on (rollOut) {
if ((!this._currentframe) == 1) {
if (_root.playergo == false) {
if (playerchosen == false) {
this.gotoAndStop(2);
}
}
}
}
on (press) {
if ((!this._currentframe) == 1) {
if (_root.playergo == false) {
if (playerchosen == false) {
this.gotoAndStop(4);
}
}
}
}
on (release) {
if ((!this._currentframe) == 1) {
if (_root.playergo == false) {
playerchosen = true;
}
}
}
onClipEvent (enterFrame) {
if ((!this._currentframe) == 1) {
if (playerchosen == true) {
this.gotoAndStop(3);
_root.playergo = true;
}
}
}
Instance of Symbol 331 MovieClip in Symbol 332 MovieClip Frame 25
onClipEvent (load) {
if (_root.characterunlocked >= 2) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
playerchosen = false;
}
on (rollOver) {
if ((!this._currentframe) == 1) {
if (_root.playergo == false) {
if (playerchosen == false) {
this.gotoAndStop(3);
_root.player1char = 6;
}
}
}
}
on (rollOut) {
if ((!this._currentframe) == 1) {
if (_root.playergo == false) {
if (playerchosen == false) {
this.gotoAndStop(2);
}
}
}
}
on (press) {
if ((!this._currentframe) == 1) {
if (_root.playergo == false) {
if (playerchosen == false) {
this.gotoAndStop(4);
}
}
}
}
on (release) {
if ((!this._currentframe) == 1) {
if (_root.playergo == false) {
playerchosen = true;
}
}
}
onClipEvent (enterFrame) {
if ((!this._currentframe) == 1) {
if (playerchosen == true) {
this.gotoAndStop(3);
_root.playergo = true;
}
}
}
Instance of Symbol 331 MovieClip in Symbol 332 MovieClip Frame 26
onClipEvent (load) {
if (_root.characterunlocked >= 1) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
playerchosen = false;
}
on (rollOver) {
if ((!this._currentframe) == 1) {
if (_root.playergo == false) {
if (playerchosen == false) {
this.gotoAndStop(3);
_root.player1char = 5;
}
}
}
}
on (rollOut) {
if ((!this._currentframe) == 1) {
if (_root.playergo == false) {
if (playerchosen == false) {
this.gotoAndStop(2);
}
}
}
}
on (press) {
if ((!this._currentframe) == 1) {
if (_root.playergo == false) {
if (playerchosen == false) {
this.gotoAndStop(4);
}
}
}
}
on (release) {
if ((!this._currentframe) == 1) {
if (_root.playergo == false) {
playerchosen = true;
}
}
}
onClipEvent (enterFrame) {
if ((!this._currentframe) == 1) {
if (playerchosen == true) {
this.gotoAndStop(3);
_root.playergo = true;
}
}
}
Instance of Symbol 331 MovieClip in Symbol 332 MovieClip Frame 27
onClipEvent (load) {
if (_root.characterunlocked >= 1) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
playerchosen = false;
}
on (rollOver) {
if ((!this._currentframe) == 1) {
if (_root.playergo == false) {
if (playerchosen == false) {
this.gotoAndStop(3);
_root.player1char = 4;
}
}
}
}
on (rollOut) {
if ((!this._currentframe) == 1) {
if (_root.playergo == false) {
if (playerchosen == false) {
this.gotoAndStop(2);
}
}
}
}
on (press) {
if ((!this._currentframe) == 1) {
if (_root.playergo == false) {
if (playerchosen == false) {
this.gotoAndStop(4);
}
}
}
}
on (release) {
if ((!this._currentframe) == 1) {
if (_root.playergo == false) {
playerchosen = true;
}
}
}
onClipEvent (enterFrame) {
if ((!this._currentframe) == 1) {
if (playerchosen == true) {
this.gotoAndStop(3);
_root.playergo = true;
}
}
}
Instance of Symbol 331 MovieClip in Symbol 332 MovieClip Frame 28
onClipEvent (load) {
if (_root.characterunlocked >= 2) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
playerchosen = false;
}
on (rollOver) {
if ((!this._currentframe) == 1) {
if (_root.playergo == false) {
if (playerchosen == false) {
this.gotoAndStop(3);
_root.player1char = 7;
}
}
}
}
on (rollOut) {
if ((!this._currentframe) == 1) {
if (_root.playergo == false) {
if (playerchosen == false) {
this.gotoAndStop(2);
}
}
}
}
on (press) {
if ((!this._currentframe) == 1) {
if (_root.playergo == false) {
if (playerchosen == false) {
this.gotoAndStop(4);
}
}
}
}
on (release) {
if ((!this._currentframe) == 1) {
if (_root.playergo == false) {
playerchosen = true;
}
}
}
onClipEvent (enterFrame) {
if ((!this._currentframe) == 1) {
if (playerchosen == true) {
this.gotoAndStop(3);
_root.playergo = true;
}
}
}
Instance of Symbol 331 MovieClip in Symbol 332 MovieClip Frame 29
onClipEvent (load) {
if (_root.characterunlocked >= 2) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
playerchosen = false;
}
on (rollOver) {
if ((!this._currentframe) == 1) {
if (_root.playergo == false) {
if (playerchosen == false) {
this.gotoAndStop(3);
_root.player1char = 6;
}
}
}
}
on (rollOut) {
if ((!this._currentframe) == 1) {
if (_root.playergo == false) {
if (playerchosen == false) {
this.gotoAndStop(2);
}
}
}
}
on (press) {
if ((!this._currentframe) == 1) {
if (_root.playergo == false) {
if (playerchosen == false) {
this.gotoAndStop(4);
}
}
}
}
on (release) {
if ((!this._currentframe) == 1) {
if (_root.playergo == false) {
playerchosen = true;
}
}
}
onClipEvent (enterFrame) {
if ((!this._currentframe) == 1) {
if (playerchosen == true) {
this.gotoAndStop(3);
_root.playergo = true;
}
}
}
Instance of Symbol 331 MovieClip in Symbol 332 MovieClip Frame 30
onClipEvent (load) {
if (_root.characterunlocked >= 1) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
playerchosen = false;
}
on (rollOver) {
if ((!this._currentframe) == 1) {
if (_root.playergo == false) {
if (playerchosen == false) {
this.gotoAndStop(3);
_root.player1char = 5;
}
}
}
}
on (rollOut) {
if ((!this._currentframe) == 1) {
if (_root.playergo == false) {
if (playerchosen == false) {
this.gotoAndStop(2);
}
}
}
}
on (press) {
if ((!this._currentframe) == 1) {
if (_root.playergo == false) {
if (playerchosen == false) {
this.gotoAndStop(4);
}
}
}
}
on (release) {
if ((!this._currentframe) == 1) {
if (_root.playergo == false) {
playerchosen = true;
}
}
}
onClipEvent (enterFrame) {
if ((!this._currentframe) == 1) {
if (playerchosen == true) {
this.gotoAndStop(3);
_root.playergo = true;
}
}
}
Symbol 332 MovieClip Frame 51
stop();
Symbol 333 Button
on (release) {
gotoAndPlay (4);
}
Symbol 334 Button
on (release) {
_root.arcadeani.play();
_root.arcadecount = true;
}
Symbol 349 Button
on (release) {
gotoAndStop (3);
}
Symbol 365 Button
on (release) {
_root.backtostart = true;
this._parent.play();
}
Symbol 370 MovieClip Frame 14
stop();
Symbol 371 MovieClip Frame 1
stop();
Instance of Symbol 345 MovieClip in Symbol 371 MovieClip Frame 1
onClipEvent (load) {
this.gotoAndStop(1);
}
onClipEvent (enterFrame) {
if (_root._quality == "HIGH") {
this.qua.gotoAndStop(2);
} else {
this.qua.gotoAndStop(1);
}
}
on (release) {
_root._quality = "HIGH";
}
Instance of Symbol 345 MovieClip in Symbol 371 MovieClip Frame 1
onClipEvent (load) {
this.gotoAndStop(2);
}
onClipEvent (enterFrame) {
if (_root._quality == "MEDIUM") {
this.qua.gotoAndStop(2);
} else {
this.qua.gotoAndStop(1);
}
}
on (release) {
_root._quality = "MEDIUM";
}
Instance of Symbol 345 MovieClip in Symbol 371 MovieClip Frame 1
onClipEvent (load) {
this.gotoAndStop(3);
}
onClipEvent (enterFrame) {
if (_root._quality == "LOW") {
this.qua.gotoAndStop(2);
} else {
this.qua.gotoAndStop(1);
}
}
on (release) {
_root._quality = "LOW";
}
Instance of Symbol 357 MovieClip in Symbol 371 MovieClip Frame 1
onClipEvent (load) {
this.gotoAndStop(1);
}
onClipEvent (enterFrame) {
if (_root.difficulty == 1) {
this.qua.gotoAndStop(2);
} else {
this.qua.gotoAndStop(1);
}
}
on (release) {
_root.difficulty = 1;
}
Instance of Symbol 357 MovieClip in Symbol 371 MovieClip Frame 1
onClipEvent (load) {
this.gotoAndStop(2);
}
onClipEvent (enterFrame) {
if (_root.difficulty == 2) {
this.qua.gotoAndStop(2);
} else {
this.qua.gotoAndStop(1);
}
}
on (release) {
_root.difficulty = 2;
}
Instance of Symbol 357 MovieClip in Symbol 371 MovieClip Frame 1
onClipEvent (load) {
this.gotoAndStop(3);
}
onClipEvent (enterFrame) {
if (_root.difficulty == 3) {
this.qua.gotoAndStop(2);
} else {
this.qua.gotoAndStop(1);
}
}
on (release) {
_root.difficulty = 3;
}
Instance of Symbol 370 MovieClip in Symbol 371 MovieClip Frame 2
onClipEvent (enterFrame) {
if (this._currentframe == 27) {
this._parent.gotoAndStop(1);
}
}
Symbol 373 Button
on (release) {
_root.backtostart = true;
play();
}
Symbol 377 MovieClip Frame 15
stop();
Symbol 393 Button
on (release) {
stopAllSounds();
_root.arcadeani.play();
_root.arcadecount = true;
}
Symbol 394 Button
on (release) {
stopAllSounds();
_root.creditani.play();
_root.creditcount = true;
}
Symbol 395 Button
on (release) {
stopAllSounds();
_root.creditani.play();
_root.musiccount = true;
}
Symbol 407 MovieClip Frame 17
stop();
Symbol 409 MovieClip Frame 1
stop();
Symbol 436 Button
on (release) {
_root.player1char = 1;
_root.storycount = true;
this.play();
}
Symbol 442 MovieClip Frame 32
stop();
Symbol 442 MovieClip Frame 46
stop();
Symbol 445 Button
on (release) {
if (this.picostory._currentframe == 32) {
_root.backtostart = true;
play();
this.picostory.play();
}
}
Symbol 446 MovieClip Frame 10
stop();
Symbol 446 MovieClip Frame 23
stop();
Symbol 448 MovieClip Frame 1
stop();
Symbol 448 MovieClip Frame 40
_root.play();
stopAllSounds();
Symbol 515 MovieClip Frame 1
speechSound = new Sound(this);
speechSound.attachSound("speech");
shock1 = new Sound(this);
shock1.attachSound("storyshock");
shock2 = new Sound(this);
shock2.attachSound("storyshock2");
_root.TeacherSound.start(0, 999);
Symbol 515 MovieClip Frame 55
speechSound.start(0, 5);
Symbol 515 MovieClip Frame 83
speechSound.stop();
Symbol 515 MovieClip Frame 92
speechSound.start(0, 5);
Symbol 515 MovieClip Frame 150
speechSound.stop();
Instance of Symbol 466 MovieClip in Symbol 515 MovieClip Frame 151
onClipEvent (load) {
this._parent.stop();
}
on (release) {
this._parent.play();
}
Symbol 515 MovieClip Frame 152
speechSound.start(0, 5);
shock1.start(0, 1);
Symbol 515 MovieClip Frame 174
speechSound.stop();
Symbol 515 MovieClip Frame 191
stop();
Instance of Symbol 466 MovieClip in Symbol 515 MovieClip Frame 191
onClipEvent (load) {
this._parent.stop();
}
on (release) {
this._parent.play();
}
Symbol 515 MovieClip Frame 192
speechSound.start(0, 5);
Symbol 515 MovieClip Frame 218
_root.TeacherSound.stop();
shock2.start(0, 1);
Symbol 515 MovieClip Frame 219
_root.CasandraSound.start(0, 999);
Symbol 515 MovieClip Frame 230
speechSound.stop();
Instance of Symbol 466 MovieClip in Symbol 515 MovieClip Frame 230
onClipEvent (load) {
this._parent.stop();
}
on (release) {
this._parent.play();
}
Symbol 515 MovieClip Frame 231
speechSound.start(0, 5);
Symbol 515 MovieClip Frame 250
speechSound.stop();
Instance of Symbol 466 MovieClip in Symbol 515 MovieClip Frame 250
onClipEvent (load) {
this._parent.stop();
}
on (release) {
this._parent.play();
}
Symbol 515 MovieClip Frame 251
speechSound.start(0, 5);
Symbol 515 MovieClip Frame 262
speechSound.stop();
Instance of Symbol 466 MovieClip in Symbol 515 MovieClip Frame 262
onClipEvent (load) {
this._parent.stop();
}
on (release) {
this._parent.play();
}
Symbol 515 MovieClip Frame 263
speechSound.start(0, 5);
Symbol 515 MovieClip Frame 269
speechSound.stop();
Instance of Symbol 466 MovieClip in Symbol 515 MovieClip Frame 269
onClipEvent (load) {
this._parent.stop();
}
on (release) {
this._parent.play();
}
Symbol 515 MovieClip Frame 281
stopAllSounds();
Symbol 515 MovieClip Frame 321
speechSound.start(0, 5);
Symbol 515 MovieClip Frame 340
speechSound.stop();
Instance of Symbol 466 MovieClip in Symbol 515 MovieClip Frame 340
onClipEvent (load) {
this._parent.stop();
}
on (release) {
this._parent.play();
}
Symbol 515 MovieClip Frame 365
stopAllSounds();
_root.play();
Symbol 517 MovieClip Frame 1
loop1Sound = new Sound(this);
loop1Sound.attachSound("loop1");
loop2Sound = new Sound(this);
loop2Sound.attachSound("loop2");
loop3Sound = new Sound(this);
loop3Sound.attachSound("loop3");
loop4Sound = new Sound(this);
loop4Sound.attachSound("loop4");
loop5Sound = new Sound(this);
loop5Sound.attachSound("loop5");
loop6Sound = new Sound(this);
loop6Sound.attachSound("loop6");
loop7Sound = new Sound(this);
loop7Sound.attachSound("loop7");
loop8Sound = new Sound(this);
loop8Sound.attachSound("loop8");
loop9Sound = new Sound(this);
loop9Sound.attachSound("loop9");
loop10Sound = new Sound(this);
loop10Sound.attachSound("loop10");
loop11Sound = new Sound(this);
loop11Sound.attachSound("loop11");
loop12Sound = new Sound(this);
loop12Sound.attachSound("loop12");
loop13Sound = new Sound(this);
loop13Sound.attachSound("loop13");
loop14Sound = new Sound(this);
loop14Sound.attachSound("loop14");
loop15Sound = new Sound(this);
loop15Sound.attachSound("loop15");
Symbol 517 MovieClip Frame 2
loop1Sound.start(0, 99999);
onEnterFrame = function () {
loop1Sound.setVolume(_root.volumelol);
stop();
};
Symbol 517 MovieClip Frame 3
loop2Sound.start(0, 99999);
onEnterFrame = function () {
loop2Sound.setVolume(_root.volumelol);
stop();
};
Symbol 517 MovieClip Frame 4
loop3Sound.start(0, 99999);
onEnterFrame = function () {
loop3Sound.setVolume(_root.volumelol);
stop();
};
Symbol 517 MovieClip Frame 5
loop4Sound.start(0, 99999);
onEnterFrame = function () {
loop4Sound.setVolume(_root.volumelol);
stop();
};
Symbol 517 MovieClip Frame 6
loop5Sound.start(0, 99999);
onEnterFrame = function () {
loop5Sound.setVolume(_root.volumelol);
stop();
};
Symbol 517 MovieClip Frame 7
loop6Sound.start(0, 99999);
onEnterFrame = function () {
loop6Sound.setVolume(_root.volumelol);
stop();
};
Symbol 517 MovieClip Frame 8
loop7Sound.start(0, 99999);
onEnterFrame = function () {
loop7Sound.setVolume(_root.volumelol);
stop();
};
Symbol 517 MovieClip Frame 9
loop8Sound.start(0, 99999);
onEnterFrame = function () {
loop8Sound.setVolume(_root.volumelol);
stop();
};
Symbol 517 MovieClip Frame 10
loop9Sound.start(0, 99999);
onEnterFrame = function () {
loop9Sound.setVolume(_root.volumelol);
stop();
};
Symbol 517 MovieClip Frame 11
loop10Sound.start(0, 99999);
onEnterFrame = function () {
loop10Sound.setVolume(_root.volumelol);
stop();
};
Symbol 542 MovieClip Frame 1
speechSound = new Sound(this);
speechSound.attachSound("speech");
shock1 = new Sound(this);
shock1.attachSound("storyshock");
shock2 = new Sound(this);
shock2.attachSound("storyshock2");
Symbol 542 MovieClip Frame 55
speechSound.start(0, 5);
Symbol 542 MovieClip Frame 178
speechSound.stop();
Instance of Symbol 466 MovieClip in Symbol 542 MovieClip Frame 178
onClipEvent (load) {
this._parent.stop();
}
on (release) {
this._parent.play();
}
Symbol 542 MovieClip Frame 190
speechSound.start(0, 5);
Symbol 542 MovieClip Frame 215
speechSound.stop();
Instance of Symbol 466 MovieClip in Symbol 542 MovieClip Frame 215
onClipEvent (load) {
this._parent.stop();
}
on (release) {
this._parent.play();
}
Symbol 542 MovieClip Frame 228
speechSound.start(0, 5);
Symbol 542 MovieClip Frame 238
speechSound.stop();
Symbol 542 MovieClip Frame 244
speechSound.start(0, 5);
Symbol 542 MovieClip Frame 266
speechSound.stop();
Instance of Symbol 466 MovieClip in Symbol 542 MovieClip Frame 266
onClipEvent (load) {
this._parent.stop();
}
on (release) {
this._parent.play();
}
Symbol 542 MovieClip Frame 289
_root.play();
Symbol 626 MovieClip Frame 10
stop();
Symbol 670 MovieClip Frame 17
stop();
Symbol 674 MovieClip Frame 10
stop();
Symbol 675 MovieClip Frame 1
stop();
Symbol 675 MovieClip Frame 2
stop();
Symbol 675 MovieClip Frame 3
stop();
Symbol 675 MovieClip Frame 4
stop();
Symbol 675 MovieClip Frame 5
stop();
Symbol 675 MovieClip Frame 6
stop();
Symbol 675 MovieClip Frame 7
stop();
Instance of Symbol 574 MovieClip "attack" in Symbol 675 MovieClip Frame 7
onClipEvent (enterFrame) {
if (this._currentframe == 11) {
this._parent.gotoAndStop("idle");
}
}
Symbol 675 MovieClip Frame 8
stop();
Instance of Symbol 589 MovieClip "attack" in Symbol 675 MovieClip Frame 8
onClipEvent (enterFrame) {
if (this._currentframe == 17) {
this._parent.gotoAndStop("idle");
}
}
Symbol 675 MovieClip Frame 9
stop();
Instance of Symbol 598 MovieClip "attack" in Symbol 675 MovieClip Frame 9
onClipEvent (enterFrame) {
if (this._currentframe == 10) {
this._parent.gotoAndStop("duck");
}
}
Symbol 675 MovieClip Frame 10
stop();
Instance of Symbol 609 MovieClip "attack" in Symbol 675 MovieClip Frame 10
onClipEvent (enterFrame) {
if (this._currentframe == 13) {
this._parent.gotoAndStop("duck");
}
}
Symbol 675 MovieClip Frame 11
stop();
Instance of Symbol 622 MovieClip "attack" in Symbol 675 MovieClip Frame 11
onClipEvent (enterFrame) {
if (this._currentframe == 12) {
this._parent.gotoAndStop("duck");
}
}
Symbol 675 MovieClip Frame 12
stop();
Instance of Symbol 626 MovieClip "attack" in Symbol 675 MovieClip Frame 12
onClipEvent (enterFrame) {
if (this._currentframe == 10) {
this._parent.gotoAndStop("duck");
}
}
Symbol 675 MovieClip Frame 13
stop();
Instance of Symbol 634 MovieClip "attack" in Symbol 675 MovieClip Frame 13
onClipEvent (enterFrame) {
if (this._currentframe == 12) {
this._parent.gotoAndStop("jump");
}
}
Symbol 675 MovieClip Frame 14
stop();
Instance of Symbol 647 MovieClip "attack" in Symbol 675 MovieClip Frame 14
onClipEvent (enterFrame) {
if (this._currentframe == 21) {
this._parent.gotoAndStop("jump");
}
}
Symbol 675 MovieClip Frame 15
stop();
Symbol 675 MovieClip Frame 16
stop();
Symbol 675 MovieClip Frame 17
stop();
Symbol 675 MovieClip Frame 18
stop();
Symbol 695 MovieClip Frame 1
stop();
Symbol 854 MovieClip Frame 17
stop();
Symbol 866 MovieClip Frame 10
stop();
Symbol 867 MovieClip Frame 1
stop();
Symbol 867 MovieClip Frame 2
stop();
Symbol 867 MovieClip Frame 3
stop();
Symbol 867 MovieClip Frame 4
stop();
Symbol 867 MovieClip Frame 5
stop();
Symbol 867 MovieClip Frame 6
stop();
Symbol 867 MovieClip Frame 7
stop();
Instance of Symbol 719 MovieClip "attack" in Symbol 867 MovieClip Frame 7
onClipEvent (enterFrame) {
if (this._currentframe == 15) {
this._parent.gotoAndStop("idle");
}
}
Symbol 867 MovieClip Frame 8
stop();
Instance of Symbol 747 MovieClip "attack" in Symbol 867 MovieClip Frame 8
onClipEvent (enterFrame) {
if (this._currentframe == 18) {
this._parent.gotoAndStop("idle");
}
}
Symbol 867 MovieClip Frame 9
stop();
Instance of Symbol 768 MovieClip "attack" in Symbol 867 MovieClip Frame 9
onClipEvent (enterFrame) {
if (this._currentframe == 17) {
this._parent.gotoAndStop("duck");
}
}
Symbol 867 MovieClip Frame 10
stop();
Instance of Symbol 789 MovieClip "attack" in Symbol 867 MovieClip Frame 10
onClipEvent (enterFrame) {
if (this._currentframe == 13) {
this._parent.gotoAndStop("duck");
}
}
Symbol 867 MovieClip Frame 11
stop();
Instance of Symbol 791 MovieClip "attack" in Symbol 867 MovieClip Frame 11
onClipEvent (enterFrame) {
if (this._currentframe == 10) {
this._parent.gotoAndStop("duck");
}
}
Symbol 867 MovieClip Frame 12
stop();
Instance of Symbol 795 MovieClip "attack" in Symbol 867 MovieClip Frame 12
onClipEvent (enterFrame) {
if (this._currentframe == 11) {
this._parent.gotoAndStop("duck");
}
}
Symbol 867 MovieClip Frame 13
stop();
Instance of Symbol 825 MovieClip "attack" in Symbol 867 MovieClip Frame 13
onClipEvent (enterFrame) {
if (this._currentframe == 18) {
this._parent.gotoAndStop("jump");
}
}
Symbol 867 MovieClip Frame 14
stop();
Instance of Symbol 829 MovieClip "attack" in Symbol 867 MovieClip Frame 14
onClipEvent (enterFrame) {
if (this._currentframe == 13) {
this._parent.gotoAndStop("jump");
}
}
Symbol 867 MovieClip Frame 15
stop();
Symbol 867 MovieClip Frame 16
stop();
Symbol 867 MovieClip Frame 17
stop();
Symbol 867 MovieClip Frame 18
stop();
Symbol 966 MovieClip Frame 33
stop();
Symbol 1030 MovieClip Frame 38
stop();
Symbol 1031 MovieClip Frame 1
stop();
Symbol 1031 MovieClip Frame 2
stop();
Symbol 1031 MovieClip Frame 3
stop();
Symbol 1031 MovieClip Frame 4
stop();
Symbol 1031 MovieClip Frame 5
stop();
Symbol 1031 MovieClip Frame 6
stop();
Symbol 1031 MovieClip Frame 7
stop();
Instance of Symbol 900 MovieClip "attack" in Symbol 1031 MovieClip Frame 7
onClipEvent (enterFrame) {
if (this._currentframe == 12) {
this._parent.gotoAndStop("idle");
}
}
Symbol 1031 MovieClip Frame 8
stop();
Instance of Symbol 907 MovieClip "attack" in Symbol 1031 MovieClip Frame 8
onClipEvent (enterFrame) {
if (this._currentframe == 10) {
this._parent.gotoAndStop("idle");
}
}
Symbol 1031 MovieClip Frame 9
stop();
Instance of Symbol 916 MovieClip "attack" in Symbol 1031 MovieClip Frame 9
onClipEvent (enterFrame) {
if (this._currentframe == 13) {
this._parent.gotoAndStop("duck");
}
}
Symbol 1031 MovieClip Frame 10
stop();
Instance of Symbol 922 MovieClip "attack" in Symbol 1031 MovieClip Frame 10
onClipEvent (enterFrame) {
if (this._currentframe == 12) {
this._parent.gotoAndStop("duck");
}
}
Symbol 1031 MovieClip Frame 11
stop();
Instance of Symbol 924 MovieClip "attack" in Symbol 1031 MovieClip Frame 11
onClipEvent (enterFrame) {
if (this._currentframe == 10) {
this._parent.gotoAndStop("duck");
}
}
Symbol 1031 MovieClip Frame 12
stop();
Instance of Symbol 926 MovieClip "attack" in Symbol 1031 MovieClip Frame 12
onClipEvent (enterFrame) {
if (this._currentframe == 10) {
this._parent.gotoAndStop("duck");
}
}
Symbol 1031 MovieClip Frame 13
stop();
Instance of Symbol 935 MovieClip "attack" in Symbol 1031 MovieClip Frame 13
onClipEvent (enterFrame) {
if (this._currentframe == 12) {
this._parent.gotoAndStop("jump");
}
}
Symbol 1031 MovieClip Frame 14
stop();
Instance of Symbol 942 MovieClip "attack" in Symbol 1031 MovieClip Frame 14
onClipEvent (enterFrame) {
if (this._currentframe == 9) {
this._parent.gotoAndStop("jump");
}
}
Symbol 1031 MovieClip Frame 15
stop();
Symbol 1031 MovieClip Frame 16
stop();
Symbol 1031 MovieClip Frame 17
stop();
Symbol 1031 MovieClip Frame 18
stop();
Symbol 1114 MovieClip Frame 31
stop();
Symbol 1148 MovieClip Frame 26
stop();
Symbol 1149 MovieClip Frame 1
stop();
Symbol 1149 MovieClip Frame 2
stop();
Symbol 1149 MovieClip Frame 3
stop();
Symbol 1149 MovieClip Frame 4
stop();
Symbol 1149 MovieClip Frame 5
stop();
Symbol 1149 MovieClip Frame 6
stop();
Symbol 1149 MovieClip Frame 7
stop();
Instance of Symbol 1050 MovieClip "attack" in Symbol 1149 MovieClip Frame 7
onClipEvent (enterFrame) {
if (this._currentframe == 18) {
this._parent.gotoAndStop("idle");
}
}
Symbol 1149 MovieClip Frame 8
stop();
Instance of Symbol 1057 MovieClip "attack" in Symbol 1149 MovieClip Frame 8
onClipEvent (enterFrame) {
if (this._currentframe == 14) {
this._parent.gotoAndStop("idle");
}
}
Symbol 1149 MovieClip Frame 9
stop();
Instance of Symbol 1062 MovieClip "attack" in Symbol 1149 MovieClip Frame 9
onClipEvent (enterFrame) {
if (this._currentframe == 15) {
this._parent.gotoAndStop("duck");
}
}
Symbol 1149 MovieClip Frame 10
stop();
Instance of Symbol 1067 MovieClip "attack" in Symbol 1149 MovieClip Frame 10
onClipEvent (enterFrame) {
if (this._currentframe == 17) {
this._parent.gotoAndStop("duck");
}
}
Symbol 1149 MovieClip Frame 11
stop();
Instance of Symbol 1070 MovieClip "attack" in Symbol 1149 MovieClip Frame 11
onClipEvent (enterFrame) {
if (this._currentframe == 9) {
this._parent.gotoAndStop("duck");
}
}
Symbol 1149 MovieClip Frame 12
stop();
Instance of Symbol 1073 MovieClip "attack" in Symbol 1149 MovieClip Frame 12
onClipEvent (enterFrame) {
if (this._currentframe == 10) {
this._parent.gotoAndStop("duck");
}
}
Symbol 1149 MovieClip Frame 13
stop();
Instance of Symbol 1082 MovieClip "attack" in Symbol 1149 MovieClip Frame 13
onClipEvent (enterFrame) {
if (this._currentframe == 20) {
this._parent.gotoAndStop("jump");
}
}
Symbol 1149 MovieClip Frame 14
stop();
Instance of Symbol 1091 MovieClip "attack" in Symbol 1149 MovieClip Frame 14
onClipEvent (enterFrame) {
if (this._currentframe == 17) {
this._parent.gotoAndStop("jump");
}
}
Symbol 1149 MovieClip Frame 15
stop();
Symbol 1149 MovieClip Frame 16
stop();
Symbol 1149 MovieClip Frame 17
stop();
Symbol 1149 MovieClip Frame 18
stop();
Symbol 1229 MovieClip Frame 15
stop();
Symbol 1237 MovieClip Frame 1
stop();
Symbol 1237 MovieClip Frame 2
stop();
Symbol 1237 MovieClip Frame 3
stop();
Symbol 1237 MovieClip Frame 4
stop();
Symbol 1237 MovieClip Frame 5
stop();
Symbol 1237 MovieClip Frame 6
stop();
Symbol 1237 MovieClip Frame 7
stop();
Instance of Symbol 1171 MovieClip "attack" in Symbol 1237 MovieClip Frame 7
onClipEvent (enterFrame) {
if (this._currentframe == 10) {
this._parent.gotoAndStop("idle");
}
}
Symbol 1237 MovieClip Frame 8
stop();
Instance of Symbol 1178 MovieClip "attack" in Symbol 1237 MovieClip Frame 8
onClipEvent (enterFrame) {
if (this._currentframe == 14) {
this._parent.gotoAndStop("idle");
}
}
Symbol 1237 MovieClip Frame 9
stop();
Instance of Symbol 1185 MovieClip "attack" in Symbol 1237 MovieClip Frame 9
onClipEvent (enterFrame) {
if (this._currentframe == 10) {
this._parent.gotoAndStop("duck");
}
}
Symbol 1237 MovieClip Frame 10
stop();
Instance of Symbol 1190 MovieClip "attack" in Symbol 1237 MovieClip Frame 10
onClipEvent (enterFrame) {
if (this._currentframe == 13) {
this._parent.gotoAndStop("duck");
}
}
Symbol 1237 MovieClip Frame 11
stop();
Instance of Symbol 1200 MovieClip "attack" in Symbol 1237 MovieClip Frame 11
onClipEvent (enterFrame) {
if (this._currentframe == 17) {
this._parent.gotoAndStop("duck");
}
}
Symbol 1237 MovieClip Frame 12
stop();
Instance of Symbol 1202 MovieClip "attack" in Symbol 1237 MovieClip Frame 12
onClipEvent (enterFrame) {
if (this._currentframe == 10) {
this._parent.gotoAndStop("duck");
}
}
Symbol 1237 MovieClip Frame 13
stop();
Instance of Symbol 1209 MovieClip "attack" in Symbol 1237 MovieClip Frame 13
onClipEvent (enterFrame) {
if (this._currentframe == 12) {
this._parent.gotoAndStop("jump");
}
}
Symbol 1237 MovieClip Frame 14
stop();
Instance of Symbol 1216 MovieClip "attack" in Symbol 1237 MovieClip Frame 14
onClipEvent (enterFrame) {
if (this._currentframe == 12) {
this._parent.gotoAndStop("jump");
}
}
Symbol 1237 MovieClip Frame 15
stop();
Symbol 1237 MovieClip Frame 16
stop();
Symbol 1237 MovieClip Frame 17
stop();
Symbol 1237 MovieClip Frame 18
stop();
Symbol 1338 MovieClip Frame 20
stop();
Symbol 1340 MovieClip Frame 35
stop();
Symbol 1341 MovieClip Frame 1
stop();
Symbol 1341 MovieClip Frame 2
stop();
Symbol 1341 MovieClip Frame 3
stop();
Symbol 1341 MovieClip Frame 4
stop();
Symbol 1341 MovieClip Frame 5
stop();
Symbol 1341 MovieClip Frame 6
stop();
Symbol 1341 MovieClip Frame 7
stop();
Instance of Symbol 1264 MovieClip "attack" in Symbol 1341 MovieClip Frame 7
onClipEvent (enterFrame) {
if (this._currentframe == 11) {
this._parent.gotoAndStop("idle");
}
}
Symbol 1341 MovieClip Frame 8
stop();
Instance of Symbol 1271 MovieClip "attack" in Symbol 1341 MovieClip Frame 8
onClipEvent (enterFrame) {
if (this._currentframe == 13) {
this._parent.gotoAndStop("idle");
}
}
Symbol 1341 MovieClip Frame 9
stop();
Instance of Symbol 1282 MovieClip "attack" in Symbol 1341 MovieClip Frame 9
onClipEvent (enterFrame) {
if (this._currentframe == 9) {
this._parent.gotoAndStop("duck");
}
}
Symbol 1341 MovieClip Frame 10
stop();
Instance of Symbol 1289 MovieClip "attack" in Symbol 1341 MovieClip Frame 10
onClipEvent (enterFrame) {
if (this._currentframe == 14) {
this._parent.gotoAndStop("duck");
}
}
Symbol 1341 MovieClip Frame 11
stop();
Instance of Symbol 1291 MovieClip "attack" in Symbol 1341 MovieClip Frame 11
onClipEvent (enterFrame) {
if (this._currentframe == 10) {
this._parent.gotoAndStop("duck");
}
}
Symbol 1341 MovieClip Frame 12
stop();
Instance of Symbol 1293 MovieClip "attack" in Symbol 1341 MovieClip Frame 12
onClipEvent (enterFrame) {
if (this._currentframe == 9) {
this._parent.gotoAndStop("duck");
}
}
Symbol 1341 MovieClip Frame 13
stop();
Instance of Symbol 1301 MovieClip "attack" in Symbol 1341 MovieClip Frame 13
onClipEvent (enterFrame) {
if (this._currentframe == 11) {
this._parent.gotoAndStop("jump");
}
}
Symbol 1341 MovieClip Frame 14
stop();
Instance of Symbol 1308 MovieClip "attack" in Symbol 1341 MovieClip Frame 14
onClipEvent (enterFrame) {
if (this._currentframe == 13) {
this._parent.gotoAndStop("jump");
}
}
Symbol 1341 MovieClip Frame 15
stop();
Symbol 1341 MovieClip Frame 16
stop();
Symbol 1341 MovieClip Frame 17
stop();
Symbol 1341 MovieClip Frame 18
stop();
Symbol 1421 MovieClip Frame 15
stop();
Symbol 1443 MovieClip Frame 36
stop();
Symbol 1444 MovieClip Frame 1
stop();
Symbol 1444 MovieClip Frame 2
stop();
Symbol 1444 MovieClip Frame 3
stop();
Symbol 1444 MovieClip Frame 4
stop();
Symbol 1444 MovieClip Frame 5
stop();
Symbol 1444 MovieClip Frame 6
stop();
Symbol 1444 MovieClip Frame 7
stop();
Instance of Symbol 1367 MovieClip "attack" in Symbol 1444 MovieClip Frame 7
onClipEvent (enterFrame) {
if (this._currentframe == 16) {
this._parent.gotoAndStop("idle");
}
}
Symbol 1444 MovieClip Frame 8
stop();
Instance of Symbol 1374 MovieClip "attack" in Symbol 1444 MovieClip Frame 8
onClipEvent (enterFrame) {
if (this._currentframe == 12) {
this._parent.gotoAndStop("idle");
}
}
Symbol 1444 MovieClip Frame 9
stop();
Instance of Symbol 1383 MovieClip "attack" in Symbol 1444 MovieClip Frame 9
onClipEvent (enterFrame) {
if (this._currentframe == 15) {
this._parent.gotoAndStop("duck");
}
}
Symbol 1444 MovieClip Frame 10
stop();
Instance of Symbol 1392 MovieClip "attack" in Symbol 1444 MovieClip Frame 10
onClipEvent (enterFrame) {
if (this._currentframe == 14) {
this._parent.gotoAndStop("duck");
}
}
Symbol 1444 MovieClip Frame 11
stop();
Instance of Symbol 1396 MovieClip "attack" in Symbol 1444 MovieClip Frame 11
onClipEvent (enterFrame) {
if (this._currentframe == 10) {
this._parent.gotoAndStop("duck");
}
}
Symbol 1444 MovieClip Frame 12
stop();
Instance of Symbol 1398 MovieClip "attack" in Symbol 1444 MovieClip Frame 12
onClipEvent (enterFrame) {
if (this._currentframe == 10) {
this._parent.gotoAndStop("duck");
}
}
Symbol 1444 MovieClip Frame 13
stop();
Instance of Symbol 1403 MovieClip "attack" in Symbol 1444 MovieClip Frame 13
onClipEvent (enterFrame) {
if (this._currentframe == 15) {
this._parent.gotoAndStop("jump");
}
}
Symbol 1444 MovieClip Frame 14
stop();
Instance of Symbol 1405 MovieClip "attack" in Symbol 1444 MovieClip Frame 14
onClipEvent (enterFrame) {
if (this._currentframe == 10) {
this._parent.gotoAndStop("jump");
}
}
Symbol 1444 MovieClip Frame 15
stop();
Symbol 1444 MovieClip Frame 16
stop();
Symbol 1444 MovieClip Frame 17
stop();
Symbol 1444 MovieClip Frame 18
stop();
Symbol 1642 MovieClip Frame 24
stop();
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Instance of Symbol 1657 MovieClip in Symbol 1664 MovieClip Frame 11
onClipEvent (load) {
randomok = random(4) - 2;
if (randomok <= 0) {
this._xscale = 20;
} else {
this._xscale = -20;
}
speed = (random(100) + 40) / 20;
speed2 = (random(10) - 5) / 15;
this.gotoAndPlay(random(9));
}
onClipEvent (enterFrame) {
if (this._y < 150) {
this._y = this._y + speed;
this.x = this.x + speed2;
} else {
this.stop();
}
}
Symbol 1664 MovieClip Frame 16
stop();
Symbol 1665 MovieClip Frame 1
stop();
Symbol 1665 MovieClip Frame 2
stop();
Symbol 1665 MovieClip Frame 3
stop();
Symbol 1665 MovieClip Frame 4
stop();
Symbol 1665 MovieClip Frame 5
stop();
Symbol 1665 MovieClip Frame 6
stop();
Symbol 1665 MovieClip Frame 7
stop();
Instance of Symbol 1483 MovieClip "attack" in Symbol 1665 MovieClip Frame 7
onClipEvent (enterFrame) {
if (this._currentframe == 11) {
this._parent.gotoAndStop("idle");
}
}
Symbol 1665 MovieClip Frame 8
stop();
Instance of Symbol 1498 MovieClip "attack" in Symbol 1665 MovieClip Frame 8
onClipEvent (enterFrame) {
if (this._currentframe == 14) {
this._parent.gotoAndStop("idle");
}
}
Symbol 1665 MovieClip Frame 9
stop();
Instance of Symbol 1524 MovieClip "attack" in Symbol 1665 MovieClip Frame 9
onClipEvent (enterFrame) {
if (this._currentframe == 15) {
this._parent.gotoAndStop("duck");
}
}
Symbol 1665 MovieClip Frame 10
stop();
Instance of Symbol 1546 MovieClip "attack" in Symbol 1665 MovieClip Frame 10
onClipEvent (enterFrame) {
if (this._currentframe == 15) {
this._parent.gotoAndStop("duck");
}
}
Symbol 1665 MovieClip Frame 11
stop();
Instance of Symbol 1557 MovieClip "attack" in Symbol 1665 MovieClip Frame 11
onClipEvent (enterFrame) {
if (this._currentframe == 18) {
this._parent.gotoAndStop("duck");
}
}
Symbol 1665 MovieClip Frame 12
stop();
Instance of Symbol 1579 MovieClip "attack" in Symbol 1665 MovieClip Frame 12
onClipEvent (enterFrame) {
if (this._currentframe == 15) {
this._parent.gotoAndStop("idle");
}
}
Symbol 1665 MovieClip Frame 13
stop();
Instance of Symbol 1590 MovieClip "attack" in Symbol 1665 MovieClip Frame 13
onClipEvent (enterFrame) {
if (this._currentframe == 14) {
this._parent.gotoAndStop("jump");
}
}
Symbol 1665 MovieClip Frame 14
stop();
Instance of Symbol 1615 MovieClip "attack" in Symbol 1665 MovieClip Frame 14
onClipEvent (enterFrame) {
if (this._currentframe == 16) {
this._parent.gotoAndStop("jump");
}
}
Symbol 1665 MovieClip Frame 15
stop();
Symbol 1665 MovieClip Frame 16
stop();
Symbol 1665 MovieClip Frame 17
stop();
Symbol 1665 MovieClip Frame 18
stop();
Symbol 1774 MovieClip Frame 29
stop();
Symbol 1801 MovieClip Frame 25
stop();
Symbol 1802 MovieClip Frame 1
stop();
Symbol 1802 MovieClip Frame 2
stop();
Symbol 1802 MovieClip Frame 3
stop();
Symbol 1802 MovieClip Frame 4
stop();
Symbol 1802 MovieClip Frame 5
stop();
Symbol 1802 MovieClip Frame 6
stop();
Symbol 1802 MovieClip Frame 7
stop();
Instance of Symbol 1709 MovieClip "attack" in Symbol 1802 MovieClip Frame 7
onClipEvent (enterFrame) {
if (this._currentframe == 10) {
this._parent.gotoAndStop("idle");
}
}
Symbol 1802 MovieClip Frame 8
stop();
Instance of Symbol 1716 MovieClip "attack" in Symbol 1802 MovieClip Frame 8
onClipEvent (enterFrame) {
if (this._currentframe == 10) {
this._parent.gotoAndStop("idle");
}
}
Symbol 1802 MovieClip Frame 9
stop();
Instance of Symbol 1724 MovieClip "attack" in Symbol 1802 MovieClip Frame 9
onClipEvent (enterFrame) {
if (this._currentframe == 11) {
this._parent.gotoAndStop("duck");
}
}
Symbol 1802 MovieClip Frame 10
stop();
Instance of Symbol 1731 MovieClip "attack" in Symbol 1802 MovieClip Frame 10
onClipEvent (enterFrame) {
if (this._currentframe == 11) {
this._parent.gotoAndStop("duck");
}
}
Symbol 1802 MovieClip Frame 11
stop();
Instance of Symbol 1739 MovieClip "attack" in Symbol 1802 MovieClip Frame 11
onClipEvent (enterFrame) {
if (this._currentframe == 11) {
this._parent.gotoAndStop("duck");
}
}
Symbol 1802 MovieClip Frame 12
stop();
Instance of Symbol 1741 MovieClip "attack" in Symbol 1802 MovieClip Frame 12
onClipEvent (enterFrame) {
if (this._currentframe == 10) {
this._parent.gotoAndStop("duck");
}
}
Symbol 1802 MovieClip Frame 13
stop();
Instance of Symbol 1743 MovieClip "attack" in Symbol 1802 MovieClip Frame 13
onClipEvent (enterFrame) {
if (this._currentframe == 10) {
this._parent.gotoAndStop("jump");
}
}
Symbol 1802 MovieClip Frame 14
stop();
Instance of Symbol 1750 MovieClip "attack" in Symbol 1802 MovieClip Frame 14
onClipEvent (enterFrame) {
if (this._currentframe == 12) {
this._parent.gotoAndStop("jump");
}
}
Symbol 1802 MovieClip Frame 15
stop();
Symbol 1802 MovieClip Frame 16
stop();
Symbol 1802 MovieClip Frame 17
stop();
Symbol 1802 MovieClip Frame 18
stop();
Symbol 1820 MovieClip Frame 5
play();
Symbol 1820 MovieClip Frame 6
prevFrame();
Symbol 1925 MovieClip Frame 35
stop();
Symbol 1931 MovieClip Frame 32
stop();
Symbol 1932 MovieClip Frame 1
stop();
Symbol 1932 MovieClip Frame 2
stop();
Symbol 1932 MovieClip Frame 3
stop();
Symbol 1932 MovieClip Frame 4
stop();
Symbol 1932 MovieClip Frame 5
stop();
Symbol 1932 MovieClip Frame 6
stop();
Symbol 1932 MovieClip Frame 7
stop();
Instance of Symbol 1845 MovieClip "attack" in Symbol 1932 MovieClip Frame 7
onClipEvent (enterFrame) {
if (this._currentframe == 16) {
this._parent.gotoAndStop("idle");
}
}
Symbol 1932 MovieClip Frame 8
stop();
Instance of Symbol 1859 MovieClip "attack" in Symbol 1932 MovieClip Frame 8
onClipEvent (enterFrame) {
if (this._currentframe == 16) {
this._parent.gotoAndStop("idle");
}
}
Symbol 1932 MovieClip Frame 9
stop();
Instance of Symbol 1880 MovieClip "attack" in Symbol 1932 MovieClip Frame 9
onClipEvent (enterFrame) {
if (this._currentframe == 14) {
this._parent.gotoAndStop("duck");
}
}
Symbol 1932 MovieClip Frame 10
stop();
Instance of Symbol 1889 MovieClip "attack" in Symbol 1932 MovieClip Frame 10
onClipEvent (enterFrame) {
if (this._currentframe == 15) {
this._parent.gotoAndStop("duck");
}
}
Symbol 1932 MovieClip Frame 11
stop();
Instance of Symbol 1898 MovieClip "attack" in Symbol 1932 MovieClip Frame 11
onClipEvent (enterFrame) {
if (this._currentframe == 16) {
this._parent.gotoAndStop("duck");
}
}
Symbol 1932 MovieClip Frame 12
stop();
Instance of Symbol 1902 MovieClip "attack" in Symbol 1932 MovieClip Frame 12
onClipEvent (enterFrame) {
if (this._currentframe == 9) {
this._parent.gotoAndStop("duck");
}
}
Symbol 1932 MovieClip Frame 13
stop();
Instance of Symbol 1906 MovieClip "attack" in Symbol 1932 MovieClip Frame 13
onClipEvent (enterFrame) {
if (this._currentframe == 9) {
this._parent.gotoAndStop("duck");
}
}
Symbol 1932 MovieClip Frame 14
stop();
Instance of Symbol 1910 MovieClip "attack" in Symbol 1932 MovieClip Frame 14
onClipEvent (enterFrame) {
if (this._currentframe == 9) {
this._parent.gotoAndStop("duck");
}
}
Symbol 1932 MovieClip Frame 15
stop();
Symbol 1932 MovieClip Frame 16
stop();
Symbol 1932 MovieClip Frame 17
stop();
Symbol 1932 MovieClip Frame 18
stop();
Instance of Symbol 545 MovieClip in Symbol 1933 MovieClip Frame 1
onClipEvent (enterFrame) {
this._x = _parent.char._x;
this._y = -18.5;
this._xscale = _parent.char._xscale;
}
Instance of Symbol 675 MovieClip "char" in Symbol 1933 MovieClip Frame 1
onClipEvent (load) {
hitcount = 0;
runspeed = 0;
jump = false;
jumpspeed = 25;
jumpattack = true;
airhit = false;
this._xscale = -100;
runornot = 0;
jumpornot = 0;
runstop = 0;
run = false;
attackground = 0;
attackpause = false;
hurt = false;
hurtok = false;
duck = false;
blockornot = 0;
block = false;
}
onClipEvent (enterFrame) {
if (_root.gameplay == true) {
if (_root.gameover == false) {
if (_root.difficulty == 1) {
duck = false;
}
this._x = this._x + runspeed;
if (hurt == true) {
hurtok = true;
if (block == false) {
if (airhit == false) {
if (duck == false) {
this.gotoAndStop("hurt");
} else {
this.gotoAndStop("duckhurt");
}
}
}
if (jump == true) {
airhit = true;
}
timer++;
if (timer == 1) {
if (jump == true) {
if (jumpspeed < 0) {
jumpspeed = jumpspeed * -1;
}
}
}
if (timer > 5) {
if (jump == false) {
if (runspeed < 0) {
runspeed = runspeed + 1;
} else if (runspeed > 0) {
runspeed = runspeed - 1;
}
}
} else {
if ((_root.player2._x + this._x) < (_root.player1._x + _root.player1.char._x)) {
runspeed = -8;
}
if ((_root.player2._x + this._x) > (_root.player1._x + _root.player1.char._x)) {
runspeed = 8;
}
}
if (block == false) {
if ((timer >= 1) && (timer <= 4)) {
this._alpha = 0;
}
if ((timer >= 5) && (timer <= 10)) {
this._alpha = 100;
}
}
if (timer == 10) {
if (jump == false) {
if (duck == true) {
if (hitcount > (2 + ((_root.difficulty - 3) * -2))) {
this.gotoAndStop("duckpunch");
if (_root.difficulty < 3) {
hitcount = 0;
}
} else {
this.gotoAndStop("duck");
}
} else if (hitcount > (2 + ((_root.difficulty - 3) * -2))) {
this.gotoAndStop("punch");
if (_root.difficulty < 3) {
hitcount = 0;
}
} else if (run == true) {
this.gotoAndStop("run");
} else {
this.gotoAndStop("idle");
}
}
hurt = false;
}
}
if (hurt == false) {
if (this._currentframe > 6) {
hitcount = 0;
}
if (_root.player1.char._currentframe < 7) {
hurtok = false;
}
if (this._currentframe == 1) {
duck = false;
}
if (this._currentframe < 1) {
attackpause = false;
}
if (hurtok == false) {
if (_root.player1.char.attack.hurtrect.hitTest(this.hitrect)) {
if (jump == false) {
blockornot = random(100) + 1;
if (blockornot < (-10 + (_root.difficulty * 10))) {
block = true;
} else {
block = false;
}
if (block == true) {
_root.block.start(0, 1);
_root.health2away.text = 1;
if (duck == true) {
this.gotoAndStop("duckblock");
} else {
this.gotoAndStop("block");
}
}
}
if (block == false) {
if (airhit == false) {
hurtsfx = random(4) + 1;
_root["hurt" + hurtsfx].start(0, 1);
_root.health2away.text = 5;
if (duck == false) {
this.gotoAndStop("hurt");
} else {
this.gotoAndStop("duckhurt");
}
}
}
if (airhit == false) {
hurt = true;
}
}
hitcount++;
}
timer = 0;
if (jump == false) {
if (attackpause == true) {
attackground = 0;
duckattack = 0;
}
jumpattack = true;
airhit = false;
if (this._currentframe < 7) {
if ((_root.player2._x + this._x) < (_root.player1._x + _root.player1.char._x)) {
this._xscale = 100;
}
if ((_root.player2._x + this._x) > (_root.player1._x + _root.player1.char._x)) {
this._xscale = -100;
}
}
if (((run == false) && (jump == false)) && (this._currentframe < 4)) {
this.gotoAndStop("idle");
}
tx = _root.player2._x + this._x;
mxr = _root.player1._x + _root.player1.char._x;
rx = mxr - tx;
if ((this.hitTest(_root.player1.char) && (_root.player1.char._currentframe < 4)) && ((!this._currentframe) == 4)) {
this.gotoAndStop("idle");
}
if (this._xscale == -100) {
if (rx > -100) {
run = false;
if (duck == false) {
if (_root.player1.char._currentframe < 15) {
if (attackpause == false) {
attackground = random(300) + 1;
if (attackground < (20 + (_root.difficulty * 20))) {
this.gotoAndStop("punch");
attackpause = true;
} else if (attackground > (280 - (_root.difficulty * 20))) {
this.gotoAndStop("kick");
attackpause = true;
} else if ((attackground < 200) && (attackground > 150)) {
if (_root.difficulty > 1) {
this.gotoAndStop("duck");
duck = true;
}
}
}
}
}
if (duck == true) {
if (_root.player1.char._currentframe < 15) {
if (attackpause == false) {
duckattack = random(300) + 1;
if (duckattack < (20 + (_root.difficulty * 20))) {
if (runspeed != 0) {
this.gotoAndStop("slidepunch");
} else {
this.gotoAndStop("duckpunch");
}
attackpause = true;
} else if (duckattack > (280 - (_root.difficulty * 20))) {
if (runspeed != 0) {
this.gotoAndStop("slidekick");
} else {
this.gotoAndStop("duckkick");
}
attackpause = true;
}
}
}
}
} else {
attackpause = false;
duck = false;
}
} else if (rx < 100) {
run = false;
if (duck == false) {
if (_root.player1.char._currentframe < 15) {
if (attackpause == false) {
attackground = random(300) + 1;
if (attackground < (20 + (_root.difficulty * 20))) {
this.gotoAndStop("punch");
attackpause = true;
} else if (attackground > (280 - (_root.difficulty * 20))) {
this.gotoAndStop("kick");
attackpause = true;
} else if ((attackground < 200) && (attackground > 150)) {
if (_root.difficulty > 1) {
this.gotoAndStop("duck");
duck = true;
}
}
}
}
}
if (duck == true) {
if (_root.player1.char._currentframe < 15) {
if (attackpause == false) {
duckattack = random(300) + 1;
if (duckattack < (20 + (_root.difficulty * 20))) {
if (runspeed != 0) {
this.gotoAndStop("slidepunch");
} else {
this.gotoAndStop("duckpunch");
}
attackpause = true;
} else if (duckattack > (280 - (_root.difficulty * 20))) {
if (runspeed != 0) {
this.gotoAndStop("slidekick");
} else {
this.gotoAndStop("duckkick");
}
attackpause = true;
}
}
}
}
} else {
attackpause = false;
duck = false;
}
if (run == false) {
runspeed = 0;
runstop = 0;
if (this._currentframe == 1) {
runornot = random(1000) + 1;
if (runornot < rx) {
if (this._xscale == 100) {
run = true;
this.gotoAndStop(2);
}
}
if (runornot < (-rx)) {
if (this._xscale == -100) {
run = true;
this.gotoAndStop(2);
}
}
}
}
if (run == true) {
if (!this.hitTest(_root.player1.char.hitrect)) {
runstop = random(1000) + 1;
if (this._xscale == -100) {
if (runstop < ((-rx) / 5)) {
run = false;
}
runspeed = -5;
}
if (this._xscale == 100) {
if (runstop < (rx / 5)) {
run = false;
}
runspeed = 5;
}
}
}
if (this.hitrect.hitTest(_root.player1.char.hitrect)) {
if (this._xscale == -100) {
if (!Key.isDown(_root.leftbutton)) {
if (run == true) {
if (!Key.isDown(_root.rightbutton)) {
runspeed = -4;
} else {
runspeed = 0;
}
}
if (run == false) {
if (!Key.isDown(_root.rightbutton)) {
runspeed = 0;
} else {
runspeed = 4;
}
}
}
}
if (this._xscale == 100) {
if (!Key.isDown(_root.rightbutton)) {
if (run == true) {
if (!Key.isDown(_root.leftbutton)) {
runspeed = 4;
} else {
runspeed = 0;
}
}
if (run == false) {
if (!Key.isDown(_root.leftbutton)) {
runspeed = 0;
} else {
runspeed = -4;
}
}
}
}
}
jumpspeed = 25;
this._y = 0;
if (this._currentframe < 5) {
jumpornot = random(997) + 1;
}
if ((rx > -100) || (rx < 100)) {
if (jumpornot >= 980) {
_root.jump.start(0, 1);
jump = true;
runspeed = (random(10) * this._xscale) / 100;
this.gotoAndStop("jump");
}
if ((jumpornot >= 900) && (_root.player1.char._currentframe == 4)) {
_root.jump.start(0, 1);
jump = true;
runspeed = (random(10) * this._xscale) / 100;
this.gotoAndStop("jump");
}
}
}
}
if (jump == true) {
block = false;
if (jumpspeed < 0) {
if (_root.player1.char._currentframe < 4) {
if (this.hitrect.hitTest(_root.player1.char.hitrect)) {
if ((_root.player1._x + _root.player1.char._x) < (_root.player2._x + this._x)) {
runspeed = 9;
if (this._xscale == -100) {
_root.player1.char.runspeed = -5;
}
}
if ((_root.player1._x + _root.player1.char._x) > (_root.player2._x + this._x)) {
runspeed = -9;
if (this._xscale == 100) {
_root.player1.char.runspeed = 5;
}
}
}
}
}
if ((jumpattack == true) && (airhit == false)) {
attackground = random(300) + 1;
if (attackground < (20 + (_root.difficulty * 20))) {
this.gotoAndStop("jumppunch");
jumpattack = false;
}
if (attackground > (280 - (_root.difficulty * 20))) {
this.gotoAndStop("jumpkick");
jumpattack = false;
}
}
this._y = this._y - jumpspeed;
jumpspeed = jumpspeed - 2;
if (this._y >= 0) {
_root.land.start(0, 1);
jump = false;
jumpornot = 30;
if (run == true) {
this.gotoAndStop("run");
} else {
this.gotoAndStop("idle");
}
}
}
if (this.hitTest(_root.side1) && (runspeed < 0)) {
runspeed = 0;
}
if (this.hitTest(_root.side2) && (runspeed > 0)) {
runspeed = 0;
}
if (run == false) {
if (runspeed > 0) {
runspeed--;
}
if (runspeed < 0) {
runspeed++;
}
}
}
if (_root.gameover == true) {
if (jump == true) {
this._y = this._y - jumpspeed;
jumpspeed = jumpspeed - 2;
if (this._y >= 0) {
this.gotoAndStop("idle");
jump = false;
}
}
if ((this._currentframe > 1) && (this._currentframe < 7)) {
this.gotoAndStop("idle");
}
this._alpha = 100;
if (jump == false) {
if (_root.life2.text <= 0) {
this.gotoAndStop("death");
}
if (_root.life1.text <= 0) {
this.gotoAndStop("win");
}
}
}
}
}
Instance of Symbol 867 MovieClip "char" in Symbol 1933 MovieClip Frame 2
onClipEvent (load) {
hitcount = 0;
runspeed = 0;
jump = false;
jumpspeed = 25;
jumpattack = true;
airhit = false;
this._xscale = -100;
runornot = 0;
jumpornot = 0;
runstop = 0;
run = false;
attackground = 0;
attackpause = false;
hurt = false;
hurtok = false;
duck = false;
blockornot = 0;
block = false;
}
onClipEvent (enterFrame) {
if (_root.gameplay == true) {
if (_root.gameover == false) {
if (_root.difficulty == 1) {
duck = false;
}
this._x = this._x + runspeed;
if (hurt == true) {
hurtok = true;
if (block == false) {
if (airhit == false) {
if (duck == false) {
this.gotoAndStop("hurt");
} else {
this.gotoAndStop("duckhurt");
}
}
}
if (jump == true) {
airhit = true;
}
timer++;
if (timer == 1) {
if (jump == true) {
if (jumpspeed < 0) {
jumpspeed = jumpspeed * -1;
}
}
}
if (timer > 5) {
if (jump == false) {
if (runspeed < 0) {
runspeed = runspeed + 1;
} else if (runspeed > 0) {
runspeed = runspeed - 1;
}
}
} else {
if ((_root.player2._x + this._x) < (_root.player1._x + _root.player1.char._x)) {
runspeed = -8;
}
if ((_root.player2._x + this._x) > (_root.player1._x + _root.player1.char._x)) {
runspeed = 8;
}
}
if (block == false) {
if ((timer >= 1) && (timer <= 4)) {
this._alpha = 0;
}
if ((timer >= 5) && (timer <= 10)) {
this._alpha = 100;
}
}
if (timer == 10) {
if (jump == false) {
if (duck == true) {
if (hitcount > (2 + ((_root.difficulty - 3) * -2))) {
this.gotoAndStop("duckpunch");
if (_root.difficulty < 3) {
hitcount = 0;
}
} else {
this.gotoAndStop("duck");
}
} else if (hitcount > (2 + ((_root.difficulty - 3) * -2))) {
this.gotoAndStop("punch");
if (_root.difficulty < 3) {
hitcount = 0;
}
} else if (run == true) {
this.gotoAndStop("run");
} else {
this.gotoAndStop("idle");
}
}
hurt = false;
}
}
if (hurt == false) {
if (this._currentframe > 6) {
hitcount = 0;
}
if (_root.player1.char._currentframe < 7) {
hurtok = false;
}
if (this._currentframe == 1) {
duck = false;
}
if (this._currentframe < 1) {
attackpause = false;
}
if (hurtok == false) {
if (_root.player1.char.attack.hurtrect.hitTest(this.hitrect)) {
if (jump == false) {
blockornot = random(100) + 1;
if (blockornot < (-10 + (_root.difficulty * 10))) {
block = true;
} else {
block = false;
}
if (block == true) {
_root.block.start(0, 1);
_root.health2away.text = 1;
if (duck == true) {
this.gotoAndStop("duckblock");
} else {
this.gotoAndStop("block");
}
}
}
if (block == false) {
if (airhit == false) {
hurtsfx = random(4) + 1;
_root["hurt" + hurtsfx].start(0, 1);
_root.health2away.text = 5;
if (duck == false) {
this.gotoAndStop("hurt");
} else {
this.gotoAndStop("duckhurt");
}
}
}
if (airhit == false) {
hurt = true;
}
}
hitcount++;
}
timer = 0;
if (jump == false) {
if (attackpause == true) {
attackground = 0;
duckattack = 0;
}
jumpattack = true;
airhit = false;
if (this._currentframe < 7) {
if ((_root.player2._x + this._x) < (_root.player1._x + _root.player1.char._x)) {
this._xscale = 100;
}
if ((_root.player2._x + this._x) > (_root.player1._x + _root.player1.char._x)) {
this._xscale = -100;
}
}
if (((run == false) && (jump == false)) && (this._currentframe < 4)) {
this.gotoAndStop("idle");
}
tx = _root.player2._x + this._x;
mxr = _root.player1._x + _root.player1.char._x;
rx = mxr - tx;
if ((this.hitTest(_root.player1.char) && (_root.player1.char._currentframe < 4)) && ((!this._currentframe) == 4)) {
this.gotoAndStop("idle");
}
if (this._xscale == -100) {
if (rx > -100) {
run = false;
if (duck == false) {
if (_root.player1.char._currentframe < 15) {
if (attackpause == false) {
attackground = random(300) + 1;
if (attackground < (20 + (_root.difficulty * 20))) {
this.gotoAndStop("punch");
attackpause = true;
} else if (attackground > (280 - (_root.difficulty * 20))) {
this.gotoAndStop("kick");
attackpause = true;
} else if ((attackground < 200) && (attackground > 150)) {
if (_root.difficulty > 1) {
this.gotoAndStop("duck");
duck = true;
}
}
}
}
}
if (duck == true) {
if (_root.player1.char._currentframe < 15) {
if (attackpause == false) {
duckattack = random(300) + 1;
if (duckattack < (20 + (_root.difficulty * 20))) {
if (runspeed != 0) {
this.gotoAndStop("slidepunch");
} else {
this.gotoAndStop("duckpunch");
}
attackpause = true;
} else if (duckattack > (280 - (_root.difficulty * 20))) {
if (runspeed != 0) {
this.gotoAndStop("slidekick");
} else {
this.gotoAndStop("duckkick");
}
attackpause = true;
}
}
}
}
} else {
attackpause = false;
duck = false;
}
} else if (rx < 100) {
run = false;
if (duck == false) {
if (_root.player1.char._currentframe < 15) {
if (attackpause == false) {
attackground = random(300) + 1;
if (attackground < (20 + (_root.difficulty * 20))) {
this.gotoAndStop("punch");
attackpause = true;
} else if (attackground > (280 - (_root.difficulty * 20))) {
this.gotoAndStop("kick");
attackpause = true;
} else if ((attackground < 200) && (attackground > 150)) {
if (_root.difficulty > 1) {
this.gotoAndStop("duck");
duck = true;
}
}
}
}
}
if (duck == true) {
if (_root.player1.char._currentframe < 15) {
if (attackpause == false) {
duckattack = random(300) + 1;
if (duckattack < (20 + (_root.difficulty * 20))) {
if (runspeed != 0) {
this.gotoAndStop("slidepunch");
} else {
this.gotoAndStop("duckpunch");
}
attackpause = true;
} else if (duckattack > (280 - (_root.difficulty * 20))) {
if (runspeed != 0) {
this.gotoAndStop("slidekick");
} else {
this.gotoAndStop("duckkick");
}
attackpause = true;
}
}
}
}
} else {
attackpause = false;
duck = false;
}
if (run == false) {
runspeed = 0;
runstop = 0;
if (this._currentframe == 1) {
runornot = random(1000) + 1;
if (runornot < rx) {
if (this._xscale == 100) {
run = true;
this.gotoAndStop(2);
}
}
if (runornot < (-rx)) {
if (this._xscale == -100) {
run = true;
this.gotoAndStop(2);
}
}
}
}
if (run == true) {
if (!this.hitTest(_root.player1.char.hitrect)) {
runstop = random(1000) + 1;
if (this._xscale == -100) {
if (runstop < ((-rx) / 5)) {
run = false;
}
runspeed = -5;
}
if (this._xscale == 100) {
if (runstop < (rx / 5)) {
run = false;
}
runspeed = 5;
}
}
}
if (this.hitrect.hitTest(_root.player1.char.hitrect)) {
if (this._xscale == -100) {
if (!Key.isDown(_root.leftbutton)) {
if (run == true) {
if (!Key.isDown(_root.rightbutton)) {
runspeed = -4;
} else {
runspeed = 0;
}
}
if (run == false) {
if (!Key.isDown(_root.rightbutton)) {
runspeed = 0;
} else {
runspeed = 4;
}
}
}
}
if (this._xscale == 100) {
if (!Key.isDown(_root.rightbutton)) {
if (run == true) {
if (!Key.isDown(_root.leftbutton)) {
runspeed = 4;
} else {
runspeed = 0;
}
}
if (run == false) {
if (!Key.isDown(_root.leftbutton)) {
runspeed = 0;
} else {
runspeed = -4;
}
}
}
}
}
jumpspeed = 25;
this._y = 0;
if (this._currentframe < 5) {
jumpornot = random(997) + 1;
}
if ((rx > -100) || (rx < 100)) {
if (jumpornot >= 980) {
_root.jump.start(0, 1);
jump = true;
runspeed = (random(10) * this._xscale) / 100;
this.gotoAndStop("jump");
}
if ((jumpornot >= 900) && (_root.player1.char._currentframe == 4)) {
_root.jump.start(0, 1);
jump = true;
runspeed = (random(10) * this._xscale) / 100;
this.gotoAndStop("jump");
}
}
}
}
if (jump == true) {
block = false;
if (jumpspeed < 0) {
if (_root.player1.char._currentframe < 4) {
if (this.hitrect.hitTest(_root.player1.char.hitrect)) {
if ((_root.player1._x + _root.player1.char._x) < (_root.player2._x + this._x)) {
runspeed = 9;
if (this._xscale == -100) {
_root.player1.char.runspeed = -5;
}
}
if ((_root.player1._x + _root.player1.char._x) > (_root.player2._x + this._x)) {
runspeed = -9;
if (this._xscale == 100) {
_root.player1.char.runspeed = 5;
}
}
}
}
}
if ((jumpattack == true) && (airhit == false)) {
attackground = random(300) + 1;
if (attackground < (20 + (_root.difficulty * 20))) {
this.gotoAndStop("jumppunch");
jumpattack = false;
}
if (attackground > (280 - (_root.difficulty * 20))) {
this.gotoAndStop("jumpkick");
jumpattack = false;
}
}
this._y = this._y - jumpspeed;
jumpspeed = jumpspeed - 2;
if (this._y >= 0) {
_root.land.start(0, 1);
jump = false;
jumpornot = 30;
if (run == true) {
this.gotoAndStop("run");
} else {
this.gotoAndStop("idle");
}
}
}
if (this.hitTest(_root.side1) && (runspeed < 0)) {
runspeed = 0;
}
if (this.hitTest(_root.side2) && (runspeed > 0)) {
runspeed = 0;
}
if (run == false) {
if (runspeed > 0) {
runspeed--;
}
if (runspeed < 0) {
runspeed++;
}
}
}
if (_root.gameover == true) {
if (jump == true) {
this._y = this._y - jumpspeed;
jumpspeed = jumpspeed - 2;
if (this._y >= 0) {
this.gotoAndStop("idle");
jump = false;
}
}
if ((this._currentframe > 1) && (this._currentframe < 7)) {
this.gotoAndStop("idle");
}
this._alpha = 100;
if (jump == false) {
if (_root.life2.text <= 0) {
this.gotoAndStop("death");
}
if (_root.life1.text <= 0) {
this.gotoAndStop("win");
}
}
}
}
}
Instance of Symbol 1031 MovieClip "char" in Symbol 1933 MovieClip Frame 3
onClipEvent (load) {
hitcount = 0;
runspeed = 0;
jump = false;
jumpspeed = 25;
jumpattack = true;
airhit = false;
this._xscale = -100;
runornot = 0;
jumpornot = 0;
runstop = 0;
run = false;
attackground = 0;
attackpause = false;
hurt = false;
hurtok = false;
duck = false;
blockornot = 0;
block = false;
}
onClipEvent (enterFrame) {
if (_root.gameplay == true) {
if (_root.gameover == false) {
if (_root.difficulty == 1) {
duck = false;
}
this._x = this._x + runspeed;
if (hurt == true) {
hurtok = true;
if (block == false) {
if (airhit == false) {
if (duck == false) {
this.gotoAndStop("hurt");
} else {
this.gotoAndStop("duckhurt");
}
}
}
if (jump == true) {
airhit = true;
}
timer++;
if (timer == 1) {
if (jump == true) {
if (jumpspeed < 0) {
jumpspeed = jumpspeed * -1;
}
}
}
if (timer > 5) {
if (jump == false) {
if (runspeed < 0) {
runspeed = runspeed + 1;
} else if (runspeed > 0) {
runspeed = runspeed - 1;
}
}
} else {
if ((_root.player2._x + this._x) < (_root.player1._x + _root.player1.char._x)) {
runspeed = -8;
}
if ((_root.player2._x + this._x) > (_root.player1._x + _root.player1.char._x)) {
runspeed = 8;
}
}
if (block == false) {
if ((timer >= 1) && (timer <= 4)) {
this._alpha = 0;
}
if ((timer >= 5) && (timer <= 10)) {
this._alpha = 100;
}
}
if (timer == 10) {
if (jump == false) {
if (duck == true) {
if (hitcount > (2 + ((_root.difficulty - 3) * -2))) {
this.gotoAndStop("duckpunch");
if (_root.difficulty < 3) {
hitcount = 0;
}
} else {
this.gotoAndStop("duck");
}
} else if (hitcount > (2 + ((_root.difficulty - 3) * -2))) {
this.gotoAndStop("punch");
if (_root.difficulty < 3) {
hitcount = 0;
}
} else if (run == true) {
this.gotoAndStop("run");
} else {
this.gotoAndStop("idle");
}
}
hurt = false;
}
}
if (hurt == false) {
if (this._currentframe > 6) {
hitcount = 0;
}
if (_root.player1.char._currentframe < 7) {
hurtok = false;
}
if (this._currentframe == 1) {
duck = false;
}
if (this._currentframe < 1) {
attackpause = false;
}
if (hurtok == false) {
if (_root.player1.char.attack.hurtrect.hitTest(this.hitrect)) {
if (jump == false) {
blockornot = random(100) + 1;
if (blockornot < (-10 + (_root.difficulty * 10))) {
block = true;
} else {
block = false;
}
if (block == true) {
_root.block.start(0, 1);
_root.health2away.text = 1;
if (duck == true) {
this.gotoAndStop("duckblock");
} else {
this.gotoAndStop("block");
}
}
}
if (block == false) {
if (airhit == false) {
hurtsfx = random(4) + 1;
_root["hurt" + hurtsfx].start(0, 1);
_root.health2away.text = 5;
if (duck == false) {
this.gotoAndStop("hurt");
} else {
this.gotoAndStop("duckhurt");
}
}
}
if (airhit == false) {
hurt = true;
}
}
hitcount++;
}
timer = 0;
if (jump == false) {
if (attackpause == true) {
attackground = 0;
duckattack = 0;
}
jumpattack = true;
airhit = false;
if (this._currentframe < 7) {
if ((_root.player2._x + this._x) < (_root.player1._x + _root.player1.char._x)) {
this._xscale = 100;
}
if ((_root.player2._x + this._x) > (_root.player1._x + _root.player1.char._x)) {
this._xscale = -100;
}
}
if (((run == false) && (jump == false)) && (this._currentframe < 4)) {
this.gotoAndStop("idle");
}
tx = _root.player2._x + this._x;
mxr = _root.player1._x + _root.player1.char._x;
rx = mxr - tx;
if ((this.hitTest(_root.player1.char) && (_root.player1.char._currentframe < 4)) && ((!this._currentframe) == 4)) {
this.gotoAndStop("idle");
}
if (this._xscale == -100) {
if (rx > -100) {
run = false;
if (duck == false) {
if (_root.player1.char._currentframe < 15) {
if (attackpause == false) {
attackground = random(300) + 1;
if (attackground < (20 + (_root.difficulty * 20))) {
this.gotoAndStop("punch");
attackpause = true;
} else if (attackground > (280 - (_root.difficulty * 20))) {
this.gotoAndStop("kick");
attackpause = true;
} else if ((attackground < 200) && (attackground > 150)) {
if (_root.difficulty > 1) {
this.gotoAndStop("duck");
duck = true;
}
}
}
}
}
if (duck == true) {
if (_root.player1.char._currentframe < 15) {
if (attackpause == false) {
duckattack = random(300) + 1;
if (duckattack < (20 + (_root.difficulty * 20))) {
if (runspeed != 0) {
this.gotoAndStop("slidepunch");
} else {
this.gotoAndStop("duckpunch");
}
attackpause = true;
} else if (duckattack > (280 - (_root.difficulty * 20))) {
if (runspeed != 0) {
this.gotoAndStop("slidekick");
} else {
this.gotoAndStop("duckkick");
}
attackpause = true;
}
}
}
}
} else {
attackpause = false;
duck = false;
}
} else if (rx < 100) {
run = false;
if (duck == false) {
if (_root.player1.char._currentframe < 15) {
if (attackpause == false) {
attackground = random(300) + 1;
if (attackground < (20 + (_root.difficulty * 20))) {
this.gotoAndStop("punch");
attackpause = true;
} else if (attackground > (280 - (_root.difficulty * 20))) {
this.gotoAndStop("kick");
attackpause = true;
} else if ((attackground < 200) && (attackground > 150)) {
if (_root.difficulty > 1) {
this.gotoAndStop("duck");
duck = true;
}
}
}
}
}
if (duck == true) {
if (_root.player1.char._currentframe < 15) {
if (attackpause == false) {
duckattack = random(300) + 1;
if (duckattack < (20 + (_root.difficulty * 20))) {
if (runspeed != 0) {
this.gotoAndStop("slidepunch");
} else {
this.gotoAndStop("duckpunch");
}
attackpause = true;
} else if (duckattack > (280 - (_root.difficulty * 20))) {
if (runspeed != 0) {
this.gotoAndStop("slidekick");
} else {
this.gotoAndStop("duckkick");
}
attackpause = true;
}
}
}
}
} else {
attackpause = false;
duck = false;
}
if (run == false) {
runspeed = 0;
runstop = 0;
if (this._currentframe == 1) {
runornot = random(1000) + 1;
if (runornot < rx) {
if (this._xscale == 100) {
run = true;
this.gotoAndStop(2);
}
}
if (runornot < (-rx)) {
if (this._xscale == -100) {
run = true;
this.gotoAndStop(2);
}
}
}
}
if (run == true) {
if (!this.hitTest(_root.player1.char.hitrect)) {
runstop = random(1000) + 1;
if (this._xscale == -100) {
if (runstop < ((-rx) / 5)) {
run = false;
}
runspeed = -5;
}
if (this._xscale == 100) {
if (runstop < (rx / 5)) {
run = false;
}
runspeed = 5;
}
}
}
if (this.hitrect.hitTest(_root.player1.char.hitrect)) {
if (this._xscale == -100) {
if (!Key.isDown(_root.leftbutton)) {
if (run == true) {
if (!Key.isDown(_root.rightbutton)) {
runspeed = -4;
} else {
runspeed = 0;
}
}
if (run == false) {
if (!Key.isDown(_root.rightbutton)) {
runspeed = 0;
} else {
runspeed = 4;
}
}
}
}
if (this._xscale == 100) {
if (!Key.isDown(_root.rightbutton)) {
if (run == true) {
if (!Key.isDown(_root.leftbutton)) {
runspeed = 4;
} else {
runspeed = 0;
}
}
if (run == false) {
if (!Key.isDown(_root.leftbutton)) {
runspeed = 0;
} else {
runspeed = -4;
}
}
}
}
}
jumpspeed = 25;
this._y = 0;
if (this._currentframe < 5) {
jumpornot = random(997) + 1;
}
if ((rx > -100) || (rx < 100)) {
if (jumpornot >= 980) {
_root.jump.start(0, 1);
jump = true;
runspeed = (random(10) * this._xscale) / 100;
this.gotoAndStop("jump");
}
if ((jumpornot >= 900) && (_root.player1.char._currentframe == 4)) {
_root.jump.start(0, 1);
jump = true;
runspeed = (random(10) * this._xscale) / 100;
this.gotoAndStop("jump");
}
}
}
}
if (jump == true) {
block = false;
if (jumpspeed < 0) {
if (_root.player1.char._currentframe < 4) {
if (this.hitrect.hitTest(_root.player1.char.hitrect)) {
if ((_root.player1._x + _root.player1.char._x) < (_root.player2._x + this._x)) {
runspeed = 9;
if (this._xscale == -100) {
_root.player1.char.runspeed = -5;
}
}
if ((_root.player1._x + _root.player1.char._x) > (_root.player2._x + this._x)) {
runspeed = -9;
if (this._xscale == 100) {
_root.player1.char.runspeed = 5;
}
}
}
}
}
if ((jumpattack == true) && (airhit == false)) {
attackground = random(300) + 1;
if (attackground < (20 + (_root.difficulty * 20))) {
this.gotoAndStop("jumppunch");
jumpattack = false;
}
if (attackground > (280 - (_root.difficulty * 20))) {
this.gotoAndStop("jumpkick");
jumpattack = false;
}
}
this._y = this._y - jumpspeed;
jumpspeed = jumpspeed - 2;
if (this._y >= 0) {
_root.land.start(0, 1);
jump = false;
jumpornot = 30;
if (run == true) {
this.gotoAndStop("run");
} else {
this.gotoAndStop("idle");
}
}
}
if (this.hitTest(_root.side1) && (runspeed < 0)) {
runspeed = 0;
}
if (this.hitTest(_root.side2) && (runspeed > 0)) {
runspeed = 0;
}
if (run == false) {
if (runspeed > 0) {
runspeed--;
}
if (runspeed < 0) {
runspeed++;
}
}
}
if (_root.gameover == true) {
if (jump == true) {
this._y = this._y - jumpspeed;
jumpspeed = jumpspeed - 2;
if (this._y >= 0) {
this.gotoAndStop("idle");
jump = false;
}
}
if ((this._currentframe > 1) && (this._currentframe < 7)) {
this.gotoAndStop("idle");
}
this._alpha = 100;
if (jump == false) {
if (_root.life2.text <= 0) {
this.gotoAndStop("death");
}
if (_root.life1.text <= 0) {
this.gotoAndStop("win");
}
}
}
}
}
Instance of Symbol 1149 MovieClip "char" in Symbol 1933 MovieClip Frame 4
onClipEvent (load) {
hitcount = 0;
runspeed = 0;
jump = false;
jumpspeed = 25;
jumpattack = true;
airhit = false;
this._xscale = -100;
runornot = 0;
jumpornot = 0;
runstop = 0;
run = false;
attackground = 0;
attackpause = false;
hurt = false;
hurtok = false;
duck = false;
blockornot = 0;
block = false;
}
onClipEvent (enterFrame) {
if (_root.gameplay == true) {
if (_root.gameover == false) {
if (_root.difficulty == 1) {
duck = false;
}
this._x = this._x + runspeed;
if (hurt == true) {
hurtok = true;
if (block == false) {
if (airhit == false) {
if (duck == false) {
this.gotoAndStop("hurt");
} else {
this.gotoAndStop("duckhurt");
}
}
}
if (jump == true) {
airhit = true;
}
timer++;
if (timer == 1) {
if (jump == true) {
if (jumpspeed < 0) {
jumpspeed = jumpspeed * -1;
}
}
}
if (timer > 5) {
if (jump == false) {
if (runspeed < 0) {
runspeed = runspeed + 1;
} else if (runspeed > 0) {
runspeed = runspeed - 1;
}
}
} else {
if ((_root.player2._x + this._x) < (_root.player1._x + _root.player1.char._x)) {
runspeed = -8;
}
if ((_root.player2._x + this._x) > (_root.player1._x + _root.player1.char._x)) {
runspeed = 8;
}
}
if (block == false) {
if ((timer >= 1) && (timer <= 4)) {
this._alpha = 0;
}
if ((timer >= 5) && (timer <= 10)) {
this._alpha = 100;
}
}
if (timer == 10) {
if (jump == false) {
if (duck == true) {
if (hitcount > (2 + ((_root.difficulty - 3) * -2))) {
this.gotoAndStop("duckpunch");
if (_root.difficulty < 3) {
hitcount = 0;
}
} else {
this.gotoAndStop("duck");
}
} else if (hitcount > (2 + ((_root.difficulty - 3) * -2))) {
this.gotoAndStop("punch");
if (_root.difficulty < 3) {
hitcount = 0;
}
} else if (run == true) {
this.gotoAndStop("run");
} else {
this.gotoAndStop("idle");
}
}
hurt = false;
}
}
if (hurt == false) {
if (this._currentframe > 6) {
hitcount = 0;
}
if (_root.player1.char._currentframe < 7) {
hurtok = false;
}
if (this._currentframe == 1) {
duck = false;
}
if (this._currentframe < 1) {
attackpause = false;
}
if (hurtok == false) {
if (_root.player1.char.attack.hurtrect.hitTest(this.hitrect)) {
if (jump == false) {
blockornot = random(100) + 1;
if (blockornot < (-10 + (_root.difficulty * 10))) {
block = true;
} else {
block = false;
}
if (block == true) {
_root.block.start(0, 1);
_root.health2away.text = 1;
if (duck == true) {
this.gotoAndStop("duckblock");
} else {
this.gotoAndStop("block");
}
}
}
if (block == false) {
if (airhit == false) {
hurtsfx = random(4) + 1;
_root["hurt" + hurtsfx].start(0, 1);
_root.health2away.text = 5;
if (duck == false) {
this.gotoAndStop("hurt");
} else {
this.gotoAndStop("duckhurt");
}
}
}
if (airhit == false) {
hurt = true;
}
}
hitcount++;
}
timer = 0;
if (jump == false) {
if (attackpause == true) {
attackground = 0;
duckattack = 0;
}
jumpattack = true;
airhit = false;
if (this._currentframe < 7) {
if ((_root.player2._x + this._x) < (_root.player1._x + _root.player1.char._x)) {
this._xscale = 100;
}
if ((_root.player2._x + this._x) > (_root.player1._x + _root.player1.char._x)) {
this._xscale = -100;
}
}
if (((run == false) && (jump == false)) && (this._currentframe < 4)) {
this.gotoAndStop("idle");
}
tx = _root.player2._x + this._x;
mxr = _root.player1._x + _root.player1.char._x;
rx = mxr - tx;
if ((this.hitTest(_root.player1.char) && (_root.player1.char._currentframe < 4)) && ((!this._currentframe) == 4)) {
this.gotoAndStop("idle");
}
if (this._xscale == -100) {
if (rx > -100) {
run = false;
if (duck == false) {
if (_root.player1.char._currentframe < 15) {
if (attackpause == false) {
attackground = random(300) + 1;
if (attackground < (20 + (_root.difficulty * 20))) {
this.gotoAndStop("punch");
attackpause = true;
} else if (attackground > (280 - (_root.difficulty * 20))) {
this.gotoAndStop("kick");
attackpause = true;
} else if ((attackground < 200) && (attackground > 150)) {
if (_root.difficulty > 1) {
this.gotoAndStop("duck");
duck = true;
}
}
}
}
}
if (duck == true) {
if (_root.player1.char._currentframe < 15) {
if (attackpause == false) {
duckattack = random(300) + 1;
if (duckattack < (20 + (_root.difficulty * 20))) {
if (runspeed != 0) {
this.gotoAndStop("slidepunch");
} else {
this.gotoAndStop("duckpunch");
}
attackpause = true;
} else if (duckattack > (280 - (_root.difficulty * 20))) {
if (runspeed != 0) {
this.gotoAndStop("slidekick");
} else {
this.gotoAndStop("duckkick");
}
attackpause = true;
}
}
}
}
} else {
attackpause = false;
duck = false;
}
} else if (rx < 100) {
run = false;
if (duck == false) {
if (_root.player1.char._currentframe < 15) {
if (attackpause == false) {
attackground = random(300) + 1;
if (attackground < (20 + (_root.difficulty * 20))) {
this.gotoAndStop("punch");
attackpause = true;
} else if (attackground > (280 - (_root.difficulty * 20))) {
this.gotoAndStop("kick");
attackpause = true;
} else if ((attackground < 200) && (attackground > 150)) {
if (_root.difficulty > 1) {
this.gotoAndStop("duck");
duck = true;
}
}
}
}
}
if (duck == true) {
if (_root.player1.char._currentframe < 15) {
if (attackpause == false) {
duckattack = random(300) + 1;
if (duckattack < (20 + (_root.difficulty * 20))) {
if (runspeed != 0) {
this.gotoAndStop("slidepunch");
} else {
this.gotoAndStop("duckpunch");
}
attackpause = true;
} else if (duckattack > (280 - (_root.difficulty * 20))) {
if (runspeed != 0) {
this.gotoAndStop("slidekick");
} else {
this.gotoAndStop("duckkick");
}
attackpause = true;
}
}
}
}
} else {
attackpause = false;
duck = false;
}
if (run == false) {
runspeed = 0;
runstop = 0;
if (this._currentframe == 1) {
runornot = random(1000) + 1;
if (runornot < rx) {
if (this._xscale == 100) {
run = true;
this.gotoAndStop(2);
}
}
if (runornot < (-rx)) {
if (this._xscale == -100) {
run = true;
this.gotoAndStop(2);
}
}
}
}
if (run == true) {
if (!this.hitTest(_root.player1.char.hitrect)) {
runstop = random(1000) + 1;
if (this._xscale == -100) {
if (runstop < ((-rx) / 5)) {
run = false;
}
runspeed = -5;
}
if (this._xscale == 100) {
if (runstop < (rx / 5)) {
run = false;
}
runspeed = 5;
}
}
}
if (this.hitrect.hitTest(_root.player1.char.hitrect)) {
if (this._xscale == -100) {
if (!Key.isDown(_root.leftbutton)) {
if (run == true) {
if (!Key.isDown(_root.rightbutton)) {
runspeed = -4;
} else {
runspeed = 0;
}
}
if (run == false) {
if (!Key.isDown(_root.rightbutton)) {
runspeed = 0;
} else {
runspeed = 4;
}
}
}
}
if (this._xscale == 100) {
if (!Key.isDown(_root.rightbutton)) {
if (run == true) {
if (!Key.isDown(_root.leftbutton)) {
runspeed = 4;
} else {
runspeed = 0;
}
}
if (run == false) {
if (!Key.isDown(_root.leftbutton)) {
runspeed = 0;
} else {
runspeed = -4;
}
}
}
}
}
jumpspeed = 25;
this._y = 0;
if (this._currentframe < 5) {
jumpornot = random(997) + 1;
}
if ((rx > -100) || (rx < 100)) {
if (jumpornot >= 980) {
_root.jump.start(0, 1);
jump = true;
runspeed = (random(10) * this._xscale) / 100;
this.gotoAndStop("jump");
}
if ((jumpornot >= 900) && (_root.player1.char._currentframe == 4)) {
_root.jump.start(0, 1);
jump = true;
runspeed = (random(10) * this._xscale) / 100;
this.gotoAndStop("jump");
}
}
}
}
if (jump == true) {
block = false;
if (jumpspeed < 0) {
if (_root.player1.char._currentframe < 4) {
if (this.hitrect.hitTest(_root.player1.char.hitrect)) {
if ((_root.player1._x + _root.player1.char._x) < (_root.player2._x + this._x)) {
runspeed = 9;
if (this._xscale == -100) {
_root.player1.char.runspeed = -5;
}
}
if ((_root.player1._x + _root.player1.char._x) > (_root.player2._x + this._x)) {
runspeed = -9;
if (this._xscale == 100) {
_root.player1.char.runspeed = 5;
}
}
}
}
}
if ((jumpattack == true) && (airhit == false)) {
attackground = random(300) + 1;
if (attackground < (20 + (_root.difficulty * 20))) {
this.gotoAndStop("jumppunch");
jumpattack = false;
}
if (attackground > (280 - (_root.difficulty * 20))) {
this.gotoAndStop("jumpkick");
jumpattack = false;
}
}
this._y = this._y - jumpspeed;
jumpspeed = jumpspeed - 2;
if (this._y >= 0) {
_root.land.start(0, 1);
jump = false;
jumpornot = 30;
if (run == true) {
this.gotoAndStop("run");
} else {
this.gotoAndStop("idle");
}
}
}
if (this.hitTest(_root.side1) && (runspeed < 0)) {
runspeed = 0;
}
if (this.hitTest(_root.side2) && (runspeed > 0)) {
runspeed = 0;
}
if (run == false) {
if (runspeed > 0) {
runspeed--;
}
if (runspeed < 0) {
runspeed++;
}
}
}
if (_root.gameover == true) {
if (jump == true) {
this._y = this._y - jumpspeed;
jumpspeed = jumpspeed - 2;
if (this._y >= 0) {
this.gotoAndStop("idle");
jump = false;
}
}
if ((this._currentframe > 1) && (this._currentframe < 7)) {
this.gotoAndStop("idle");
}
this._alpha = 100;
if (jump == false) {
if (_root.life2.text <= 0) {
this.gotoAndStop("death");
}
if (_root.life1.text <= 0) {
this.gotoAndStop("win");
}
}
}
}
}
Instance of Symbol 1237 MovieClip "char" in Symbol 1933 MovieClip Frame 5
onClipEvent (load) {
hitcount = 0;
runspeed = 0;
jump = false;
jumpspeed = 25;
jumpattack = true;
airhit = false;
this._xscale = -100;
runornot = 0;
jumpornot = 0;
runstop = 0;
run = false;
attackground = 0;
attackpause = false;
hurt = false;
hurtok = false;
duck = false;
blockornot = 0;
block = false;
}
onClipEvent (enterFrame) {
if (_root.gameplay == true) {
if (_root.gameover == false) {
if (_root.difficulty == 1) {
duck = false;
}
this._x = this._x + runspeed;
if (hurt == true) {
hurtok = true;
if (block == false) {
if (airhit == false) {
if (duck == false) {
this.gotoAndStop("hurt");
} else {
this.gotoAndStop("duckhurt");
}
}
}
if (jump == true) {
airhit = true;
}
timer++;
if (timer == 1) {
if (jump == true) {
if (jumpspeed < 0) {
jumpspeed = jumpspeed * -1;
}
}
}
if (timer > 5) {
if (jump == false) {
if (runspeed < 0) {
runspeed = runspeed + 1;
} else if (runspeed > 0) {
runspeed = runspeed - 1;
}
}
} else {
if ((_root.player2._x + this._x) < (_root.player1._x + _root.player1.char._x)) {
runspeed = -8;
}
if ((_root.player2._x + this._x) > (_root.player1._x + _root.player1.char._x)) {
runspeed = 8;
}
}
if (block == false) {
if ((timer >= 1) && (timer <= 4)) {
this._alpha = 0;
}
if ((timer >= 5) && (timer <= 10)) {
this._alpha = 100;
}
}
if (timer == 10) {
if (jump == false) {
if (duck == true) {
if (hitcount > (2 + ((_root.difficulty - 3) * -2))) {
this.gotoAndStop("duckpunch");
if (_root.difficulty < 3) {
hitcount = 0;
}
} else {
this.gotoAndStop("duck");
}
} else if (hitcount > (2 + ((_root.difficulty - 3) * -2))) {
this.gotoAndStop("punch");
if (_root.difficulty < 3) {
hitcount = 0;
}
} else if (run == true) {
this.gotoAndStop("run");
} else {
this.gotoAndStop("idle");
}
}
hurt = false;
}
}
if (hurt == false) {
if (this._currentframe > 6) {
hitcount = 0;
}
if (_root.player1.char._currentframe < 7) {
hurtok = false;
}
if (this._currentframe == 1) {
duck = false;
}
if (this._currentframe < 1) {
attackpause = false;
}
if (hurtok == false) {
if (_root.player1.char.attack.hurtrect.hitTest(this.hitrect)) {
if (jump == false) {
blockornot = random(100) + 1;
if (blockornot < (-10 + (_root.difficulty * 10))) {
block = true;
} else {
block = false;
}
if (block == true) {
_root.block.start(0, 1);
_root.health2away.text = 1;
if (duck == true) {
this.gotoAndStop("duckblock");
} else {
this.gotoAndStop("block");
}
}
}
if (block == false) {
if (airhit == false) {
hurtsfx = random(4) + 1;
_root["hurt" + hurtsfx].start(0, 1);
_root.health2away.text = 5;
if (duck == false) {
this.gotoAndStop("hurt");
} else {
this.gotoAndStop("duckhurt");
}
}
}
if (airhit == false) {
hurt = true;
}
}
hitcount++;
}
timer = 0;
if (jump == false) {
if (attackpause == true) {
attackground = 0;
duckattack = 0;
}
jumpattack = true;
airhit = false;
if (this._currentframe < 7) {
if ((_root.player2._x + this._x) < (_root.player1._x + _root.player1.char._x)) {
this._xscale = 100;
}
if ((_root.player2._x + this._x) > (_root.player1._x + _root.player1.char._x)) {
this._xscale = -100;
}
}
if (((run == false) && (jump == false)) && (this._currentframe < 4)) {
this.gotoAndStop("idle");
}
tx = _root.player2._x + this._x;
mxr = _root.player1._x + _root.player1.char._x;
rx = mxr - tx;
if ((this.hitTest(_root.player1.char) && (_root.player1.char._currentframe < 4)) && ((!this._currentframe) == 4)) {
this.gotoAndStop("idle");
}
if (this._xscale == -100) {
if (rx > -100) {
run = false;
if (duck == false) {
if (_root.player1.char._currentframe < 15) {
if (attackpause == false) {
attackground = random(300) + 1;
if (attackground < (20 + (_root.difficulty * 20))) {
this.gotoAndStop("punch");
attackpause = true;
} else if (attackground > (280 - (_root.difficulty * 20))) {
this.gotoAndStop("kick");
attackpause = true;
} else if ((attackground < 200) && (attackground > 150)) {
if (_root.difficulty > 1) {
this.gotoAndStop("duck");
duck = true;
}
}
}
}
}
if (duck == true) {
if (_root.player1.char._currentframe < 15) {
if (attackpause == false) {
duckattack = random(300) + 1;
if (duckattack < (20 + (_root.difficulty * 20))) {
if (runspeed != 0) {
this.gotoAndStop("slidepunch");
} else {
this.gotoAndStop("duckpunch");
}
attackpause = true;
} else if (duckattack > (280 - (_root.difficulty * 20))) {
if (runspeed != 0) {
this.gotoAndStop("slidekick");
} else {
this.gotoAndStop("duckkick");
}
attackpause = true;
}
}
}
}
} else {
attackpause = false;
duck = false;
}
} else if (rx < 100) {
run = false;
if (duck == false) {
if (_root.player1.char._currentframe < 15) {
if (attackpause == false) {
attackground = random(300) + 1;
if (attackground < (20 + (_root.difficulty * 20))) {
this.gotoAndStop("punch");
attackpause = true;
} else if (attackground > (280 - (_root.difficulty * 20))) {
this.gotoAndStop("kick");
attackpause = true;
} else if ((attackground < 200) && (attackground > 150)) {
if (_root.difficulty > 1) {
this.gotoAndStop("duck");
duck = true;
}
}
}
}
}
if (duck == true) {
if (_root.player1.char._currentframe < 15) {
if (attackpause == false) {
duckattack = random(300) + 1;
if (duckattack < (20 + (_root.difficulty * 20))) {
if (runspeed != 0) {
this.gotoAndStop("slidepunch");
} else {
this.gotoAndStop("duckpunch");
}
attackpause = true;
} else if (duckattack > (280 - (_root.difficulty * 20))) {
if (runspeed != 0) {
this.gotoAndStop("slidekick");
} else {
this.gotoAndStop("duckkick");
}
attackpause = true;
}
}
}
}
} else {
attackpause = false;
duck = false;
}
if (run == false) {
runspeed = 0;
runstop = 0;
if (this._currentframe == 1) {
runornot = random(1000) + 1;
if (runornot < rx) {
if (this._xscale == 100) {
run = true;
this.gotoAndStop(2);
}
}
if (runornot < (-rx)) {
if (this._xscale == -100) {
run = true;
this.gotoAndStop(2);
}
}
}
}
if (run == true) {
if (!this.hitTest(_root.player1.char.hitrect)) {
runstop = random(1000) + 1;
if (this._xscale == -100) {
if (runstop < ((-rx) / 5)) {
run = false;
}
runspeed = -5;
}
if (this._xscale == 100) {
if (runstop < (rx / 5)) {
run = false;
}
runspeed = 5;
}
}
}
if (this.hitrect.hitTest(_root.player1.char.hitrect)) {
if (this._xscale == -100) {
if (!Key.isDown(_root.leftbutton)) {
if (run == true) {
if (!Key.isDown(_root.rightbutton)) {
runspeed = -4;
} else {
runspeed = 0;
}
}
if (run == false) {
if (!Key.isDown(_root.rightbutton)) {
runspeed = 0;
} else {
runspeed = 4;
}
}
}
}
if (this._xscale == 100) {
if (!Key.isDown(_root.rightbutton)) {
if (run == true) {
if (!Key.isDown(_root.leftbutton)) {
runspeed = 4;
} else {
runspeed = 0;
}
}
if (run == false) {
if (!Key.isDown(_root.leftbutton)) {
runspeed = 0;
} else {
runspeed = -4;
}
}
}
}
}
jumpspeed = 25;
this._y = 0;
if (this._currentframe < 5) {
jumpornot = random(997) + 1;
}
if ((rx > -100) || (rx < 100)) {
if (jumpornot >= 980) {
_root.jump.start(0, 1);
jump = true;
runspeed = (random(10) * this._xscale) / 100;
this.gotoAndStop("jump");
}
if ((jumpornot >= 900) && (_root.player1.char._currentframe == 4)) {
_root.jump.start(0, 1);
jump = true;
runspeed = (random(10) * this._xscale) / 100;
this.gotoAndStop("jump");
}
}
}
}
if (jump == true) {
block = false;
if (jumpspeed < 0) {
if (_root.player1.char._currentframe < 4) {
if (this.hitrect.hitTest(_root.player1.char.hitrect)) {
if ((_root.player1._x + _root.player1.char._x) < (_root.player2._x + this._x)) {
runspeed = 9;
if (this._xscale == -100) {
_root.player1.char.runspeed = -5;
}
}
if ((_root.player1._x + _root.player1.char._x) > (_root.player2._x + this._x)) {
runspeed = -9;
if (this._xscale == 100) {
_root.player1.char.runspeed = 5;
}
}
}
}
}
if ((jumpattack == true) && (airhit == false)) {
attackground = random(300) + 1;
if (attackground < (20 + (_root.difficulty * 20))) {
this.gotoAndStop("jumppunch");
jumpattack = false;
}
if (attackground > (280 - (_root.difficulty * 20))) {
this.gotoAndStop("jumpkick");
jumpattack = false;
}
}
this._y = this._y - jumpspeed;
jumpspeed = jumpspeed - 2;
if (this._y >= 0) {
_root.land.start(0, 1);
jump = false;
jumpornot = 30;
if (run == true) {
this.gotoAndStop("run");
} else {
this.gotoAndStop("idle");
}
}
}
if (this.hitTest(_root.side1) && (runspeed < 0)) {
runspeed = 0;
}
if (this.hitTest(_root.side2) && (runspeed > 0)) {
runspeed = 0;
}
if (run == false) {
if (runspeed > 0) {
runspeed--;
}
if (runspeed < 0) {
runspeed++;
}
}
}
if (_root.gameover == true) {
if (jump == true) {
this._y = this._y - jumpspeed;
jumpspeed = jumpspeed - 2;
if (this._y >= 0) {
this.gotoAndStop("idle");
jump = false;
}
}
if ((this._currentframe > 1) && (this._currentframe < 7)) {
this.gotoAndStop("idle");
}
this._alpha = 100;
if (jump == false) {
if (_root.life2.text <= 0) {
this.gotoAndStop("death");
}
if (_root.life1.text <= 0) {
this.gotoAndStop("win");
}
}
}
}
}
Instance of Symbol 1341 MovieClip "char" in Symbol 1933 MovieClip Frame 6
onClipEvent (load) {
hitcount = 0;
runspeed = 0;
jump = false;
jumpspeed = 25;
jumpattack = true;
airhit = false;
this._xscale = -100;
runornot = 0;
jumpornot = 0;
runstop = 0;
run = false;
attackground = 0;
attackpause = false;
hurt = false;
hurtok = false;
duck = false;
blockornot = 0;
block = false;
}
onClipEvent (enterFrame) {
if (_root.gameplay == true) {
if (_root.gameover == false) {
if (_root.difficulty == 1) {
duck = false;
}
this._x = this._x + runspeed;
if (hurt == true) {
hurtok = true;
if (block == false) {
if (airhit == false) {
if (duck == false) {
this.gotoAndStop("hurt");
} else {
this.gotoAndStop("duckhurt");
}
}
}
if (jump == true) {
airhit = true;
}
timer++;
if (timer == 1) {
if (jump == true) {
if (jumpspeed < 0) {
jumpspeed = jumpspeed * -1;
}
}
}
if (timer > 5) {
if (jump == false) {
if (runspeed < 0) {
runspeed = runspeed + 1;
} else if (runspeed > 0) {
runspeed = runspeed - 1;
}
}
} else {
if ((_root.player2._x + this._x) < (_root.player1._x + _root.player1.char._x)) {
runspeed = -8;
}
if ((_root.player2._x + this._x) > (_root.player1._x + _root.player1.char._x)) {
runspeed = 8;
}
}
if (block == false) {
if ((timer >= 1) && (timer <= 4)) {
this._alpha = 0;
}
if ((timer >= 5) && (timer <= 10)) {
this._alpha = 100;
}
}
if (timer == 10) {
if (jump == false) {
if (duck == true) {
if (hitcount > (2 + ((_root.difficulty - 3) * -2))) {
this.gotoAndStop("duckpunch");
if (_root.difficulty < 3) {
hitcount = 0;
}
} else {
this.gotoAndStop("duck");
}
} else if (hitcount > (2 + ((_root.difficulty - 3) * -2))) {
this.gotoAndStop("punch");
if (_root.difficulty < 3) {
hitcount = 0;
}
} else if (run == true) {
this.gotoAndStop("run");
} else {
this.gotoAndStop("idle");
}
}
hurt = false;
}
}
if (hurt == false) {
if (this._currentframe > 6) {
hitcount = 0;
}
if (_root.player1.char._currentframe < 7) {
hurtok = false;
}
if (this._currentframe == 1) {
duck = false;
}
if (this._currentframe < 1) {
attackpause = false;
}
if (hurtok == false) {
if (_root.player1.char.attack.hurtrect.hitTest(this.hitrect)) {
if (jump == false) {
blockornot = random(100) + 1;
if (blockornot < (-10 + (_root.difficulty * 10))) {
block = true;
} else {
block = false;
}
if (block == true) {
_root.block.start(0, 1);
_root.health2away.text = 1;
if (duck == true) {
this.gotoAndStop("duckblock");
} else {
this.gotoAndStop("block");
}
}
}
if (block == false) {
if (airhit == false) {
hurtsfx = random(4) + 1;
_root["hurt" + hurtsfx].start(0, 1);
_root.health2away.text = 5;
if (duck == false) {
this.gotoAndStop("hurt");
} else {
this.gotoAndStop("duckhurt");
}
}
}
if (airhit == false) {
hurt = true;
}
}
hitcount++;
}
timer = 0;
if (jump == false) {
if (attackpause == true) {
attackground = 0;
duckattack = 0;
}
jumpattack = true;
airhit = false;
if (this._currentframe < 7) {
if ((_root.player2._x + this._x) < (_root.player1._x + _root.player1.char._x)) {
this._xscale = 100;
}
if ((_root.player2._x + this._x) > (_root.player1._x + _root.player1.char._x)) {
this._xscale = -100;
}
}
if (((run == false) && (jump == false)) && (this._currentframe < 4)) {
this.gotoAndStop("idle");
}
tx = _root.player2._x + this._x;
mxr = _root.player1._x + _root.player1.char._x;
rx = mxr - tx;
if ((this.hitTest(_root.player1.char) && (_root.player1.char._currentframe < 4)) && ((!this._currentframe) == 4)) {
this.gotoAndStop("idle");
}
if (this._xscale == -100) {
if (rx > -100) {
run = false;
if (duck == false) {
if (_root.player1.char._currentframe < 15) {
if (attackpause == false) {
attackground = random(300) + 1;
if (attackground < (20 + (_root.difficulty * 20))) {
this.gotoAndStop("punch");
attackpause = true;
} else if (attackground > (280 - (_root.difficulty * 20))) {
this.gotoAndStop("kick");
attackpause = true;
} else if ((attackground < 200) && (attackground > 150)) {
if (_root.difficulty > 1) {
this.gotoAndStop("duck");
duck = true;
}
}
}
}
}
if (duck == true) {
if (_root.player1.char._currentframe < 15) {
if (attackpause == false) {
duckattack = random(300) + 1;
if (duckattack < (20 + (_root.difficulty * 20))) {
if (runspeed != 0) {
this.gotoAndStop("slidepunch");
} else {
this.gotoAndStop("duckpunch");
}
attackpause = true;
} else if (duckattack > (280 - (_root.difficulty * 20))) {
if (runspeed != 0) {
this.gotoAndStop("slidekick");
} else {
this.gotoAndStop("duckkick");
}
attackpause = true;
}
}
}
}
} else {
attackpause = false;
duck = false;
}
} else if (rx < 100) {
run = false;
if (duck == false) {
if (_root.player1.char._currentframe < 15) {
if (attackpause == false) {
attackground = random(300) + 1;
if (attackground < (20 + (_root.difficulty * 20))) {
this.gotoAndStop("punch");
attackpause = true;
} else if (attackground > (280 - (_root.difficulty * 20))) {
this.gotoAndStop("kick");
attackpause = true;
} else if ((attackground < 200) && (attackground > 150)) {
if (_root.difficulty > 1) {
this.gotoAndStop("duck");
duck = true;
}
}
}
}
}
if (duck == true) {
if (_root.player1.char._currentframe < 15) {
if (attackpause == false) {
duckattack = random(300) + 1;
if (duckattack < (20 + (_root.difficulty * 20))) {
if (runspeed != 0) {
this.gotoAndStop("slidepunch");
} else {
this.gotoAndStop("duckpunch");
}
attackpause = true;
} else if (duckattack > (280 - (_root.difficulty * 20))) {
if (runspeed != 0) {
this.gotoAndStop("slidekick");
} else {
this.gotoAndStop("duckkick");
}
attackpause = true;
}
}
}
}
} else {
attackpause = false;
duck = false;
}
if (run == false) {
runspeed = 0;
runstop = 0;
if (this._currentframe == 1) {
runornot = random(1000) + 1;
if (runornot < rx) {
if (this._xscale == 100) {
run = true;
this.gotoAndStop(2);
}
}
if (runornot < (-rx)) {
if (this._xscale == -100) {
run = true;
this.gotoAndStop(2);
}
}
}
}
if (run == true) {
if (!this.hitTest(_root.player1.char.hitrect)) {
runstop = random(1000) + 1;
if (this._xscale == -100) {
if (runstop < ((-rx) / 5)) {
run = false;
}
runspeed = -5;
}
if (this._xscale == 100) {
if (runstop < (rx / 5)) {
run = false;
}
runspeed = 5;
}
}
}
if (this.hitrect.hitTest(_root.player1.char.hitrect)) {
if (this._xscale == -100) {
if (!Key.isDown(_root.leftbutton)) {
if (run == true) {
if (!Key.isDown(_root.rightbutton)) {
runspeed = -4;
} else {
runspeed = 0;
}
}
if (run == false) {
if (!Key.isDown(_root.rightbutton)) {
runspeed = 0;
} else {
runspeed = 4;
}
}
}
}
if (this._xscale == 100) {
if (!Key.isDown(_root.rightbutton)) {
if (run == true) {
if (!Key.isDown(_root.leftbutton)) {
runspeed = 4;
} else {
runspeed = 0;
}
}
if (run == false) {
if (!Key.isDown(_root.leftbutton)) {
runspeed = 0;
} else {
runspeed = -4;
}
}
}
}
}
jumpspeed = 25;
this._y = 0;
if (this._currentframe < 5) {
jumpornot = random(997) + 1;
}
if ((rx > -100) || (rx < 100)) {
if (jumpornot >= 980) {
_root.jump.start(0, 1);
jump = true;
runspeed = (random(10) * this._xscale) / 100;
this.gotoAndStop("jump");
}
if ((jumpornot >= 900) && (_root.player1.char._currentframe == 4)) {
_root.jump.start(0, 1);
jump = true;
runspeed = (random(10) * this._xscale) / 100;
this.gotoAndStop("jump");
}
}
}
}
if (jump == true) {
block = false;
if (jumpspeed < 0) {
if (_root.player1.char._currentframe < 4) {
if (this.hitrect.hitTest(_root.player1.char.hitrect)) {
if ((_root.player1._x + _root.player1.char._x) < (_root.player2._x + this._x)) {
runspeed = 9;
if (this._xscale == -100) {
_root.player1.char.runspeed = -5;
}
}
if ((_root.player1._x + _root.player1.char._x) > (_root.player2._x + this._x)) {
runspeed = -9;
if (this._xscale == 100) {
_root.player1.char.runspeed = 5;
}
}
}
}
}
if ((jumpattack == true) && (airhit == false)) {
attackground = random(300) + 1;
if (attackground < (20 + (_root.difficulty * 20))) {
this.gotoAndStop("jumppunch");
jumpattack = false;
}
if (attackground > (280 - (_root.difficulty * 20))) {
this.gotoAndStop("jumpkick");
jumpattack = false;
}
}
this._y = this._y - jumpspeed;
jumpspeed = jumpspeed - 2;
if (this._y >= 0) {
_root.land.start(0, 1);
jump = false;
jumpornot = 30;
if (run == true) {
this.gotoAndStop("run");
} else {
this.gotoAndStop("idle");
}
}
}
if (this.hitTest(_root.side1) && (runspeed < 0)) {
runspeed = 0;
}
if (this.hitTest(_root.side2) && (runspeed > 0)) {
runspeed = 0;
}
if (run == false) {
if (runspeed > 0) {
runspeed--;
}
if (runspeed < 0) {
runspeed++;
}
}
}
if (_root.gameover == true) {
if (jump == true) {
this._y = this._y - jumpspeed;
jumpspeed = jumpspeed - 2;
if (this._y >= 0) {
this.gotoAndStop("idle");
jump = false;
}
}
if ((this._currentframe > 1) && (this._currentframe < 7)) {
this.gotoAndStop("idle");
}
this._alpha = 100;
if (jump == false) {
if (_root.life2.text <= 0) {
this.gotoAndStop("death");
}
if (_root.life1.text <= 0) {
this.gotoAndStop("win");
}
}
}
}
}
Instance of Symbol 1444 MovieClip "char" in Symbol 1933 MovieClip Frame 7
onClipEvent (load) {
hitcount = 0;
runspeed = 0;
jump = false;
jumpspeed = 25;
jumpattack = true;
airhit = false;
this._xscale = -100;
runornot = 0;
jumpornot = 0;
runstop = 0;
run = false;
attackground = 0;
attackpause = false;
hurt = false;
hurtok = false;
duck = false;
blockornot = 0;
block = false;
}
onClipEvent (enterFrame) {
if (_root.gameplay == true) {
if (_root.gameover == false) {
if (_root.difficulty == 1) {
duck = false;
}
this._x = this._x + runspeed;
if (hurt == true) {
hurtok = true;
if (block == false) {
if (airhit == false) {
if (duck == false) {
this.gotoAndStop("hurt");
} else {
this.gotoAndStop("duckhurt");
}
}
}
if (jump == true) {
airhit = true;
}
timer++;
if (timer == 1) {
if (jump == true) {
if (jumpspeed < 0) {
jumpspeed = jumpspeed * -1;
}
}
}
if (timer > 5) {
if (jump == false) {
if (runspeed < 0) {
runspeed = runspeed + 1;
} else if (runspeed > 0) {
runspeed = runspeed - 1;
}
}
} else {
if ((_root.player2._x + this._x) < (_root.player1._x + _root.player1.char._x)) {
runspeed = -8;
}
if ((_root.player2._x + this._x) > (_root.player1._x + _root.player1.char._x)) {
runspeed = 8;
}
}
if (block == false) {
if ((timer >= 1) && (timer <= 4)) {
this._alpha = 0;
}
if ((timer >= 5) && (timer <= 10)) {
this._alpha = 100;
}
}
if (timer == 10) {
if (jump == false) {
if (duck == true) {
if (hitcount > (2 + ((_root.difficulty - 3) * -2))) {
this.gotoAndStop("duckpunch");
if (_root.difficulty < 3) {
hitcount = 0;
}
} else {
this.gotoAndStop("duck");
}
} else if (hitcount > (2 + ((_root.difficulty - 3) * -2))) {
this.gotoAndStop("punch");
if (_root.difficulty < 3) {
hitcount = 0;
}
} else if (run == true) {
this.gotoAndStop("run");
} else {
this.gotoAndStop("idle");
}
}
hurt = false;
}
}
if (hurt == false) {
if (this._currentframe > 6) {
hitcount = 0;
}
if (_root.player1.char._currentframe < 7) {
hurtok = false;
}
if (this._currentframe == 1) {
duck = false;
}
if (this._currentframe < 1) {
attackpause = false;
}
if (hurtok == false) {
if (_root.player1.char.attack.hurtrect.hitTest(this.hitrect)) {
if (jump == false) {
blockornot = random(100) + 1;
if (blockornot < (-10 + (_root.difficulty * 10))) {
block = true;
} else {
block = false;
}
if (block == true) {
_root.block.start(0, 1);
_root.health2away.text = 1;
if (duck == true) {
this.gotoAndStop("duckblock");
} else {
this.gotoAndStop("block");
}
}
}
if (block == false) {
if (airhit == false) {
hurtsfx = random(4) + 1;
_root["hurt" + hurtsfx].start(0, 1);
_root.health2away.text = 5;
if (duck == false) {
this.gotoAndStop("hurt");
} else {
this.gotoAndStop("duckhurt");
}
}
}
if (airhit == false) {
hurt = true;
}
}
hitcount++;
}
timer = 0;
if (jump == false) {
if (attackpause == true) {
attackground = 0;
duckattack = 0;
}
jumpattack = true;
airhit = false;
if (this._currentframe < 7) {
if ((_root.player2._x + this._x) < (_root.player1._x + _root.player1.char._x)) {
this._xscale = 100;
}
if ((_root.player2._x + this._x) > (_root.player1._x + _root.player1.char._x)) {
this._xscale = -100;
}
}
if (((run == false) && (jump == false)) && (this._currentframe < 4)) {
this.gotoAndStop("idle");
}
tx = _root.player2._x + this._x;
mxr = _root.player1._x + _root.player1.char._x;
rx = mxr - tx;
if ((this.hitTest(_root.player1.char) && (_root.player1.char._currentframe < 4)) && ((!this._currentframe) == 4)) {
this.gotoAndStop("idle");
}
if (this._xscale == -100) {
if (rx > -100) {
run = false;
if (duck == false) {
if (_root.player1.char._currentframe < 15) {
if (attackpause == false) {
attackground = random(300) + 1;
if (attackground < (20 + (_root.difficulty * 20))) {
this.gotoAndStop("punch");
attackpause = true;
} else if (attackground > (280 - (_root.difficulty * 20))) {
this.gotoAndStop("kick");
attackpause = true;
} else if ((attackground < 200) && (attackground > 150)) {
if (_root.difficulty > 1) {
this.gotoAndStop("duck");
duck = true;
}
}
}
}
}
if (duck == true) {
if (_root.player1.char._currentframe < 15) {
if (attackpause == false) {
duckattack = random(300) + 1;
if (duckattack < (20 + (_root.difficulty * 20))) {
if (runspeed != 0) {
this.gotoAndStop("slidepunch");
} else {
this.gotoAndStop("duckpunch");
}
attackpause = true;
} else if (duckattack > (280 - (_root.difficulty * 20))) {
if (runspeed != 0) {
this.gotoAndStop("slidekick");
} else {
this.gotoAndStop("duckkick");
}
attackpause = true;
}
}
}
}
} else {
attackpause = false;
duck = false;
}
} else if (rx < 100) {
run = false;
if (duck == false) {
if (_root.player1.char._currentframe < 15) {
if (attackpause == false) {
attackground = random(300) + 1;
if (attackground < (20 + (_root.difficulty * 20))) {
this.gotoAndStop("punch");
attackpause = true;
} else if (attackground > (280 - (_root.difficulty * 20))) {
this.gotoAndStop("kick");
attackpause = true;
} else if ((attackground < 200) && (attackground > 150)) {
if (_root.difficulty > 1) {
this.gotoAndStop("duck");
duck = true;
}
}
}
}
}
if (duck == true) {
if (_root.player1.char._currentframe < 15) {
if (attackpause == false) {
duckattack = random(300) + 1;
if (duckattack < (20 + (_root.difficulty * 20))) {
if (runspeed != 0) {
this.gotoAndStop("slidepunch");
} else {
this.gotoAndStop("duckpunch");
}
attackpause = true;
} else if (duckattack > (280 - (_root.difficulty * 20))) {
if (runspeed != 0) {
this.gotoAndStop("slidekick");
} else {
this.gotoAndStop("duckkick");
}
attackpause = true;
}
}
}
}
} else {
attackpause = false;
duck = false;
}
if (run == false) {
runspeed = 0;
runstop = 0;
if (this._currentframe == 1) {
runornot = random(1000) + 1;
if (runornot < rx) {
if (this._xscale == 100) {
run = true;
this.gotoAndStop(2);
}
}
if (runornot < (-rx)) {
if (this._xscale == -100) {
run = true;
this.gotoAndStop(2);
}
}
}
}
if (run == true) {
if (!this.hitTest(_root.player1.char.hitrect)) {
runstop = random(1000) + 1;
if (this._xscale == -100) {
if (runstop < ((-rx) / 5)) {
run = false;
}
runspeed = -5;
}
if (this._xscale == 100) {
if (runstop < (rx / 5)) {
run = false;
}
runspeed = 5;
}
}
}
if (this.hitrect.hitTest(_root.player1.char.hitrect)) {
if (this._xscale == -100) {
if (!Key.isDown(_root.leftbutton)) {
if (run == true) {
if (!Key.isDown(_root.rightbutton)) {
runspeed = -4;
} else {
runspeed = 0;
}
}
if (run == false) {
if (!Key.isDown(_root.rightbutton)) {
runspeed = 0;
} else {
runspeed = 4;
}
}
}
}
if (this._xscale == 100) {
if (!Key.isDown(_root.rightbutton)) {
if (run == true) {
if (!Key.isDown(_root.leftbutton)) {
runspeed = 4;
} else {
runspeed = 0;
}
}
if (run == false) {
if (!Key.isDown(_root.leftbutton)) {
runspeed = 0;
} else {
runspeed = -4;
}
}
}
}
}
jumpspeed = 25;
this._y = 0;
if (this._currentframe < 5) {
jumpornot = random(997) + 1;
}
if ((rx > -100) || (rx < 100)) {
if (jumpornot >= 980) {
_root.jump.start(0, 1);
jump = true;
runspeed = (random(10) * this._xscale) / 100;
this.gotoAndStop("jump");
}
if ((jumpornot >= 900) && (_root.player1.char._currentframe == 4)) {
_root.jump.start(0, 1);
jump = true;
runspeed = (random(10) * this._xscale) / 100;
this.gotoAndStop("jump");
}
}
}
}
if (jump == true) {
block = false;
if (jumpspeed < 0) {
if (_root.player1.char._currentframe < 4) {
if (this.hitrect.hitTest(_root.player1.char.hitrect)) {
if ((_root.player1._x + _root.player1.char._x) < (_root.player2._x + this._x)) {
runspeed = 9;
if (this._xscale == -100) {
_root.player1.char.runspeed = -5;
}
}
if ((_root.player1._x + _root.player1.char._x) > (_root.player2._x + this._x)) {
runspeed = -9;
if (this._xscale == 100) {
_root.player1.char.runspeed = 5;
}
}
}
}
}
if ((jumpattack == true) && (airhit == false)) {
attackground = random(300) + 1;
if (attackground < (20 + (_root.difficulty * 20))) {
this.gotoAndStop("jumppunch");
jumpattack = false;
}
if (attackground > (280 - (_root.difficulty * 20))) {
this.gotoAndStop("jumpkick");
jumpattack = false;
}
}
this._y = this._y - jumpspeed;
jumpspeed = jumpspeed - 2;
if (this._y >= 0) {
_root.land.start(0, 1);
jump = false;
jumpornot = 30;
if (run == true) {
this.gotoAndStop("run");
} else {
this.gotoAndStop("idle");
}
}
}
if (this.hitTest(_root.side1) && (runspeed < 0)) {
runspeed = 0;
}
if (this.hitTest(_root.side2) && (runspeed > 0)) {
runspeed = 0;
}
if (run == false) {
if (runspeed > 0) {
runspeed--;
}
if (runspeed < 0) {
runspeed++;
}
}
}
if (_root.gameover == true) {
if (jump == true) {
this._y = this._y - jumpspeed;
jumpspeed = jumpspeed - 2;
if (this._y >= 0) {
this.gotoAndStop("idle");
jump = false;
}
}
if ((this._currentframe > 1) && (this._currentframe < 7)) {
this.gotoAndStop("idle");
}
this._alpha = 100;
if (jump == false) {
if (_root.life2.text <= 0) {
this.gotoAndStop("death");
}
if (_root.life1.text <= 0) {
this.gotoAndStop("win");
}
}
}
}
}
Instance of Symbol 1665 MovieClip "char" in Symbol 1933 MovieClip Frame 8
onClipEvent (load) {
hitcount = 0;
runspeed = 0;
jump = false;
jumpspeed = 25;
jumpattack = true;
airhit = false;
this._xscale = -100;
runornot = 0;
jumpornot = 0;
runstop = 0;
run = false;
attackground = 0;
attackpause = false;
hurt = false;
hurtok = false;
duck = false;
blockornot = 0;
block = false;
}
onClipEvent (enterFrame) {
if (_root.gameplay == true) {
if (_root.gameover == false) {
if (_root.difficulty == 1) {
duck = false;
}
this._x = this._x + runspeed;
if (hurt == true) {
hurtok = true;
if (block == false) {
if (airhit == false) {
if (duck == false) {
this.gotoAndStop("hurt");
} else {
this.gotoAndStop("duckhurt");
}
}
}
if (jump == true) {
airhit = true;
}
timer++;
if (timer == 1) {
if (jump == true) {
if (jumpspeed < 0) {
jumpspeed = jumpspeed * -1;
}
}
}
if (timer > 5) {
if (jump == false) {
if (runspeed < 0) {
runspeed = runspeed + 1;
} else if (runspeed > 0) {
runspeed = runspeed - 1;
}
}
} else {
if ((_root.player2._x + this._x) < (_root.player1._x + _root.player1.char._x)) {
runspeed = -8;
}
if ((_root.player2._x + this._x) > (_root.player1._x + _root.player1.char._x)) {
runspeed = 8;
}
}
if (block == false) {
if ((timer >= 1) && (timer <= 4)) {
this._alpha = 0;
}
if ((timer >= 5) && (timer <= 10)) {
this._alpha = 100;
}
}
if (timer == 10) {
if (jump == false) {
if (duck == true) {
if (hitcount > (2 + ((_root.difficulty - 3) * -2))) {
this.gotoAndStop("duckpunch");
if (_root.difficulty < 3) {
hitcount = 0;
}
} else {
this.gotoAndStop("duck");
}
} else if (hitcount > (2 + ((_root.difficulty - 3) * -2))) {
this.gotoAndStop("punch");
if (_root.difficulty < 3) {
hitcount = 0;
}
} else if (run == true) {
this.gotoAndStop("run");
} else {
this.gotoAndStop("idle");
}
}
hurt = false;
}
}
if (hurt == false) {
if (this._currentframe > 6) {
hitcount = 0;
}
if (_root.player1.char._currentframe < 7) {
hurtok = false;
}
if (this._currentframe == 1) {
duck = false;
}
if (this._currentframe < 1) {
attackpause = false;
}
if (hurtok == false) {
if (_root.player1.char.attack.hurtrect.hitTest(this.hitrect)) {
if (jump == false) {
blockornot = random(100) + 1;
if (blockornot < (-10 + (_root.difficulty * 10))) {
block = true;
} else {
block = false;
}
if (block == true) {
_root.block.start(0, 1);
_root.health2away.text = 1;
if (duck == true) {
this.gotoAndStop("duckblock");
} else {
this.gotoAndStop("block");
}
}
}
if (block == false) {
if (airhit == false) {
hurtsfx = random(4) + 1;
_root["hurt" + hurtsfx].start(0, 1);
_root.health2away.text = 5;
if (duck == false) {
this.gotoAndStop("hurt");
} else {
this.gotoAndStop("duckhurt");
}
}
}
if (airhit == false) {
hurt = true;
}
}
hitcount++;
}
timer = 0;
if (jump == false) {
if (attackpause == true) {
attackground = 0;
duckattack = 0;
}
jumpattack = true;
airhit = false;
if (this._currentframe < 7) {
if ((_root.player2._x + this._x) < (_root.player1._x + _root.player1.char._x)) {
this._xscale = 100;
}
if ((_root.player2._x + this._x) > (_root.player1._x + _root.player1.char._x)) {
this._xscale = -100;
}
}
if (((run == false) && (jump == false)) && (this._currentframe < 4)) {
this.gotoAndStop("idle");
}
tx = _root.player2._x + this._x;
mxr = _root.player1._x + _root.player1.char._x;
rx = mxr - tx;
if ((this.hitTest(_root.player1.char) && (_root.player1.char._currentframe < 4)) && ((!this._currentframe) == 4)) {
this.gotoAndStop("idle");
}
if (this._xscale == -100) {
if (rx > -100) {
run = false;
if (duck == false) {
if (_root.player1.char._currentframe < 15) {
if (attackpause == false) {
attackground = random(300) + 1;
if (attackground < (20 + (_root.difficulty * 20))) {
this.gotoAndStop("punch");
attackpause = true;
} else if (attackground > (280 - (_root.difficulty * 20))) {
this.gotoAndStop("kick");
attackpause = true;
} else if ((attackground < 200) && (attackground > 150)) {
if (_root.difficulty > 1) {
this.gotoAndStop("duck");
duck = true;
}
}
}
}
}
if (duck == true) {
if (_root.player1.char._currentframe < 15) {
if (attackpause == false) {
duckattack = random(300) + 1;
if (duckattack < (20 + (_root.difficulty * 20))) {
if (runspeed != 0) {
this.gotoAndStop("slidepunch");
} else {
this.gotoAndStop("duckpunch");
}
attackpause = true;
} else if (duckattack > (280 - (_root.difficulty * 20))) {
if (runspeed != 0) {
this.gotoAndStop("slidekick");
} else {
this.gotoAndStop("duckkick");
}
attackpause = true;
}
}
}
}
} else {
attackpause = false;
duck = false;
}
} else if (rx < 100) {
run = false;
if (duck == false) {
if (_root.player1.char._currentframe < 15) {
if (attackpause == false) {
attackground = random(300) + 1;
if (attackground < (20 + (_root.difficulty * 20))) {
this.gotoAndStop("punch");
attackpause = true;
} else if (attackground > (280 - (_root.difficulty * 20))) {
this.gotoAndStop("kick");
attackpause = true;
} else if ((attackground < 200) && (attackground > 150)) {
if (_root.difficulty > 1) {
this.gotoAndStop("duck");
duck = true;
}
}
}
}
}
if (duck == true) {
if (_root.player1.char._currentframe < 15) {
if (attackpause == false) {
duckattack = random(300) + 1;
if (duckattack < (20 + (_root.difficulty * 20))) {
if (runspeed != 0) {
this.gotoAndStop("slidepunch");
} else {
this.gotoAndStop("duckpunch");
}
attackpause = true;
} else if (duckattack > (280 - (_root.difficulty * 20))) {
if (runspeed != 0) {
this.gotoAndStop("slidekick");
} else {
this.gotoAndStop("duckkick");
}
attackpause = true;
}
}
}
}
} else {
attackpause = false;
duck = false;
}
if (run == false) {
runspeed = 0;
runstop = 0;
if (this._currentframe == 1) {
runornot = random(1000) + 1;
if (runornot < rx) {
if (this._xscale == 100) {
run = true;
this.gotoAndStop(2);
}
}
if (runornot < (-rx)) {
if (this._xscale == -100) {
run = true;
this.gotoAndStop(2);
}
}
}
}
if (run == true) {
if (!this.hitTest(_root.player1.char.hitrect)) {
runstop = random(1000) + 1;
if (this._xscale == -100) {
if (runstop < ((-rx) / 5)) {
run = false;
}
runspeed = -5;
}
if (this._xscale == 100) {
if (runstop < (rx / 5)) {
run = false;
}
runspeed = 5;
}
}
}
if (this.hitrect.hitTest(_root.player1.char.hitrect)) {
if (this._xscale == -100) {
if (!Key.isDown(_root.leftbutton)) {
if (run == true) {
if (!Key.isDown(_root.rightbutton)) {
runspeed = -4;
} else {
runspeed = 0;
}
}
if (run == false) {
if (!Key.isDown(_root.rightbutton)) {
runspeed = 0;
} else {
runspeed = 4;
}
}
}
}
if (this._xscale == 100) {
if (!Key.isDown(_root.rightbutton)) {
if (run == true) {
if (!Key.isDown(_root.leftbutton)) {
runspeed = 4;
} else {
runspeed = 0;
}
}
if (run == false) {
if (!Key.isDown(_root.leftbutton)) {
runspeed = 0;
} else {
runspeed = -4;
}
}
}
}
}
jumpspeed = 25;
this._y = 0;
if (this._currentframe < 5) {
jumpornot = random(997) + 1;
}
if ((rx > -100) || (rx < 100)) {
if (jumpornot >= 980) {
_root.jump.start(0, 1);
jump = true;
runspeed = (random(10) * this._xscale) / 100;
this.gotoAndStop("jump");
}
if ((jumpornot >= 900) && (_root.player1.char._currentframe == 4)) {
_root.jump.start(0, 1);
jump = true;
runspeed = (random(10) * this._xscale) / 100;
this.gotoAndStop("jump");
}
}
}
}
if (jump == true) {
block = false;
if (jumpspeed < 0) {
if (_root.player1.char._currentframe < 4) {
if (this.hitrect.hitTest(_root.player1.char.hitrect)) {
if ((_root.player1._x + _root.player1.char._x) < (_root.player2._x + this._x)) {
runspeed = 9;
if (this._xscale == -100) {
_root.player1.char.runspeed = -5;
}
}
if ((_root.player1._x + _root.player1.char._x) > (_root.player2._x + this._x)) {
runspeed = -9;
if (this._xscale == 100) {
_root.player1.char.runspeed = 5;
}
}
}
}
}
if ((jumpattack == true) && (airhit == false)) {
attackground = random(300) + 1;
if (attackground < (20 + (_root.difficulty * 20))) {
this.gotoAndStop("jumppunch");
jumpattack = false;
}
if (attackground > (280 - (_root.difficulty * 20))) {
this.gotoAndStop("jumpkick");
jumpattack = false;
}
}
this._y = this._y - jumpspeed;
jumpspeed = jumpspeed - 2;
if (this._y >= 0) {
_root.land.start(0, 1);
jump = false;
jumpornot = 30;
if (run == true) {
this.gotoAndStop("run");
} else {
this.gotoAndStop("idle");
}
}
}
if (this.hitTest(_root.side1) && (runspeed < 0)) {
runspeed = 0;
}
if (this.hitTest(_root.side2) && (runspeed > 0)) {
runspeed = 0;
}
if (run == false) {
if (runspeed > 0) {
runspeed--;
}
if (runspeed < 0) {
runspeed++;
}
}
}
if (_root.gameover == true) {
if (jump == true) {
this._y = this._y - jumpspeed;
jumpspeed = jumpspeed - 2;
if (this._y >= 0) {
this.gotoAndStop("idle");
jump = false;
}
}
if ((this._currentframe > 1) && (this._currentframe < 7)) {
this.gotoAndStop("idle");
}
this._alpha = 100;
if (jump == false) {
if (_root.life2.text <= 0) {
this.gotoAndStop("death");
}
if (_root.life1.text <= 0) {
this.gotoAndStop("win");
}
}
}
}
}
Instance of Symbol 1802 MovieClip "char" in Symbol 1933 MovieClip Frame 9
onClipEvent (load) {
hitcount = 0;
runspeed = 0;
jump = false;
jumpspeed = 25;
jumpattack = true;
airhit = false;
this._xscale = -100;
runornot = 0;
jumpornot = 0;
runstop = 0;
run = false;
attackground = 0;
attackpause = false;
hurt = false;
hurtok = false;
duck = false;
blockornot = 0;
block = false;
}
onClipEvent (enterFrame) {
if (_root.gameplay == true) {
if (_root.gameover == false) {
if (_root.difficulty == 1) {
duck = false;
}
this._x = this._x + runspeed;
if (hurt == true) {
hurtok = true;
if (block == false) {
if (airhit == false) {
if (duck == false) {
this.gotoAndStop("hurt");
} else {
this.gotoAndStop("duckhurt");
}
}
}
if (jump == true) {
airhit = true;
}
timer++;
if (timer == 1) {
if (jump == true) {
if (jumpspeed < 0) {
jumpspeed = jumpspeed * -1;
}
}
}
if (timer > 5) {
if (jump == false) {
if (runspeed < 0) {
runspeed = runspeed + 1;
} else if (runspeed > 0) {
runspeed = runspeed - 1;
}
}
} else {
if ((_root.player2._x + this._x) < (_root.player1._x + _root.player1.char._x)) {
runspeed = -8;
}
if ((_root.player2._x + this._x) > (_root.player1._x + _root.player1.char._x)) {
runspeed = 8;
}
}
if (block == false) {
if ((timer >= 1) && (timer <= 4)) {
this._alpha = 0;
}
if ((timer >= 5) && (timer <= 10)) {
this._alpha = 100;
}
}
if (timer == 10) {
if (jump == false) {
if (duck == true) {
if (hitcount > (1 + ((_root.difficulty - 3) * -2))) {
this.gotoAndStop("duckpunch");
if (_root.difficulty < 3) {
hitcount = 0;
}
} else {
this.gotoAndStop("duck");
}
} else if (hitcount > (1 + ((_root.difficulty - 3) * -2))) {
this.gotoAndStop("punch");
if (_root.difficulty < 3) {
hitcount = 0;
}
} else if (run == true) {
this.gotoAndStop("run");
} else {
this.gotoAndStop("idle");
}
}
hurt = false;
}
}
if (hurt == false) {
if (this._currentframe > 6) {
hitcount = 0;
}
if (_root.player1.char._currentframe < 7) {
hurtok = false;
}
if (this._currentframe == 1) {
duck = false;
}
if (this._currentframe < 1) {
attackpause = false;
}
if (hurtok == false) {
if (_root.player1.char.attack.hurtrect.hitTest(this.hitrect)) {
if (jump == false) {
blockornot = random(100) + 1;
if (blockornot < (_root.difficulty * 10)) {
block = true;
} else {
block = false;
}
if (block == true) {
_root.block.start(0, 1);
_root.health2away.text = 1;
if (duck == true) {
this.gotoAndStop("duckblock");
} else {
this.gotoAndStop("block");
}
}
}
if (block == false) {
if (airhit == false) {
hurtsfx = random(4) + 1;
_root["hurt" + hurtsfx].start(0, 1);
_root.health2away.text = 5;
if (duck == false) {
this.gotoAndStop("hurt");
} else {
this.gotoAndStop("duckhurt");
}
}
}
if (airhit == false) {
hurt = true;
}
}
hitcount++;
}
timer = 0;
if (jump == false) {
if (attackpause == true) {
attackground = 0;
duckattack = 0;
}
jumpattack = true;
airhit = false;
if (this._currentframe < 7) {
if ((_root.player2._x + this._x) < (_root.player1._x + _root.player1.char._x)) {
this._xscale = 100;
}
if ((_root.player2._x + this._x) > (_root.player1._x + _root.player1.char._x)) {
this._xscale = -100;
}
}
if (((run == false) && (jump == false)) && (this._currentframe < 4)) {
this.gotoAndStop("idle");
}
tx = _root.player2._x + this._x;
mxr = _root.player1._x + _root.player1.char._x;
rx = mxr - tx;
if ((this.hitTest(_root.player1.char) && (_root.player1.char._currentframe < 4)) && ((!this._currentframe) == 4)) {
this.gotoAndStop("idle");
}
if (this._xscale == -100) {
if (rx > -100) {
run = false;
if (duck == false) {
if (_root.player1.char._currentframe < 15) {
if (attackpause == false) {
attackground = random(300) + 1;
if (attackground < (20 + (_root.difficulty * 30))) {
this.gotoAndStop("punch");
attackpause = true;
} else if (attackground > (280 - (_root.difficulty * 30))) {
this.gotoAndStop("kick");
attackpause = true;
} else if ((attackground < 200) && (attackground > 150)) {
if (_root.difficulty > 1) {
this.gotoAndStop("duck");
duck = true;
}
}
}
}
}
if (duck == true) {
if (_root.player1.char._currentframe < 15) {
if (attackpause == false) {
duckattack = random(300) + 1;
if (duckattack < (20 + (_root.difficulty * 30))) {
if (runspeed != 0) {
this.gotoAndStop("slidepunch");
} else {
this.gotoAndStop("duckpunch");
}
attackpause = true;
} else if (duckattack > (280 - (_root.difficulty * 30))) {
if (runspeed != 0) {
this.gotoAndStop("slidekick");
} else {
this.gotoAndStop("duckkick");
}
attackpause = true;
}
}
}
}
} else {
attackpause = false;
duck = false;
}
} else if (rx < 100) {
run = false;
if (duck == false) {
if (_root.player1.char._currentframe < 15) {
if (attackpause == false) {
attackground = random(300) + 1;
if (attackground < (20 + (_root.difficulty * 30))) {
this.gotoAndStop("punch");
attackpause = true;
} else if (attackground > (280 - (_root.difficulty * 30))) {
this.gotoAndStop("kick");
attackpause = true;
} else if ((attackground < 200) && (attackground > 150)) {
if (_root.difficulty > 1) {
this.gotoAndStop("duck");
duck = true;
}
}
}
}
}
if (duck == true) {
if (_root.player1.char._currentframe < 15) {
if (attackpause == false) {
duckattack = random(300) + 1;
if (duckattack < (20 + (_root.difficulty * 30))) {
if (runspeed != 0) {
this.gotoAndStop("slidepunch");
} else {
this.gotoAndStop("duckpunch");
}
attackpause = true;
} else if (duckattack > (280 - (_root.difficulty * 30))) {
if (runspeed != 0) {
this.gotoAndStop("slidekick");
} else {
this.gotoAndStop("duckkick");
}
attackpause = true;
}
}
}
}
} else {
attackpause = false;
duck = false;
}
if (run == false) {
runspeed = 0;
runstop = 0;
if (this._currentframe == 1) {
runornot = random(1000) + 1;
if (runornot < rx) {
if (this._xscale == 100) {
run = true;
this.gotoAndStop(2);
}
}
if (runornot < (-rx)) {
if (this._xscale == -100) {
run = true;
this.gotoAndStop(2);
}
}
}
}
if (run == true) {
if (!this.hitTest(_root.player1.char.hitrect)) {
runstop = random(1000) + 1;
if (this._xscale == -100) {
if (runstop < ((-rx) / 5)) {
run = false;
}
runspeed = -5;
}
if (this._xscale == 100) {
if (runstop < (rx / 5)) {
run = false;
}
runspeed = 5;
}
}
}
if (this.hitrect.hitTest(_root.player1.char.hitrect)) {
if (this._xscale == -100) {
if (!Key.isDown(_root.leftbutton)) {
if (run == true) {
if (!Key.isDown(_root.rightbutton)) {
runspeed = -4;
} else {
runspeed = 0;
}
}
if (run == false) {
if (!Key.isDown(_root.rightbutton)) {
runspeed = 0;
} else {
runspeed = 4;
}
}
}
}
if (this._xscale == 100) {
if (!Key.isDown(_root.rightbutton)) {
if (run == true) {
if (!Key.isDown(_root.leftbutton)) {
runspeed = 4;
} else {
runspeed = 0;
}
}
if (run == false) {
if (!Key.isDown(_root.leftbutton)) {
runspeed = 0;
} else {
runspeed = -4;
}
}
}
}
}
jumpspeed = 25;
this._y = 0;
if (this._currentframe < 5) {
jumpornot = random(997) + 1;
}
if ((rx > -100) || (rx < 100)) {
if (jumpornot >= 980) {
_root.jump.start(0, 1);
jump = true;
runspeed = (random(10) * this._xscale) / 100;
this.gotoAndStop("jump");
}
if ((jumpornot >= 900) && (_root.player1.char._currentframe == 4)) {
_root.jump.start(0, 1);
jump = true;
runspeed = (random(10) * this._xscale) / 100;
this.gotoAndStop("jump");
}
}
}
}
if (jump == true) {
block = false;
if (jumpspeed < 0) {
if (_root.player1.char._currentframe < 4) {
if (this.hitrect.hitTest(_root.player1.char.hitrect)) {
if ((_root.player1._x + _root.player1.char._x) < (_root.player2._x + this._x)) {
runspeed = 9;
if (this._xscale == -100) {
_root.player1.char.runspeed = -5;
}
}
if ((_root.player1._x + _root.player1.char._x) > (_root.player2._x + this._x)) {
runspeed = -9;
if (this._xscale == 100) {
_root.player1.char.runspeed = 5;
}
}
}
}
}
if ((jumpattack == true) && (airhit == false)) {
attackground = random(300) + 1;
if (attackground < (20 + (_root.difficulty * 30))) {
this.gotoAndStop("jumppunch");
jumpattack = false;
}
if (attackground > (280 - (_root.difficulty * 30))) {
this.gotoAndStop("jumpkick");
jumpattack = false;
}
}
this._y = this._y - jumpspeed;
jumpspeed = jumpspeed - 2;
if (this._y >= 0) {
_root.land.start(0, 1);
jump = false;
jumpornot = 30;
if (run == true) {
this.gotoAndStop("run");
} else {
this.gotoAndStop("idle");
}
}
}
if (this.hitTest(_root.side1) && (runspeed < 0)) {
runspeed = 0;
}
if (this.hitTest(_root.side2) && (runspeed > 0)) {
runspeed = 0;
}
if (run == false) {
if (runspeed > 0) {
runspeed--;
}
if (runspeed < 0) {
runspeed++;
}
}
}
if (_root.gameover == true) {
if (jump == true) {
this._y = this._y - jumpspeed;
jumpspeed = jumpspeed - 2;
if (this._y >= 0) {
this.gotoAndStop("idle");
jump = false;
}
}
if ((this._currentframe > 1) && (this._currentframe < 7)) {
this.gotoAndStop("idle");
}
this._alpha = 100;
if (jump == false) {
if (_root.life2.text <= 0) {
this.gotoAndStop("death");
}
if (_root.life1.text <= 0) {
this.gotoAndStop("win");
}
}
}
}
}
Instance of Symbol 1932 MovieClip "char" in Symbol 1933 MovieClip Frame 10
onClipEvent (load) {
hitcount = 0;
runspeed = 0;
jump = false;
jumpspeed = 25;
jumpattack = true;
airhit = false;
this._xscale = -100;
runornot = 0;
jumpornot = 0;
runstop = 0;
run = false;
attackground = 0;
attackpause = false;
hurt = false;
hurtok = false;
duck = false;
blockornot = 0;
block = false;
}
onClipEvent (enterFrame) {
if (_root.gameplay == true) {
if (_root.gameover == false) {
if (_root.difficulty == 1) {
duck = false;
}
this._x = this._x + runspeed;
if (hurt == true) {
hurtok = true;
if (block == false) {
if (airhit == false) {
if (duck == false) {
this.gotoAndStop("hurt");
} else {
this.gotoAndStop("duckhurt");
}
}
}
if (jump == true) {
airhit = true;
}
timer++;
if (timer == 1) {
if (jump == true) {
if (jumpspeed < 0) {
jumpspeed = jumpspeed * -1;
}
}
}
if (timer > 5) {
if (jump == false) {
if (runspeed < 0) {
runspeed = runspeed + 1;
} else if (runspeed > 0) {
runspeed = runspeed - 1;
}
}
} else {
if ((_root.player2._x + this._x) < (_root.player1._x + _root.player1.char._x)) {
runspeed = -8;
}
if ((_root.player2._x + this._x) > (_root.player1._x + _root.player1.char._x)) {
runspeed = 8;
}
}
if (block == false) {
if ((timer >= 1) && (timer <= 4)) {
this._alpha = 0;
}
if ((timer >= 5) && (timer <= 10)) {
this._alpha = 100;
}
}
if (timer == 10) {
if (jump == false) {
if (duck == true) {
if (hitcount > (0 + ((_root.difficulty - 3) * -2))) {
this.gotoAndStop("duckpunch");
if (_root.difficulty < 3) {
hitcount = 0;
}
} else {
this.gotoAndStop("duck");
}
} else if (hitcount > (0 + ((_root.difficulty - 3) * -2))) {
this.gotoAndStop("punch");
if (_root.difficulty < 3) {
hitcount = 0;
}
} else if (run == true) {
this.gotoAndStop("run");
} else {
this.gotoAndStop("idle");
}
}
hurt = false;
}
}
if (hurt == false) {
if (this._currentframe > 6) {
hitcount = 0;
}
if (_root.player1.char._currentframe < 7) {
hurtok = false;
}
if (this._currentframe == 1) {
duck = false;
}
if (this._currentframe < 1) {
attackpause = false;
}
if (hurtok == false) {
if (_root.player1.char.attack.hurtrect.hitTest(this.hitrect)) {
if (jump == false) {
blockornot = random(100) + 1;
if (blockornot < (10 + (_root.difficulty * 10))) {
block = true;
} else {
block = false;
}
if (block == true) {
_root.block.start(0, 1);
_root.health2away.text = 1;
if (duck == true) {
this.gotoAndStop("duckblock");
} else {
this.gotoAndStop("block");
}
}
}
if (block == false) {
if (airhit == false) {
hurtsfx = random(4) + 1;
_root["hurt" + hurtsfx].start(0, 1);
_root.health2away.text = 5;
if (duck == false) {
this.gotoAndStop("hurt");
} else {
this.gotoAndStop("duckhurt");
}
}
}
if (airhit == false) {
hurt = true;
}
}
hitcount++;
}
timer = 0;
if (jump == false) {
if (attackpause == true) {
attackground = 0;
duckattack = 0;
}
jumpattack = true;
airhit = false;
if (this._currentframe < 7) {
if ((_root.player2._x + this._x) < (_root.player1._x + _root.player1.char._x)) {
this._xscale = 100;
}
if ((_root.player2._x + this._x) > (_root.player1._x + _root.player1.char._x)) {
this._xscale = -100;
}
}
if (((run == false) && (jump == false)) && (this._currentframe < 4)) {
this.gotoAndStop("idle");
}
tx = _root.player2._x + this._x;
mxr = _root.player1._x + _root.player1.char._x;
rx = mxr - tx;
if ((this.hitTest(_root.player1.char) && (_root.player1.char._currentframe < 4)) && ((!this._currentframe) == 4)) {
this.gotoAndStop("idle");
}
if (this._xscale == -100) {
if (rx > -100) {
run = false;
if (duck == false) {
if (_root.player1.char._currentframe < 15) {
if (attackpause == false) {
attackground = random(300) + 1;
if (attackground < (20 + (_root.difficulty * 40))) {
this.gotoAndStop("punch");
attackpause = true;
} else if (attackground > (280 - (_root.difficulty * 40))) {
this.gotoAndStop("kick");
attackpause = true;
} else if ((attackground < 200) && (attackground > 150)) {
if (_root.difficulty > 1) {
this.gotoAndStop("duck");
duck = true;
}
}
}
}
}
if (duck == true) {
if (_root.player1.char._currentframe < 15) {
if (attackpause == false) {
duckattack = random(300) + 1;
if (duckattack < (20 + (_root.difficulty * 40))) {
if (runspeed != 0) {
this.gotoAndStop("slidepunch");
} else {
this.gotoAndStop("duckpunch");
}
attackpause = true;
} else if (duckattack > (280 - (_root.difficulty * 40))) {
if (runspeed != 0) {
this.gotoAndStop("slidekick");
} else {
this.gotoAndStop("duckkick");
}
attackpause = true;
}
}
}
}
} else {
attackpause = false;
duck = false;
}
} else if (rx < 100) {
run = false;
if (duck == false) {
if (_root.player1.char._currentframe < 15) {
if (attackpause == false) {
attackground = random(300) + 1;
if (attackground < (20 + (_root.difficulty * 40))) {
this.gotoAndStop("punch");
attackpause = true;
} else if (attackground > (280 - (_root.difficulty * 40))) {
this.gotoAndStop("kick");
attackpause = true;
} else if ((attackground < 200) && (attackground > 150)) {
if (_root.difficulty > 1) {
this.gotoAndStop("duck");
duck = true;
}
}
}
}
}
if (duck == true) {
if (_root.player1.char._currentframe < 15) {
if (attackpause == false) {
duckattack = random(300) + 1;
if (duckattack < (20 + (_root.difficulty * 40))) {
if (runspeed != 0) {
this.gotoAndStop("slidepunch");
} else {
this.gotoAndStop("duckpunch");
}
attackpause = true;
} else if (duckattack > (280 - (_root.difficulty * 40))) {
if (runspeed != 0) {
this.gotoAndStop("slidekick");
} else {
this.gotoAndStop("duckkick");
}
attackpause = true;
}
}
}
}
} else {
attackpause = false;
duck = false;
}
if (run == false) {
runspeed = 0;
runstop = 0;
if (this._currentframe == 1) {
runornot = random(1000) + 1;
if (runornot < rx) {
if (this._xscale == 100) {
run = true;
this.gotoAndStop(2);
}
}
if (runornot < (-rx)) {
if (this._xscale == -100) {
run = true;
this.gotoAndStop(2);
}
}
}
}
if (run == true) {
if (!this.hitTest(_root.player1.char.hitrect)) {
runstop = random(1000) + 1;
if (this._xscale == -100) {
if (runstop < ((-rx) / 5)) {
run = false;
}
runspeed = -5;
}
if (this._xscale == 100) {
if (runstop < (rx / 5)) {
run = false;
}
runspeed = 5;
}
}
}
if (this.hitrect.hitTest(_root.player1.char.hitrect)) {
if (this._xscale == -100) {
if (!Key.isDown(_root.leftbutton)) {
if (run == true) {
if (!Key.isDown(_root.rightbutton)) {
runspeed = -4;
} else {
runspeed = 0;
}
}
if (run == false) {
if (!Key.isDown(_root.rightbutton)) {
runspeed = 0;
} else {
runspeed = 4;
}
}
}
}
if (this._xscale == 100) {
if (!Key.isDown(_root.rightbutton)) {
if (run == true) {
if (!Key.isDown(_root.leftbutton)) {
runspeed = 4;
} else {
runspeed = 0;
}
}
if (run == false) {
if (!Key.isDown(_root.leftbutton)) {
runspeed = 0;
} else {
runspeed = -4;
}
}
}
}
}
jumpspeed = 25;
this._y = 0;
if (this._currentframe < 5) {
jumpornot = random(997) + 1;
}
if ((rx > -100) || (rx < 100)) {
if (jumpornot >= 980) {
_root.jump.start(0, 1);
jump = true;
runspeed = (random(10) * this._xscale) / 100;
this.gotoAndStop("jump");
}
if ((jumpornot >= 900) && (_root.player1.char._currentframe == 4)) {
_root.jump.start(0, 1);
jump = true;
runspeed = (random(10) * this._xscale) / 100;
this.gotoAndStop("jump");
}
}
}
}
if (jump == true) {
block = false;
if (jumpspeed < 0) {
if (_root.player1.char._currentframe < 4) {
if (this.hitrect.hitTest(_root.player1.char.hitrect)) {
if ((_root.player1._x + _root.player1.char._x) < (_root.player2._x + this._x)) {
runspeed = 9;
if (this._xscale == -100) {
_root.player1.char.runspeed = -5;
}
}
if ((_root.player1._x + _root.player1.char._x) > (_root.player2._x + this._x)) {
runspeed = -9;
if (this._xscale == 100) {
_root.player1.char.runspeed = 5;
}
}
}
}
}
if ((jumpattack == true) && (airhit == false)) {
attackground = random(300) + 1;
if (attackground < (20 + (_root.difficulty * 40))) {
this.gotoAndStop("jumppunch");
jumpattack = false;
}
if (attackground > (280 - (_root.difficulty * 40))) {
this.gotoAndStop("jumpkick");
jumpattack = false;
}
}
this._y = this._y - jumpspeed;
jumpspeed = jumpspeed - 2;
if (this._y >= 0) {
_root.land.start(0, 1);
jump = false;
jumpornot = 30;
if (run == true) {
this.gotoAndStop("run");
} else {
this.gotoAndStop("idle");
}
}
}
if (this.hitTest(_root.side1) && (runspeed < 0)) {
runspeed = 0;
}
if (this.hitTest(_root.side2) && (runspeed > 0)) {
runspeed = 0;
}
if (run == false) {
if (runspeed > 0) {
runspeed--;
}
if (runspeed < 0) {
runspeed++;
}
}
}
if (_root.gameover == true) {
if (jump == true) {
this._y = this._y - jumpspeed;
jumpspeed = jumpspeed - 2;
if (this._y >= 0) {
this.gotoAndStop("idle");
jump = false;
}
}
if ((this._currentframe > 1) && (this._currentframe < 7)) {
this.gotoAndStop("idle");
}
this._alpha = 100;
if (jump == false) {
if (_root.life2.text <= 0) {
this.gotoAndStop("death");
}
if (_root.life1.text <= 0) {
this.gotoAndStop("win");
}
}
}
}
}
Instance of Symbol 545 MovieClip in Symbol 1934 MovieClip Frame 1
onClipEvent (enterFrame) {
this._x = _parent.char._x;
this._y = -18.5;
this._xscale = _parent.char._xscale;
}
Instance of Symbol 675 MovieClip "char" in Symbol 1934 MovieClip Frame 1
onClipEvent (load) {
block = false;
this._y = 0;
runspeed = 0;
jump = false;
jumpspeed = 25;
duck = false;
jumpattack = true;
attackpause = false;
timer = 0;
hurt = false;
airhit = true;
}
onClipEvent (enterFrame) {
if (_root.gameplay == true) {
if (_root.gameover == false) {
this._x = this._x + runspeed;
if (this.hitTest(_root.side1) && (runspeed < 0)) {
runspeed = 0;
}
if (this.hitTest(_root.side2) && (runspeed > 0)) {
runspeed = 0;
}
if (_root.player2.char.hitrect.hitTest(this.hitrect)) {
if ((!Key.isDown(_root.leftbutton)) && (this._xscale == 100)) {
if (jump == false) {
runspeed = 0;
}
}
if ((!Key.isDown(_root.rightbutton)) && (this._xscale == -100)) {
if (jump == false) {
runspeed = 0;
}
}
}
if ((!Key.isDown(_root.punchbutton)) && (!Key.isDown(_root.kickbutton))) {
attackpause = false;
}
if (block == true) {
if (duck == true) {
this.gotoAndStop("duckblock");
} else {
this.gotoAndStop("block");
}
}
if (hurt == true) {
if (duck == false) {
if (airhit == false) {
if (block == false) {
this.gotoAndStop("hurt");
} else {
this.gotoAndStop("block");
}
}
}
if (duck == true) {
if (airhit == false) {
if (block == false) {
this.gotoAndStop("duckhurt");
} else {
this.gotoAndStop("duckblock");
}
}
}
timer++;
if (timer == 1) {
if ((!this.hitTest(_root.side1)) && (!this.hitTest(_root.side2))) {
if ((_root.player2._x + _root.player2.char._x) < (_root.player1._x + this._x)) {
runspeed = 10;
}
if ((_root.player2._x + _root.player2.char._x) > (_root.player1._x + this._x)) {
runspeed = -10;
}
}
}
if (jump == false) {
if (timer > 1) {
if (runspeed > 0) {
runspeed--;
}
if (runspeed < 0) {
runspeed++;
}
}
}
if (jump == true) {
if (timer == 1) {
if (jumpspeed < 0) {
jumpspeed = jumpspeed * -1;
}
}
}
if (block == false) {
if ((this._currentframe < 5) || (this._currentframe > 6)) {
if (((timer >= 1) && (timer <= 4)) || ((timer >= 11) && (timer <= 14))) {
this._alpha = 0;
}
if (((timer >= 5) && (timer <= 10)) || ((timer >= 15) && (timer <= 19))) {
this._alpha = 100;
}
}
}
if (timer == 20) {
if (jump == false) {
if (duck == true) {
this.gotoAndStop("duck");
} else if (run == true) {
this.gotoAndStop("run");
} else {
this.gotoAndStop("idle");
}
}
block = false;
hurt = false;
}
}
if (hurt == false) {
timer = 0;
if (_root.player2.char.attack.hurtrect.hitTest(this.hitrect)) {
if (duck == true) {
if ((Key.isDown(_root.leftbutton) && (this._xscale == 100)) || (Key.isDown(_root.rightbutton) && (this._xscale == -100))) {
this.gotoAndStop("duckblock");
block = true;
} else {
this.gotoAndStop("duckhurt");
}
} else if ((Key.isDown(_root.leftbutton) && (this._xscale == 100)) || (Key.isDown(_root.rightbutton) && (this._xscale == -100))) {
this.gotoAndStop("block");
block = true;
} else {
this.gotoAndStop("hurt");
}
if (jump == true) {
if (airhit == true) {
this.gotoAndStop("hurt");
}
}
if ((this._currentframe < 5) || (this._currentframe > 6)) {
hurtsfx = random(4) + 1;
_root["hurt" + hurtsfx].start(0, 1);
_root.health1away.text = 5;
} else {
_root.block.start(0, 1);
_root.health1away.text = 1;
}
if (airhit == true) {
hurt = true;
}
} else {
block = false;
}
if (jump == false) {
if (timer == 0) {
jumpattack = true;
if (this._currentframe < 7) {
if ((_root.player2._x + _root.player2.char._x) < (_root.player1._x + this._x)) {
this._xscale = -100;
}
if ((_root.player2._x + _root.player2.char._x) > (_root.player1._x + this._x)) {
this._xscale = 100;
}
}
if (((!Key.isDown(_root.rightbutton)) && (!Key.isDown(_root.leftbutton))) && (!Key.isDown(_root.downbutton))) {
if (attackpause == false) {
if (Key.isDown(_root.punchbutton)) {
this.gotoAndStop("punch");
attackpause = true;
}
if (Key.isDown(_root.kickbutton)) {
this.gotoAndStop("kick");
attackpause = true;
}
}
}
if ((Key.isDown(_root.rightbutton) && (this._xscale == 100)) || (Key.isDown(_root.leftbutton) && (this._xscale == -100))) {
if (duck == false) {
if (attackpause == false) {
if (Key.isDown(_root.punchbutton)) {
this.gotoAndStop("punch");
attackpause = true;
}
if (Key.isDown(_root.kickbutton)) {
this.gotoAndStop("kick");
attackpause = true;
}
}
}
}
this._y = 0;
jumpspeed = 25;
if (!Key.isDown(_root.downbutton)) {
if (this.hitrect.hitTest(_root.player2.char.hitrect)) {
if (this._xscale == 100) {
if (!Key.isDown(_root.leftbutton)) {
if (_root.player2.char.run == true) {
if (!Key.isDown(_root.rightbutton)) {
runspeed = -4;
} else {
runspeed = 0;
}
}
if (_root.player2.char.run == false) {
if (!Key.isDown(_root.rightbutton)) {
runspeed = 0;
} else {
runspeed = 4;
}
}
}
}
if (this._xscale == -100) {
if (!Key.isDown(_root.rightbutton)) {
if (_root.player2.char.run == true) {
if (!Key.isDown(_root.leftbutton)) {
runspeed = 4;
} else {
runspeed = 0;
}
}
if (_root.player2.char.run == false) {
if (!Key.isDown(_root.leftbutton)) {
runspeed = 0;
} else {
runspeed = -4;
}
}
}
}
}
if (Key.isDown(_root.leftbutton)) {
if (((this._currentframe == 1) || (this._currentframe == 2)) || (this._currentframe == 3)) {
this.gotoAndStop("run");
if (this._xscale == 100) {
if (!this.hitTest(_root.side1)) {
runspeed = -7;
}
}
if (!this.hitrect.hitTest(_root.player2.char.hitrect)) {
if (this._xscale == -100) {
runspeed = -10;
}
}
}
}
if (Key.isDown(_root.rightbutton)) {
if (((this._currentframe == 1) || (this._currentframe == 2)) || (this._currentframe == 3)) {
this.gotoAndStop("run");
if (!this.hitrect.hitTest(_root.player2.char.hitrect)) {
if (this._xscale == 100) {
runspeed = 10;
}
}
if (this._xscale == -100) {
if (!this.hitTest(_root.side2)) {
runspeed = 7;
}
}
}
}
}
if (Key.isDown(_root.downbutton)) {
if (this._currentframe < 5) {
if (duck == false) {
this.gotoAndStop("duck");
duck = true;
}
}
}
if (!Key.isDown(_root.downbutton)) {
duck = false;
}
if (duck == true) {
if (runspeed != 0) {
if (Key.isDown(_root.punchbutton)) {
if (attackpause == false) {
if (this._currentframe == 3) {
if (this._xscale == 100) {
runspeed = 12;
} else {
runspeed = -12;
}
}
this.gotoAndStop("slidepunch");
attackpause = true;
}
}
if (Key.isDown(_root.kickbutton)) {
if (attackpause == false) {
if (this._currentframe == 3) {
if (this._xscale == 100) {
runspeed = 12;
} else {
runspeed = -12;
}
}
this.gotoAndStop("slidekick");
attackpause = true;
}
}
}
if (runspeed == 0) {
if ((this._currentframe != 11) && (this._currentframe != 12)) {
if (attackpause == false) {
if (Key.isDown(_root.punchbutton)) {
this.gotoAndStop("duckpunch");
attackpause = true;
}
if (Key.isDown(_root.kickbutton)) {
this.gotoAndStop("duckkick");
attackpause = true;
}
}
if (this._currentframe < 7) {
if ((!Key.isDown(_root.punchbutton)) && (!Key.isDown(_root.kickbutton))) {
this.gotoAndStop("duck");
}
}
}
}
}
if (((!Key.isDown(_root.downbutton)) && (!Key.isDown(_root.rightbutton))) && (!Key.isDown(_root.leftbutton))) {
if (_currentframe < 7) {
this.gotoAndStop("idle");
block = false;
}
}
if (this._currentframe != 2) {
if (runspeed > 0) {
runspeed--;
}
if (runspeed < 0) {
runspeed++;
}
}
if (Key.isDown(_root.upbutton)) {
if (this._currentframe < 7) {
this.gotoAndStop("jump");
airhit = true;
_root.jump.start(0, 1);
jump = true;
}
}
}
}
}
if (jump == true) {
this._y = this._y - jumpspeed;
jumpspeed = jumpspeed - 2;
if (_root.player2.char._currentframe == 4) {
if (this.hitrect.hitTest(_root.player2.char.hitrect)) {
if (this._xscale == 100) {
runspeed = 4;
_root.player2.char.runspeed = 4;
}
if (this._xscale == -100) {
runspeed = -4;
_root.player2.char.runspeed = -4;
}
}
} else if (jumpspeed > 0) {
if (this.hitrect.hitTest(_root.player2.char.hitrect)) {
if (runspeed != 0) {
if (this._xscale == -100) {
runspeed = -5;
_root.player2.char.runspeed = -5;
if (_root.player2._x < 80) {
this._x = this._x - runspeed;
}
}
if (this._xscale == 100) {
runspeed = 5;
_root.player2.char.runspeed = 5;
if (_root.player2._x > 655) {
this._x = this._x - runspeed;
}
}
}
}
}
if (jumpspeed < 0) {
if ((!_root.player2.char._currentframe) == 4) {
if (this.hitrect.hitTest(_root.player2.char.hitrect)) {
if ((_root.player2._x + _root.player2.char._x) < (_root.player1._x + this._x)) {
runspeed = 9;
if (this._xscale == -100) {
_root.player2.char.runspeed = -5;
}
}
if ((_root.player2._x + _root.player2.char._x) > (_root.player1._x + this._x)) {
runspeed = -9;
if (this._xscale == 100) {
_root.player2.char.runspeed = 5;
}
}
}
}
}
if (hurt == false) {
if (jumpattack == true) {
if (attackpause == false) {
if (Key.isDown(_root.punchbutton)) {
this.gotoAndStop("jumppunch");
attackpause = true;
jumpattack = false;
}
if (Key.isDown(_root.kickbutton)) {
this.gotoAndStop("jumpkick");
attackpause = true;
jumpattack = false;
}
}
}
if (jumpattack == false) {
if (attackpause == false) {
if (Key.isDown(_root.punchbutton)) {
attackpause = true;
}
if (Key.isDown(_root.kickbutton)) {
attackpause = true;
}
}
}
}
if (this._y >= 0) {
_root.land.start(0, 1);
this.gotoAndStop("idle");
jump = false;
}
}
}
if (_root.gameover == true) {
if (this._currentframe == 3) {
this.gotoAndStop("idle");
}
if (block == true) {
block = false;
this.gotoAndStop("idle");
}
if (hurt == true) {
hurt = false;
this.gotoAndStop("idle");
}
if (jump == true) {
this._y = this._y - jumpspeed;
jumpspeed = jumpspeed - 2;
if (this._y >= 0) {
this.gotoAndStop("idle");
jump = false;
}
}
this._alpha = 100;
if (jump == false) {
if (_root.life1.text <= 0) {
this.gotoAndStop("death");
_root.playerwon = false;
}
if (this._currentframe == 1) {
if (_root.life2.text <= 0) {
this.gotoAndStop("win");
_root.playerwon = true;
}
}
}
}
}
}
Instance of Symbol 867 MovieClip "char" in Symbol 1934 MovieClip Frame 2
onClipEvent (load) {
block = false;
this._y = 0;
runspeed = 0;
jump = false;
jumpspeed = 25;
duck = false;
jumpattack = true;
attackpause = false;
timer = 0;
hurt = false;
airhit = true;
}
onClipEvent (enterFrame) {
if (_root.gameplay == true) {
if (_root.gameover == false) {
this._x = this._x + runspeed;
if (this.hitTest(_root.side1) && (runspeed < 0)) {
runspeed = 0;
}
if (this.hitTest(_root.side2) && (runspeed > 0)) {
runspeed = 0;
}
if (_root.player2.char.hitrect.hitTest(this.hitrect)) {
if ((!Key.isDown(_root.leftbutton)) && (this._xscale == 100)) {
if (jump == false) {
runspeed = 0;
}
}
if ((!Key.isDown(_root.rightbutton)) && (this._xscale == -100)) {
if (jump == false) {
runspeed = 0;
}
}
}
if ((!Key.isDown(_root.punchbutton)) && (!Key.isDown(_root.kickbutton))) {
attackpause = false;
}
if (block == true) {
if (duck == true) {
this.gotoAndStop("duckblock");
} else {
this.gotoAndStop("block");
}
}
if (hurt == true) {
if (duck == false) {
if (airhit == false) {
if (block == false) {
this.gotoAndStop("hurt");
} else {
this.gotoAndStop("block");
}
}
}
if (duck == true) {
if (airhit == false) {
if (block == false) {
this.gotoAndStop("duckhurt");
} else {
this.gotoAndStop("duckblock");
}
}
}
timer++;
if (timer == 1) {
if ((!this.hitTest(_root.side1)) && (!this.hitTest(_root.side2))) {
if ((_root.player2._x + _root.player2.char._x) < (_root.player1._x + this._x)) {
runspeed = 10;
}
if ((_root.player2._x + _root.player2.char._x) > (_root.player1._x + this._x)) {
runspeed = -10;
}
}
}
if (jump == false) {
if (timer > 1) {
if (runspeed > 0) {
runspeed--;
}
if (runspeed < 0) {
runspeed++;
}
}
}
if (jump == true) {
if (timer == 1) {
if (jumpspeed < 0) {
jumpspeed = jumpspeed * -1;
}
}
}
if (block == false) {
if ((this._currentframe < 5) || (this._currentframe > 6)) {
if (((timer >= 1) && (timer <= 4)) || ((timer >= 11) && (timer <= 14))) {
this._alpha = 0;
}
if (((timer >= 5) && (timer <= 10)) || ((timer >= 15) && (timer <= 19))) {
this._alpha = 100;
}
}
}
if (timer == 20) {
if (jump == false) {
if (duck == true) {
this.gotoAndStop("duck");
} else if (run == true) {
this.gotoAndStop("run");
} else {
this.gotoAndStop("idle");
}
}
block = false;
hurt = false;
}
}
if (hurt == false) {
timer = 0;
if (_root.player2.char.attack.hurtrect.hitTest(this.hitrect)) {
if (duck == true) {
if ((Key.isDown(_root.leftbutton) && (this._xscale == 100)) || (Key.isDown(_root.rightbutton) && (this._xscale == -100))) {
this.gotoAndStop("duckblock");
block = true;
} else {
this.gotoAndStop("duckhurt");
}
} else if ((Key.isDown(_root.leftbutton) && (this._xscale == 100)) || (Key.isDown(_root.rightbutton) && (this._xscale == -100))) {
this.gotoAndStop("block");
block = true;
} else {
this.gotoAndStop("hurt");
}
if (jump == true) {
if (airhit == true) {
this.gotoAndStop("hurt");
}
}
if ((this._currentframe < 5) || (this._currentframe > 6)) {
hurtsfx = random(4) + 1;
_root["hurt" + hurtsfx].start(0, 1);
_root.health1away.text = 5;
} else {
_root.block.start(0, 1);
_root.health1away.text = 1;
}
if (airhit == true) {
hurt = true;
}
} else {
block = false;
}
if (jump == false) {
if (timer == 0) {
jumpattack = true;
if (this._currentframe < 7) {
if ((_root.player2._x + _root.player2.char._x) < (_root.player1._x + this._x)) {
this._xscale = -100;
}
if ((_root.player2._x + _root.player2.char._x) > (_root.player1._x + this._x)) {
this._xscale = 100;
}
}
if (((!Key.isDown(_root.rightbutton)) && (!Key.isDown(_root.leftbutton))) && (!Key.isDown(_root.downbutton))) {
if (attackpause == false) {
if (Key.isDown(_root.punchbutton)) {
this.gotoAndStop("punch");
attackpause = true;
}
if (Key.isDown(_root.kickbutton)) {
this.gotoAndStop("kick");
attackpause = true;
}
}
}
if ((Key.isDown(_root.rightbutton) && (this._xscale == 100)) || (Key.isDown(_root.leftbutton) && (this._xscale == -100))) {
if (duck == false) {
if (attackpause == false) {
if (Key.isDown(_root.punchbutton)) {
this.gotoAndStop("punch");
attackpause = true;
}
if (Key.isDown(_root.kickbutton)) {
this.gotoAndStop("kick");
attackpause = true;
}
}
}
}
this._y = 0;
jumpspeed = 25;
if (!Key.isDown(_root.downbutton)) {
if (this.hitrect.hitTest(_root.player2.char.hitrect)) {
if (this._xscale == 100) {
if (!Key.isDown(_root.leftbutton)) {
if (_root.player2.char.run == true) {
if (!Key.isDown(_root.rightbutton)) {
runspeed = -4;
} else {
runspeed = 0;
}
}
if (_root.player2.char.run == false) {
if (!Key.isDown(_root.rightbutton)) {
runspeed = 0;
} else {
runspeed = 4;
}
}
}
}
if (this._xscale == -100) {
if (!Key.isDown(_root.rightbutton)) {
if (_root.player2.char.run == true) {
if (!Key.isDown(_root.leftbutton)) {
runspeed = 4;
} else {
runspeed = 0;
}
}
if (_root.player2.char.run == false) {
if (!Key.isDown(_root.leftbutton)) {
runspeed = 0;
} else {
runspeed = -4;
}
}
}
}
}
if (Key.isDown(_root.leftbutton)) {
if (((this._currentframe == 1) || (this._currentframe == 2)) || (this._currentframe == 3)) {
this.gotoAndStop("run");
if (this._xscale == 100) {
if (!this.hitTest(_root.side1)) {
runspeed = -7;
}
}
if (!this.hitrect.hitTest(_root.player2.char.hitrect)) {
if (this._xscale == -100) {
runspeed = -10;
}
}
}
}
if (Key.isDown(_root.rightbutton)) {
if (((this._currentframe == 1) || (this._currentframe == 2)) || (this._currentframe == 3)) {
this.gotoAndStop("run");
if (!this.hitrect.hitTest(_root.player2.char.hitrect)) {
if (this._xscale == 100) {
runspeed = 10;
}
}
if (this._xscale == -100) {
if (!this.hitTest(_root.side2)) {
runspeed = 7;
}
}
}
}
}
if (Key.isDown(_root.downbutton)) {
if (this._currentframe < 5) {
if (duck == false) {
this.gotoAndStop("duck");
duck = true;
}
}
}
if (!Key.isDown(_root.downbutton)) {
duck = false;
}
if (duck == true) {
if (runspeed != 0) {
if (Key.isDown(_root.punchbutton)) {
if (attackpause == false) {
if (this._currentframe == 3) {
if (this._xscale == 100) {
runspeed = 12;
} else {
runspeed = -12;
}
}
this.gotoAndStop("slidepunch");
attackpause = true;
}
}
if (Key.isDown(_root.kickbutton)) {
if (attackpause == false) {
if (this._currentframe == 3) {
if (this._xscale == 100) {
runspeed = 12;
} else {
runspeed = -12;
}
}
this.gotoAndStop("slidekick");
attackpause = true;
}
}
}
if (runspeed == 0) {
if ((this._currentframe != 11) && (this._currentframe != 12)) {
if (attackpause == false) {
if (Key.isDown(_root.punchbutton)) {
this.gotoAndStop("duckpunch");
attackpause = true;
}
if (Key.isDown(_root.kickbutton)) {
this.gotoAndStop("duckkick");
attackpause = true;
}
}
if (this._currentframe < 7) {
if ((!Key.isDown(_root.punchbutton)) && (!Key.isDown(_root.kickbutton))) {
this.gotoAndStop("duck");
}
}
}
}
}
if (((!Key.isDown(_root.downbutton)) && (!Key.isDown(_root.rightbutton))) && (!Key.isDown(_root.leftbutton))) {
if (_currentframe < 7) {
this.gotoAndStop("idle");
block = false;
}
}
if (this._currentframe != 2) {
if (runspeed > 0) {
runspeed--;
}
if (runspeed < 0) {
runspeed++;
}
}
if (Key.isDown(_root.upbutton)) {
if (this._currentframe < 7) {
this.gotoAndStop("jump");
airhit = true;
_root.jump.start(0, 1);
jump = true;
}
}
}
}
}
if (jump == true) {
this._y = this._y - jumpspeed;
jumpspeed = jumpspeed - 2;
if (_root.player2.char._currentframe == 4) {
if (this.hitrect.hitTest(_root.player2.char.hitrect)) {
if (this._xscale == 100) {
runspeed = 4;
_root.player2.char.runspeed = 4;
}
if (this._xscale == -100) {
runspeed = -4;
_root.player2.char.runspeed = -4;
}
}
} else if (jumpspeed > 0) {
if (this.hitrect.hitTest(_root.player2.char.hitrect)) {
if (runspeed != 0) {
if (this._xscale == -100) {
runspeed = -5;
_root.player2.char.runspeed = -5;
if (_root.player2._x < 80) {
this._x = this._x - runspeed;
}
}
if (this._xscale == 100) {
runspeed = 5;
_root.player2.char.runspeed = 5;
if (_root.player2._x > 655) {
this._x = this._x - runspeed;
}
}
}
}
}
if (jumpspeed < 0) {
if ((!_root.player2.char._currentframe) == 4) {
if (this.hitrect.hitTest(_root.player2.char.hitrect)) {
if ((_root.player2._x + _root.player2.char._x) < (_root.player1._x + this._x)) {
runspeed = 9;
if (this._xscale == -100) {
_root.player2.char.runspeed = -5;
}
}
if ((_root.player2._x + _root.player2.char._x) > (_root.player1._x + this._x)) {
runspeed = -9;
if (this._xscale == 100) {
_root.player2.char.runspeed = 5;
}
}
}
}
}
if (hurt == false) {
if (jumpattack == true) {
if (attackpause == false) {
if (Key.isDown(_root.punchbutton)) {
this.gotoAndStop("jumppunch");
attackpause = true;
jumpattack = false;
}
if (Key.isDown(_root.kickbutton)) {
this.gotoAndStop("jumpkick");
attackpause = true;
jumpattack = false;
}
}
}
if (jumpattack == false) {
if (attackpause == false) {
if (Key.isDown(_root.punchbutton)) {
attackpause = true;
}
if (Key.isDown(_root.kickbutton)) {
attackpause = true;
}
}
}
}
if (this._y >= 0) {
_root.land.start(0, 1);
this.gotoAndStop("idle");
jump = false;
}
}
}
if (_root.gameover == true) {
if (this._currentframe == 3) {
this.gotoAndStop("idle");
}
if (block == true) {
block = false;
this.gotoAndStop("idle");
}
if (hurt == true) {
hurt = false;
this.gotoAndStop("idle");
}
if (jump == true) {
this._y = this._y - jumpspeed;
jumpspeed = jumpspeed - 2;
if (this._y >= 0) {
this.gotoAndStop("idle");
jump = false;
}
}
this._alpha = 100;
if (jump == false) {
if (_root.life1.text <= 0) {
this.gotoAndStop("death");
_root.playerwon = false;
}
if (this._currentframe == 1) {
if (_root.life2.text <= 0) {
this.gotoAndStop("win");
_root.playerwon = true;
}
}
}
}
}
}
Instance of Symbol 1031 MovieClip "char" in Symbol 1934 MovieClip Frame 3
onClipEvent (load) {
block = false;
this._y = 0;
runspeed = 0;
jump = false;
jumpspeed = 25;
duck = false;
jumpattack = true;
attackpause = false;
timer = 0;
hurt = false;
airhit = true;
}
onClipEvent (enterFrame) {
if (_root.gameplay == true) {
if (_root.gameover == false) {
this._x = this._x + runspeed;
if (this.hitTest(_root.side1) && (runspeed < 0)) {
runspeed = 0;
}
if (this.hitTest(_root.side2) && (runspeed > 0)) {
runspeed = 0;
}
if (_root.player2.char.hitrect.hitTest(this.hitrect)) {
if ((!Key.isDown(_root.leftbutton)) && (this._xscale == 100)) {
if (jump == false) {
runspeed = 0;
}
}
if ((!Key.isDown(_root.rightbutton)) && (this._xscale == -100)) {
if (jump == false) {
runspeed = 0;
}
}
}
if ((!Key.isDown(_root.punchbutton)) && (!Key.isDown(_root.kickbutton))) {
attackpause = false;
}
if (block == true) {
if (duck == true) {
this.gotoAndStop("duckblock");
} else {
this.gotoAndStop("block");
}
}
if (hurt == true) {
if (duck == false) {
if (airhit == false) {
if (block == false) {
this.gotoAndStop("hurt");
} else {
this.gotoAndStop("block");
}
}
}
if (duck == true) {
if (airhit == false) {
if (block == false) {
this.gotoAndStop("duckhurt");
} else {
this.gotoAndStop("duckblock");
}
}
}
timer++;
if (timer == 1) {
if ((!this.hitTest(_root.side1)) && (!this.hitTest(_root.side2))) {
if ((_root.player2._x + _root.player2.char._x) < (_root.player1._x + this._x)) {
runspeed = 10;
}
if ((_root.player2._x + _root.player2.char._x) > (_root.player1._x + this._x)) {
runspeed = -10;
}
}
}
if (jump == false) {
if (timer > 1) {
if (runspeed > 0) {
runspeed--;
}
if (runspeed < 0) {
runspeed++;
}
}
}
if (jump == true) {
if (timer == 1) {
if (jumpspeed < 0) {
jumpspeed = jumpspeed * -1;
}
}
}
if (block == false) {
if ((this._currentframe < 5) || (this._currentframe > 6)) {
if (((timer >= 1) && (timer <= 4)) || ((timer >= 11) && (timer <= 14))) {
this._alpha = 0;
}
if (((timer >= 5) && (timer <= 10)) || ((timer >= 15) && (timer <= 19))) {
this._alpha = 100;
}
}
}
if (timer == 20) {
if (jump == false) {
if (duck == true) {
this.gotoAndStop("duck");
} else if (run == true) {
this.gotoAndStop("run");
} else {
this.gotoAndStop("idle");
}
}
block = false;
hurt = false;
}
}
if (hurt == false) {
timer = 0;
if (_root.player2.char.attack.hurtrect.hitTest(this.hitrect)) {
if (duck == true) {
if ((Key.isDown(_root.leftbutton) && (this._xscale == 100)) || (Key.isDown(_root.rightbutton) && (this._xscale == -100))) {
this.gotoAndStop("duckblock");
block = true;
} else {
this.gotoAndStop("duckhurt");
}
} else if ((Key.isDown(_root.leftbutton) && (this._xscale == 100)) || (Key.isDown(_root.rightbutton) && (this._xscale == -100))) {
this.gotoAndStop("block");
block = true;
} else {
this.gotoAndStop("hurt");
}
if (jump == true) {
if (airhit == true) {
this.gotoAndStop("hurt");
}
}
if ((this._currentframe < 5) || (this._currentframe > 6)) {
hurtsfx = random(4) + 1;
_root["hurt" + hurtsfx].start(0, 1);
_root.health1away.text = 5;
} else {
_root.block.start(0, 1);
_root.health1away.text = 1;
}
if (airhit == true) {
hurt = true;
}
} else {
block = false;
}
if (jump == false) {
if (timer == 0) {
jumpattack = true;
if (this._currentframe < 7) {
if ((_root.player2._x + _root.player2.char._x) < (_root.player1._x + this._x)) {
this._xscale = -100;
}
if ((_root.player2._x + _root.player2.char._x) > (_root.player1._x + this._x)) {
this._xscale = 100;
}
}
if (((!Key.isDown(_root.rightbutton)) && (!Key.isDown(_root.leftbutton))) && (!Key.isDown(_root.downbutton))) {
if (attackpause == false) {
if (Key.isDown(_root.punchbutton)) {
this.gotoAndStop("punch");
attackpause = true;
}
if (Key.isDown(_root.kickbutton)) {
this.gotoAndStop("kick");
attackpause = true;
}
}
}
if ((Key.isDown(_root.rightbutton) && (this._xscale == 100)) || (Key.isDown(_root.leftbutton) && (this._xscale == -100))) {
if (duck == false) {
if (attackpause == false) {
if (Key.isDown(_root.punchbutton)) {
this.gotoAndStop("punch");
attackpause = true;
}
if (Key.isDown(_root.kickbutton)) {
this.gotoAndStop("kick");
attackpause = true;
}
}
}
}
this._y = 0;
jumpspeed = 25;
if (!Key.isDown(_root.downbutton)) {
if (this.hitrect.hitTest(_root.player2.char.hitrect)) {
if (this._xscale == 100) {
if (!Key.isDown(_root.leftbutton)) {
if (_root.player2.char.run == true) {
if (!Key.isDown(_root.rightbutton)) {
runspeed = -4;
} else {
runspeed = 0;
}
}
if (_root.player2.char.run == false) {
if (!Key.isDown(_root.rightbutton)) {
runspeed = 0;
} else {
runspeed = 4;
}
}
}
}
if (this._xscale == -100) {
if (!Key.isDown(_root.rightbutton)) {
if (_root.player2.char.run == true) {
if (!Key.isDown(_root.leftbutton)) {
runspeed = 4;
} else {
runspeed = 0;
}
}
if (_root.player2.char.run == false) {
if (!Key.isDown(_root.leftbutton)) {
runspeed = 0;
} else {
runspeed = -4;
}
}
}
}
}
if (Key.isDown(_root.leftbutton)) {
if (((this._currentframe == 1) || (this._currentframe == 2)) || (this._currentframe == 3)) {
this.gotoAndStop("run");
if (this._xscale == 100) {
if (!this.hitTest(_root.side1)) {
runspeed = -7;
}
}
if (!this.hitrect.hitTest(_root.player2.char.hitrect)) {
if (this._xscale == -100) {
runspeed = -10;
}
}
}
}
if (Key.isDown(_root.rightbutton)) {
if (((this._currentframe == 1) || (this._currentframe == 2)) || (this._currentframe == 3)) {
this.gotoAndStop("run");
if (!this.hitrect.hitTest(_root.player2.char.hitrect)) {
if (this._xscale == 100) {
runspeed = 10;
}
}
if (this._xscale == -100) {
if (!this.hitTest(_root.side2)) {
runspeed = 7;
}
}
}
}
}
if (Key.isDown(_root.downbutton)) {
if (this._currentframe < 5) {
if (duck == false) {
this.gotoAndStop("duck");
duck = true;
}
}
}
if (!Key.isDown(_root.downbutton)) {
duck = false;
}
if (duck == true) {
if (runspeed != 0) {
if (Key.isDown(_root.punchbutton)) {
if (attackpause == false) {
if (this._currentframe == 3) {
if (this._xscale == 100) {
runspeed = 12;
} else {
runspeed = -12;
}
}
this.gotoAndStop("slidepunch");
attackpause = true;
}
}
if (Key.isDown(_root.kickbutton)) {
if (attackpause == false) {
if (this._currentframe == 3) {
if (this._xscale == 100) {
runspeed = 12;
} else {
runspeed = -12;
}
}
this.gotoAndStop("slidekick");
attackpause = true;
}
}
}
if (runspeed == 0) {
if ((this._currentframe != 11) && (this._currentframe != 12)) {
if (attackpause == false) {
if (Key.isDown(_root.punchbutton)) {
this.gotoAndStop("duckpunch");
attackpause = true;
}
if (Key.isDown(_root.kickbutton)) {
this.gotoAndStop("duckkick");
attackpause = true;
}
}
if (this._currentframe < 7) {
if ((!Key.isDown(_root.punchbutton)) && (!Key.isDown(_root.kickbutton))) {
this.gotoAndStop("duck");
}
}
}
}
}
if (((!Key.isDown(_root.downbutton)) && (!Key.isDown(_root.rightbutton))) && (!Key.isDown(_root.leftbutton))) {
if (_currentframe < 7) {
this.gotoAndStop("idle");
block = false;
}
}
if (this._currentframe != 2) {
if (runspeed > 0) {
runspeed--;
}
if (runspeed < 0) {
runspeed++;
}
}
if (Key.isDown(_root.upbutton)) {
if (this._currentframe < 7) {
this.gotoAndStop("jump");
airhit = true;
_root.jump.start(0, 1);
jump = true;
}
}
}
}
}
if (jump == true) {
this._y = this._y - jumpspeed;
jumpspeed = jumpspeed - 2;
if (_root.player2.char._currentframe == 4) {
if (this.hitrect.hitTest(_root.player2.char.hitrect)) {
if (this._xscale == 100) {
runspeed = 4;
_root.player2.char.runspeed = 4;
}
if (this._xscale == -100) {
runspeed = -4;
_root.player2.char.runspeed = -4;
}
}
} else if (jumpspeed > 0) {
if (this.hitrect.hitTest(_root.player2.char.hitrect)) {
if (runspeed != 0) {
if (this._xscale == -100) {
runspeed = -5;
_root.player2.char.runspeed = -5;
if (_root.player2._x < 80) {
this._x = this._x - runspeed;
}
}
if (this._xscale == 100) {
runspeed = 5;
_root.player2.char.runspeed = 5;
if (_root.player2._x > 655) {
this._x = this._x - runspeed;
}
}
}
}
}
if (jumpspeed < 0) {
if ((!_root.player2.char._currentframe) == 4) {
if (this.hitrect.hitTest(_root.player2.char.hitrect)) {
if ((_root.player2._x + _root.player2.char._x) < (_root.player1._x + this._x)) {
runspeed = 9;
if (this._xscale == -100) {
_root.player2.char.runspeed = -5;
}
}
if ((_root.player2._x + _root.player2.char._x) > (_root.player1._x + this._x)) {
runspeed = -9;
if (this._xscale == 100) {
_root.player2.char.runspeed = 5;
}
}
}
}
}
if (hurt == false) {
if (jumpattack == true) {
if (attackpause == false) {
if (Key.isDown(_root.punchbutton)) {
this.gotoAndStop("jumppunch");
attackpause = true;
jumpattack = false;
}
if (Key.isDown(_root.kickbutton)) {
this.gotoAndStop("jumpkick");
attackpause = true;
jumpattack = false;
}
}
}
if (jumpattack == false) {
if (attackpause == false) {
if (Key.isDown(_root.punchbutton)) {
attackpause = true;
}
if (Key.isDown(_root.kickbutton)) {
attackpause = true;
}
}
}
}
if (this._y >= 0) {
_root.land.start(0, 1);
this.gotoAndStop("idle");
jump = false;
}
}
}
if (_root.gameover == true) {
if (this._currentframe == 3) {
this.gotoAndStop("idle");
}
if (block == true) {
block = false;
this.gotoAndStop("idle");
}
if (hurt == true) {
hurt = false;
this.gotoAndStop("idle");
}
if (jump == true) {
this._y = this._y - jumpspeed;
jumpspeed = jumpspeed - 2;
if (this._y >= 0) {
this.gotoAndStop("idle");
jump = false;
}
}
this._alpha = 100;
if (jump == false) {
if (_root.life1.text <= 0) {
this.gotoAndStop("death");
_root.playerwon = false;
}
if (this._currentframe == 1) {
if (_root.life2.text <= 0) {
this.gotoAndStop("win");
_root.playerwon = true;
}
}
}
}
}
}
Instance of Symbol 1149 MovieClip "char" in Symbol 1934 MovieClip Frame 4
onClipEvent (load) {
block = false;
this._y = 0;
runspeed = 0;
jump = false;
jumpspeed = 25;
duck = false;
jumpattack = true;
attackpause = false;
timer = 0;
hurt = false;
airhit = true;
}
onClipEvent (enterFrame) {
if (_root.gameplay == true) {
if (_root.gameover == false) {
this._x = this._x + runspeed;
if (this.hitTest(_root.side1) && (runspeed < 0)) {
runspeed = 0;
}
if (this.hitTest(_root.side2) && (runspeed > 0)) {
runspeed = 0;
}
if (_root.player2.char.hitrect.hitTest(this.hitrect)) {
if ((!Key.isDown(_root.leftbutton)) && (this._xscale == 100)) {
if (jump == false) {
runspeed = 0;
}
}
if ((!Key.isDown(_root.rightbutton)) && (this._xscale == -100)) {
if (jump == false) {
runspeed = 0;
}
}
}
if ((!Key.isDown(_root.punchbutton)) && (!Key.isDown(_root.kickbutton))) {
attackpause = false;
}
if (block == true) {
if (duck == true) {
this.gotoAndStop("duckblock");
} else {
this.gotoAndStop("block");
}
}
if (hurt == true) {
if (duck == false) {
if (airhit == false) {
if (block == false) {
this.gotoAndStop("hurt");
} else {
this.gotoAndStop("block");
}
}
}
if (duck == true) {
if (airhit == false) {
if (block == false) {
this.gotoAndStop("duckhurt");
} else {
this.gotoAndStop("duckblock");
}
}
}
timer++;
if (timer == 1) {
if ((!this.hitTest(_root.side1)) && (!this.hitTest(_root.side2))) {
if ((_root.player2._x + _root.player2.char._x) < (_root.player1._x + this._x)) {
runspeed = 10;
}
if ((_root.player2._x + _root.player2.char._x) > (_root.player1._x + this._x)) {
runspeed = -10;
}
}
}
if (jump == false) {
if (timer > 1) {
if (runspeed > 0) {
runspeed--;
}
if (runspeed < 0) {
runspeed++;
}
}
}
if (jump == true) {
if (timer == 1) {
if (jumpspeed < 0) {
jumpspeed = jumpspeed * -1;
}
}
}
if (block == false) {
if ((this._currentframe < 5) || (this._currentframe > 6)) {
if (((timer >= 1) && (timer <= 4)) || ((timer >= 11) && (timer <= 14))) {
this._alpha = 0;
}
if (((timer >= 5) && (timer <= 10)) || ((timer >= 15) && (timer <= 19))) {
this._alpha = 100;
}
}
}
if (timer == 20) {
if (jump == false) {
if (duck == true) {
this.gotoAndStop("duck");
} else if (run == true) {
this.gotoAndStop("run");
} else {
this.gotoAndStop("idle");
}
}
block = false;
hurt = false;
}
}
if (hurt == false) {
timer = 0;
if (_root.player2.char.attack.hurtrect.hitTest(this.hitrect)) {
if (duck == true) {
if ((Key.isDown(_root.leftbutton) && (this._xscale == 100)) || (Key.isDown(_root.rightbutton) && (this._xscale == -100))) {
this.gotoAndStop("duckblock");
block = true;
} else {
this.gotoAndStop("duckhurt");
}
} else if ((Key.isDown(_root.leftbutton) && (this._xscale == 100)) || (Key.isDown(_root.rightbutton) && (this._xscale == -100))) {
this.gotoAndStop("block");
block = true;
} else {
this.gotoAndStop("hurt");
}
if (jump == true) {
if (airhit == true) {
this.gotoAndStop("hurt");
}
}
if ((this._currentframe < 5) || (this._currentframe > 6)) {
hurtsfx = random(4) + 1;
_root["hurt" + hurtsfx].start(0, 1);
_root.health1away.text = 5;
} else {
_root.block.start(0, 1);
_root.health1away.text = 1;
}
if (airhit == true) {
hurt = true;
}
} else {
block = false;
}
if (jump == false) {
if (timer == 0) {
jumpattack = true;
if (this._currentframe < 7) {
if ((_root.player2._x + _root.player2.char._x) < (_root.player1._x + this._x)) {
this._xscale = -100;
}
if ((_root.player2._x + _root.player2.char._x) > (_root.player1._x + this._x)) {
this._xscale = 100;
}
}
if (((!Key.isDown(_root.rightbutton)) && (!Key.isDown(_root.leftbutton))) && (!Key.isDown(_root.downbutton))) {
if (attackpause == false) {
if (Key.isDown(_root.punchbutton)) {
this.gotoAndStop("punch");
attackpause = true;
}
if (Key.isDown(_root.kickbutton)) {
this.gotoAndStop("kick");
attackpause = true;
}
}
}
if ((Key.isDown(_root.rightbutton) && (this._xscale == 100)) || (Key.isDown(_root.leftbutton) && (this._xscale == -100))) {
if (duck == false) {
if (attackpause == false) {
if (Key.isDown(_root.punchbutton)) {
this.gotoAndStop("punch");
attackpause = true;
}
if (Key.isDown(_root.kickbutton)) {
this.gotoAndStop("kick");
attackpause = true;
}
}
}
}
this._y = 0;
jumpspeed = 25;
if (!Key.isDown(_root.downbutton)) {
if (this.hitrect.hitTest(_root.player2.char.hitrect)) {
if (this._xscale == 100) {
if (!Key.isDown(_root.leftbutton)) {
if (_root.player2.char.run == true) {
if (!Key.isDown(_root.rightbutton)) {
runspeed = -4;
} else {
runspeed = 0;
}
}
if (_root.player2.char.run == false) {
if (!Key.isDown(_root.rightbutton)) {
runspeed = 0;
} else {
runspeed = 4;
}
}
}
}
if (this._xscale == -100) {
if (!Key.isDown(_root.rightbutton)) {
if (_root.player2.char.run == true) {
if (!Key.isDown(_root.leftbutton)) {
runspeed = 4;
} else {
runspeed = 0;
}
}
if (_root.player2.char.run == false) {
if (!Key.isDown(_root.leftbutton)) {
runspeed = 0;
} else {
runspeed = -4;
}
}
}
}
}
if (Key.isDown(_root.leftbutton)) {
if (((this._currentframe == 1) || (this._currentframe == 2)) || (this._currentframe == 3)) {
this.gotoAndStop("run");
if (this._xscale == 100) {
if (!this.hitTest(_root.side1)) {
runspeed = -7;
}
}
if (!this.hitrect.hitTest(_root.player2.char.hitrect)) {
if (this._xscale == -100) {
runspeed = -10;
}
}
}
}
if (Key.isDown(_root.rightbutton)) {
if (((this._currentframe == 1) || (this._currentframe == 2)) || (this._currentframe == 3)) {
this.gotoAndStop("run");
if (!this.hitrect.hitTest(_root.player2.char.hitrect)) {
if (this._xscale == 100) {
runspeed = 10;
}
}
if (this._xscale == -100) {
if (!this.hitTest(_root.side2)) {
runspeed = 7;
}
}
}
}
}
if (Key.isDown(_root.downbutton)) {
if (this._currentframe < 5) {
if (duck == false) {
this.gotoAndStop("duck");
duck = true;
}
}
}
if (!Key.isDown(_root.downbutton)) {
duck = false;
}
if (duck == true) {
if (runspeed != 0) {
if (Key.isDown(_root.punchbutton)) {
if (attackpause == false) {
if (this._currentframe == 3) {
if (this._xscale == 100) {
runspeed = 12;
} else {
runspeed = -12;
}
}
this.gotoAndStop("slidepunch");
attackpause = true;
}
}
if (Key.isDown(_root.kickbutton)) {
if (attackpause == false) {
if (this._currentframe == 3) {
if (this._xscale == 100) {
runspeed = 12;
} else {
runspeed = -12;
}
}
this.gotoAndStop("slidekick");
attackpause = true;
}
}
}
if (runspeed == 0) {
if ((this._currentframe != 11) && (this._currentframe != 12)) {
if (attackpause == false) {
if (Key.isDown(_root.punchbutton)) {
this.gotoAndStop("duckpunch");
attackpause = true;
}
if (Key.isDown(_root.kickbutton)) {
this.gotoAndStop("duckkick");
attackpause = true;
}
}
if (this._currentframe < 7) {
if ((!Key.isDown(_root.punchbutton)) && (!Key.isDown(_root.kickbutton))) {
this.gotoAndStop("duck");
}
}
}
}
}
if (((!Key.isDown(_root.downbutton)) && (!Key.isDown(_root.rightbutton))) && (!Key.isDown(_root.leftbutton))) {
if (_currentframe < 7) {
this.gotoAndStop("idle");
block = false;
}
}
if (this._currentframe != 2) {
if (runspeed > 0) {
runspeed--;
}
if (runspeed < 0) {
runspeed++;
}
}
if (Key.isDown(_root.upbutton)) {
if (this._currentframe < 7) {
this.gotoAndStop("jump");
airhit = true;
_root.jump.start(0, 1);
jump = true;
}
}
}
}
}
if (jump == true) {
this._y = this._y - jumpspeed;
jumpspeed = jumpspeed - 2;
if (_root.player2.char._currentframe == 4) {
if (this.hitrect.hitTest(_root.player2.char.hitrect)) {
if (this._xscale == 100) {
runspeed = 4;
_root.player2.char.runspeed = 4;
}
if (this._xscale == -100) {
runspeed = -4;
_root.player2.char.runspeed = -4;
}
}
} else if (jumpspeed > 0) {
if (this.hitrect.hitTest(_root.player2.char.hitrect)) {
if (runspeed != 0) {
if (this._xscale == -100) {
runspeed = -5;
_root.player2.char.runspeed = -5;
if (_root.player2._x < 80) {
this._x = this._x - runspeed;
}
}
if (this._xscale == 100) {
runspeed = 5;
_root.player2.char.runspeed = 5;
if (_root.player2._x > 655) {
this._x = this._x - runspeed;
}
}
}
}
}
if (jumpspeed < 0) {
if ((!_root.player2.char._currentframe) == 4) {
if (this.hitrect.hitTest(_root.player2.char.hitrect)) {
if ((_root.player2._x + _root.player2.char._x) < (_root.player1._x + this._x)) {
runspeed = 9;
if (this._xscale == -100) {
_root.player2.char.runspeed = -5;
}
}
if ((_root.player2._x + _root.player2.char._x) > (_root.player1._x + this._x)) {
runspeed = -9;
if (this._xscale == 100) {
_root.player2.char.runspeed = 5;
}
}
}
}
}
if (hurt == false) {
if (jumpattack == true) {
if (attackpause == false) {
if (Key.isDown(_root.punchbutton)) {
this.gotoAndStop("jumppunch");
attackpause = true;
jumpattack = false;
}
if (Key.isDown(_root.kickbutton)) {
this.gotoAndStop("jumpkick");
attackpause = true;
jumpattack = false;
}
}
}
if (jumpattack == false) {
if (attackpause == false) {
if (Key.isDown(_root.punchbutton)) {
attackpause = true;
}
if (Key.isDown(_root.kickbutton)) {
attackpause = true;
}
}
}
}
if (this._y >= 0) {
_root.land.start(0, 1);
this.gotoAndStop("idle");
jump = false;
}
}
}
if (_root.gameover == true) {
if (this._currentframe == 3) {
this.gotoAndStop("idle");
}
if (block == true) {
block = false;
this.gotoAndStop("idle");
}
if (hurt == true) {
hurt = false;
this.gotoAndStop("idle");
}
if (jump == true) {
this._y = this._y - jumpspeed;
jumpspeed = jumpspeed - 2;
if (this._y >= 0) {
this.gotoAndStop("idle");
jump = false;
}
}
this._alpha = 100;
if (jump == false) {
if (_root.life1.text <= 0) {
this.gotoAndStop("death");
_root.playerwon = false;
}
if (this._currentframe == 1) {
if (_root.life2.text <= 0) {
this.gotoAndStop("win");
_root.playerwon = true;
}
}
}
}
}
}
Instance of Symbol 1237 MovieClip "char" in Symbol 1934 MovieClip Frame 5
onClipEvent (load) {
block = false;
this._y = 0;
runspeed = 0;
jump = false;
jumpspeed = 25;
duck = false;
jumpattack = true;
attackpause = false;
timer = 0;
hurt = false;
airhit = true;
}
onClipEvent (enterFrame) {
if (_root.gameplay == true) {
if (_root.gameover == false) {
this._x = this._x + runspeed;
if (this.hitTest(_root.side1) && (runspeed < 0)) {
runspeed = 0;
}
if (this.hitTest(_root.side2) && (runspeed > 0)) {
runspeed = 0;
}
if (_root.player2.char.hitrect.hitTest(this.hitrect)) {
if ((!Key.isDown(_root.leftbutton)) && (this._xscale == 100)) {
if (jump == false) {
runspeed = 0;
}
}
if ((!Key.isDown(_root.rightbutton)) && (this._xscale == -100)) {
if (jump == false) {
runspeed = 0;
}
}
}
if ((!Key.isDown(_root.punchbutton)) && (!Key.isDown(_root.kickbutton))) {
attackpause = false;
}
if (block == true) {
if (duck == true) {
this.gotoAndStop("duckblock");
} else {
this.gotoAndStop("block");
}
}
if (hurt == true) {
if (duck == false) {
if (airhit == false) {
if (block == false) {
this.gotoAndStop("hurt");
} else {
this.gotoAndStop("block");
}
}
}
if (duck == true) {
if (airhit == false) {
if (block == false) {
this.gotoAndStop("duckhurt");
} else {
this.gotoAndStop("duckblock");
}
}
}
timer++;
if (timer == 1) {
if ((!this.hitTest(_root.side1)) && (!this.hitTest(_root.side2))) {
if ((_root.player2._x + _root.player2.char._x) < (_root.player1._x + this._x)) {
runspeed = 10;
}
if ((_root.player2._x + _root.player2.char._x) > (_root.player1._x + this._x)) {
runspeed = -10;
}
}
}
if (jump == false) {
if (timer > 1) {
if (runspeed > 0) {
runspeed--;
}
if (runspeed < 0) {
runspeed++;
}
}
}
if (jump == true) {
if (timer == 1) {
if (jumpspeed < 0) {
jumpspeed = jumpspeed * -1;
}
}
}
if (block == false) {
if ((this._currentframe < 5) || (this._currentframe > 6)) {
if (((timer >= 1) && (timer <= 4)) || ((timer >= 11) && (timer <= 14))) {
this._alpha = 0;
}
if (((timer >= 5) && (timer <= 10)) || ((timer >= 15) && (timer <= 19))) {
this._alpha = 100;
}
}
}
if (timer == 20) {
if (jump == false) {
if (duck == true) {
this.gotoAndStop("duck");
} else if (run == true) {
this.gotoAndStop("run");
} else {
this.gotoAndStop("idle");
}
}
block = false;
hurt = false;
}
}
if (hurt == false) {
timer = 0;
if (_root.player2.char.attack.hurtrect.hitTest(this.hitrect)) {
if (duck == true) {
if ((Key.isDown(_root.leftbutton) && (this._xscale == 100)) || (Key.isDown(_root.rightbutton) && (this._xscale == -100))) {
this.gotoAndStop("duckblock");
block = true;
} else {
this.gotoAndStop("duckhurt");
}
} else if ((Key.isDown(_root.leftbutton) && (this._xscale == 100)) || (Key.isDown(_root.rightbutton) && (this._xscale == -100))) {
this.gotoAndStop("block");
block = true;
} else {
this.gotoAndStop("hurt");
}
if (jump == true) {
if (airhit == true) {
this.gotoAndStop("hurt");
}
}
if ((this._currentframe < 5) || (this._currentframe > 6)) {
hurtsfx = random(4) + 1;
_root["hurt" + hurtsfx].start(0, 1);
_root.health1away.text = 5;
} else {
_root.block.start(0, 1);
_root.health1away.text = 1;
}
if (airhit == true) {
hurt = true;
}
} else {
block = false;
}
if (jump == false) {
if (timer == 0) {
jumpattack = true;
if (this._currentframe < 7) {
if ((_root.player2._x + _root.player2.char._x) < (_root.player1._x + this._x)) {
this._xscale = -100;
}
if ((_root.player2._x + _root.player2.char._x) > (_root.player1._x + this._x)) {
this._xscale = 100;
}
}
if (((!Key.isDown(_root.rightbutton)) && (!Key.isDown(_root.leftbutton))) && (!Key.isDown(_root.downbutton))) {
if (attackpause == false) {
if (Key.isDown(_root.punchbutton)) {
this.gotoAndStop("punch");
attackpause = true;
}
if (Key.isDown(_root.kickbutton)) {
this.gotoAndStop("kick");
attackpause = true;
}
}
}
if ((Key.isDown(_root.rightbutton) && (this._xscale == 100)) || (Key.isDown(_root.leftbutton) && (this._xscale == -100))) {
if (duck == false) {
if (attackpause == false) {
if (Key.isDown(_root.punchbutton)) {
this.gotoAndStop("punch");
attackpause = true;
}
if (Key.isDown(_root.kickbutton)) {
this.gotoAndStop("kick");
attackpause = true;
}
}
}
}
this._y = 0;
jumpspeed = 25;
if (!Key.isDown(_root.downbutton)) {
if (this.hitrect.hitTest(_root.player2.char.hitrect)) {
if (this._xscale == 100) {
if (!Key.isDown(_root.leftbutton)) {
if (_root.player2.char.run == true) {
if (!Key.isDown(_root.rightbutton)) {
runspeed = -4;
} else {
runspeed = 0;
}
}
if (_root.player2.char.run == false) {
if (!Key.isDown(_root.rightbutton)) {
runspeed = 0;
} else {
runspeed = 4;
}
}
}
}
if (this._xscale == -100) {
if (!Key.isDown(_root.rightbutton)) {
if (_root.player2.char.run == true) {
if (!Key.isDown(_root.leftbutton)) {
runspeed = 4;
} else {
runspeed = 0;
}
}
if (_root.player2.char.run == false) {
if (!Key.isDown(_root.leftbutton)) {
runspeed = 0;
} else {
runspeed = -4;
}
}
}
}
}
if (Key.isDown(_root.leftbutton)) {
if (((this._currentframe == 1) || (this._currentframe == 2)) || (this._currentframe == 3)) {
this.gotoAndStop("run");
if (this._xscale == 100) {
if (!this.hitTest(_root.side1)) {
runspeed = -7;
}
}
if (!this.hitrect.hitTest(_root.player2.char.hitrect)) {
if (this._xscale == -100) {
runspeed = -10;
}
}
}
}
if (Key.isDown(_root.rightbutton)) {
if (((this._currentframe == 1) || (this._currentframe == 2)) || (this._currentframe == 3)) {
this.gotoAndStop("run");
if (!this.hitrect.hitTest(_root.player2.char.hitrect)) {
if (this._xscale == 100) {
runspeed = 10;
}
}
if (this._xscale == -100) {
if (!this.hitTest(_root.side2)) {
runspeed = 7;
}
}
}
}
}
if (Key.isDown(_root.downbutton)) {
if (this._currentframe < 5) {
if (duck == false) {
this.gotoAndStop("duck");
duck = true;
}
}
}
if (!Key.isDown(_root.downbutton)) {
duck = false;
}
if (duck == true) {
if (runspeed != 0) {
if (Key.isDown(_root.punchbutton)) {
if (attackpause == false) {
if (this._currentframe == 3) {
if (this._xscale == 100) {
runspeed = 12;
} else {
runspeed = -12;
}
}
this.gotoAndStop("slidepunch");
attackpause = true;
}
}
if (Key.isDown(_root.kickbutton)) {
if (attackpause == false) {
if (this._currentframe == 3) {
if (this._xscale == 100) {
runspeed = 12;
} else {
runspeed = -12;
}
}
this.gotoAndStop("slidekick");
attackpause = true;
}
}
}
if (runspeed == 0) {
if ((this._currentframe != 11) && (this._currentframe != 12)) {
if (attackpause == false) {
if (Key.isDown(_root.punchbutton)) {
this.gotoAndStop("duckpunch");
attackpause = true;
}
if (Key.isDown(_root.kickbutton)) {
this.gotoAndStop("duckkick");
attackpause = true;
}
}
if (this._currentframe < 7) {
if ((!Key.isDown(_root.punchbutton)) && (!Key.isDown(_root.kickbutton))) {
this.gotoAndStop("duck");
}
}
}
}
}
if (((!Key.isDown(_root.downbutton)) && (!Key.isDown(_root.rightbutton))) && (!Key.isDown(_root.leftbutton))) {
if (_currentframe < 7) {
this.gotoAndStop("idle");
block = false;
}
}
if (this._currentframe != 2) {
if (runspeed > 0) {
runspeed--;
}
if (runspeed < 0) {
runspeed++;
}
}
if (Key.isDown(_root.upbutton)) {
if (this._currentframe < 7) {
this.gotoAndStop("jump");
airhit = true;
_root.jump.start(0, 1);
jump = true;
}
}
}
}
}
if (jump == true) {
this._y = this._y - jumpspeed;
jumpspeed = jumpspeed - 2;
if (_root.player2.char._currentframe == 4) {
if (this.hitrect.hitTest(_root.player2.char.hitrect)) {
if (this._xscale == 100) {
runspeed = 4;
_root.player2.char.runspeed = 4;
}
if (this._xscale == -100) {
runspeed = -4;
_root.player2.char.runspeed = -4;
}
}
} else if (jumpspeed > 0) {
if (this.hitrect.hitTest(_root.player2.char.hitrect)) {
if (runspeed != 0) {
if (this._xscale == -100) {
runspeed = -5;
_root.player2.char.runspeed = -5;
if (_root.player2._x < 80) {
this._x = this._x - runspeed;
}
}
if (this._xscale == 100) {
runspeed = 5;
_root.player2.char.runspeed = 5;
if (_root.player2._x > 655) {
this._x = this._x - runspeed;
}
}
}
}
}
if (jumpspeed < 0) {
if ((!_root.player2.char._currentframe) == 4) {
if (this.hitrect.hitTest(_root.player2.char.hitrect)) {
if ((_root.player2._x + _root.player2.char._x) < (_root.player1._x + this._x)) {
runspeed = 9;
if (this._xscale == -100) {
_root.player2.char.runspeed = -5;
}
}
if ((_root.player2._x + _root.player2.char._x) > (_root.player1._x + this._x)) {
runspeed = -9;
if (this._xscale == 100) {
_root.player2.char.runspeed = 5;
}
}
}
}
}
if (hurt == false) {
if (jumpattack == true) {
if (attackpause == false) {
if (Key.isDown(_root.punchbutton)) {
this.gotoAndStop("jumppunch");
attackpause = true;
jumpattack = false;
}
if (Key.isDown(_root.kickbutton)) {
this.gotoAndStop("jumpkick");
attackpause = true;
jumpattack = false;
}
}
}
if (jumpattack == false) {
if (attackpause == false) {
if (Key.isDown(_root.punchbutton)) {
attackpause = true;
}
if (Key.isDown(_root.kickbutton)) {
attackpause = true;
}
}
}
}
if (this._y >= 0) {
_root.land.start(0, 1);
this.gotoAndStop("idle");
jump = false;
}
}
}
if (_root.gameover == true) {
if (this._currentframe == 3) {
this.gotoAndStop("idle");
}
if (block == true) {
block = false;
this.gotoAndStop("idle");
}
if (hurt == true) {
hurt = false;
this.gotoAndStop("idle");
}
if (jump == true) {
this._y = this._y - jumpspeed;
jumpspeed = jumpspeed - 2;
if (this._y >= 0) {
this.gotoAndStop("idle");
jump = false;
}
}
this._alpha = 100;
if (jump == false) {
if (_root.life1.text <= 0) {
this.gotoAndStop("death");
_root.playerwon = false;
}
if (this._currentframe == 1) {
if (_root.life2.text <= 0) {
this.gotoAndStop("win");
_root.playerwon = true;
}
}
}
}
}
}
Instance of Symbol 1341 MovieClip "char" in Symbol 1934 MovieClip Frame 6
onClipEvent (load) {
block = false;
this._y = 0;
runspeed = 0;
jump = false;
jumpspeed = 25;
duck = false;
jumpattack = true;
attackpause = false;
timer = 0;
hurt = false;
airhit = true;
}
onClipEvent (enterFrame) {
if (_root.gameplay == true) {
if (_root.gameover == false) {
this._x = this._x + runspeed;
if (this.hitTest(_root.side1) && (runspeed < 0)) {
runspeed = 0;
}
if (this.hitTest(_root.side2) && (runspeed > 0)) {
runspeed = 0;
}
if (_root.player2.char.hitrect.hitTest(this.hitrect)) {
if ((!Key.isDown(_root.leftbutton)) && (this._xscale == 100)) {
if (jump == false) {
runspeed = 0;
}
}
if ((!Key.isDown(_root.rightbutton)) && (this._xscale == -100)) {
if (jump == false) {
runspeed = 0;
}
}
}
if ((!Key.isDown(_root.punchbutton)) && (!Key.isDown(_root.kickbutton))) {
attackpause = false;
}
if (block == true) {
if (duck == true) {
this.gotoAndStop("duckblock");
} else {
this.gotoAndStop("block");
}
}
if (hurt == true) {
if (duck == false) {
if (airhit == false) {
if (block == false) {
this.gotoAndStop("hurt");
} else {
this.gotoAndStop("block");
}
}
}
if (duck == true) {
if (airhit == false) {
if (block == false) {
this.gotoAndStop("duckhurt");
} else {
this.gotoAndStop("duckblock");
}
}
}
timer++;
if (timer == 1) {
if ((!this.hitTest(_root.side1)) && (!this.hitTest(_root.side2))) {
if ((_root.player2._x + _root.player2.char._x) < (_root.player1._x + this._x)) {
runspeed = 10;
}
if ((_root.player2._x + _root.player2.char._x) > (_root.player1._x + this._x)) {
runspeed = -10;
}
}
}
if (jump == false) {
if (timer > 1) {
if (runspeed > 0) {
runspeed--;
}
if (runspeed < 0) {
runspeed++;
}
}
}
if (jump == true) {
if (timer == 1) {
if (jumpspeed < 0) {
jumpspeed = jumpspeed * -1;
}
}
}
if (block == false) {
if ((this._currentframe < 5) || (this._currentframe > 6)) {
if (((timer >= 1) && (timer <= 4)) || ((timer >= 11) && (timer <= 14))) {
this._alpha = 0;
}
if (((timer >= 5) && (timer <= 10)) || ((timer >= 15) && (timer <= 19))) {
this._alpha = 100;
}
}
}
if (timer == 20) {
if (jump == false) {
if (duck == true) {
this.gotoAndStop("duck");
} else if (run == true) {
this.gotoAndStop("run");
} else {
this.gotoAndStop("idle");
}
}
block = false;
hurt = false;
}
}
if (hurt == false) {
timer = 0;
if (_root.player2.char.attack.hurtrect.hitTest(this.hitrect)) {
if (duck == true) {
if ((Key.isDown(_root.leftbutton) && (this._xscale == 100)) || (Key.isDown(_root.rightbutton) && (this._xscale == -100))) {
this.gotoAndStop("duckblock");
block = true;
} else {
this.gotoAndStop("duckhurt");
}
} else if ((Key.isDown(_root.leftbutton) && (this._xscale == 100)) || (Key.isDown(_root.rightbutton) && (this._xscale == -100))) {
this.gotoAndStop("block");
block = true;
} else {
this.gotoAndStop("hurt");
}
if (jump == true) {
if (airhit == true) {
this.gotoAndStop("hurt");
}
}
if ((this._currentframe < 5) || (this._currentframe > 6)) {
hurtsfx = random(4) + 1;
_root["hurt" + hurtsfx].start(0, 1);
_root.health1away.text = 5;
} else {
_root.block.start(0, 1);
_root.health1away.text = 1;
}
if (airhit == true) {
hurt = true;
}
} else {
block = false;
}
if (jump == false) {
if (timer == 0) {
jumpattack = true;
if (this._currentframe < 7) {
if ((_root.player2._x + _root.player2.char._x) < (_root.player1._x + this._x)) {
this._xscale = -100;
}
if ((_root.player2._x + _root.player2.char._x) > (_root.player1._x + this._x)) {
this._xscale = 100;
}
}
if (((!Key.isDown(_root.rightbutton)) && (!Key.isDown(_root.leftbutton))) && (!Key.isDown(_root.downbutton))) {
if (attackpause == false) {
if (Key.isDown(_root.punchbutton)) {
this.gotoAndStop("punch");
attackpause = true;
}
if (Key.isDown(_root.kickbutton)) {
this.gotoAndStop("kick");
attackpause = true;
}
}
}
if ((Key.isDown(_root.rightbutton) && (this._xscale == 100)) || (Key.isDown(_root.leftbutton) && (this._xscale == -100))) {
if (duck == false) {
if (attackpause == false) {
if (Key.isDown(_root.punchbutton)) {
this.gotoAndStop("punch");
attackpause = true;
}
if (Key.isDown(_root.kickbutton)) {
this.gotoAndStop("kick");
attackpause = true;
}
}
}
}
this._y = 0;
jumpspeed = 25;
if (!Key.isDown(_root.downbutton)) {
if (this.hitrect.hitTest(_root.player2.char.hitrect)) {
if (this._xscale == 100) {
if (!Key.isDown(_root.leftbutton)) {
if (_root.player2.char.run == true) {
if (!Key.isDown(_root.rightbutton)) {
runspeed = -4;
} else {
runspeed = 0;
}
}
if (_root.player2.char.run == false) {
if (!Key.isDown(_root.rightbutton)) {
runspeed = 0;
} else {
runspeed = 4;
}
}
}
}
if (this._xscale == -100) {
if (!Key.isDown(_root.rightbutton)) {
if (_root.player2.char.run == true) {
if (!Key.isDown(_root.leftbutton)) {
runspeed = 4;
} else {
runspeed = 0;
}
}
if (_root.player2.char.run == false) {
if (!Key.isDown(_root.leftbutton)) {
runspeed = 0;
} else {
runspeed = -4;
}
}
}
}
}
if (Key.isDown(_root.leftbutton)) {
if (((this._currentframe == 1) || (this._currentframe == 2)) || (this._currentframe == 3)) {
this.gotoAndStop("run");
if (this._xscale == 100) {
if (!this.hitTest(_root.side1)) {
runspeed = -7;
}
}
if (!this.hitrect.hitTest(_root.player2.char.hitrect)) {
if (this._xscale == -100) {
runspeed = -10;
}
}
}
}
if (Key.isDown(_root.rightbutton)) {
if (((this._currentframe == 1) || (this._currentframe == 2)) || (this._currentframe == 3)) {
this.gotoAndStop("run");
if (!this.hitrect.hitTest(_root.player2.char.hitrect)) {
if (this._xscale == 100) {
runspeed = 10;
}
}
if (this._xscale == -100) {
if (!this.hitTest(_root.side2)) {
runspeed = 7;
}
}
}
}
}
if (Key.isDown(_root.downbutton)) {
if (this._currentframe < 5) {
if (duck == false) {
this.gotoAndStop("duck");
duck = true;
}
}
}
if (!Key.isDown(_root.downbutton)) {
duck = false;
}
if (duck == true) {
if (runspeed != 0) {
if (Key.isDown(_root.punchbutton)) {
if (attackpause == false) {
if (this._currentframe == 3) {
if (this._xscale == 100) {
runspeed = 12;
} else {
runspeed = -12;
}
}
this.gotoAndStop("slidepunch");
attackpause = true;
}
}
if (Key.isDown(_root.kickbutton)) {
if (attackpause == false) {
if (this._currentframe == 3) {
if (this._xscale == 100) {
runspeed = 12;
} else {
runspeed = -12;
}
}
this.gotoAndStop("slidekick");
attackpause = true;
}
}
}
if (runspeed == 0) {
if ((this._currentframe != 11) && (this._currentframe != 12)) {
if (attackpause == false) {
if (Key.isDown(_root.punchbutton)) {
this.gotoAndStop("duckpunch");
attackpause = true;
}
if (Key.isDown(_root.kickbutton)) {
this.gotoAndStop("duckkick");
attackpause = true;
}
}
if (this._currentframe < 7) {
if ((!Key.isDown(_root.punchbutton)) && (!Key.isDown(_root.kickbutton))) {
this.gotoAndStop("duck");
}
}
}
}
}
if (((!Key.isDown(_root.downbutton)) && (!Key.isDown(_root.rightbutton))) && (!Key.isDown(_root.leftbutton))) {
if (_currentframe < 7) {
this.gotoAndStop("idle");
block = false;
}
}
if (this._currentframe != 2) {
if (runspeed > 0) {
runspeed--;
}
if (runspeed < 0) {
runspeed++;
}
}
if (Key.isDown(_root.upbutton)) {
if (this._currentframe < 7) {
this.gotoAndStop("jump");
airhit = true;
_root.jump.start(0, 1);
jump = true;
}
}
}
}
}
if (jump == true) {
this._y = this._y - jumpspeed;
jumpspeed = jumpspeed - 2;
if (_root.player2.char._currentframe == 4) {
if (this.hitrect.hitTest(_root.player2.char.hitrect)) {
if (this._xscale == 100) {
runspeed = 4;
_root.player2.char.runspeed = 4;
}
if (this._xscale == -100) {
runspeed = -4;
_root.player2.char.runspeed = -4;
}
}
} else if (jumpspeed > 0) {
if (this.hitrect.hitTest(_root.player2.char.hitrect)) {
if (runspeed != 0) {
if (this._xscale == -100) {
runspeed = -5;
_root.player2.char.runspeed = -5;
if (_root.player2._x < 80) {
this._x = this._x - runspeed;
}
}
if (this._xscale == 100) {
runspeed = 5;
_root.player2.char.runspeed = 5;
if (_root.player2._x > 655) {
this._x = this._x - runspeed;
}
}
}
}
}
if (jumpspeed < 0) {
if ((!_root.player2.char._currentframe) == 4) {
if (this.hitrect.hitTest(_root.player2.char.hitrect)) {
if ((_root.player2._x + _root.player2.char._x) < (_root.player1._x + this._x)) {
runspeed = 9;
if (this._xscale == -100) {
_root.player2.char.runspeed = -5;
}
}
if ((_root.player2._x + _root.player2.char._x) > (_root.player1._x + this._x)) {
runspeed = -9;
if (this._xscale == 100) {
_root.player2.char.runspeed = 5;
}
}
}
}
}
if (hurt == false) {
if (jumpattack == true) {
if (attackpause == false) {
if (Key.isDown(_root.punchbutton)) {
this.gotoAndStop("jumppunch");
attackpause = true;
jumpattack = false;
}
if (Key.isDown(_root.kickbutton)) {
this.gotoAndStop("jumpkick");
attackpause = true;
jumpattack = false;
}
}
}
if (jumpattack == false) {
if (attackpause == false) {
if (Key.isDown(_root.punchbutton)) {
attackpause = true;
}
if (Key.isDown(_root.kickbutton)) {
attackpause = true;
}
}
}
}
if (this._y >= 0) {
_root.land.start(0, 1);
this.gotoAndStop("idle");
jump = false;
}
}
}
if (_root.gameover == true) {
if (this._currentframe == 3) {
this.gotoAndStop("idle");
}
if (block == true) {
block = false;
this.gotoAndStop("idle");
}
if (hurt == true) {
hurt = false;
this.gotoAndStop("idle");
}
if (jump == true) {
this._y = this._y - jumpspeed;
jumpspeed = jumpspeed - 2;
if (this._y >= 0) {
this.gotoAndStop("idle");
jump = false;
}
}
this._alpha = 100;
if (jump == false) {
if (_root.life1.text <= 0) {
this.gotoAndStop("death");
_root.playerwon = false;
}
if (this._currentframe == 1) {
if (_root.life2.text <= 0) {
this.gotoAndStop("win");
_root.playerwon = true;
}
}
}
}
}
}
Instance of Symbol 1444 MovieClip "char" in Symbol 1934 MovieClip Frame 7
onClipEvent (load) {
block = false;
this._y = 0;
runspeed = 0;
jump = false;
jumpspeed = 25;
duck = false;
jumpattack = true;
attackpause = false;
timer = 0;
hurt = false;
airhit = true;
}
onClipEvent (enterFrame) {
if (_root.gameplay == true) {
if (_root.gameover == false) {
this._x = this._x + runspeed;
if (this.hitTest(_root.side1) && (runspeed < 0)) {
runspeed = 0;
}
if (this.hitTest(_root.side2) && (runspeed > 0)) {
runspeed = 0;
}
if (_root.player2.char.hitrect.hitTest(this.hitrect)) {
if ((!Key.isDown(_root.leftbutton)) && (this._xscale == 100)) {
if (jump == false) {
runspeed = 0;
}
}
if ((!Key.isDown(_root.rightbutton)) && (this._xscale == -100)) {
if (jump == false) {
runspeed = 0;
}
}
}
if ((!Key.isDown(_root.punchbutton)) && (!Key.isDown(_root.kickbutton))) {
attackpause = false;
}
if (block == true) {
if (duck == true) {
this.gotoAndStop("duckblock");
} else {
this.gotoAndStop("block");
}
}
if (hurt == true) {
if (duck == false) {
if (airhit == false) {
if (block == false) {
this.gotoAndStop("hurt");
} else {
this.gotoAndStop("block");
}
}
}
if (duck == true) {
if (airhit == false) {
if (block == false) {
this.gotoAndStop("duckhurt");
} else {
this.gotoAndStop("duckblock");
}
}
}
timer++;
if (timer == 1) {
if ((!this.hitTest(_root.side1)) && (!this.hitTest(_root.side2))) {
if ((_root.player2._x + _root.player2.char._x) < (_root.player1._x + this._x)) {
runspeed = 10;
}
if ((_root.player2._x + _root.player2.char._x) > (_root.player1._x + this._x)) {
runspeed = -10;
}
}
}
if (jump == false) {
if (timer > 1) {
if (runspeed > 0) {
runspeed--;
}
if (runspeed < 0) {
runspeed++;
}
}
}
if (jump == true) {
if (timer == 1) {
if (jumpspeed < 0) {
jumpspeed = jumpspeed * -1;
}
}
}
if (block == false) {
if ((this._currentframe < 5) || (this._currentframe > 6)) {
if (((timer >= 1) && (timer <= 4)) || ((timer >= 11) && (timer <= 14))) {
this._alpha = 0;
}
if (((timer >= 5) && (timer <= 10)) || ((timer >= 15) && (timer <= 19))) {
this._alpha = 100;
}
}
}
if (timer == 20) {
if (jump == false) {
if (duck == true) {
this.gotoAndStop("duck");
} else if (run == true) {
this.gotoAndStop("run");
} else {
this.gotoAndStop("idle");
}
}
block = false;
hurt = false;
}
}
if (hurt == false) {
timer = 0;
if (_root.player2.char.attack.hurtrect.hitTest(this.hitrect)) {
if (duck == true) {
if ((Key.isDown(_root.leftbutton) && (this._xscale == 100)) || (Key.isDown(_root.rightbutton) && (this._xscale == -100))) {
this.gotoAndStop("duckblock");
block = true;
} else {
this.gotoAndStop("duckhurt");
}
} else if ((Key.isDown(_root.leftbutton) && (this._xscale == 100)) || (Key.isDown(_root.rightbutton) && (this._xscale == -100))) {
this.gotoAndStop("block");
block = true;
} else {
this.gotoAndStop("hurt");
}
if (jump == true) {
if (airhit == true) {
this.gotoAndStop("hurt");
}
}
if ((this._currentframe < 5) || (this._currentframe > 6)) {
hurtsfx = random(4) + 1;
_root["hurt" + hurtsfx].start(0, 1);
_root.health1away.text = 5;
} else {
_root.block.start(0, 1);
_root.health1away.text = 1;
}
if (airhit == true) {
hurt = true;
}
} else {
block = false;
}
if (jump == false) {
if (timer == 0) {
jumpattack = true;
if (this._currentframe < 7) {
if ((_root.player2._x + _root.player2.char._x) < (_root.player1._x + this._x)) {
this._xscale = -100;
}
if ((_root.player2._x + _root.player2.char._x) > (_root.player1._x + this._x)) {
this._xscale = 100;
}
}
if (((!Key.isDown(_root.rightbutton)) && (!Key.isDown(_root.leftbutton))) && (!Key.isDown(_root.downbutton))) {
if (attackpause == false) {
if (Key.isDown(_root.punchbutton)) {
this.gotoAndStop("punch");
attackpause = true;
}
if (Key.isDown(_root.kickbutton)) {
this.gotoAndStop("kick");
attackpause = true;
}
}
}
if ((Key.isDown(_root.rightbutton) && (this._xscale == 100)) || (Key.isDown(_root.leftbutton) && (this._xscale == -100))) {
if (duck == false) {
if (attackpause == false) {
if (Key.isDown(_root.punchbutton)) {
this.gotoAndStop("punch");
attackpause = true;
}
if (Key.isDown(_root.kickbutton)) {
this.gotoAndStop("kick");
attackpause = true;
}
}
}
}
this._y = 0;
jumpspeed = 25;
if (!Key.isDown(_root.downbutton)) {
if (this.hitrect.hitTest(_root.player2.char.hitrect)) {
if (this._xscale == 100) {
if (!Key.isDown(_root.leftbutton)) {
if (_root.player2.char.run == true) {
if (!Key.isDown(_root.rightbutton)) {
runspeed = -4;
} else {
runspeed = 0;
}
}
if (_root.player2.char.run == false) {
if (!Key.isDown(_root.rightbutton)) {
runspeed = 0;
} else {
runspeed = 4;
}
}
}
}
if (this._xscale == -100) {
if (!Key.isDown(_root.rightbutton)) {
if (_root.player2.char.run == true) {
if (!Key.isDown(_root.leftbutton)) {
runspeed = 4;
} else {
runspeed = 0;
}
}
if (_root.player2.char.run == false) {
if (!Key.isDown(_root.leftbutton)) {
runspeed = 0;
} else {
runspeed = -4;
}
}
}
}
}
if (Key.isDown(_root.leftbutton)) {
if (((this._currentframe == 1) || (this._currentframe == 2)) || (this._currentframe == 3)) {
this.gotoAndStop("run");
if (this._xscale == 100) {
if (!this.hitTest(_root.side1)) {
runspeed = -7;
}
}
if (!this.hitrect.hitTest(_root.player2.char.hitrect)) {
if (this._xscale == -100) {
runspeed = -10;
}
}
}
}
if (Key.isDown(_root.rightbutton)) {
if (((this._currentframe == 1) || (this._currentframe == 2)) || (this._currentframe == 3)) {
this.gotoAndStop("run");
if (!this.hitrect.hitTest(_root.player2.char.hitrect)) {
if (this._xscale == 100) {
runspeed = 10;
}
}
if (this._xscale == -100) {
if (!this.hitTest(_root.side2)) {
runspeed = 7;
}
}
}
}
}
if (Key.isDown(_root.downbutton)) {
if (this._currentframe < 5) {
if (duck == false) {
this.gotoAndStop("duck");
duck = true;
}
}
}
if (!Key.isDown(_root.downbutton)) {
duck = false;
}
if (duck == true) {
if (runspeed != 0) {
if (Key.isDown(_root.punchbutton)) {
if (attackpause == false) {
if (this._currentframe == 3) {
if (this._xscale == 100) {
runspeed = 12;
} else {
runspeed = -12;
}
}
this.gotoAndStop("slidepunch");
attackpause = true;
}
}
if (Key.isDown(_root.kickbutton)) {
if (attackpause == false) {
if (this._currentframe == 3) {
if (this._xscale == 100) {
runspeed = 12;
} else {
runspeed = -12;
}
}
this.gotoAndStop("slidekick");
attackpause = true;
}
}
}
if (runspeed == 0) {
if ((this._currentframe != 11) && (this._currentframe != 12)) {
if (attackpause == false) {
if (Key.isDown(_root.punchbutton)) {
this.gotoAndStop("duckpunch");
attackpause = true;
}
if (Key.isDown(_root.kickbutton)) {
this.gotoAndStop("duckkick");
attackpause = true;
}
}
if (this._currentframe < 7) {
if ((!Key.isDown(_root.punchbutton)) && (!Key.isDown(_root.kickbutton))) {
this.gotoAndStop("duck");
}
}
}
}
}
if (((!Key.isDown(_root.downbutton)) && (!Key.isDown(_root.rightbutton))) && (!Key.isDown(_root.leftbutton))) {
if (_currentframe < 7) {
this.gotoAndStop("idle");
block = false;
}
}
if (this._currentframe != 2) {
if (runspeed > 0) {
runspeed--;
}
if (runspeed < 0) {
runspeed++;
}
}
if (Key.isDown(_root.upbutton)) {
if (this._currentframe < 7) {
this.gotoAndStop("jump");
airhit = true;
_root.jump.start(0, 1);
jump = true;
}
}
}
}
}
if (jump == true) {
this._y = this._y - jumpspeed;
jumpspeed = jumpspeed - 2;
if (_root.player2.char._currentframe == 4) {
if (this.hitrect.hitTest(_root.player2.char.hitrect)) {
if (this._xscale == 100) {
runspeed = 4;
_root.player2.char.runspeed = 4;
}
if (this._xscale == -100) {
runspeed = -4;
_root.player2.char.runspeed = -4;
}
}
} else if (jumpspeed > 0) {
if (this.hitrect.hitTest(_root.player2.char.hitrect)) {
if (runspeed != 0) {
if (this._xscale == -100) {
runspeed = -5;
_root.player2.char.runspeed = -5;
if (_root.player2._x < 80) {
this._x = this._x - runspeed;
}
}
if (this._xscale == 100) {
runspeed = 5;
_root.player2.char.runspeed = 5;
if (_root.player2._x > 655) {
this._x = this._x - runspeed;
}
}
}
}
}
if (jumpspeed < 0) {
if ((!_root.player2.char._currentframe) == 4) {
if (this.hitrect.hitTest(_root.player2.char.hitrect)) {
if ((_root.player2._x + _root.player2.char._x) < (_root.player1._x + this._x)) {
runspeed = 9;
if (this._xscale == -100) {
_root.player2.char.runspeed = -5;
}
}
if ((_root.player2._x + _root.player2.char._x) > (_root.player1._x + this._x)) {
runspeed = -9;
if (this._xscale == 100) {
_root.player2.char.runspeed = 5;
}
}
}
}
}
if (hurt == false) {
if (jumpattack == true) {
if (attackpause == false) {
if (Key.isDown(_root.punchbutton)) {
this.gotoAndStop("jumppunch");
attackpause = true;
jumpattack = false;
}
if (Key.isDown(_root.kickbutton)) {
this.gotoAndStop("jumpkick");
attackpause = true;
jumpattack = false;
}
}
}
if (jumpattack == false) {
if (attackpause == false) {
if (Key.isDown(_root.punchbutton)) {
attackpause = true;
}
if (Key.isDown(_root.kickbutton)) {
attackpause = true;
}
}
}
}
if (this._y >= 0) {
_root.land.start(0, 1);
this.gotoAndStop("idle");
jump = false;
}
}
}
if (_root.gameover == true) {
if (this._currentframe == 3) {
this.gotoAndStop("idle");
}
if (block == true) {
block = false;
this.gotoAndStop("idle");
}
if (hurt == true) {
hurt = false;
this.gotoAndStop("idle");
}
if (jump == true) {
this._y = this._y - jumpspeed;
jumpspeed = jumpspeed - 2;
if (this._y >= 0) {
this.gotoAndStop("idle");
jump = false;
}
}
this._alpha = 100;
if (jump == false) {
if (_root.life1.text <= 0) {
this.gotoAndStop("death");
_root.playerwon = false;
}
if (this._currentframe == 1) {
if (_root.life2.text <= 0) {
this.gotoAndStop("win");
_root.playerwon = true;
}
}
}
}
}
}
Instance of Symbol 1665 MovieClip "char" in Symbol 1934 MovieClip Frame 8
onClipEvent (load) {
block = false;
this._y = 0;
runspeed = 0;
jump = false;
jumpspeed = 25;
duck = false;
jumpattack = true;
attackpause = false;
timer = 0;
hurt = false;
airhit = true;
}
onClipEvent (enterFrame) {
if (_root.gameplay == true) {
if (_root.gameover == false) {
this._x = this._x + runspeed;
if (this.hitTest(_root.side1) && (runspeed < 0)) {
runspeed = 0;
}
if (this.hitTest(_root.side2) && (runspeed > 0)) {
runspeed = 0;
}
if (_root.player2.char.hitrect.hitTest(this.hitrect)) {
if ((!Key.isDown(_root.leftbutton)) && (this._xscale == 100)) {
if (jump == false) {
runspeed = 0;
}
}
if ((!Key.isDown(_root.rightbutton)) && (this._xscale == -100)) {
if (jump == false) {
runspeed = 0;
}
}
}
if ((!Key.isDown(_root.punchbutton)) && (!Key.isDown(_root.kickbutton))) {
attackpause = false;
}
if (block == true) {
if (duck == true) {
this.gotoAndStop("duckblock");
} else {
this.gotoAndStop("block");
}
}
if (hurt == true) {
if (duck == false) {
if (airhit == false) {
if (block == false) {
this.gotoAndStop("hurt");
} else {
this.gotoAndStop("block");
}
}
}
if (duck == true) {
if (airhit == false) {
if (block == false) {
this.gotoAndStop("duckhurt");
} else {
this.gotoAndStop("duckblock");
}
}
}
timer++;
if (timer == 1) {
if ((!this.hitTest(_root.side1)) && (!this.hitTest(_root.side2))) {
if ((_root.player2._x + _root.player2.char._x) < (_root.player1._x + this._x)) {
runspeed = 10;
}
if ((_root.player2._x + _root.player2.char._x) > (_root.player1._x + this._x)) {
runspeed = -10;
}
}
}
if (jump == false) {
if (timer > 1) {
if (runspeed > 0) {
runspeed--;
}
if (runspeed < 0) {
runspeed++;
}
}
}
if (jump == true) {
if (timer == 1) {
if (jumpspeed < 0) {
jumpspeed = jumpspeed * -1;
}
}
}
if (block == false) {
if ((this._currentframe < 5) || (this._currentframe > 6)) {
if (((timer >= 1) && (timer <= 4)) || ((timer >= 11) && (timer <= 14))) {
this._alpha = 0;
}
if (((timer >= 5) && (timer <= 10)) || ((timer >= 15) && (timer <= 19))) {
this._alpha = 100;
}
}
}
if (timer == 20) {
if (jump == false) {
if (duck == true) {
this.gotoAndStop("duck");
} else if (run == true) {
this.gotoAndStop("run");
} else {
this.gotoAndStop("idle");
}
}
block = false;
hurt = false;
}
}
if (hurt == false) {
timer = 0;
if (_root.player2.char.attack.hurtrect.hitTest(this.hitrect)) {
if (duck == true) {
if ((Key.isDown(_root.leftbutton) && (this._xscale == 100)) || (Key.isDown(_root.rightbutton) && (this._xscale == -100))) {
this.gotoAndStop("duckblock");
block = true;
} else {
this.gotoAndStop("duckhurt");
}
} else if ((Key.isDown(_root.leftbutton) && (this._xscale == 100)) || (Key.isDown(_root.rightbutton) && (this._xscale == -100))) {
this.gotoAndStop("block");
block = true;
} else {
this.gotoAndStop("hurt");
}
if (jump == true) {
if (airhit == true) {
this.gotoAndStop("hurt");
}
}
if ((this._currentframe < 5) || (this._currentframe > 6)) {
hurtsfx = random(4) + 1;
_root["hurt" + hurtsfx].start(0, 1);
_root.health1away.text = 5;
} else {
_root.block.start(0, 1);
_root.health1away.text = 1;
}
if (airhit == true) {
hurt = true;
}
} else {
block = false;
}
if (jump == false) {
if (timer == 0) {
jumpattack = true;
if (this._currentframe < 7) {
if ((_root.player2._x + _root.player2.char._x) < (_root.player1._x + this._x)) {
this._xscale = -100;
}
if ((_root.player2._x + _root.player2.char._x) > (_root.player1._x + this._x)) {
this._xscale = 100;
}
}
if (((!Key.isDown(_root.rightbutton)) && (!Key.isDown(_root.leftbutton))) && (!Key.isDown(_root.downbutton))) {
if (attackpause == false) {
if (Key.isDown(_root.punchbutton)) {
this.gotoAndStop("punch");
attackpause = true;
}
if (Key.isDown(_root.kickbutton)) {
this.gotoAndStop("kick");
attackpause = true;
}
}
}
if ((Key.isDown(_root.rightbutton) && (this._xscale == 100)) || (Key.isDown(_root.leftbutton) && (this._xscale == -100))) {
if (duck == false) {
if (attackpause == false) {
if (Key.isDown(_root.punchbutton)) {
this.gotoAndStop("punch");
attackpause = true;
}
if (Key.isDown(_root.kickbutton)) {
this.gotoAndStop("kick");
attackpause = true;
}
}
}
}
this._y = 0;
jumpspeed = 25;
if (!Key.isDown(_root.downbutton)) {
if (this.hitrect.hitTest(_root.player2.char.hitrect)) {
if (this._xscale == 100) {
if (!Key.isDown(_root.leftbutton)) {
if (_root.player2.char.run == true) {
if (!Key.isDown(_root.rightbutton)) {
runspeed = -4;
} else {
runspeed = 0;
}
}
if (_root.player2.char.run == false) {
if (!Key.isDown(_root.rightbutton)) {
runspeed = 0;
} else {
runspeed = 4;
}
}
}
}
if (this._xscale == -100) {
if (!Key.isDown(_root.rightbutton)) {
if (_root.player2.char.run == true) {
if (!Key.isDown(_root.leftbutton)) {
runspeed = 4;
} else {
runspeed = 0;
}
}
if (_root.player2.char.run == false) {
if (!Key.isDown(_root.leftbutton)) {
runspeed = 0;
} else {
runspeed = -4;
}
}
}
}
}
if (Key.isDown(_root.leftbutton)) {
if (((this._currentframe == 1) || (this._currentframe == 2)) || (this._currentframe == 3)) {
this.gotoAndStop("run");
if (this._xscale == 100) {
if (!this.hitTest(_root.side1)) {
runspeed = -7;
}
}
if (!this.hitrect.hitTest(_root.player2.char.hitrect)) {
if (this._xscale == -100) {
runspeed = -10;
}
}
}
}
if (Key.isDown(_root.rightbutton)) {
if (((this._currentframe == 1) || (this._currentframe == 2)) || (this._currentframe == 3)) {
this.gotoAndStop("run");
if (!this.hitrect.hitTest(_root.player2.char.hitrect)) {
if (this._xscale == 100) {
runspeed = 10;
}
}
if (this._xscale == -100) {
if (!this.hitTest(_root.side2)) {
runspeed = 7;
}
}
}
}
}
if (Key.isDown(_root.downbutton)) {
if (this._currentframe < 5) {
if (duck == false) {
this.gotoAndStop("duck");
duck = true;
}
}
}
if (!Key.isDown(_root.downbutton)) {
duck = false;
}
if (duck == true) {
if (runspeed != 0) {
if (Key.isDown(_root.punchbutton)) {
if (attackpause == false) {
if (this._currentframe == 3) {
if (this._xscale == 100) {
runspeed = 12;
} else {
runspeed = -12;
}
}
this.gotoAndStop("slidepunch");
attackpause = true;
}
}
if (Key.isDown(_root.kickbutton)) {
if (attackpause == false) {
if (this._currentframe == 3) {
if (this._xscale == 100) {
runspeed = 12;
} else {
runspeed = -12;
}
}
this.gotoAndStop("slidekick");
attackpause = true;
}
}
}
if (runspeed == 0) {
if ((this._currentframe != 11) && (this._currentframe != 12)) {
if (attackpause == false) {
if (Key.isDown(_root.punchbutton)) {
this.gotoAndStop("duckpunch");
attackpause = true;
}
if (Key.isDown(_root.kickbutton)) {
this.gotoAndStop("duckkick");
attackpause = true;
}
}
if (this._currentframe < 7) {
if ((!Key.isDown(_root.punchbutton)) && (!Key.isDown(_root.kickbutton))) {
this.gotoAndStop("duck");
}
}
}
}
}
if (((!Key.isDown(_root.downbutton)) && (!Key.isDown(_root.rightbutton))) && (!Key.isDown(_root.leftbutton))) {
if (_currentframe < 7) {
this.gotoAndStop("idle");
block = false;
}
}
if (this._currentframe != 2) {
if (runspeed > 0) {
runspeed--;
}
if (runspeed < 0) {
runspeed++;
}
}
if (Key.isDown(_root.upbutton)) {
if (this._currentframe < 7) {
this.gotoAndStop("jump");
airhit = true;
_root.jump.start(0, 1);
jump = true;
}
}
}
}
}
if (jump == true) {
this._y = this._y - jumpspeed;
jumpspeed = jumpspeed - 2;
if (_root.player2.char._currentframe == 4) {
if (this.hitrect.hitTest(_root.player2.char.hitrect)) {
if (this._xscale == 100) {
runspeed = 4;
_root.player2.char.runspeed = 4;
}
if (this._xscale == -100) {
runspeed = -4;
_root.player2.char.runspeed = -4;
}
}
} else if (jumpspeed > 0) {
if (this.hitrect.hitTest(_root.player2.char.hitrect)) {
if (runspeed != 0) {
if (this._xscale == -100) {
runspeed = -5;
_root.player2.char.runspeed = -5;
if (_root.player2._x < 80) {
this._x = this._x - runspeed;
}
}
if (this._xscale == 100) {
runspeed = 5;
_root.player2.char.runspeed = 5;
if (_root.player2._x > 655) {
this._x = this._x - runspeed;
}
}
}
}
}
if (jumpspeed < 0) {
if ((!_root.player2.char._currentframe) == 4) {
if (this.hitrect.hitTest(_root.player2.char.hitrect)) {
if ((_root.player2._x + _root.player2.char._x) < (_root.player1._x + this._x)) {
runspeed = 9;
if (this._xscale == -100) {
_root.player2.char.runspeed = -5;
}
}
if ((_root.player2._x + _root.player2.char._x) > (_root.player1._x + this._x)) {
runspeed = -9;
if (this._xscale == 100) {
_root.player2.char.runspeed = 5;
}
}
}
}
}
if (hurt == false) {
if (jumpattack == true) {
if (attackpause == false) {
if (Key.isDown(_root.punchbutton)) {
this.gotoAndStop("jumppunch");
attackpause = true;
jumpattack = false;
}
if (Key.isDown(_root.kickbutton)) {
this.gotoAndStop("jumpkick");
attackpause = true;
jumpattack = false;
}
}
}
if (jumpattack == false) {
if (attackpause == false) {
if (Key.isDown(_root.punchbutton)) {
attackpause = true;
}
if (Key.isDown(_root.kickbutton)) {
attackpause = true;
}
}
}
}
if (this._y >= 0) {
_root.land.start(0, 1);
this.gotoAndStop("idle");
jump = false;
}
}
}
if (_root.gameover == true) {
if (this._currentframe == 3) {
this.gotoAndStop("idle");
}
if (block == true) {
block = false;
this.gotoAndStop("idle");
}
if (hurt == true) {
hurt = false;
this.gotoAndStop("idle");
}
if (jump == true) {
this._y = this._y - jumpspeed;
jumpspeed = jumpspeed - 2;
if (this._y >= 0) {
this.gotoAndStop("idle");
jump = false;
}
}
this._alpha = 100;
if (jump == false) {
if (_root.life1.text <= 0) {
this.gotoAndStop("death");
_root.playerwon = false;
}
if (this._currentframe == 1) {
if (_root.life2.text <= 0) {
this.gotoAndStop("win");
_root.playerwon = true;
}
}
}
}
}
}
Instance of Symbol 1802 MovieClip "char" in Symbol 1934 MovieClip Frame 9
onClipEvent (load) {
block = false;
this._y = 0;
runspeed = 0;
jump = false;
jumpspeed = 25;
duck = false;
jumpattack = true;
attackpause = false;
timer = 0;
hurt = false;
airhit = true;
}
onClipEvent (enterFrame) {
if (_root.gameplay == true) {
if (_root.gameover == false) {
this._x = this._x + runspeed;
if (this.hitTest(_root.side1) && (runspeed < 0)) {
runspeed = 0;
}
if (this.hitTest(_root.side2) && (runspeed > 0)) {
runspeed = 0;
}
if (_root.player2.char.hitrect.hitTest(this.hitrect)) {
if ((!Key.isDown(_root.leftbutton)) && (this._xscale == 100)) {
if (jump == false) {
runspeed = 0;
}
}
if ((!Key.isDown(_root.rightbutton)) && (this._xscale == -100)) {
if (jump == false) {
runspeed = 0;
}
}
}
if ((!Key.isDown(_root.punchbutton)) && (!Key.isDown(_root.kickbutton))) {
attackpause = false;
}
if (block == true) {
if (duck == true) {
this.gotoAndStop("duckblock");
} else {
this.gotoAndStop("block");
}
}
if (hurt == true) {
if (duck == false) {
if (airhit == false) {
if (block == false) {
this.gotoAndStop("hurt");
} else {
this.gotoAndStop("block");
}
}
}
if (duck == true) {
if (airhit == false) {
if (block == false) {
this.gotoAndStop("duckhurt");
} else {
this.gotoAndStop("duckblock");
}
}
}
timer++;
if (timer == 1) {
if ((!this.hitTest(_root.side1)) && (!this.hitTest(_root.side2))) {
if ((_root.player2._x + _root.player2.char._x) < (_root.player1._x + this._x)) {
runspeed = 10;
}
if ((_root.player2._x + _root.player2.char._x) > (_root.player1._x + this._x)) {
runspeed = -10;
}
}
}
if (jump == false) {
if (timer > 1) {
if (runspeed > 0) {
runspeed--;
}
if (runspeed < 0) {
runspeed++;
}
}
}
if (jump == true) {
if (timer == 1) {
if (jumpspeed < 0) {
jumpspeed = jumpspeed * -1;
}
}
}
if (block == false) {
if ((this._currentframe < 5) || (this._currentframe > 6)) {
if (((timer >= 1) && (timer <= 4)) || ((timer >= 11) && (timer <= 14))) {
this._alpha = 0;
}
if (((timer >= 5) && (timer <= 10)) || ((timer >= 15) && (timer <= 19))) {
this._alpha = 100;
}
}
}
if (timer == 20) {
if (jump == false) {
if (duck == true) {
this.gotoAndStop("duck");
} else if (run == true) {
this.gotoAndStop("run");
} else {
this.gotoAndStop("idle");
}
}
block = false;
hurt = false;
}
}
if (hurt == false) {
timer = 0;
if (_root.player2.char.attack.hurtrect.hitTest(this.hitrect)) {
if (duck == true) {
if ((Key.isDown(_root.leftbutton) && (this._xscale == 100)) || (Key.isDown(_root.rightbutton) && (this._xscale == -100))) {
this.gotoAndStop("duckblock");
block = true;
} else {
this.gotoAndStop("duckhurt");
}
} else if ((Key.isDown(_root.leftbutton) && (this._xscale == 100)) || (Key.isDown(_root.rightbutton) && (this._xscale == -100))) {
this.gotoAndStop("block");
block = true;
} else {
this.gotoAndStop("hurt");
}
if (jump == true) {
if (airhit == true) {
this.gotoAndStop("hurt");
}
}
if ((this._currentframe < 5) || (this._currentframe > 6)) {
hurtsfx = random(4) + 1;
_root["hurt" + hurtsfx].start(0, 1);
_root.health1away.text = 5;
} else {
_root.block.start(0, 1);
_root.health1away.text = 1;
}
if (airhit == true) {
hurt = true;
}
} else {
block = false;
}
if (jump == false) {
if (timer == 0) {
jumpattack = true;
if (this._currentframe < 7) {
if ((_root.player2._x + _root.player2.char._x) < (_root.player1._x + this._x)) {
this._xscale = -100;
}
if ((_root.player2._x + _root.player2.char._x) > (_root.player1._x + this._x)) {
this._xscale = 100;
}
}
if (((!Key.isDown(_root.rightbutton)) && (!Key.isDown(_root.leftbutton))) && (!Key.isDown(_root.downbutton))) {
if (attackpause == false) {
if (Key.isDown(_root.punchbutton)) {
this.gotoAndStop("punch");
attackpause = true;
}
if (Key.isDown(_root.kickbutton)) {
this.gotoAndStop("kick");
attackpause = true;
}
}
}
if ((Key.isDown(_root.rightbutton) && (this._xscale == 100)) || (Key.isDown(_root.leftbutton) && (this._xscale == -100))) {
if (duck == false) {
if (attackpause == false) {
if (Key.isDown(_root.punchbutton)) {
this.gotoAndStop("punch");
attackpause = true;
}
if (Key.isDown(_root.kickbutton)) {
this.gotoAndStop("kick");
attackpause = true;
}
}
}
}
this._y = 0;
jumpspeed = 25;
if (!Key.isDown(_root.downbutton)) {
if (this.hitrect.hitTest(_root.player2.char.hitrect)) {
if (this._xscale == 100) {
if (!Key.isDown(_root.leftbutton)) {
if (_root.player2.char.run == true) {
if (!Key.isDown(_root.rightbutton)) {
runspeed = -4;
} else {
runspeed = 0;
}
}
if (_root.player2.char.run == false) {
if (!Key.isDown(_root.rightbutton)) {
runspeed = 0;
} else {
runspeed = 4;
}
}
}
}
if (this._xscale == -100) {
if (!Key.isDown(_root.rightbutton)) {
if (_root.player2.char.run == true) {
if (!Key.isDown(_root.leftbutton)) {
runspeed = 4;
} else {
runspeed = 0;
}
}
if (_root.player2.char.run == false) {
if (!Key.isDown(_root.leftbutton)) {
runspeed = 0;
} else {
runspeed = -4;
}
}
}
}
}
if (Key.isDown(_root.leftbutton)) {
if (((this._currentframe == 1) || (this._currentframe == 2)) || (this._currentframe == 3)) {
this.gotoAndStop("run");
if (this._xscale == 100) {
if (!this.hitTest(_root.side1)) {
runspeed = -7;
}
}
if (!this.hitrect.hitTest(_root.player2.char.hitrect)) {
if (this._xscale == -100) {
runspeed = -10;
}
}
}
}
if (Key.isDown(_root.rightbutton)) {
if (((this._currentframe == 1) || (this._currentframe == 2)) || (this._currentframe == 3)) {
this.gotoAndStop("run");
if (!this.hitrect.hitTest(_root.player2.char.hitrect)) {
if (this._xscale == 100) {
runspeed = 10;
}
}
if (this._xscale == -100) {
if (!this.hitTest(_root.side2)) {
runspeed = 7;
}
}
}
}
}
if (Key.isDown(_root.downbutton)) {
if (this._currentframe < 5) {
if (duck == false) {
this.gotoAndStop("duck");
duck = true;
}
}
}
if (!Key.isDown(_root.downbutton)) {
duck = false;
}
if (duck == true) {
if (runspeed != 0) {
if (Key.isDown(_root.punchbutton)) {
if (attackpause == false) {
if (this._currentframe == 3) {
if (this._xscale == 100) {
runspeed = 12;
} else {
runspeed = -12;
}
}
this.gotoAndStop("slidepunch");
attackpause = true;
}
}
if (Key.isDown(_root.kickbutton)) {
if (attackpause == false) {
if (this._currentframe == 3) {
if (this._xscale == 100) {
runspeed = 12;
} else {
runspeed = -12;
}
}
this.gotoAndStop("slidekick");
attackpause = true;
}
}
}
if (runspeed == 0) {
if ((this._currentframe != 11) && (this._currentframe != 12)) {
if (attackpause == false) {
if (Key.isDown(_root.punchbutton)) {
this.gotoAndStop("duckpunch");
attackpause = true;
}
if (Key.isDown(_root.kickbutton)) {
this.gotoAndStop("duckkick");
attackpause = true;
}
}
if (this._currentframe < 7) {
if ((!Key.isDown(_root.punchbutton)) && (!Key.isDown(_root.kickbutton))) {
this.gotoAndStop("duck");
}
}
}
}
}
if (((!Key.isDown(_root.downbutton)) && (!Key.isDown(_root.rightbutton))) && (!Key.isDown(_root.leftbutton))) {
if (_currentframe < 7) {
this.gotoAndStop("idle");
block = false;
}
}
if (this._currentframe != 2) {
if (runspeed > 0) {
runspeed--;
}
if (runspeed < 0) {
runspeed++;
}
}
if (Key.isDown(_root.upbutton)) {
if (this._currentframe < 7) {
this.gotoAndStop("jump");
airhit = true;
_root.jump.start(0, 1);
jump = true;
}
}
}
}
}
if (jump == true) {
this._y = this._y - jumpspeed;
jumpspeed = jumpspeed - 2;
if (_root.player2.char._currentframe == 4) {
if (this.hitrect.hitTest(_root.player2.char.hitrect)) {
if (this._xscale == 100) {
runspeed = 4;
_root.player2.char.runspeed = 4;
}
if (this._xscale == -100) {
runspeed = -4;
_root.player2.char.runspeed = -4;
}
}
} else if (jumpspeed > 0) {
if (this.hitrect.hitTest(_root.player2.char.hitrect)) {
if (runspeed != 0) {
if (this._xscale == -100) {
runspeed = -5;
_root.player2.char.runspeed = -5;
if (_root.player2._x < 80) {
this._x = this._x - runspeed;
}
}
if (this._xscale == 100) {
runspeed = 5;
_root.player2.char.runspeed = 5;
if (_root.player2._x > 655) {
this._x = this._x - runspeed;
}
}
}
}
}
if (jumpspeed < 0) {
if ((!_root.player2.char._currentframe) == 4) {
if (this.hitrect.hitTest(_root.player2.char.hitrect)) {
if ((_root.player2._x + _root.player2.char._x) < (_root.player1._x + this._x)) {
runspeed = 9;
if (this._xscale == -100) {
_root.player2.char.runspeed = -5;
}
}
if ((_root.player2._x + _root.player2.char._x) > (_root.player1._x + this._x)) {
runspeed = -9;
if (this._xscale == 100) {
_root.player2.char.runspeed = 5;
}
}
}
}
}
if (hurt == false) {
if (jumpattack == true) {
if (attackpause == false) {
if (Key.isDown(_root.punchbutton)) {
this.gotoAndStop("jumppunch");
attackpause = true;
jumpattack = false;
}
if (Key.isDown(_root.kickbutton)) {
this.gotoAndStop("jumpkick");
attackpause = true;
jumpattack = false;
}
}
}
if (jumpattack == false) {
if (attackpause == false) {
if (Key.isDown(_root.punchbutton)) {
attackpause = true;
}
if (Key.isDown(_root.kickbutton)) {
attackpause = true;
}
}
}
}
if (this._y >= 0) {
_root.land.start(0, 1);
this.gotoAndStop("idle");
jump = false;
}
}
}
if (_root.gameover == true) {
if (this._currentframe == 3) {
this.gotoAndStop("idle");
}
if (block == true) {
block = false;
this.gotoAndStop("idle");
}
if (hurt == true) {
hurt = false;
this.gotoAndStop("idle");
}
if (jump == true) {
this._y = this._y - jumpspeed;
jumpspeed = jumpspeed - 2;
if (this._y >= 0) {
this.gotoAndStop("idle");
jump = false;
}
}
this._alpha = 100;
if (jump == false) {
if (_root.life1.text <= 0) {
this.gotoAndStop("death");
_root.playerwon = false;
}
if (this._currentframe == 1) {
if (_root.life2.text <= 0) {
this.gotoAndStop("win");
_root.playerwon = true;
}
}
}
}
}
}
Instance of Symbol 1932 MovieClip "char" in Symbol 1934 MovieClip Frame 10
onClipEvent (load) {
block = false;
this._y = 0;
runspeed = 0;
jump = false;
jumpspeed = 25;
duck = false;
jumpattack = true;
attackpause = false;
timer = 0;
hurt = false;
airhit = true;
}
onClipEvent (enterFrame) {
if (_root.gameplay == true) {
if (_root.gameover == false) {
this._x = this._x + runspeed;
if (this.hitTest(_root.side1) && (runspeed < 0)) {
runspeed = 0;
}
if (this.hitTest(_root.side2) && (runspeed > 0)) {
runspeed = 0;
}
if (_root.player2.char.hitrect.hitTest(this.hitrect)) {
if ((!Key.isDown(_root.leftbutton)) && (this._xscale == 100)) {
if (jump == false) {
runspeed = 0;
}
}
if ((!Key.isDown(_root.rightbutton)) && (this._xscale == -100)) {
if (jump == false) {
runspeed = 0;
}
}
}
if ((!Key.isDown(_root.punchbutton)) && (!Key.isDown(_root.kickbutton))) {
attackpause = false;
}
if (block == true) {
if (duck == true) {
this.gotoAndStop("duckblock");
} else {
this.gotoAndStop("block");
}
}
if (hurt == true) {
if (duck == false) {
if (airhit == false) {
if (block == false) {
this.gotoAndStop("hurt");
} else {
this.gotoAndStop("block");
}
}
}
if (duck == true) {
if (airhit == false) {
if (block == false) {
this.gotoAndStop("duckhurt");
} else {
this.gotoAndStop("duckblock");
}
}
}
timer++;
if (timer == 1) {
if ((!this.hitTest(_root.side1)) && (!this.hitTest(_root.side2))) {
if ((_root.player2._x + _root.player2.char._x) < (_root.player1._x + this._x)) {
runspeed = 10;
}
if ((_root.player2._x + _root.player2.char._x) > (_root.player1._x + this._x)) {
runspeed = -10;
}
}
}
if (jump == false) {
if (timer > 1) {
if (runspeed > 0) {
runspeed--;
}
if (runspeed < 0) {
runspeed++;
}
}
}
if (jump == true) {
if (timer == 1) {
if (jumpspeed < 0) {
jumpspeed = jumpspeed * -1;
}
}
}
if (block == false) {
if ((this._currentframe < 5) || (this._currentframe > 6)) {
if (((timer >= 1) && (timer <= 4)) || ((timer >= 11) && (timer <= 14))) {
this._alpha = 0;
}
if (((timer >= 5) && (timer <= 10)) || ((timer >= 15) && (timer <= 19))) {
this._alpha = 100;
}
}
}
if (timer == 20) {
if (jump == false) {
if (duck == true) {
this.gotoAndStop("duck");
} else if (run == true) {
this.gotoAndStop("run");
} else {
this.gotoAndStop("idle");
}
}
block = false;
hurt = false;
}
}
if (hurt == false) {
timer = 0;
if (_root.player2.char.attack.hurtrect.hitTest(this.hitrect)) {
if (duck == true) {
if ((Key.isDown(_root.leftbutton) && (this._xscale == 100)) || (Key.isDown(_root.rightbutton) && (this._xscale == -100))) {
this.gotoAndStop("duckblock");
block = true;
} else {
this.gotoAndStop("duckhurt");
}
} else if ((Key.isDown(_root.leftbutton) && (this._xscale == 100)) || (Key.isDown(_root.rightbutton) && (this._xscale == -100))) {
this.gotoAndStop("block");
block = true;
} else {
this.gotoAndStop("hurt");
}
if (jump == true) {
if (airhit == true) {
this.gotoAndStop("hurt");
}
}
if ((this._currentframe < 5) || (this._currentframe > 6)) {
hurtsfx = random(4) + 1;
_root["hurt" + hurtsfx].start(0, 1);
_root.health1away.text = 5;
} else {
_root.block.start(0, 1);
_root.health1away.text = 1;
}
if (airhit == true) {
hurt = true;
}
} else {
block = false;
}
if (jump == false) {
if (timer == 0) {
jumpattack = true;
if (this._currentframe < 7) {
if ((_root.player2._x + _root.player2.char._x) < (_root.player1._x + this._x)) {
this._xscale = -100;
}
if ((_root.player2._x + _root.player2.char._x) > (_root.player1._x + this._x)) {
this._xscale = 100;
}
}
if (((!Key.isDown(_root.rightbutton)) && (!Key.isDown(_root.leftbutton))) && (!Key.isDown(_root.downbutton))) {
if (attackpause == false) {
if (Key.isDown(_root.punchbutton)) {
this.gotoAndStop("punch");
attackpause = true;
}
if (Key.isDown(_root.kickbutton)) {
this.gotoAndStop("kick");
attackpause = true;
}
}
}
if ((Key.isDown(_root.rightbutton) && (this._xscale == 100)) || (Key.isDown(_root.leftbutton) && (this._xscale == -100))) {
if (duck == false) {
if (attackpause == false) {
if (Key.isDown(_root.punchbutton)) {
this.gotoAndStop("punch");
attackpause = true;
}
if (Key.isDown(_root.kickbutton)) {
this.gotoAndStop("kick");
attackpause = true;
}
}
}
}
this._y = 0;
jumpspeed = 25;
if (!Key.isDown(_root.downbutton)) {
if (this.hitrect.hitTest(_root.player2.char.hitrect)) {
if (this._xscale == 100) {
if (!Key.isDown(_root.leftbutton)) {
if (_root.player2.char.run == true) {
if (!Key.isDown(_root.rightbutton)) {
runspeed = -4;
} else {
runspeed = 0;
}
}
if (_root.player2.char.run == false) {
if (!Key.isDown(_root.rightbutton)) {
runspeed = 0;
} else {
runspeed = 4;
}
}
}
}
if (this._xscale == -100) {
if (!Key.isDown(_root.rightbutton)) {
if (_root.player2.char.run == true) {
if (!Key.isDown(_root.leftbutton)) {
runspeed = 4;
} else {
runspeed = 0;
}
}
if (_root.player2.char.run == false) {
if (!Key.isDown(_root.leftbutton)) {
runspeed = 0;
} else {
runspeed = -4;
}
}
}
}
}
if (Key.isDown(_root.leftbutton)) {
if (((this._currentframe == 1) || (this._currentframe == 2)) || (this._currentframe == 3)) {
this.gotoAndStop("run");
if (this._xscale == 100) {
if (!this.hitTest(_root.side1)) {
runspeed = -7;
}
}
if (!this.hitrect.hitTest(_root.player2.char.hitrect)) {
if (this._xscale == -100) {
runspeed = -10;
}
}
}
}
if (Key.isDown(_root.rightbutton)) {
if (((this._currentframe == 1) || (this._currentframe == 2)) || (this._currentframe == 3)) {
this.gotoAndStop("run");
if (!this.hitrect.hitTest(_root.player2.char.hitrect)) {
if (this._xscale == 100) {
runspeed = 10;
}
}
if (this._xscale == -100) {
if (!this.hitTest(_root.side2)) {
runspeed = 7;
}
}
}
}
}
if (Key.isDown(_root.downbutton)) {
if (this._currentframe < 5) {
if (duck == false) {
this.gotoAndStop("duck");
duck = true;
}
}
}
if (!Key.isDown(_root.downbutton)) {
duck = false;
}
if (duck == true) {
if (runspeed != 0) {
if (Key.isDown(_root.punchbutton)) {
if (attackpause == false) {
if (this._currentframe == 3) {
if (this._xscale == 100) {
runspeed = 12;
} else {
runspeed = -12;
}
}
this.gotoAndStop("slidepunch");
attackpause = true;
}
}
if (Key.isDown(_root.kickbutton)) {
if (attackpause == false) {
if (this._currentframe == 3) {
if (this._xscale == 100) {
runspeed = 12;
} else {
runspeed = -12;
}
}
this.gotoAndStop("slidekick");
attackpause = true;
}
}
}
if (runspeed == 0) {
if ((this._currentframe != 11) && (this._currentframe != 12)) {
if (attackpause == false) {
if (Key.isDown(_root.punchbutton)) {
this.gotoAndStop("duckpunch");
attackpause = true;
}
if (Key.isDown(_root.kickbutton)) {
this.gotoAndStop("duckkick");
attackpause = true;
}
}
if (this._currentframe < 7) {
if ((!Key.isDown(_root.punchbutton)) && (!Key.isDown(_root.kickbutton))) {
this.gotoAndStop("duck");
}
}
}
}
}
if (((!Key.isDown(_root.downbutton)) && (!Key.isDown(_root.rightbutton))) && (!Key.isDown(_root.leftbutton))) {
if (_currentframe < 7) {
this.gotoAndStop("idle");
block = false;
}
}
if (this._currentframe != 2) {
if (runspeed > 0) {
runspeed--;
}
if (runspeed < 0) {
runspeed++;
}
}
if (Key.isDown(_root.upbutton)) {
if (this._currentframe < 7) {
this.gotoAndStop("jump");
airhit = true;
_root.jump.start(0, 1);
jump = true;
}
}
}
}
}
if (jump == true) {
this._y = this._y - jumpspeed;
jumpspeed = jumpspeed - 2;
if (_root.player2.char._currentframe == 4) {
if (this.hitrect.hitTest(_root.player2.char.hitrect)) {
if (this._xscale == 100) {
runspeed = 4;
_root.player2.char.runspeed = 4;
}
if (this._xscale == -100) {
runspeed = -4;
_root.player2.char.runspeed = -4;
}
}
} else if (jumpspeed > 0) {
if (this.hitrect.hitTest(_root.player2.char.hitrect)) {
if (runspeed != 0) {
if (this._xscale == -100) {
runspeed = -5;
_root.player2.char.runspeed = -5;
if (_root.player2._x < 80) {
this._x = this._x - runspeed;
}
}
if (this._xscale == 100) {
runspeed = 5;
_root.player2.char.runspeed = 5;
if (_root.player2._x > 655) {
this._x = this._x - runspeed;
}
}
}
}
}
if (jumpspeed < 0) {
if ((!_root.player2.char._currentframe) == 4) {
if (this.hitrect.hitTest(_root.player2.char.hitrect)) {
if ((_root.player2._x + _root.player2.char._x) < (_root.player1._x + this._x)) {
runspeed = 9;
if (this._xscale == -100) {
_root.player2.char.runspeed = -5;
}
}
if ((_root.player2._x + _root.player2.char._x) > (_root.player1._x + this._x)) {
runspeed = -9;
if (this._xscale == 100) {
_root.player2.char.runspeed = 5;
}
}
}
}
}
if (hurt == false) {
if (jumpattack == true) {
if (attackpause == false) {
if (Key.isDown(_root.punchbutton)) {
this.gotoAndStop("jumppunch");
attackpause = true;
jumpattack = false;
}
if (Key.isDown(_root.kickbutton)) {
this.gotoAndStop("jumpkick");
attackpause = true;
jumpattack = false;
}
}
}
if (jumpattack == false) {
if (attackpause == false) {
if (Key.isDown(_root.punchbutton)) {
attackpause = true;
}
if (Key.isDown(_root.kickbutton)) {
attackpause = true;
}
}
}
}
if (this._y >= 0) {
_root.land.start(0, 1);
this.gotoAndStop("idle");
jump = false;
}
}
}
if (_root.gameover == true) {
if (this._currentframe == 3) {
this.gotoAndStop("idle");
}
if (block == true) {
block = false;
this.gotoAndStop("idle");
}
if (hurt == true) {
hurt = false;
this.gotoAndStop("idle");
}
if (jump == true) {
this._y = this._y - jumpspeed;
jumpspeed = jumpspeed - 2;
if (this._y >= 0) {
this.gotoAndStop("idle");
jump = false;
}
}
this._alpha = 100;
if (jump == false) {
if (_root.life1.text <= 0) {
this.gotoAndStop("death");
_root.playerwon = false;
}
if (this._currentframe == 1) {
if (_root.life2.text <= 0) {
this.gotoAndStop("win");
_root.playerwon = true;
}
}
}
}
}
}
Symbol 1937 MovieClip Frame 1
stop();
Symbol 1937 MovieClip Frame 2
stop();
Symbol 1959 MovieClip Frame 1
function camControl() {
parentColor.setTransform(camColor.getTransform());
var _local4 = sX / this._width;
var _local3 = sY / this._height;
_parent._x = cX - (this._x * _local4);
_parent._y = cY - (this._y * _local3);
_parent._xscale = 100 * _local4;
_parent._yscale = 100 * _local3;
}
function resetStage() {
var _local2 = {ra:100, rb:0, ga:100, gb:0, ba:100, bb:0, aa:100, ab:0};
parentColor.setTransform(_local2);
_parent._xscale = 100;
_parent._yscale = 100;
_parent._x = 0;
_parent._y = 0;
}
this._visible = false;
var oldMode = Stage.scaleMode;
Stage.scaleMode = "exactFit";
var cX = (Stage.width / 2);
var cY = (Stage.height / 2);
var sX = Stage.width;
var sY = Stage.height;
Stage.scaleMode = oldMode;
var camColor = new Color(this);
var parentColor = new Color(_parent);
this.onEnterFrame = camControl;
camControl();
this.onUnload = resetStage;
Symbol 1970 MovieClip Frame 1
stop();
Symbol 1970 MovieClip Frame 61
_root.gameplay = true;
Symbol 1970 MovieClip Frame 72
stop();
Symbol 1998 MovieClip Frame 1
stop();
Symbol 2000 MovieClip Frame 40
stop();
Symbol 2007 Button
on (release) {
_root.blackout.play();
_root.backtostart = true;
}
Symbol 2009 Button
on (release) {
_root.blackout.play();
_root.backtostart = true;
}
Symbol 2010 Button
on (release) {
_root.blackout.play();
_root.backtostart = true;
}
Symbol 2011 Button
on (release) {
_root.prevFrame();
}
Symbol 2012 Button
on (release) {
stopAllSounds();
_root.gotoAndStop(5);
}
Symbol 2013 MovieClip Frame 1
stop();
Instance of Symbol 2002 MovieClip in Symbol 2013 MovieClip Frame 2
onClipEvent (load) {
this.gotoAndStop(_root.player1char);
this._alpha = 0;
}
onClipEvent (enterFrame) {
if (this._alpha < 100) {
this._alpha = this._alpha + 5;
} else {
this._alpha = 100;
}
}
Symbol 2013 MovieClip Frame 20
stop();
stop();
Symbol 2013 MovieClip Frame 21
prevFrame();
Symbol 2020 Button
on (release) {
play();
}
Symbol 2021 Button
on (release) {
this.gotoAndStop(1);
_root.gameplay = true;
}
Symbol 2022 Button
on (release) {
gotoAndStop (1);
}
Symbol 2023 MovieClip Frame 1
stop();
_root.player1.char.attack.play();
_root.player2.char.attack.play();
Symbol 2023 MovieClip Frame 2
_root.player1.char.attack.stop();
_root.player2.char.attack.stop();
Symbol 2023 MovieClip Frame 11
stop();
Symbol 2023 MovieClip Frame 28
stopAllSounds();
Symbol 2023 MovieClip Frame 29
_root.gotoAndPlay(5);
Symbol 2050 MovieClip Frame 1
speechSound = new Sound(this);
speechSound.attachSound("speech");
shock1 = new Sound(this);
shock1.attachSound("storyshock");
shock2 = new Sound(this);
shock2.attachSound("storyshock2");
Symbol 2050 MovieClip Frame 55
speechSound.start(0, 5);
Symbol 2050 MovieClip Frame 65
speechSound.stop();
Symbol 2050 MovieClip Frame 72
speechSound.start(0, 5);
Symbol 2050 MovieClip Frame 124
speechSound.stop();
Instance of Symbol 466 MovieClip in Symbol 2050 MovieClip Frame 124
onClipEvent (load) {
this._parent.stop();
}
on (release) {
this._parent.play();
}
Symbol 2050 MovieClip Frame 136
speechSound.start(0, 5);
Symbol 2050 MovieClip Frame 197
speechSound.stop();
Instance of Symbol 466 MovieClip in Symbol 2050 MovieClip Frame 197
onClipEvent (load) {
this._parent.stop();
}
on (release) {
this._parent.play();
}
Symbol 2050 MovieClip Frame 210
speechSound.start(0, 5);
Symbol 2050 MovieClip Frame 220
speechSound.stop();
Instance of Symbol 466 MovieClip in Symbol 2050 MovieClip Frame 220
onClipEvent (load) {
this._parent.stop();
}
on (release) {
this._parent.play();
}
Symbol 2050 MovieClip Frame 245
_root.play();
Symbol 2073 MovieClip Frame 1
speechSound = new Sound(this);
speechSound.attachSound("speech");
shock1 = new Sound(this);
shock1.attachSound("storyshock");
shock2 = new Sound(this);
shock2.attachSound("storyshock2");
Symbol 2073 MovieClip Frame 55
speechSound.start(0, 5);
Symbol 2073 MovieClip Frame 60
speechSound.stop();
Instance of Symbol 466 MovieClip in Symbol 2073 MovieClip Frame 60
onClipEvent (load) {
this._parent.stop();
}
on (release) {
this._parent.play();
}
Symbol 2073 MovieClip Frame 72
speechSound.start(0, 5);
Symbol 2073 MovieClip Frame 97
speechSound.stop();
Instance of Symbol 466 MovieClip in Symbol 2073 MovieClip Frame 97
onClipEvent (load) {
this._parent.stop();
}
on (release) {
this._parent.play();
}
Symbol 2073 MovieClip Frame 110
speechSound.start(0, 5);
Symbol 2073 MovieClip Frame 143
shock2.start(0, 1);
speechSound.stop();
Instance of Symbol 466 MovieClip in Symbol 2073 MovieClip Frame 143
onClipEvent (load) {
this._parent.stop();
}
on (release) {
this._parent.play();
}
Symbol 2073 MovieClip Frame 168
_root.play();
Symbol 2108 MovieClip Frame 1
speechSound = new Sound(this);
speechSound.attachSound("speech");
shock1 = new Sound(this);
shock1.attachSound("storyshock");
shock2 = new Sound(this);
shock2.attachSound("storyshock2");
Symbol 2108 MovieClip Frame 55
speechSound.start(0, 5);
Symbol 2108 MovieClip Frame 107
speechSound.stop();
Instance of Symbol 466 MovieClip in Symbol 2108 MovieClip Frame 107
onClipEvent (load) {
this._parent.stop();
}
on (release) {
this._parent.play();
}
Symbol 2108 MovieClip Frame 119
speechSound.start(0, 5);
Symbol 2108 MovieClip Frame 143
speechSound.stop();
Symbol 2108 MovieClip Frame 154
speechSound.start(0, 5);
Symbol 2108 MovieClip Frame 165
speechSound.stop();
Instance of Symbol 466 MovieClip in Symbol 2108 MovieClip Frame 165
onClipEvent (load) {
this._parent.stop();
}
on (release) {
this._parent.play();
}
Symbol 2108 MovieClip Frame 178
speechSound.start(0, 5);
Symbol 2108 MovieClip Frame 248
speechSound.stop();
Instance of Symbol 466 MovieClip in Symbol 2108 MovieClip Frame 248
onClipEvent (load) {
this._parent.stop();
}
on (release) {
this._parent.play();
}
Symbol 2108 MovieClip Frame 285
_root.play();
Symbol 2136 MovieClip Frame 1
speechSound = new Sound(this);
speechSound.attachSound("speech");
shock1 = new Sound(this);
shock1.attachSound("storyshock");
shock2 = new Sound(this);
shock2.attachSound("storyshock2");
Symbol 2136 MovieClip Frame 54
speechSound.start(0, 5);
Symbol 2136 MovieClip Frame 106
speechSound.stop();
Instance of Symbol 466 MovieClip in Symbol 2136 MovieClip Frame 106
onClipEvent (load) {
this._parent.stop();
}
on (release) {
this._parent.play();
}
Symbol 2136 MovieClip Frame 118
speechSound.start(0, 5);
Symbol 2136 MovieClip Frame 124
speechSound.stop();
Instance of Symbol 466 MovieClip in Symbol 2136 MovieClip Frame 124
onClipEvent (load) {
this._parent.stop();
}
on (release) {
this._parent.play();
}
Symbol 2136 MovieClip Frame 137
speechSound.start(0, 5);
Symbol 2136 MovieClip Frame 147
speechSound.stop();
Instance of Symbol 466 MovieClip in Symbol 2136 MovieClip Frame 147
onClipEvent (load) {
this._parent.stop();
}
on (release) {
this._parent.play();
}
Symbol 2136 MovieClip Frame 172
_root.play();
Symbol 2166 MovieClip Frame 1
speechSound = new Sound(this);
speechSound.attachSound("speech");
shock1 = new Sound(this);
shock1.attachSound("storyshock");
shock2 = new Sound(this);
shock2.attachSound("storyshock2");
Symbol 2166 MovieClip Frame 54
speechSound.start(0, 5);
Symbol 2166 MovieClip Frame 81
speechSound.stop();
Instance of Symbol 466 MovieClip in Symbol 2166 MovieClip Frame 81
onClipEvent (load) {
this._parent.stop();
}
on (release) {
this._parent.play();
}
Symbol 2166 MovieClip Frame 93
speechSound.start(0, 5);
Symbol 2166 MovieClip Frame 99
speechSound.stop();
Instance of Symbol 466 MovieClip in Symbol 2166 MovieClip Frame 99
onClipEvent (load) {
this._parent.stop();
}
on (release) {
this._parent.play();
}
Symbol 2166 MovieClip Frame 147
_root.play();
Symbol 2199 MovieClip Frame 1
speechSound = new Sound(this);
speechSound.attachSound("speech");
shock1 = new Sound(this);
shock1.attachSound("storyshock");
shock2 = new Sound(this);
shock2.attachSound("storyshock2");
_root.TeacherSound.start(0, 999);
Symbol 2199 MovieClip Frame 55
speechSound.start(0, 5);
Symbol 2199 MovieClip Frame 83
speechSound.stop();
Symbol 2199 MovieClip Frame 92
speechSound.start(0, 5);
Symbol 2199 MovieClip Frame 150
speechSound.stop();
Instance of Symbol 466 MovieClip in Symbol 2199 MovieClip Frame 150
onClipEvent (load) {
this._parent.stop();
}
on (release) {
this._parent.play();
}
Symbol 2199 MovieClip Frame 162
speechSound.start(0, 5);
Symbol 2199 MovieClip Frame 171
speechSound.stop();
Instance of Symbol 466 MovieClip in Symbol 2199 MovieClip Frame 171
onClipEvent (load) {
this._parent.stop();
}
on (release) {
this._parent.play();
}
Symbol 2199 MovieClip Frame 184
speechSound.start(0, 5);
Symbol 2199 MovieClip Frame 206
speechSound.stop();
Instance of Symbol 466 MovieClip in Symbol 2199 MovieClip Frame 206
onClipEvent (load) {
this._parent.stop();
}
on (release) {
this._parent.play();
}
Symbol 2199 MovieClip Frame 218
stopAllSounds();
_root.play();
Symbol 2219 MovieClip Frame 1904
_root.play();
Symbol 2226 Button
on (release) {
_root.gotoAndStop(5);
}
Symbol 2233 Button
on (release) {
DarnellSound.stop();
NeneSound.stop();
AlucardSound.stop();
CyclopsSound.stop();
HanzouSound.stop();
UberkidSound.stop();
CasandraSound.stop();
ConvictSound.stop();
GhettobotSound.stop();
PicoSound.start(0, 9999);
}
Symbol 2234 Button
on (release) {
PicoSound.stop();
NeneSound.stop();
AlucardSound.stop();
CyclopsSound.stop();
HanzouSound.stop();
UberkidSound.stop();
CasandraSound.stop();
ConvictSound.stop();
GhettobotSound.stop();
DarnellSound.start(0, 9999);
}
Symbol 2235 Button
on (release) {
PicoSound.stop();
DarnellSound.stop();
AlucardSound.stop();
CyclopsSound.stop();
HanzouSound.stop();
UberkidSound.stop();
CasandraSound.stop();
ConvictSound.stop();
GhettobotSound.stop();
NeneSound.start(0, 9999);
}
Symbol 2236 Button
on (release) {
PicoSound.stop();
DarnellSound.stop();
NeneSound.stop();
CyclopsSound.stop();
HanzouSound.stop();
UberkidSound.stop();
CasandraSound.stop();
ConvictSound.stop();
GhettobotSound.stop();
AlucardSound.start(0, 9999);
}
Symbol 2237 Button
on (release) {
PicoSound.stop();
DarnellSound.stop();
NeneSound.stop();
AlucardSound.stop();
HanzouSound.stop();
UberkidSound.stop();
CasandraSound.stop();
ConvictSound.stop();
GhettobotSound.stop();
CyclopsSound.start(0, 9999);
}
Symbol 2238 Button
on (release) {
PicoSound.stop();
DarnellSound.stop();
NeneSound.stop();
AlucardSound.stop();
CyclopsSound.stop();
UberkidSound.stop();
CasandraSound.stop();
ConvictSound.stop();
GhettobotSound.stop();
HanzouSound.start(0, 9999);
}
Symbol 2239 Button
on (release) {
PicoSound.stop();
DarnellSound.stop();
NeneSound.stop();
AlucardSound.stop();
CyclopsSound.stop();
HanzouSound.stop();
CasandraSound.stop();
ConvictSound.stop();
GhettobotSound.stop();
UberkidSound.start(0, 9999);
}
Symbol 2240 Button
on (release) {
PicoSound.stop();
DarnellSound.stop();
NeneSound.stop();
AlucardSound.stop();
CyclopsSound.stop();
HanzouSound.stop();
UberkidSound.stop();
CasandraSound.stop();
ConvictSound.stop();
GhettobotSound.start(0, 9999);
}
Symbol 2241 Button
on (release) {
PicoSound.stop();
DarnellSound.stop();
NeneSound.stop();
AlucardSound.stop();
CyclopsSound.stop();
HanzouSound.stop();
UberkidSound.stop();
ConvictSound.stop();
GhettobotSound.stop();
CasandraSound.start(0, 9999);
}
Symbol 2242 Button
on (release) {
PicoSound.stop();
DarnellSound.stop();
NeneSound.stop();
AlucardSound.stop();
CyclopsSound.stop();
HanzouSound.stop();
UberkidSound.stop();
CasandraSound.stop();
GhettobotSound.stop();
ConvictSound.start(0, 9999);
}
Symbol 2245 Button
on (release) {
getURL ("http://www.newgrounds.com/audio/view.php?id=752&sub=18731", "_blank");
}
Symbol 2246 Button
on (release) {
getURL ("http://www.newgrounds.com/audio/view.php?id=743162&sub=74911", "_blank");
}
Symbol 2247 Button
on (release) {
getURL ("http://www.newgrounds.com/audio/view.php?id=814022&sub=62065", "_blank");
}
Symbol 2248 Button
on (release) {
getURL ("http://www.newgrounds.com/audio/view.php?id=768581&sub=32887", "_blank");
}
Symbol 2249 Button
on (release) {
getURL ("http://www.newgrounds.com/audio/view.php?id=1639062&sub=77434", "_blank");
}
Symbol 2250 Button
on (release) {
getURL ("http://www.newgrounds.com/audio/view.php?id=768581&sub=17547", "_blank");
}
Symbol 2251 Button
on (release) {
getURL ("http://www.newgrounds.com/audio/view.php?id=1846375&sub=72744", "_blank");
}
Symbol 2252 Button
on (release) {
getURL ("http://www.newgrounds.com/audio/view.php?id=360638&sub=6941", "_blank");
}
Symbol 2253 Button
on (release) {
getURL ("http://www.newgrounds.com/audio/view.php?id=752&sub=21448", "_blank");
}
Symbol 2254 Button
on (release) {
getURL ("http://www.newgrounds.com/audio/view.php?id=339805&sub=73739", "_blank");
}
Symbol 2255 Button
on (release) {
stopAllSounds();
gotoAndStop (6);
}
Symbol 2266 Button
on (release) {
if (_root.playergo == false) {
_root.arcadecount = true;
_root.arctrans.play();
}
}
Symbol 2294 Button
on (release) {
gotoAndStop (4);
}
Symbol 2295 Button
on (release) {
gotoAndStop (2);
}
Symbol 2296 Button
on (release) {
gotoAndStop (3);
}
Symbol 2298 MovieClip Frame 1
stop();
Instance of Symbol 321 MovieClip in Symbol 2298 MovieClip Frame 2
onClipEvent (load) {
this._x = random(300) + 1000;
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
onClipEvent (enterFrame) {
this._x = this._x - speed;
if (this._x < -500) {
this._x = random(300) + 1000;
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
}
Instance of Symbol 321 MovieClip in Symbol 2298 MovieClip Frame 2
onClipEvent (load) {
this._x = random(300) + 1000;
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
onClipEvent (enterFrame) {
this._x = this._x - speed;
if (this._x < -500) {
this._x = random(300) + 1000;
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
}
Instance of Symbol 321 MovieClip in Symbol 2298 MovieClip Frame 2
onClipEvent (load) {
this._x = random(300) + 1000;
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
onClipEvent (enterFrame) {
this._x = this._x - speed;
if (this._x < -500) {
this._x = random(300) + 1000;
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
}
Instance of Symbol 321 MovieClip in Symbol 2298 MovieClip Frame 2
onClipEvent (load) {
this._x = random(300) + 1000;
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
onClipEvent (enterFrame) {
this._x = this._x - speed;
if (this._x < -500) {
this._x = random(300) + 1000;
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
}
Instance of Symbol 321 MovieClip in Symbol 2298 MovieClip Frame 2
onClipEvent (load) {
this._x = random(300) + 1000;
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
onClipEvent (enterFrame) {
this._x = this._x - speed;
if (this._x < -500) {
this._x = random(300) + 1000;
this._y = random(50) + 10;
this._xscale = random(30) + 75;
this._yscale = this._xscale;
speed = random(3) + 1;
this._alpha = random(50) + 25;
}
}
Instance of Symbol 331 MovieClip in Symbol 2298 MovieClip Frame 2
onClipEvent (load) {
if (_root.characterunlocked >= 1) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
playerchosen = false;
}
on (rollOver) {
if ((!this._currentframe) == 1) {
if (_root.playergo == false) {
if (playerchosen == false) {
this.gotoAndStop(3);
_root.player1char = 4;
}
}
}
}
on (rollOut) {
if ((!this._currentframe) == 1) {
if (_root.playergo == false) {
if (playerchosen == false) {
this.gotoAndStop(2);
}
}
}
}
on (press) {
if ((!this._currentframe) == 1) {
if (_root.playergo == false) {
if (playerchosen == false) {
this.gotoAndStop(4);
}
}
}
}
on (release) {
if ((!this._currentframe) == 1) {
if (_root.playergo == false) {
playerchosen = true;
}
}
}
onClipEvent (enterFrame) {
if ((!this._currentframe) == 1) {
if (playerchosen == true) {
this.gotoAndStop(3);
_root.playergo = true;
}
}
}
Instance of Symbol 331 MovieClip in Symbol 2298 MovieClip Frame 2
onClipEvent (load) {
if (_root.characterunlocked >= 1) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
playerchosen = false;
}
on (rollOver) {
if ((!this._currentframe) == 1) {
if (_root.playergo == false) {
if (playerchosen == false) {
this.gotoAndStop(3);
_root.player1char = 5;
}
}
}
}
on (rollOut) {
if ((!this._currentframe) == 1) {
if (_root.playergo == false) {
if (playerchosen == false) {
this.gotoAndStop(2);
}
}
}
}
on (press) {
if ((!this._currentframe) == 1) {
if (_root.playergo == false) {
if (playerchosen == false) {
this.gotoAndStop(4);
}
}
}
}
on (release) {
if ((!this._currentframe) == 1) {
if (_root.playergo == false) {
playerchosen = true;
}
}
}
onClipEvent (enterFrame) {
if ((!this._currentframe) == 1) {
if (playerchosen == true) {
this.gotoAndStop(3);
_root.playergo = true;
}
}
}
Instance of Symbol 331 MovieClip in Symbol 2298 MovieClip Frame 2
onClipEvent (load) {
if (_root.characterunlocked >= 2) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
playerchosen = false;
}
on (rollOver) {
if ((!this._currentframe) == 1) {
if (_root.playergo == false) {
if (playerchosen == false) {
this.gotoAndStop(3);
_root.player1char = 6;
}
}
}
}
on (rollOut) {
if ((!this._currentframe) == 1) {
if (_root.playergo == false) {
if (playerchosen == false) {
this.gotoAndStop(2);
}
}
}
}
on (press) {
if ((!this._currentframe) == 1) {
if (_root.playergo == false) {
if (playerchosen == false) {
this.gotoAndStop(4);
}
}
}
}
on (release) {
if ((!this._currentframe) == 1) {
if (_root.playergo == false) {
playerchosen = true;
}
}
}
onClipEvent (enterFrame) {
if ((!this._currentframe) == 1) {
if (playerchosen == true) {
this.gotoAndStop(3);
_root.playergo = true;
}
}
}
Instance of Symbol 331 MovieClip in Symbol 2298 MovieClip Frame 2
onClipEvent (load) {
if (_root.characterunlocked >= 2) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
playerchosen = false;
}
on (rollOver) {
if ((!this._currentframe) == 1) {
if (_root.playergo == false) {
if (playerchosen == false) {
this.gotoAndStop(3);
_root.player1char = 7;
}
}
}
}
on (rollOut) {
if ((!this._currentframe) == 1) {
if (_root.playergo == false) {
if (playerchosen == false) {
this.gotoAndStop(2);
}
}
}
}
on (press) {
if ((!this._currentframe) == 1) {
if (_root.playergo == false) {
if (playerchosen == false) {
this.gotoAndStop(4);
}
}
}
}
on (release) {
if ((!this._currentframe) == 1) {
if (_root.playergo == false) {
playerchosen = true;
}
}
}
onClipEvent (enterFrame) {
if ((!this._currentframe) == 1) {
if (playerchosen == true) {
this.gotoAndStop(3);
_root.playergo = true;
}
}
}
Instance of Symbol 331 MovieClip in Symbol 2298 MovieClip Frame 2
onClipEvent (load) {
if (_root.characterunlocked >= 3) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
playerchosen = false;
}
on (rollOver) {
if ((!this._currentframe) == 1) {
if (_root.playergo == false) {
if (playerchosen == false) {
this.gotoAndStop(3);
_root.player1char = 8;
}
}
}
}
on (rollOut) {
if ((!this._currentframe) == 1) {
if (_root.playergo == false) {
if (playerchosen == false) {
this.gotoAndStop(2);
}
}
}
}
on (press) {
if ((!this._currentframe) == 1) {
if (_root.playergo == false) {
if (playerchosen == false) {
this.gotoAndStop(4);
}
}
}
}
on (release) {
if ((!this._currentframe) == 1) {
if (_root.playergo == false) {
playerchosen = true;
}
}
}
onClipEvent (enterFrame) {
if ((!this._currentframe) == 1) {
if (playerchosen == true) {
this.gotoAndStop(3);
_root.playergo = true;
}
}
}
Instance of Symbol 331 MovieClip in Symbol 2298 MovieClip Frame 2
onClipEvent (load) {
if (_root.characterunlocked >= 4) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
playerchosen = false;
}
on (rollOver) {
if ((!this._currentframe) == 1) {
if (_root.playergo == false) {
if (playerchosen == false) {
this.gotoAndStop(3);
_root.player1char = 6;
}
}
}
}
on (rollOut) {
if ((!this._currentframe) == 1) {
if (_root.playergo == false) {
if (playerchosen == false) {
this.gotoAndStop(2);
}
}
}
}
on (press) {
if ((!this._currentframe) == 1) {
if (_root.playergo == false) {
if (playerchosen == false) {
this.gotoAndStop(4);
}
}
}
}
on (release) {
if ((!this._currentframe) == 1) {
if (_root.playergo == false) {
playerchosen = true;
}
}
}
onClipEvent (enterFrame) {
if ((!this._currentframe) == 1) {
if (playerchosen == true) {
this.gotoAndStop(3);
_root.playergo = true;
}
}
}
Instance of Symbol 331 MovieClip in Symbol 2298 MovieClip Frame 2
onClipEvent (load) {
if (_root.characterunlocked >= 4) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
playerchosen = false;
}
on (rollOver) {
if ((!this._currentframe) == 1) {
if (_root.playergo == false) {
if (playerchosen == false) {
this.gotoAndStop(3);
_root.player1char = 7;
}
}
}
}
on (rollOut) {
if ((!this._currentframe) == 1) {
if (_root.playergo == false) {
if (playerchosen == false) {
this.gotoAndStop(2);
}
}
}
}
on (press) {
if ((!this._currentframe) == 1) {
if (_root.playergo == false) {
if (playerchosen == false) {
this.gotoAndStop(4);
}
}
}
}
on (release) {
if ((!this._currentframe) == 1) {
if (_root.playergo == false) {
playerchosen = true;
}
}
}
onClipEvent (enterFrame) {
if ((!this._currentframe) == 1) {
if (playerchosen == true) {
this.gotoAndStop(3);
_root.playergo = true;
}
}
}
Instance of Symbol 331 MovieClip in Symbol 2298 MovieClip Frame 2
onClipEvent (load) {
if (_root.characterunlocked >= 1) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
playerchosen = false;
}
on (rollOver) {
if ((!this._currentframe) == 1) {
if (_root.playergo == false) {
if (playerchosen == false) {
this.gotoAndStop(3);
_root.player1char = 5;
}
}
}
}
on (rollOut) {
if ((!this._currentframe) == 1) {
if (_root.playergo == false) {
if (playerchosen == false) {
this.gotoAndStop(2);
}
}
}
}
on (press) {
if ((!this._currentframe) == 1) {
if (_root.playergo == false) {
if (playerchosen == false) {
this.gotoAndStop(4);
}
}
}
}
on (release) {
if ((!this._currentframe) == 1) {
if (_root.playergo == false) {
playerchosen = true;
}
}
}
onClipEvent (enterFrame) {
if ((!this._currentframe) == 1) {
if (playerchosen == true) {
this.gotoAndStop(3);
_root.playergo = true;
}
}
}
Instance of Symbol 331 MovieClip in Symbol 2298 MovieClip Frame 2
onClipEvent (load) {
if (_root.characterunlocked >= 2) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
playerchosen = false;
}
on (rollOver) {
if ((!this._currentframe) == 1) {
if (_root.playergo == false) {
if (playerchosen == false) {
this.gotoAndStop(3);
_root.player1char = 6;
}
}
}
}
on (rollOut) {
if ((!this._currentframe) == 1) {
if (_root.playergo == false) {
if (playerchosen == false) {
this.gotoAndStop(2);
}
}
}
}
on (press) {
if ((!this._currentframe) == 1) {
if (_root.playergo == false) {
if (playerchosen == false) {
this.gotoAndStop(4);
}
}
}
}
on (release) {
if ((!this._currentframe) == 1) {
if (_root.playergo == false) {
playerchosen = true;
}
}
}
onClipEvent (enterFrame) {
if ((!this._currentframe) == 1) {
if (playerchosen == true) {
this.gotoAndStop(3);
_root.playergo = true;
}
}
}
Instance of Symbol 331 MovieClip in Symbol 2298 MovieClip Frame 2
onClipEvent (load) {
if (_root.characterunlocked >= 2) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
playerchosen = false;
}
on (rollOver) {
if ((!this._currentframe) == 1) {
if (_root.playergo == false) {
if (playerchosen == false) {
this.gotoAndStop(3);
_root.player1char = 7;
}
}
}
}
on (rollOut) {
if ((!this._currentframe) == 1) {
if (_root.playergo == false) {
if (playerchosen == false) {
this.gotoAndStop(2);
}
}
}
}
on (press) {
if ((!this._currentframe) == 1) {
if (_root.playergo == false) {
if (playerchosen == false) {
this.gotoAndStop(4);
}
}
}
}
on (release) {
if ((!this._currentframe) == 1) {
if (_root.playergo == false) {
playerchosen = true;
}
}
}
onClipEvent (enterFrame) {
if ((!this._currentframe) == 1) {
if (playerchosen == true) {
this.gotoAndStop(3);
_root.playergo = true;
}
}
}
Symbol 2298 MovieClip Frame 51
stop();
Symbol 2299 MovieClip Frame 1
stop();
Symbol 2299 MovieClip Frame 2
stop();
Symbol 2299 MovieClip Frame 3
stop();
Symbol 2299 MovieClip Frame 4
stop();
Symbol 2299 MovieClip Frame 5
stop();
Symbol 2299 MovieClip Frame 6
stop();
Symbol 2299 MovieClip Frame 7
stop();
Symbol 2299 MovieClip Frame 8
stop();
Instance of Symbol 545 MovieClip in Symbol 2300 MovieClip Frame 1
onClipEvent (enterFrame) {
this._x = _parent.char._x;
this._y = -18.5;
this._xscale = _parent.char._xscale;
}
Instance of Symbol 2299 MovieClip "char" in Symbol 2300 MovieClip Frame 1
onClipEvent (load) {
runspeed = 0;
jump = false;
jumpspeed = 25;
jumpattack = true;
airhit = false;
this._xscale = -100;
runornot = 0;
jumpornot = 0;
runstop = 0;
run = false;
attackground = 0;
attackpause = false;
hurt = false;
duck = false;
blockornot = 0;
block = false;
}
onClipEvent (enterFrame) {
if (_root.gameplay == true) {
if (_root.gameover == false) {
if (_root.difficulty == 1) {
duck = false;
}
this._x = this._x + runspeed;
if (hurt == true) {
if (block == false) {
if (airhit == false) {
if (duck == false) {
this.gotoAndStop("hurt");
} else {
this.gotoAndStop("duckhurt");
}
}
}
if (jump == true) {
airhit = true;
}
timer++;
if (timer == 1) {
if (jump == true) {
if (jumpspeed < 0) {
jumpspeed = jumpspeed * -1;
}
}
}
if (timer > 10) {
if (jump == false) {
if (runspeed < 0) {
runspeed = runspeed + 1;
} else if (runspeed > 0) {
runspeed = runspeed - 1;
}
}
} else {
if ((_root.player2._x + this._x) < (_root.player1._x + _root.player1.char._x)) {
runspeed = -8;
}
if ((_root.player2._x + this._x) > (_root.player1._x + _root.player1.char._x)) {
runspeed = 8;
}
}
if (block == false) {
if (((timer >= 1) && (timer <= 4)) || ((timer >= 11) && (timer <= 14))) {
this._alpha = 0;
}
if (((timer >= 5) && (timer <= 10)) || ((timer >= 15) && (timer <= 19))) {
this._alpha = 100;
}
}
if (timer == 20) {
if (jump == false) {
if (duck == true) {
this.gotoAndStop("duck");
} else if (run == true) {
this.gotoAndStop("run");
} else {
this.gotoAndStop("idle");
}
}
hurt = false;
}
}
if (hurt == false) {
if (this._currentframe == 1) {
duck = false;
}
if (this._currentframe < 1) {
attackpause = false;
}
if (_root.player1.char.attack.hurtrect.hitTest(this.hitrect)) {
if (jump == false) {
blockornot = random(100) + 1;
if (blockornot < 20) {
block = true;
} else {
block = false;
}
if (block == true) {
_root.block.start(0, 1);
_root.health2away.text = 1;
if (duck == true) {
this.gotoAndStop("duckblock");
} else {
this.gotoAndStop("block");
}
}
}
if (block == false) {
if (airhit == false) {
hurtsfx = random(4) + 1;
_root["hurt" + hurtsfx].start(0, 1);
_root.health2away.text = 5;
if (duck == false) {
this.gotoAndStop("hurt");
} else {
this.gotoAndStop("duckhurt");
}
}
}
if (airhit == false) {
hurt = true;
}
}
timer = 0;
if (jump == false) {
if (attackpause == true) {
attackground = 0;
duckattack = 0;
}
jumpattack = true;
airhit = false;
if ((_root.player2._x + this._x) < (_root.player1._x + _root.player1.char._x)) {
this._xscale = 100;
}
if ((_root.player2._x + this._x) > (_root.player1._x + _root.player1.char._x)) {
this._xscale = -100;
}
if (((run == false) && (jump == false)) && (this._currentframe < 4)) {
this.gotoAndStop("idle");
}
tx = _root.player2._x + this._x;
mxr = _root.player1._x + _root.player1.char._x;
rx = mxr - tx;
if ((this.hitTest(_root.player1.char) && (_root.player1.char._currentframe < 4)) && ((!this._currentframe) == 4)) {
this.gotoAndStop("idle");
}
if (this._xscale == -100) {
if (rx > -100) {
run = false;
} else {
attackpause = false;
duck = false;
}
} else if (rx < 100) {
run = false;
} else {
attackpause = false;
duck = false;
}
if (run == false) {
runspeed = 0;
runstop = 0;
if (this._currentframe == 1) {
runornot = random(1000) + 1;
if (runornot < rx) {
if (this._xscale == 100) {
run = true;
this.gotoAndStop(2);
}
}
if (runornot < (-rx)) {
if (this._xscale == -100) {
run = true;
this.gotoAndStop(2);
}
}
}
}
if (run == true) {
if (!this.hitTest(_root.player1.char.hitrect)) {
runstop = random(1000) + 1;
if (this._xscale == -100) {
if (runstop < ((-rx) / 5)) {
run = false;
}
runspeed = -5;
}
if (this._xscale == 100) {
if (runstop < (rx / 5)) {
run = false;
}
runspeed = 5;
}
}
}
if (this.hitrect.hitTest(_root.player1.char.hitrect)) {
if (this._xscale == -100) {
if (!Key.isDown(_root.leftbutton)) {
if (run == true) {
if (!Key.isDown(_root.rightbutton)) {
runspeed = -4;
} else {
runspeed = 0;
}
}
if (run == false) {
if (!Key.isDown(_root.rightbutton)) {
runspeed = 0;
} else {
runspeed = 4;
}
}
}
}
if (this._xscale == 100) {
if (!Key.isDown(_root.rightbutton)) {
if (run == true) {
if (!Key.isDown(_root.leftbutton)) {
runspeed = 4;
} else {
runspeed = 0;
}
}
if (run == false) {
if (!Key.isDown(_root.leftbutton)) {
runspeed = 0;
} else {
runspeed = -4;
}
}
}
}
}
jumpspeed = 25;
this._y = 0;
if (this._currentframe < 5) {
jumpornot = random(997) + 1;
}
if ((rx > -100) || (rx < 100)) {
if (jumpornot >= 980) {
_root.jump.start(0, 1);
jump = true;
runspeed = (random(10) * this._xscale) / 100;
this.gotoAndStop("jump");
}
if ((jumpornot >= 900) && (_root.player1.char._currentframe == 4)) {
_root.jump.start(0, 1);
jump = true;
runspeed = (random(10) * this._xscale) / 100;
this.gotoAndStop("jump");
}
}
}
}
if (jump == true) {
block = false;
if (jumpspeed < 0) {
if (_root.player1.char._currentframe < 4) {
if (this.hitrect.hitTest(_root.player1.char.hitrect)) {
if ((_root.player1._x + _root.player1.char._x) < (_root.player2._x + this._x)) {
runspeed = 9;
if (this._xscale == -100) {
_root.player1.char.runspeed = -5;
}
}
if ((_root.player1._x + _root.player1.char._x) > (_root.player2._x + this._x)) {
runspeed = -9;
if (this._xscale == 100) {
_root.player1.char.runspeed = 5;
}
}
}
}
}
this._y = this._y - jumpspeed;
jumpspeed = jumpspeed - 2;
if (this._y >= 0) {
_root.land.start(0, 1);
jump = false;
jumpornot = 30;
if (run == true) {
this.gotoAndStop("run");
} else {
this.gotoAndStop("idle");
}
}
}
if (this.hitTest(_root.side1) && (runspeed < 0)) {
runspeed = 0;
}
if (this.hitTest(_root.side2) && (runspeed > 0)) {
runspeed = 0;
}
if (run == false) {
if (runspeed > 0) {
runspeed--;
}
if (runspeed < 0) {
runspeed++;
}
}
}
if (_root.gameover == true) {
if (jump == true) {
this._y = this._y - jumpspeed;
jumpspeed = jumpspeed - 2;
if (this._y >= 0) {
this.gotoAndStop("idle");
jump = false;
}
}
if ((this._currentframe > 1) && (this._currentframe < 7)) {
this.gotoAndStop("idle");
}
this._alpha = 100;
if (jump == false) {
if (_root.life2.text <= 0) {
this.gotoAndStop("death");
}
if (_root.life1.text <= 0) {
this.gotoAndStop("win");
}
}
}
}
}
Symbol 2319 Button
on (release) {
_root.blackout.play();
}