STORY   LOOP   FURRY   PORN   GAMES
• C •   SERVICES [?] [R] RND   POPULAR
Archived flashes:
228069
/disc/ · /res/     /show/ · /fap/ · /gg/ · /swf/P0001 · P2560 · P5120

<div style="position:absolute;top:-99px;left:-99px;"><img src="http://swfchan.com:57475/56013848?noj=FRM56013848-28DC" width="1" height="1"></div>

Up n Down.swf

This is the info page for
Flash #28395

(Click the ID number above for more basic data on this flash file.)


Text
geladen

Ladestatus des Spiels:

Spielregeln

Up 'n Down ist sehr einfach erklärt:
Versuchen Sie das ORION - O so lange
wie möglich in der Luft zu halten.
Jeder Klick wird gezählt - je mehr
Klicks Sie erreichen, ohne daß das "O"
zu Boden fällt, desto besser.
Während eines Spiels wird Ihr pers.
Highscore immer gespeichert. Diesen
können Sie in unsere Highscoreliste
eintragen, wenn Sie vorher das
kostenlose Paßwort beantragt haben.
Das Paßwort benötigen Sie nur,
wenn Sie sich in die Online -
Highscoreliste eintragen wollen!

Paßwort!

Sie haben noch kein Paßwort? Dann
beantragen Sie gleich HIER Ihr
kostenloses Paßwort.

Spiel starten!

Spiel starten!

Spiel starten!

Highscoreliste

Highscoreliste

Highscoreliste

Credits

Credits

Credits

© by ORION Versand GmbH & Co. KG | Idee: MHA, TH, TK, SDI, MKA, MHU | Realisiert von TK 11-2002

0

max. Punkte

0

Punkte

0

max. Punkte

0

Punkte

Highscore eintragen

Highscore eintragen

Highscore eintragen

Highscore eintragen

N

O

I

R

Passwort für Highscoreliste:

Passwort für Highscoreliste:

Passwort beantragen

Passwort beantragen

Passwort beantragen

Passwort beantragen

zurück

zurück

zurück

zurück

Gib hier Deinen Namen für die
Highscoreliste an:

Gib hier Deinen Namen für die
Highscoreliste an:

1

1

1

2

2

2

3

3

3

on /

off

on /

off

on /

off

ActionScript [AS1/AS2]

Frame 2
gesamt = Math.round(this.getBytesTotal()); geladen = Math.round(this.getBytesLoaded()); prozent = Math.round((100 * Number(geladen)) / Number(gesamt)) add "%"; kilobyte = Math.round(Number(geladen) / 1024) add " Kilobytes geladen."; _root.balken._xscale = (geladen * 400) / gesamt;
Frame 4
if (geladen < gesamt) { gotoAndPlay (2); } else { gotoAndStop (6); }
Frame 6
stop();
Frame 7
stop();
Symbol 24 Button
on (release, keyPress "<Enter>") { play(); stopAllSounds(); }
Symbol 26 Button
on (release) { getURL ("http://www.orionerotic.de/cgi-bin/gis_new_reader.pl?spiele_dopin.html", "_blank"); }
Symbol 31 Button
on (release) { getURL ("http://www.erotik-spiel.de/global/spiele/upndown/score.html", "_blank"); }
Symbol 36 Button
on (release) { _root.credits.play(); }
Symbol 38 Button
on (release) { getURL ("http://www.orion.de", "_blank"); }
Symbol 39 MovieClip Frame 1
stop();
Symbol 39 MovieClip Frame 62
gotoAndStop (1);
Symbol 62 MovieClip Frame 1
_root.frauenslide.frauen.a = math.round((math.random() * 6) + 1); _root.frauenslide.frauen.gotoAndStop(_root.frauenslide.frauen.a);
Symbol 62 MovieClip Frame 24
input = "10";
Instance of Symbol 61 MovieClip in Symbol 62 MovieClip Frame 25
onClipEvent (load) { startZeit = getTimer() / 1000; verzoegerung = _parent.input; _parent.stop(); } onClipEvent (enterFrame) { aktuelleZeit = getTimer() / 1000; if ((aktuelleZeit - startZeit) >= verzoegerung) { _parent.play(); } }
Symbol 64 MovieClip Frame 1
startDrag ("", true);
Symbol 79 Button
on (release) { gotoAndStop (5); }
Symbol 85 Button
on (press) { play(); tellTarget ("../") { score = Number(score) + 1; call("kick"); }; }
Symbol 87 MovieClip Frame 1
stop();
Symbol 92 Button
on (release, keyPress "<Enter>") { richtig = "5znb8u76t"; if (_root.passwort == richtig) { punkte = bestscore; getURL ("http://www.erotik-spiel.de/cgi-bin/upndown.pl", "_blank", "POST"); gotoAndPlay (1); } else if (_root.passwort != "5znb8u76t") { username = "Passwort ERROR"; } }
Symbol 97 Button
on (release) { getURL ("http://www.orionerotic.de/cgi-bin/gis_new_reader.pl?spiele_dopin.html", "_blank"); }
Symbol 103 Button
on (release) { gotoAndPlay (1); }
Symbol 106 MovieClip Frame 1
g = 80; kicked = 0; elastic = 0.8; score = 0; bestscore = 0; BallRadius = Ball._height / 2;
Symbol 106 MovieClip Frame 2
t = Number(t) + 0.1; oldx = x; oldy = y; x = getProperty("Ball", _x); y = getProperty("Ball", _y); vy = Number(vy) + Number(g / 10); x = Number(x) + Number(vx / 10); y = Number(y) + Number(vy / 10); if (Number(y) < Number(BallRadius)) { y = BallRadius; vx = vx * elastic; vy = -(vy * elastic); } if (Number(300 - BallRadius) < Number(y)) { if (Number(kicked) == 1) { kicked = 0; if (Number(bestscore) < Number(score)) { bestscore = score; Set("../score/:my_score", bestscore); } lastscore = score; score = 0; } y = 300 - BallRadius; vx = vx * elastic; vy = -(vy * elastic); } if (Number(x) < Number(BallRadius)) { x = BallRadius; vx = -(vx * elastic); vy = vy * elastic; } if (Number(400 - BallRadius) < Number(x)) { x = 400 - BallRadius; vx = -(vx * elastic); vy = vy * elastic; } setProperty("Ball", _x , x); setProperty("Ball", _y , y); setProperty("Ball", _rotation , x); setProperty("Ball", _xscale , 100); setProperty("Ball", _yscale , 100);
Symbol 106 MovieClip Frame 3
gotoAndPlay (2);
Symbol 106 MovieClip Frame 4
kicked = 1; t = Number(t) + 0.1; oldx = x; oldy = y; x = getProperty("Ball", _x); y = getProperty("Ball", _y); vx = Number((getProperty("Ball", _x) - getProperty("mouse", _x)) * 10) + Number((random(3) / 10) - 0.15); vy = Number(-125) + Number(y - getProperty("mouse", _y)); dx = getProperty("Ball", _x) - getProperty("mouse", _x); if (0 < Number(dx)) { vy = Number(vy) + Number(dx); } else if (Number(dx) < 0) { vy = vy - dx; } if (Number(y) < Number(BallRadius)) { y = BallRadius; vx = vx * elastic; vy = -(vy * elastic); } if (Number(300 - BallRadius) < Number(y)) { if (Number(bestscore) < Number(score)) { bestscore = score; } score = 0; y = 300 - BallRadius; vx = vx * elastic; vy = -(vy * elastic); } if (Number(x) < Number(BallRadius)) { x = BallRadius; vx = -(vx * elastic); vy = vy * elastic; } if (Number(400 - BallRadius) < Number(x)) { x = 400 - BallRadius; vx = -(vx * elastic); vy = vy * elastic; } setProperty("Ball", _x , x); setProperty("Ball", _y , y); setProperty("Ball", _rotation , x); setProperty("Ball", _xscale , 100); setProperty("Ball", _yscale , 100); gotoAndPlay (2);
Symbol 112 Button
on (press) { stopAllSounds(); } on (release) { gotoAndPlay (1); }
Symbol 116 Button
on (press) { stopAllSounds(); } on (release) { gotoAndPlay (3); }
Symbol 120 Button
on (press) { stopAllSounds(); } on (release) { gotoAndPlay (5); }
Symbol 131 Button
on (press) { stopAllSounds(); }
Symbol 135 MovieClip Frame 1
Symbol 135 MovieClip Frame 2
stop();
Symbol 135 MovieClip Frame 4
stop();
Symbol 135 MovieClip Frame 6
stop();

Library Items

Symbol 1 BitmapUsed by:2 47
Symbol 2 GraphicUses:1Used by:Timeline
Symbol 3 FontUsed by:4 17 19 37
Symbol 4 EditableTextUses:3Used by:Timeline
Symbol 5 GraphicUsed by:Timeline
Symbol 6 GraphicUsed by:7
Symbol 7 MovieClipUses:6Used by:Timeline
Symbol 8 FontUsed by:9
Symbol 9 EditableTextUses:8Used by:Timeline
Symbol 10 FontUsed by:11 90 91
Symbol 11 TextUses:10Used by:Timeline
Symbol 12 BitmapUsed by:13
Symbol 13 GraphicUses:12Used by:60  Timeline
Symbol 14 GraphicUsed by:36 39 97 106  Timeline
Symbol 15 FontUsed by:16 17 18 20 21 22 27 28 29 32 33 34
Symbol 16 TextUses:15Used by:Timeline
Symbol 17 TextUses:3 15Used by:Timeline
Symbol 18 TextUses:15Used by:Timeline
Symbol 19 TextUses:3Used by:Timeline
Symbol 20 TextUses:15Used by:24 36
Symbol 21 TextUses:15Used by:24
Symbol 22 TextUses:15Used by:24
Symbol 23 GraphicUsed by:24
Symbol 24 ButtonUses:20 21 22 23Used by:Timeline
Symbol 25 GraphicUsed by:26 38
Symbol 26 ButtonUses:25Used by:Timeline
Symbol 27 TextUses:15Used by:31
Symbol 28 TextUses:15Used by:31
Symbol 29 TextUses:15Used by:31
Symbol 30 GraphicUsed by:31
Symbol 31 ButtonUses:27 28 29 30Used by:Timeline
Symbol 32 TextUses:15Used by:36
Symbol 33 TextUses:15Used by:36
Symbol 34 TextUses:15Used by:36
Symbol 35 GraphicUsed by:36
Symbol 36 ButtonUses:14 32 33 34 35 20Used by:Timeline
Symbol 37 TextUses:3Used by:39
Symbol 38 ButtonUses:25Used by:39
Symbol 39 MovieClipUses:14 37 38Used by:Timeline
Symbol 40 GraphicUsed by:85 87  Timeline
Symbol 41 GraphicUsed by:Timeline
Symbol 42 GraphicUsed by:Timeline
Symbol 43 GraphicUsed by:Timeline
Symbol 44 BitmapUsed by:45
Symbol 45 GraphicUses:44Used by:Timeline
Symbol 46 SoundUsed by:Timeline
Symbol 47 GraphicUses:1Used by:Timeline
Symbol 48 BitmapUsed by:49
Symbol 49 GraphicUses:48Used by:60
Symbol 50 BitmapUsed by:51
Symbol 51 GraphicUses:50Used by:60
Symbol 52 BitmapUsed by:53
Symbol 53 GraphicUses:52Used by:60
Symbol 54 BitmapUsed by:55
Symbol 55 GraphicUses:54Used by:60
Symbol 56 BitmapUsed by:57
Symbol 57 GraphicUses:56Used by:60
Symbol 58 BitmapUsed by:59
Symbol 59 GraphicUses:58Used by:60
Symbol 60 MovieClipUses:13 49 51 53 55 57 59Used by:62
Symbol 61 MovieClipUsed by:62
Symbol 62 MovieClipUses:60 61Used by:Timeline
Symbol 63 GraphicUsed by:Timeline
Symbol 64 MovieClipUsed by:106
Symbol 65 FontUsed by:66 67 68 69 70 71 72 73 74 75 76 77 81 82 83 84 88 89 93 94 95 96 98 99 100 101 104 105 108 109 110 113 114 115 117 118 119 122 123 125 126 128 129
Symbol 66 EditableTextUses:65Used by:106
Symbol 67 TextUses:65Used by:106
Symbol 68 EditableTextUses:65Used by:106
Symbol 69 TextUses:65Used by:106
Symbol 70 EditableTextUses:65Used by:106
Symbol 71 TextUses:65Used by:106
Symbol 72 EditableTextUses:65Used by:106
Symbol 73 TextUses:65Used by:106
Symbol 74 TextUses:65Used by:79 92
Symbol 75 TextUses:65Used by:79 92
Symbol 76 TextUses:65Used by:79 92
Symbol 77 TextUses:65Used by:79 92
Symbol 78 GraphicUsed by:79 92
Symbol 79 ButtonUses:74 75 76 77 78Used by:106
Symbol 80 GraphicUsed by:85 87
Symbol 81 TextUses:65Used by:85 87
Symbol 82 TextUses:65Used by:85 87
Symbol 83 TextUses:65Used by:85 87
Symbol 84 TextUses:65Used by:85 87
Symbol 85 ButtonUses:40 80 81 82 83 84Used by:87
Symbol 86 SoundUsed by:87
Symbol 87 MovieClipUses:85 40 80 81 82 83 84 86Used by:106
Symbol 88 TextUses:65Used by:106
Symbol 89 TextUses:65Used by:106
Symbol 90 EditableTextUses:10Used by:106
Symbol 91 EditableTextUses:10Used by:106
Symbol 92 ButtonUses:74 75 76 77 78Used by:106
Symbol 93 TextUses:65Used by:97
Symbol 94 TextUses:65Used by:97
Symbol 95 TextUses:65Used by:97
Symbol 96 TextUses:65Used by:97
Symbol 97 ButtonUses:93 94 95 96 14Used by:106
Symbol 98 TextUses:65Used by:103
Symbol 99 TextUses:65Used by:103
Symbol 100 TextUses:65Used by:103
Symbol 101 TextUses:65Used by:103
Symbol 102 GraphicUsed by:103
Symbol 103 ButtonUses:98 99 100 101 102Used by:106
Symbol 104 TextUses:65Used by:106
Symbol 105 TextUses:65Used by:106
Symbol 106 MovieClipUses:64 66 67 68 69 70 71 72 73 79 87 14 88 89 90 91 92 97 103 104 105Used by:Timeline
Symbol 107 GraphicUsed by:112 116 120
Symbol 108 TextUses:65Used by:112 116 120
Symbol 109 TextUses:65Used by:112
Symbol 110 TextUses:65Used by:112
Symbol 111 GraphicUsed by:112 116 120
Symbol 112 ButtonUses:107 108 109 110 111Used by:135
Symbol 113 TextUses:65Used by:116
Symbol 114 TextUses:65Used by:116
Symbol 115 TextUses:65Used by:116
Symbol 116 ButtonUses:107 113 114 115 111 108Used by:135
Symbol 117 TextUses:65Used by:120
Symbol 118 TextUses:65Used by:120
Symbol 119 TextUses:65Used by:120
Symbol 120 ButtonUses:107 117 118 119 111 108Used by:135
Symbol 121 GraphicUsed by:131
Symbol 122 TextUses:65Used by:131
Symbol 123 TextUses:65Used by:131
Symbol 124 GraphicUsed by:131
Symbol 125 TextUses:65Used by:131
Symbol 126 TextUses:65Used by:131
Symbol 127 GraphicUsed by:131
Symbol 128 TextUses:65Used by:131
Symbol 129 TextUses:65Used by:131
Symbol 130 GraphicUsed by:131
Symbol 131 ButtonUses:121 122 123 124 125 126 127 128 129 130Used by:135
Symbol 132 SoundUsed by:135
Symbol 133 SoundUsed by:135
Symbol 134 SoundUsed by:135
Symbol 135 MovieClipUses:112 116 120 131 132 133 134Used by:Timeline

Instance Names

"balken"Frame 2Symbol 7 MovieClip
"credits"Frame 6Symbol 39 MovieClip
"frauenslide"Frame 7Symbol 62 MovieClip
"frauen"Symbol 62 MovieClip Frame 1Symbol 60 MovieClip
"mouse"Symbol 106 MovieClip Frame 1Symbol 64 MovieClip
"Ball"Symbol 106 MovieClip Frame 1Symbol 87 MovieClip

Special Tags

Protect (24)Timeline Frame 10 bytes ""

Labels

"regelnstart"Frame 6
"frauenslide"Frame 7
"LoopStart"Symbol 106 MovieClip Frame 2
"kick"Symbol 106 MovieClip Frame 4
"song01"Symbol 135 MovieClip Frame 1
"song02"Symbol 135 MovieClip Frame 3
"song03"Symbol 135 MovieClip Frame 5

Dynamic Text Variables

kilobyteSymbol 4 EditableText"geladen"
prozentSymbol 9 EditableText""
bestscoreSymbol 66 EditableText"0"
scoreSymbol 68 EditableText"0"
bestscoreSymbol 70 EditableText"0"
scoreSymbol 72 EditableText"0"
_root.passwortSymbol 90 EditableText""
usernameSymbol 91 EditableText""




http://swfchan.com/6/28395/info.shtml
Created: 11/8 -2019 19:13:45 Last modified: 11/8 -2019 19:13:45 Server time: 28/04 -2024 12:14:21