Frame 1
stop();
_root.spielername = "";
_root.email = "";
_root.distanz = 0;
_root.distanzanzeige = "";
_root.crash = 1;
_root.bitteregistrieren = 0;
Frame 2
myObjA = new Object();
myObjA.onKeyDown = function () {
if (Key.getCode() == 37) {
_root.nachlinks = 1;
}
if (Key.getCode() == 39) {
_root.nachrechts = 1;
}
if (Key.getCode() == 38) {
_root.gibgas = 1;
if (((_root.jump == 0) && (_root.down == 0)) && (_root.crash == 0)) {
_root.jump = 1;
_root.skaterin.skaterin.gotoAndPlay("jump");
}
}
if (Key.getCode() == 40) {
_root.gibgas = 1;
if (((_root.down == 0) && (_root.jump == 0)) && (_root.crash == 0)) {
_root.down = 1;
_root.skaterin.skaterin.gotoAndPlay("down");
}
}
};
myObjA.onKeyUp = function () {
if (Key.getCode() == 37) {
_root.nachlinks = 0;
}
if (Key.getCode() == 39) {
_root.nachrechts = 0;
}
};
Key.addListener(myObjA);
looper = new Sound();
looper.attachSound("looper");
angeben = new Sound();
angeben.attachSound("angeben");
sturz = new Sound();
sturz.attachSound("sturz");
woosh = new Sound();
woosh.attachSound("woosh");
traraa = new Sound();
traraa.attachSound("traraa");
pling = new Sound();
pling.attachSound("pling");
_root.soundon = 1;
_root.musikon = 1;
_root.soundvolume = 100;
_root.soundtrack = random(5) + 1;
_root.speed = 0;
_root.jump = 0;
_root.down = 0;
_root.starten = 0;
_root.lives = 3;
stop();
Instance of Symbol 14 MovieClip in Frame 2
onClipEvent (enterFrame) {
_root.aktionen();
}
Instance of Symbol 20 MovieClip "strasse" in Frame 2
onClipEvent (load) {
function crash() {
_root.crash++;
_root.starten = 0;
}
_root.skaterpos = 0;
_root.bogen = 0;
_root.crash = 0;
_root.skaterin._xscale = (_root.skaterin._yscale = 50);
}
onClipEvent (enterFrame) {
_root.skaterin._xscale = (_root.skaterin._yscale = _root.skaterin._yscale + (_root.speed * 0.005));
_root.distanz = _root.distanz + (0.005 * _root.speed);
_root.distanzanzeige = (int(_root.distanz * 100) / 100) + " meters";
_root.enddistanz = int(_root.distanz * 100) / 100;
this.strassenprofil._yscale = this.strassenprofil._yscale - (((_root.speed * 2) * this.strassenprofil._yscale) / 390);
if (this.strassenprofil._yscale < 100) {
this.strassenprofil._yscale = this.strassenprofil._yscale + 300;
}
if (_root.startziel._yscale > 2) {
_root.startziel._yscale = (_root.startziel._xscale = _root.startziel._xscale - ((_root.speed * _root.startziel._yscale) / 390));
_root.startziel._alpha = ((_root.startziel._yscale + _root.startziel._yscale) + _root.startziel._yscale) - 10;
}
_root.haeuser._yscale = (_root.haeuser._xscale = _root.haeuser._xscale - ((_root.speed * _root.haeuser._yscale) / 390));
if (_root.haeuser._yscale < 100) {
_root.haeuser._yscale = (_root.haeuser._xscale = _root.haeuser._xscale + 250);
}
_root.hindernis1._yscale = (_root.hindernis1._xscale = _root.hindernis1._xscale - ((_root.speed * _root.hindernis1._yscale) / 200));
if (_root.hindernis1._yscale < ((2 * _root.skaterin._xscale) - 20)) {
_root.hindernis1.swapDepths(_root.hindernis1._yscale / 10);
}
if (_root.hindernis1._yscale < 5) {
_root.hindernis1._yscale = (_root.hindernis1._xscale = 250);
_root.hindernis1.gotoAndStop(random(20) + 1);
if (_root.hindernis2.getDepth() == 70) {
_root.hindernis2.swapDepths(60);
}
_root.hindernis1.swapDepths(70);
_root.speed = _root.speed + 0.3;
}
_root.hindernis2._yscale = (_root.hindernis2._xscale = _root.hindernis2._xscale - ((_root.speed * _root.hindernis2._yscale) / 200));
if (_root.hindernis2._yscale < ((2 * _root.skaterin._xscale) - 20)) {
_root.hindernis2.swapDepths(_root.hindernis2._yscale / 10);
}
if (_root.hindernis2._yscale < 5) {
_root.hindernis2._yscale = (_root.hindernis2._xscale = 250);
_root.hindernis2.gotoAndStop(random(20) + 1);
_root.hindernis2.swapDepths(70);
_root.speed = _root.speed + 0.3;
}
if ((_root.hindernis1._yscale > (((2 * _root.skaterin._xscale) - 20) - (10 + (_root.skaterin._yscale / 7)))) && (_root.hindernis1._yscale < (((2 * _root.skaterin._xscale) - 20) + (10 + (_root.skaterin._yscale / 7))))) {
if (_root.hindernis1.hitter1.hitTest(_root.skaterin.skaterin.hitter)) {
crash();
_root.skaterin.gotoAndPlay("crashunten");
_root.hindernis1.swapDepths(40);
}
if (_root.hindernis1.hitter2.hitTest(_root.skaterin.skaterin.hitter)) {
crash();
_root.skaterin.gotoAndPlay("crashunten");
_root.hindernis1.swapDepths(40);
}
if (_root.hindernis1.jumper1.hitTest(_root.skaterin.skaterin.hitter) && (_root.jump == 0)) {
crash();
_root.skaterin.gotoAndPlay("crashunten");
_root.hindernis1.swapDepths(40);
}
if (_root.hindernis1.jumper2.hitTest(_root.skaterin.skaterin.hitter) && (_root.jump == 0)) {
crash();
_root.skaterin.gotoAndPlay("crashunten");
_root.hindernis1.swapDepths(40);
}
if (_root.hindernis1.down1.hitTest(_root.skaterin.skaterin.hitter) && (_root.down == 0)) {
crash();
_root.skaterin.gotoAndPlay("crashoben");
}
if (_root.hindernis1.down2.hitTest(_root.skaterin.skaterin.hitter) && (_root.down == 0)) {
crash();
_root.skaterin.gotoAndPlay("crashoben");
}
}
if ((_root.hindernis2._yscale > (((2 * _root.skaterin._xscale) - 20) - (10 + (_root.skaterin._yscale / 7)))) && (_root.hindernis2._yscale < (((2 * _root.skaterin._xscale) - 20) + (10 + (_root.skaterin._yscale / 7))))) {
if (_root.hindernis2.hitter1.hitTest(_root.skaterin.skaterin.hitter)) {
crash();
_root.skaterin.gotoAndPlay("crashunten");
_root.hindernis2.swapDepths(40);
}
if (_root.hindernis2.hitter2.hitTest(_root.skaterin.skaterin.hitter)) {
crash();
_root.skaterin.gotoAndPlay("crashunten");
_root.hindernis2.swapDepths(40);
}
if (_root.hindernis2.jumper1.hitTest(_root.skaterin.skaterin.hitter) && (_root.jump == 0)) {
crash();
_root.skaterin.gotoAndPlay("crashunten");
_root.hindernis2.swapDepths(40);
}
if (_root.hindernis2.jumper2.hitTest(_root.skaterin.skaterin.hitter) && (_root.jump == 0)) {
crash();
_root.skaterin.gotoAndPlay("crashunten");
_root.hindernis2.swapDepths(40);
}
if (_root.hindernis2.down1.hitTest(_root.skaterin.skaterin.hitter) && (_root.down == 0)) {
crash();
_root.skaterin.gotoAndPlay("crashoben");
}
if (_root.hindernis2.down2.hitTest(_root.skaterin.skaterin.hitter) && (_root.down == 0)) {
crash();
_root.skaterin.gotoAndPlay("crashoben");
}
}
}
Instance of Symbol 48 MovieClip "hindernis1" in Frame 2
onClipEvent (load) {
this.gotoAndStop(21);
}
Instance of Symbol 48 MovieClip "hindernis2" in Frame 2
onClipEvent (load) {
this.gotoAndStop(21);
}
Instance of Symbol 56 MovieClip "gebaeude1" in Frame 2
onClipEvent (enterFrame) {
_root.gebaeudeRechtsskalieren(this);
}
Instance of Symbol 56 MovieClip "gebaeudeLi1" in Frame 2
onClipEvent (enterFrame) {
_root.gebaeudeLinksskalieren(this);
}
Instance of Symbol 125 MovieClip "skaterin" in Frame 2
onClipEvent (enterFrame) {
if (_root.starten == 1) {
if (_root.nachlinks == 1) {
if ((_root.jump == 0) && (_root.down == 0)) {
this._x = this._x - ((25 * _root.speed) / 20);
if (this._x < (35 + (115 - ((this._xscale - 50) * 2.3)))) {
this._x = 35 + (115 - ((this._xscale - 50) * 2.3));
}
if (this._x < 35) {
this._x = 35;
}
}
}
if (_root.nachrechts == 1) {
if ((_root.jump == 0) && (_root.down == 0)) {
this._x = this._x + ((25 * _root.speed) / 20);
if (this._x > (515 - (115 - ((this._xscale - 50) * 2.3)))) {
this._x = 515 - (115 - ((this._xscale - 50) * 2.3));
}
if (this._x > 515) {
this._x = 515;
}
}
}
if (_root.speed < 10) {
_root.speed++;
}
_root.skaterin.swapDepths(50);
} else if (_root.speed > 0) {
_root.speed--;
if (_root.speed < 0) {
_root.speed = 0;
}
}
}
Frame 3
gotoAndStop (2);
Symbol 11 MovieClip Frame 1
_root.geladen = int(100 / (_root.getBytesTotal() / _root.getBytesLoaded()));
if (_root.getBytesTotal() == _root.getBytesLoaded()) {
gotoAndPlay (3);
}
Instance of Symbol 10 MovieClip in Symbol 11 MovieClip Frame 1
onClipEvent (enterFrame) {
this._xscale = int(100 / (_root.getBytesTotal() / _root.getBytesLoaded()));
}
Symbol 11 MovieClip Frame 2
gotoAndPlay (1);
Symbol 11 MovieClip Frame 3
_level0.play();
Symbol 48 MovieClip Frame 1
swapper = 0;
Symbol 48 MovieClip Frame 2
swapper = 0;
Symbol 48 MovieClip Frame 3
swapper = 0;
Symbol 48 MovieClip Frame 4
swapper = 0;
Symbol 48 MovieClip Frame 5
swapper = 0;
Symbol 48 MovieClip Frame 6
swapper = 0;
Symbol 48 MovieClip Frame 7
swapper = 0;
Symbol 48 MovieClip Frame 8
swapper = 0;
Symbol 48 MovieClip Frame 9
swapper = 0;
Symbol 48 MovieClip Frame 10
swapper = 0;
Symbol 48 MovieClip Frame 11
swapper = 0;
Symbol 48 MovieClip Frame 12
swapper = 0;
Symbol 48 MovieClip Frame 13
swapper = 0;
Symbol 48 MovieClip Frame 14
swapper = 0;
Symbol 48 MovieClip Frame 15
swapper = 0;
Symbol 48 MovieClip Frame 16
swapper = 0;
Symbol 48 MovieClip Frame 17
swapper = 0;
Symbol 48 MovieClip Frame 18
swapper = 1;
Symbol 48 MovieClip Frame 19
swapper = 1;
Symbol 48 MovieClip Frame 20
swapper = 1;
Symbol 56 MovieClip Frame 1
stop();
Symbol 56 MovieClip Frame 2
stop();
Symbol 56 MovieClip Frame 3
stop();
Symbol 56 MovieClip Frame 4
stop();
Symbol 56 MovieClip Frame 5
stop();
Symbol 56 MovieClip Frame 6
stop();
Symbol 56 MovieClip Frame 7
stop();
Symbol 59 MovieClip Frame 1
stop();
Symbol 59 MovieClip Frame 2
stop();
Symbol 124 MovieClip Frame 25
gotoAndPlay (1);
Symbol 124 MovieClip Frame 39
_root.jump = 0;
gotoAndPlay (1);
Symbol 124 MovieClip Frame 51
_root.down = 0;
gotoAndPlay (1);
Symbol 124 MovieClip Frame 58
stop();
Symbol 124 MovieClip Frame 64
stop();
Symbol 125 MovieClip Frame 1
skaterin.gotoAndPlay(1);
stop();
Symbol 125 MovieClip Frame 2
stopAllSounds();
if (_root.soundon == 1) {
_root.sturz.setVolume(_root.soundvolume);
_root.sturz.start(0, 1);
}
skaterin.gotoAndPlay("crashunten");
Symbol 125 MovieClip Frame 40
_root.lives--;
if (_root.lives <= 0) {
_root.anzeigetafel.play();
_root.hindernis1.removeMovieClip();
_root.hindernis2.removeMovieClip();
_root.skaterin.removeMovieClip();
stop();
} else {
_root.strasse.strassenprofil._yscale = _root.strasse.strassenprofil._yscale - ((60 * _root.strasse.strassenprofil._yscale) / 390);
if (_root.strasse.strassenprofil._yscale < 100) {
_root.strasse.strassenprofil._yscale = _root.strasse.strassenprofil._yscale + 300;
}
if (_root.startziel._yscale > 2) {
_root.startziel._yscale = (_root.startziel._xscale = _root.startziel._xscale - ((30 * _root.startziel._yscale) / 390));
_root.startziel._alpha = ((_root.startziel._yscale + _root.startziel._yscale) + _root.startziel._yscale) - 10;
}
_root.haeuser._yscale = (_root.haeuser._xscale = _root.haeuser._xscale - ((30 * _root.haeuser._yscale) / 390));
if (_root.haeuser._yscale < 100) {
_root.haeuser._yscale = (_root.haeuser._xscale = _root.haeuser._xscale + 250);
}
_root.hindernis1._yscale = (_root.hindernis1._xscale = _root.hindernis1._xscale - ((30 * _root.hindernis1._yscale) / 200));
if (_root.hindernis1._yscale < ((2 * _root.skaterin._xscale) - 20)) {
_root.hindernis1.swapDepths(_root.hindernis1._yscale / 10);
}
if (_root.hindernis1._yscale < 5) {
_root.hindernis1._yscale = (_root.hindernis1._xscale = 250);
_root.hindernis1.gotoAndStop(random(20) + 1);
if (_root.hindernis2.getDepth() == 70) {
_root.hindernis2.swapDepths(60);
}
_root.hindernis1.swapDepths(70);
}
_root.hindernis2._yscale = (_root.hindernis2._xscale = _root.hindernis2._xscale - ((30 * _root.hindernis2._yscale) / 200));
if (_root.hindernis2._yscale < ((2 * _root.skaterin._xscale) - 20)) {
_root.hindernis2.swapDepths(_root.hindernis2._yscale / 10);
}
if (_root.hindernis2._yscale < 5) {
_root.hindernis2._yscale = (_root.hindernis2._xscale = 250);
_root.hindernis2.gotoAndStop(random(20) + 1);
_root.hindernis2.swapDepths(70);
}
}
Symbol 125 MovieClip Frame 41
_root.strasse.strassenprofil._yscale = _root.strasse.strassenprofil._yscale - ((60 * _root.strasse.strassenprofil._yscale) / 390);
if (_root.strasse.strassenprofil._yscale < 100) {
_root.strasse.strassenprofil._yscale = _root.strasse.strassenprofil._yscale + 300;
}
if (_root.startziel._yscale > 2) {
_root.startziel._yscale = (_root.startziel._xscale = _root.startziel._xscale - ((30 * _root.startziel._yscale) / 390));
_root.startziel._alpha = ((_root.startziel._yscale + _root.startziel._yscale) + _root.startziel._yscale) - 10;
}
_root.haeuser._yscale = (_root.haeuser._xscale = _root.haeuser._xscale - ((30 * _root.haeuser._yscale) / 390));
if (_root.haeuser._yscale < 100) {
_root.haeuser._yscale = (_root.haeuser._xscale = _root.haeuser._xscale + 250);
}
_root.hindernis1._yscale = (_root.hindernis1._xscale = _root.hindernis1._xscale - ((30 * _root.hindernis1._yscale) / 200));
if (_root.hindernis1._yscale < ((2 * _root.skaterin._xscale) - 20)) {
_root.hindernis1.swapDepths(_root.hindernis1._yscale / 10);
}
if (_root.hindernis1._yscale < 5) {
_root.hindernis1._yscale = (_root.hindernis1._xscale = 250);
_root.hindernis1.gotoAndStop(random(20) + 1);
if (_root.hindernis2.getDepth() == 70) {
_root.hindernis2.swapDepths(60);
}
_root.hindernis1.swapDepths(70);
}
_root.hindernis2._yscale = (_root.hindernis2._xscale = _root.hindernis2._xscale - ((30 * _root.hindernis2._yscale) / 200));
if (_root.hindernis2._yscale < ((2 * _root.skaterin._xscale) - 20)) {
_root.hindernis2.swapDepths(_root.hindernis2._yscale / 10);
}
if (_root.hindernis2._yscale < 5) {
_root.hindernis2._yscale = (_root.hindernis2._xscale = 250);
_root.hindernis2.gotoAndStop(random(20) + 1);
_root.hindernis2.swapDepths(70);
}
Symbol 125 MovieClip Frame 42
_root.strasse.strassenprofil._yscale = _root.strasse.strassenprofil._yscale - ((60 * _root.strasse.strassenprofil._yscale) / 390);
if (_root.strasse.strassenprofil._yscale < 100) {
_root.strasse.strassenprofil._yscale = _root.strasse.strassenprofil._yscale + 300;
}
if (_root.startziel._yscale > 2) {
_root.startziel._yscale = (_root.startziel._xscale = _root.startziel._xscale - ((30 * _root.startziel._yscale) / 390));
_root.startziel._alpha = ((_root.startziel._yscale + _root.startziel._yscale) + _root.startziel._yscale) - 10;
}
_root.haeuser._yscale = (_root.haeuser._xscale = _root.haeuser._xscale - ((30 * _root.haeuser._yscale) / 390));
if (_root.haeuser._yscale < 100) {
_root.haeuser._yscale = (_root.haeuser._xscale = _root.haeuser._xscale + 250);
}
_root.hindernis1._yscale = (_root.hindernis1._xscale = _root.hindernis1._xscale - ((30 * _root.hindernis1._yscale) / 200));
if (_root.hindernis1._yscale < ((2 * _root.skaterin._xscale) - 20)) {
_root.hindernis1.swapDepths(_root.hindernis1._yscale / 10);
}
if (_root.hindernis1._yscale < 5) {
_root.hindernis1._yscale = (_root.hindernis1._xscale = 250);
_root.hindernis1.gotoAndStop(random(20) + 1);
if (_root.hindernis2.getDepth() == 70) {
_root.hindernis2.swapDepths(60);
}
_root.hindernis1.swapDepths(70);
}
_root.hindernis2._yscale = (_root.hindernis2._xscale = _root.hindernis2._xscale - ((30 * _root.hindernis2._yscale) / 200));
if (_root.hindernis2._yscale < ((2 * _root.skaterin._xscale) - 20)) {
_root.hindernis2.swapDepths(_root.hindernis2._yscale / 10);
}
if (_root.hindernis2._yscale < 5) {
_root.hindernis2._yscale = (_root.hindernis2._xscale = 250);
_root.hindernis2.gotoAndStop(random(20) + 1);
_root.hindernis2.swapDepths(70);
}
Symbol 125 MovieClip Frame 43
_root.strasse.strassenprofil._yscale = _root.strasse.strassenprofil._yscale - ((60 * _root.strasse.strassenprofil._yscale) / 390);
if (_root.strasse.strassenprofil._yscale < 100) {
_root.strasse.strassenprofil._yscale = _root.strasse.strassenprofil._yscale + 300;
}
if (_root.startziel._yscale > 2) {
_root.startziel._yscale = (_root.startziel._xscale = _root.startziel._xscale - ((30 * _root.startziel._yscale) / 390));
_root.startziel._alpha = ((_root.startziel._yscale + _root.startziel._yscale) + _root.startziel._yscale) - 10;
}
_root.haeuser._yscale = (_root.haeuser._xscale = _root.haeuser._xscale - ((30 * _root.haeuser._yscale) / 390));
if (_root.haeuser._yscale < 100) {
_root.haeuser._yscale = (_root.haeuser._xscale = _root.haeuser._xscale + 250);
}
_root.hindernis1._yscale = (_root.hindernis1._xscale = _root.hindernis1._xscale - ((30 * _root.hindernis1._yscale) / 200));
if (_root.hindernis1._yscale < ((2 * _root.skaterin._xscale) - 20)) {
_root.hindernis1.swapDepths(_root.hindernis1._yscale / 10);
}
if (_root.hindernis1._yscale < 5) {
_root.hindernis1._yscale = (_root.hindernis1._xscale = 250);
_root.hindernis1.gotoAndStop(random(20) + 1);
if (_root.hindernis2.getDepth() == 70) {
_root.hindernis2.swapDepths(60);
}
_root.hindernis1.swapDepths(70);
}
_root.hindernis2._yscale = (_root.hindernis2._xscale = _root.hindernis2._xscale - ((30 * _root.hindernis2._yscale) / 200));
if (_root.hindernis2._yscale < ((2 * _root.skaterin._xscale) - 20)) {
_root.hindernis2.swapDepths(_root.hindernis2._yscale / 10);
}
if (_root.hindernis2._yscale < 5) {
_root.hindernis2._yscale = (_root.hindernis2._xscale = 250);
_root.hindernis2.gotoAndStop(random(20) + 1);
_root.hindernis2.swapDepths(70);
}
Symbol 125 MovieClip Frame 44
_root.strasse.strassenprofil._yscale = _root.strasse.strassenprofil._yscale - ((60 * _root.strasse.strassenprofil._yscale) / 390);
if (_root.strasse.strassenprofil._yscale < 100) {
_root.strasse.strassenprofil._yscale = _root.strasse.strassenprofil._yscale + 300;
}
if (_root.startziel._yscale > 2) {
_root.startziel._yscale = (_root.startziel._xscale = _root.startziel._xscale - ((30 * _root.startziel._yscale) / 390));
_root.startziel._alpha = ((_root.startziel._yscale + _root.startziel._yscale) + _root.startziel._yscale) - 10;
}
_root.haeuser._yscale = (_root.haeuser._xscale = _root.haeuser._xscale - ((30 * _root.haeuser._yscale) / 390));
if (_root.haeuser._yscale < 100) {
_root.haeuser._yscale = (_root.haeuser._xscale = _root.haeuser._xscale + 250);
}
_root.hindernis1._yscale = (_root.hindernis1._xscale = _root.hindernis1._xscale - ((30 * _root.hindernis1._yscale) / 200));
if (_root.hindernis1._yscale < ((2 * _root.skaterin._xscale) - 20)) {
_root.hindernis1.swapDepths(_root.hindernis1._yscale / 10);
}
if (_root.hindernis1._yscale < 5) {
_root.hindernis1._yscale = (_root.hindernis1._xscale = 250);
_root.hindernis1.gotoAndStop(random(20) + 1);
if (_root.hindernis2.getDepth() == 70) {
_root.hindernis2.swapDepths(60);
}
_root.hindernis1.swapDepths(70);
}
_root.hindernis2._yscale = (_root.hindernis2._xscale = _root.hindernis2._xscale - ((30 * _root.hindernis2._yscale) / 200));
if (_root.hindernis2._yscale < ((2 * _root.skaterin._xscale) - 20)) {
_root.hindernis2.swapDepths(_root.hindernis2._yscale / 10);
}
if (_root.hindernis2._yscale < 5) {
_root.hindernis2._yscale = (_root.hindernis2._xscale = 250);
_root.hindernis2.gotoAndStop(random(20) + 1);
_root.hindernis2.swapDepths(70);
}
_root.crash = 0;
_root.starten = 1;
_root.jump = 0;
_root.down = 0;
_root.skaterin._xscale = (_root.skaterin._yscale = 50);
if (_root.musikon == 1) {
_root.looper.setVolume(_root.soundvolume);
_root.looper.start(0, 10000);
}
gotoAndStop (1);
Symbol 125 MovieClip Frame 45
stopAllSounds();
if (_root.soundon == 1) {
_root.sturz.setVolume(_root.soundvolume);
_root.sturz.start(0, 1);
}
skaterin.gotoAndPlay("crashoben");
Symbol 125 MovieClip Frame 86
_root.lives--;
if (_root.lives <= 0) {
_root.anzeigetafel.play();
_root.hindernis1.removeMovieClip();
_root.hindernis2.removeMovieClip();
_root.skaterin.removeMovieClip();
stop();
} else {
_root.strasse.strassenprofil._yscale = _root.strasse.strassenprofil._yscale - ((60 * _root.strasse.strassenprofil._yscale) / 390);
if (_root.strasse.strassenprofil._yscale < 100) {
_root.strasse.strassenprofil._yscale = _root.strasse.strassenprofil._yscale + 300;
}
if (_root.startziel._yscale > 2) {
_root.startziel._yscale = (_root.startziel._xscale = _root.startziel._xscale - ((30 * _root.startziel._yscale) / 390));
_root.startziel._alpha = ((_root.startziel._yscale + _root.startziel._yscale) + _root.startziel._yscale) - 10;
}
_root.haeuser._yscale = (_root.haeuser._xscale = _root.haeuser._xscale - ((30 * _root.haeuser._yscale) / 390));
if (_root.haeuser._yscale < 100) {
_root.haeuser._yscale = (_root.haeuser._xscale = _root.haeuser._xscale + 250);
}
_root.hindernis1._yscale = (_root.hindernis1._xscale = _root.hindernis1._xscale - ((30 * _root.hindernis1._yscale) / 200));
if (_root.hindernis1._yscale < ((2 * _root.skaterin._xscale) - 20)) {
_root.hindernis1.swapDepths(_root.hindernis1._yscale / 10);
}
if (_root.hindernis1._yscale < 5) {
_root.hindernis1._yscale = (_root.hindernis1._xscale = 250);
_root.hindernis1.gotoAndStop(random(20) + 1);
if (_root.hindernis2.getDepth() == 70) {
_root.hindernis2.swapDepths(60);
}
_root.hindernis1.swapDepths(70);
}
_root.hindernis2._yscale = (_root.hindernis2._xscale = _root.hindernis2._xscale - ((30 * _root.hindernis2._yscale) / 200));
if (_root.hindernis2._yscale < ((2 * _root.skaterin._xscale) - 20)) {
_root.hindernis2.swapDepths(_root.hindernis2._yscale / 10);
}
if (_root.hindernis2._yscale < 5) {
_root.hindernis2._yscale = (_root.hindernis2._xscale = 250);
_root.hindernis2.gotoAndStop(random(20) + 1);
_root.hindernis2.swapDepths(70);
}
}
Symbol 125 MovieClip Frame 87
_root.strasse.strassenprofil._yscale = _root.strasse.strassenprofil._yscale - ((60 * _root.strasse.strassenprofil._yscale) / 390);
if (_root.strasse.strassenprofil._yscale < 100) {
_root.strasse.strassenprofil._yscale = _root.strasse.strassenprofil._yscale + 300;
}
if (_root.startziel._yscale > 2) {
_root.startziel._yscale = (_root.startziel._xscale = _root.startziel._xscale - ((30 * _root.startziel._yscale) / 390));
_root.startziel._alpha = ((_root.startziel._yscale + _root.startziel._yscale) + _root.startziel._yscale) - 10;
}
_root.haeuser._yscale = (_root.haeuser._xscale = _root.haeuser._xscale - ((30 * _root.haeuser._yscale) / 390));
if (_root.haeuser._yscale < 100) {
_root.haeuser._yscale = (_root.haeuser._xscale = _root.haeuser._xscale + 250);
}
_root.hindernis1._yscale = (_root.hindernis1._xscale = _root.hindernis1._xscale - ((30 * _root.hindernis1._yscale) / 200));
if (_root.hindernis1._yscale < ((2 * _root.skaterin._xscale) - 20)) {
_root.hindernis1.swapDepths(_root.hindernis1._yscale / 10);
}
if (_root.hindernis1._yscale < 5) {
_root.hindernis1._yscale = (_root.hindernis1._xscale = 250);
_root.hindernis1.gotoAndStop(random(20) + 1);
if (_root.hindernis2.getDepth() == 70) {
_root.hindernis2.swapDepths(60);
}
_root.hindernis1.swapDepths(70);
}
_root.hindernis2._yscale = (_root.hindernis2._xscale = _root.hindernis2._xscale - ((30 * _root.hindernis2._yscale) / 200));
if (_root.hindernis2._yscale < ((2 * _root.skaterin._xscale) - 20)) {
_root.hindernis2.swapDepths(_root.hindernis2._yscale / 10);
}
if (_root.hindernis2._yscale < 5) {
_root.hindernis2._yscale = (_root.hindernis2._xscale = 250);
_root.hindernis2.gotoAndStop(random(20) + 1);
_root.hindernis2.swapDepths(70);
}
Symbol 125 MovieClip Frame 88
_root.strasse.strassenprofil._yscale = _root.strasse.strassenprofil._yscale - ((60 * _root.strasse.strassenprofil._yscale) / 390);
if (_root.strasse.strassenprofil._yscale < 100) {
_root.strasse.strassenprofil._yscale = _root.strasse.strassenprofil._yscale + 300;
}
if (_root.startziel._yscale > 2) {
_root.startziel._yscale = (_root.startziel._xscale = _root.startziel._xscale - ((30 * _root.startziel._yscale) / 390));
_root.startziel._alpha = ((_root.startziel._yscale + _root.startziel._yscale) + _root.startziel._yscale) - 10;
}
_root.haeuser._yscale = (_root.haeuser._xscale = _root.haeuser._xscale - ((30 * _root.haeuser._yscale) / 390));
if (_root.haeuser._yscale < 100) {
_root.haeuser._yscale = (_root.haeuser._xscale = _root.haeuser._xscale + 250);
}
_root.hindernis1._yscale = (_root.hindernis1._xscale = _root.hindernis1._xscale - ((30 * _root.hindernis1._yscale) / 200));
if (_root.hindernis1._yscale < ((2 * _root.skaterin._xscale) - 20)) {
_root.hindernis1.swapDepths(_root.hindernis1._yscale / 10);
}
if (_root.hindernis1._yscale < 5) {
_root.hindernis1._yscale = (_root.hindernis1._xscale = 250);
_root.hindernis1.gotoAndStop(random(20) + 1);
if (_root.hindernis2.getDepth() == 70) {
_root.hindernis2.swapDepths(60);
}
_root.hindernis1.swapDepths(70);
}
_root.hindernis2._yscale = (_root.hindernis2._xscale = _root.hindernis2._xscale - ((30 * _root.hindernis2._yscale) / 200));
if (_root.hindernis2._yscale < ((2 * _root.skaterin._xscale) - 20)) {
_root.hindernis2.swapDepths(_root.hindernis2._yscale / 10);
}
if (_root.hindernis2._yscale < 5) {
_root.hindernis2._yscale = (_root.hindernis2._xscale = 250);
_root.hindernis2.gotoAndStop(random(20) + 1);
_root.hindernis2.swapDepths(70);
}
Symbol 125 MovieClip Frame 89
_root.strasse.strassenprofil._yscale = _root.strasse.strassenprofil._yscale - ((60 * _root.strasse.strassenprofil._yscale) / 390);
if (_root.strasse.strassenprofil._yscale < 100) {
_root.strasse.strassenprofil._yscale = _root.strasse.strassenprofil._yscale + 300;
}
if (_root.startziel._yscale > 2) {
_root.startziel._yscale = (_root.startziel._xscale = _root.startziel._xscale - ((30 * _root.startziel._yscale) / 390));
_root.startziel._alpha = ((_root.startziel._yscale + _root.startziel._yscale) + _root.startziel._yscale) - 10;
}
_root.haeuser._yscale = (_root.haeuser._xscale = _root.haeuser._xscale - ((30 * _root.haeuser._yscale) / 390));
if (_root.haeuser._yscale < 100) {
_root.haeuser._yscale = (_root.haeuser._xscale = _root.haeuser._xscale + 250);
}
_root.hindernis1._yscale = (_root.hindernis1._xscale = _root.hindernis1._xscale - ((30 * _root.hindernis1._yscale) / 200));
if (_root.hindernis1._yscale < ((2 * _root.skaterin._xscale) - 20)) {
_root.hindernis1.swapDepths(_root.hindernis1._yscale / 10);
}
if (_root.hindernis1._yscale < 5) {
_root.hindernis1._yscale = (_root.hindernis1._xscale = 250);
_root.hindernis1.gotoAndStop(random(20) + 1);
if (_root.hindernis2.getDepth() == 70) {
_root.hindernis2.swapDepths(60);
}
_root.hindernis1.swapDepths(70);
}
_root.hindernis2._yscale = (_root.hindernis2._xscale = _root.hindernis2._xscale - ((30 * _root.hindernis2._yscale) / 200));
if (_root.hindernis2._yscale < ((2 * _root.skaterin._xscale) - 20)) {
_root.hindernis2.swapDepths(_root.hindernis2._yscale / 10);
}
if (_root.hindernis2._yscale < 5) {
_root.hindernis2._yscale = (_root.hindernis2._xscale = 250);
_root.hindernis2.gotoAndStop(random(20) + 1);
_root.hindernis2.swapDepths(70);
}
Symbol 125 MovieClip Frame 90
_root.strasse.strassenprofil._yscale = _root.strasse.strassenprofil._yscale - ((60 * _root.strasse.strassenprofil._yscale) / 390);
if (_root.strasse.strassenprofil._yscale < 100) {
_root.strasse.strassenprofil._yscale = _root.strasse.strassenprofil._yscale + 300;
}
if (_root.startziel._yscale > 2) {
_root.startziel._yscale = (_root.startziel._xscale = _root.startziel._xscale - ((30 * _root.startziel._yscale) / 390));
_root.startziel._alpha = ((_root.startziel._yscale + _root.startziel._yscale) + _root.startziel._yscale) - 10;
}
_root.haeuser._yscale = (_root.haeuser._xscale = _root.haeuser._xscale - ((30 * _root.haeuser._yscale) / 390));
if (_root.haeuser._yscale < 100) {
_root.haeuser._yscale = (_root.haeuser._xscale = _root.haeuser._xscale + 250);
}
_root.hindernis1._yscale = (_root.hindernis1._xscale = _root.hindernis1._xscale - ((30 * _root.hindernis1._yscale) / 200));
if (_root.hindernis1._yscale < ((2 * _root.skaterin._xscale) - 20)) {
_root.hindernis1.swapDepths(_root.hindernis1._yscale / 10);
}
if (_root.hindernis1._yscale < 5) {
_root.hindernis1._yscale = (_root.hindernis1._xscale = 250);
_root.hindernis1.gotoAndStop(random(20) + 1);
if (_root.hindernis2.getDepth() == 70) {
_root.hindernis2.swapDepths(60);
}
_root.hindernis1.swapDepths(70);
}
_root.hindernis2._yscale = (_root.hindernis2._xscale = _root.hindernis2._xscale - ((30 * _root.hindernis2._yscale) / 200));
if (_root.hindernis2._yscale < ((2 * _root.skaterin._xscale) - 20)) {
_root.hindernis2.swapDepths(_root.hindernis2._yscale / 10);
}
if (_root.hindernis2._yscale < 5) {
_root.hindernis2._yscale = (_root.hindernis2._xscale = 250);
_root.hindernis2.gotoAndStop(random(20) + 1);
_root.hindernis2.swapDepths(70);
}
_root.crash = 0;
_root.starten = 1;
_root.jump = 0;
_root.down = 0;
_root.skaterin._xscale = (_root.skaterin._yscale = 50);
if (_root.musikon == 1) {
_root.looper.setVolume(_root.soundvolume);
_root.looper.start(0, 10000);
}
gotoAndStop (1);
Instance of Symbol 138 MovieClip in Symbol 143 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.lives == 3) {
this.gotoAndStop(1);
}
if (_root.lives == 2) {
this.gotoAndStop(2);
}
if (_root.lives == 1) {
this.gotoAndStop(3);
}
if (_root.lives == 0) {
this.gotoAndStop(4);
}
}
Symbol 144 MovieClip Frame 1
stop();
Symbol 144 MovieClip Frame 10
stop();
Symbol 149 MovieClip Frame 1
stop();
Symbol 166 Button
on (release) {
if (_root.musikon == 1) {
_root.looper.setVolume(_root.soundvolume);
_root.looper.start(0, 10000);
}
_root.distanz = 0;
_parent.play();
}
Symbol 169 Button
on (release) {
loadMovie ("interface.swf", _root);
}
Symbol 172 Button
on (release) {
getURL ("http://www.rollerblade.com/prodotti/index.php?id_categoria=2&id_sottocategoria=6", "_blank");
}
Symbol 177 Button
on (release) {
_parent.play();
}
Symbol 185 MovieClip Frame 1
stop();
Symbol 185 MovieClip Frame 2
stop();
Symbol 187 Button
on (release) {
if (_root.bitteregistrieren == 1) {
_root.bitteregistrieren = 2;
}
if (_root.bitteregistrieren == 0) {
_root.bitteregistrieren = 1;
}
if (_root.bitteregistrieren == 2) {
_root.bitteregistrieren = 0;
}
}
Symbol 191 Button
on (release) {
gotoAndStop (3);
}
Symbol 197 MovieClip Frame 1
bitteregistrieren = _root.bitteregistrieren;
spielername = _root.spielername;
email = _root.email;
scorer = _root.enddistanz;
spiel = "fitness";
scorereintrag = int(scorer) * 100;
code = ((scorereintrag * scorereintrag) - scorereintrag) + 399200;
geladen = 0;
Symbol 197 MovieClip Frame 3
loadVariables ((((((((((("savegame.php?email=" + email) + "&spielername=") + spielername) + "&scorer=") + scorer) + "&spiel=") + spiel) + "&code=") + code) + "&bitteregistrieren=") + bitteregistrieren, this, "GET");
Symbol 197 MovieClip Frame 6
if (geladen.substr(0, 1) == "1") {
play();
} else {
gotoAndPlay (4);
}
Symbol 197 MovieClip Frame 8
_parent._parent.play();
stop();
Symbol 198 MovieClip Frame 1
stop();
Symbol 198 MovieClip Frame 2
stop();
Instance of Symbol 185 MovieClip in Symbol 198 MovieClip Frame 2
onClipEvent (enterFrame) {
if (_root.bitteregistrieren == 1) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
}
Symbol 198 MovieClip Frame 3
stop();
Symbol 199 Button
on (release) {
stopAllSounds();
_root.hindernis1.removeMovieClip();
_root.hindernis2.removeMovieClip();
_root.skaterin.removeMovieClip();
gotoAndPlay (59);
}
Symbol 200 MovieClip Frame 9
stop();
Symbol 200 MovieClip Frame 21
tafel.gotoAndStop(2);
_root.crash = 0;
_root.starten = 1;
_root.zeitanzeigemovie.play();
stop();
Symbol 200 MovieClip Frame 48
stop();
Symbol 200 MovieClip Frame 59
_root.gotoAndStop(3);
Symbol 200 MovieClip Frame 60
_root.gotoAndStop(2);
gotoAndPlay (1);
Symbol 200 MovieClip Frame 70
gotoAndStop ("wartepos");