Frame 1 (8 B)
stop();
Frame 2 (828 B)
score = 0;
supermode = 0;
limit = 2;
_quality = "MEDIUM";
stop();
i = 0;
while (i < 15) {
drol = _root.attachMovie("drol", "drol" + i, i + 20);
drol._x = random(400);
drol._y = -35 - (random(35) * -1);
drol.spd = random(15) + 5;
drol.gotoAndStop(random(4) + 1);
drol._width = random(30) + 20;
drol._height = random(30) + 20;
drol.onEnterFrame = function () {
if (this.hitTest(_root.man)) {
if (_root.supermode == 0) {
_root.play();
} else {
this._y = this._y + 500;
}
}
this._y = this._y + this.spd;
if (this._y > 418) {
this._y = -35 - (random(35) * -1);
this._x = random(400);
this.spd = random(20) + 5;
this.gotoAndStop(random(4) + 1);
this._width = random(30) + 20;
this._height = random(30) + 20;
_root.score++;
}
};
i++;
}
Instance of Symbol 21 MovieClip "man" in Frame 2 (648 B)
onClipEvent (load) {
nieuw = (_root.score + random(40)) + 20;
score = 0;
}
onClipEvent (enterFrame) {
if (nieuw < (_root.score - score)) {
score = _root.score;
_root.limit = _root.limit + 1;
nieuw = (_root.score + random(40)) + 20;
}
this._x = _root._xmouse;
if (_root.limit > 0) {
if (Key.isDown(32)) {
if (_root.supermode == 0) {
_root.supermode = 1;
_root.limit = _root.limit - 1;
this.gotoAndPlay(2);
}
}
} else {
this.gotoAndStop(0);
}
this._y = _root._ymouse;
if (_x < 0) {
_x = 0;
}
if (_x > 400) {
_x = 400;
}
if (_y < 0) {
_y = 0;
}
if (_y > 400) {
_y = 400;
}
}
Instance of Symbol 23 MovieClip "balk" in Frame 2 (101 B)
onClipEvent (enterFrame) {
this._width = ((_root.score - _root.man.score) / _root.man.nieuw) * 27;
}
Frame 3 (92 B)
i = 0;
while (i < 15) {
drol = _root.attachMovie("niks", drol + i, i + 20);
i++;
}
Frame 4 (43 B)
shit.gotoAndStop(random(4) + 1);
stop();
Symbol 14 Button (23 B)
on (press) {
play();
}
Symbol 21 MovieClip Frame 1 (30 B)
stop();
_root.supermode = 0;
Symbol 21 MovieClip Frame 2 (21 B)
_root.supermode = 1;
Symbol 34 Button (23 B)
on (press) {
play();
}