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

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

Disco Racer.swf

This is the info page for
Flash #42532

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


Text
Loading.

Loading..

Loading...

Loading....

Loading.....

Loading......

Loading.......

Loading........

Loading.........

Loading..........

Loading...........

Loading.............

Loading..............

Loading...............

Loading................

Play!

DISCO

RACER

Use the arrowkeys to navigate.
Hurry Up!
You have only 1 minute to collect all items on your way to the Disco.
But be careful! You are not alone in the street...

Programming by
The fabulous Glitterboys

Klick ENTER to start!

Zeit

Time:

Score:

Next

Congratulations!
Your Score:

Your Score was stored

...if you are logged in.

ActionScript [AS1/AS2]

Frame 16
ifFrameLoaded (3) { gotoAndPlay (17); } gotoAndPlay (1);
Frame 17
ifFrameLoaded (20) { gotoAndPlay (18); } gotoAndPlay (1);
Frame 18
ifFrameLoaded (47) { gotoAndStop (20); }
Frame 19
gotoAndPlay (1);
Frame 20
stop();
Frame 21
var globalspeed = 9; var speedmin = 5; var speedmax = 15; var gameend = false; var score = 0; var crash = false; var reifen = 50; var schlussel = 100; var lenkrad = 200; var navi = 500; mouse.hide(); timer = 60; punkte = 0;
Instance of Symbol 39 MovieClip in Frame 21
onClipEvent (load) { setProperty(this, _y , 1); } onClipEvent (enterFrame) { _y = (_y + _root.globalspeed); if (((_y / 81) >= 1) and (_root.globalspeed <= 8)) { setProperty(this, _y , 1); } else if (((_y / 76) >= 1) and (_root.globalspeed > 8)) { setProperty(this, _y , 1); } }
Instance of Symbol 42 MovieClip "borte" in Frame 21
onClipEvent (load) { setProperty(this, _y , 1); } onClipEvent (enterFrame) { _y = (_y + _root.globalspeed); if (((_y / 81) >= 1) and (_root.globalspeed <= 8)) { setProperty(this, _y , 1); } else if (((_y / 76) >= 1) and (_root.globalspeed > 8)) { setProperty(this, _y , 1); } }
Instance of Symbol 46 MovieClip "borte2" in Frame 21
onClipEvent (load) { setProperty(this, _y , 1); } onClipEvent (enterFrame) { _y = (_y + _root.globalspeed); if (((_y / 81) >= 1) and (_root.globalspeed <= 8)) { setProperty(this, _y , 1); } else if (((_y / 76) >= 1) and (_root.globalspeed > 8)) { setProperty(this, _y , 1); } }
Frame 22
if (key.isdown(key.Enter)) { gotoAndPlay (23); } else { gotoAndPlay (21); }
Instance of Symbol 74 MovieClip "bonus" in Frame 23
onClipEvent (load) { var vposs = 0; } onClipEvent (enterFrame) { vposs = vposs + 1; _y = (_y + _root.globalspeed); if (_y >= 460) { setProperty(this, _y , -30); setProperty(this, _x , 200 + random(200)); _root.bonus.gotoAndPlay(random(4)); } }
Instance of Symbol 88 MovieClip "ball" in Frame 23
onClipEvent (load) { var vpos = 0; var goto = 2; } onClipEvent (enterFrame) { vpos = vpos + 1; _y = (_y + (_root.globalspeed / 1.5)); if (_y >= 360) { setProperty(this, _y , -120); setProperty(this, _x , 200 + random(200)); _root.ball.gotoAndPlay(random(6)); } }
Instance of Symbol 92 MovieClip "car" in Frame 23
onClipEvent (load) { var xmin = 170; var xmax = 440; var ymin = 260; var ymax = 260; var dummy; var timevariable = 0; s1 = new Sound(this); s1.attachSound("bang"); s1.setVolume(100); s2 = new Sound(this); s2.attachSound("hit"); s2.setVolume(100); s3 = new Sound(this); s3.attachSound("beep"); s3.setVolume(60); s4 = new Sound(this); s4.attachSound("crash"); s4.setVolume(100); s5 = new Sound(this); s5.attachSound("beep2"); s5.setVolume(40); s6 = new Sound(this); s6.attachSound("car_skids"); s6.setVolume(30); } onClipEvent (enterFrame) { timevariable = timevariable + 1; if (timevariable == 25) { _root.timer = _root.timer - 1; timevariable = 0; if ((_root.timer <= 5) and (_root.timer > 0)) { s3.start(0); } if (_root.timer == 0) { s5.start(0); } } if (_root.timer == 0) { _root.gameend = true; } speed = _root.globalspeed * 1.1; rotation = (_rotation * -1) + 90; sinus = Math.sin((rotation * Math.PI) / 180); cosinus = Math.cos((rotation * Math.PI) / 180); if (Key.isDown(39)) { _rotation = (_rotation + 9); } else if (Key.isDown(37)) { _rotation = (_rotation - 9); } if (_rotation >= 45) { setProperty(_this, _rotation , 45); } if (_rotation <= -45) { setProperty(_this, _rotation , -45); } _y = (_y - (sinus * speed)); _x = (_x + (cosinus * speed)); if (_x > xmax) { setProperty(this, _x , xmax); } if (_y > ymax) { setProperty(this, _y , ymax); } if (_x < xmin) { setProperty(this, _x , xmin); } if (_y < ymin) { setProperty(this, _y , ymin); } if (Key.isDown(38)) { _root.globalspeed = _root.globalspeed + 2; if (_root.globalspeed >= _root.speedmax) { _root.globalspeed = _root.speedmax; } } else if (Key.isDown(40)) { _root.globalspeed = _root.globalspeed - 2; if (_root.globalspeed <= _root.speedmin) { _root.globalspeed = _root.speedmin; } } if (_root.car.porsche.hittest(_root.ball)) { s4.start(); _root.crash = true; _root.gameend = true; gotoAndPlay (22); } if (_root.car.porsche.hittest(_root.bonus.reifen)) { s2.start(); _root.score = _root.score + _root.reifen; _root.punkte = _root.score; setProperty(_root.bonus, _y , 400); } if (_root.car.porsche.hittest(_root.bonus.schlussel)) { s2.start(); _root.score = _root.score + _root.schlussel; _root.punkte = _root.score; setProperty(_root.bonus, _y , 400); } if (_root.car.porsche.hittest(_root.bonus.lenkrad)) { s2.start(); _root.score = _root.score + _root.lenkrad; _root.punkte = _root.score; setProperty(_root.bonus, _y , 400); } if (_root.car.porsche.hittest(_root.bonus.navi)) { s2.start(); _root.score = _root.score + _root.navi; _root.punkte = _root.score; setProperty(_root.bonus, _y , 400); } if (_root.car.porsche.hittest(_root.borte2)) { s1.start(0.1, 0); setProperty(this, _x , _x - 10); } if (_root.car.porsche.hittest(_root.borte)) { s1.start(0.1, 0); setProperty(this, _x , _x + 10); } }
Frame 26
if ((_root.timer == 0) or (_root.gameend == true)) { gotoAndPlay (27); } else { gotoAndPlay (23); }
Frame 52
ergebnis = score; pnConnector.storeScore(score); mouse.show(); stop();
Frame 53
_root.gameover = 1;
Symbol 4 MovieClip [pnFlashGames] Frame 1
#initclip 1 pnFlashGames = function () { this.gid = _root.pn_gid; this.uname = _root.pn_uname; this.busy = false; this.gameSaved = null; this.gameLoaded = null; this.scoreStored = null; this.gameData = ""; }; pnFlashGames.prototype.saveGame = function (gameData) { this.busy = true; varsObj = new LoadVars(); varsObj.func = "saveGame"; varsObj.gid = this.gid; varsObj.gameData = gameData; varsObj.type = "user"; varsObj.module = "pnFlashGames"; varsObj.parent = this; varsObj.onLoad = this.saveGame_Result; varsObj.sendAndLoad("index.php", varsObj, "POST"); }; pnFlashGames.prototype.saveGame_Result = function (success) { this.parent._parent.incoming = this.opSuccess; if (this.opSuccess == "true") { this.parent.gameSaved = true; } else { this.parent.gameSaved = false; } this.parent.busy = false; }; pnFlashGames.prototype.loadGame = function () { this.busy = true; varsObj = new LoadVars(); varsObj.func = "loadGame"; varsObj.gid = this.gid; varsObj.type = "user"; varsObj.module = "pnFlashGames"; varsObj.parent = this; varsObj.onLoad = this.loadGame_Result; varsObj.sendAndLoad("index.php", varsObj, "POST"); }; pnFlashGames.prototype.loadGame_Result = function (success) { if (this.opSuccess == "true") { this.parent.gameLoaded = true; this.parent.gameData = gameData; } else { this.parent.gameLoaded = false; } if (this.parent.onLoadGame != null) { this.parent.onLoadGame(this.gameData); } this.parent.busy = false; }; pnFlashGames.prototype.storeScore = function (score) { this.busy = true; varsObj = new LoadVars(); varsObj.score = score; varsObj.func = "storeScore"; varsObj.gid = this.gid; varsObj.type = "user"; varsObj.module = "pnFlashGames"; varsObj.parent = this; varsObj.onLoad = this.storeScore_Result; varsObj.sendAndLoad("index.php", varsObj, "POST"); }; pnFlashGames.prototype.storeScore_Result = function (success) { if (this.opSuccess == "true") { this.parent.scoreStored = true; } else { this.parent.scoreStored = false; } this.parent.busy = false; }; Object.registerClass("pnFlashGames", pnFlashGames); #endinitclip
Symbol 26 Button
on (press, release) { gotoAndPlay (21); }
Symbol 30 MovieClip Frame 50
gotoAndPlay (1);
Symbol 35 Button
on (release) { getURL ("http://www.glitterboys.com"); }
Symbol 55 MovieClip Frame 1
if (this.sessionstarted != 1) { this.arcade = new LoadVars(); this.sessionvars = new LoadVars(); this.arcade.gamename = "discoracer"; this.arcade.sessdo = "sessionstart"; this.arcade.sendAndLoad("arcade.php", sessionvars, "POST"); this.sessionstarted = 1; } if (_root.gameover == 1) { if ((this.askpermission != 1) && (this.sessionvars.connStatus == 1)) { this.prequestvars = new LoadVars(); this.pranswer = new LoadVars(); this.prequestvars.gametime = this.sessionvars.gametime; this.prequestvars.fakekey = this.sessionvars.initbar; if (_root.score == 0) { this.prequestvars.score = -1; } else { this.prequestvars.score = _root.score; } this.prequestvars.id = this.sessionvars.lastid; this.prequestvars.sessdo = "permrequest"; this.prequestvars.note = (this.prequestvars.id * this.prequestvars.score) * this.prequestvars.fakekey; this.prequestvars.sendAndLoad("./arcade.php", this.pranswer, "POST"); this.askpermission = 1; } if ((this.pranswer.validate == 1) && (this.finalsent != 1)) { this.burnscore = new LoadVars(); this.burnscore.microone = this.pranswer.microone; this.burnscore.gametime = this.prequestvars.gametime; this.burnscore.id = this.prequestvars.id; if (_root.score == 0) { this.burnscore.noscore = 1; } this.burnscore.sessdo = "burn"; this.burnscore.send("./arcade.php", "_self", "POST"); this.finalsent = 1; } }
Symbol 61 MovieClip Frame 22
gotoAndPlay (1);
Symbol 74 MovieClip Frame 1
stop();
Symbol 74 MovieClip Frame 2
stop();
Symbol 74 MovieClip Frame 3
stop();
Symbol 74 MovieClip Frame 4
stop();
Symbol 88 MovieClip Frame 1
stop();
Symbol 88 MovieClip Frame 2
stop();
Symbol 88 MovieClip Frame 3
stop();
Symbol 88 MovieClip Frame 4
stop();
Symbol 88 MovieClip Frame 5
stop();
Symbol 88 MovieClip Frame 6
stop();
Symbol 92 MovieClip Frame 1
stop();
Symbol 92 MovieClip Frame 38
gotoAndStop (1);
Symbol 101 Button
on (release) { nextFrame(); stopAllSounds(); }

Library Items

Symbol 1 Sound [hit]
Symbol 2 Sound [crash]
Symbol 3 Sound [bang]
Symbol 4 MovieClip [pnFlashGames]Used by:Timeline
Symbol 5 FontUsed by:6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 25 31 32 93 94 95 96 104 105
Symbol 6 TextUses:5Used by:Timeline
Symbol 7 TextUses:5Used by:Timeline
Symbol 8 TextUses:5Used by:Timeline
Symbol 9 TextUses:5Used by:Timeline
Symbol 10 TextUses:5Used by:Timeline
Symbol 11 TextUses:5Used by:Timeline
Symbol 12 TextUses:5Used by:Timeline
Symbol 13 TextUses:5Used by:Timeline
Symbol 14 TextUses:5Used by:Timeline
Symbol 15 TextUses:5Used by:Timeline
Symbol 16 TextUses:5Used by:Timeline
Symbol 17 TextUses:5Used by:Timeline
Symbol 18 TextUses:5Used by:Timeline
Symbol 19 TextUses:5Used by:Timeline
Symbol 20 TextUses:5Used by:Timeline
Symbol 21 BitmapUsed by:22 98
Symbol 22 GraphicUses:21Used by:Timeline
Symbol 23 FontUsed by:24 91
Symbol 24 TextUses:23Used by:26
Symbol 25 TextUses:5Used by:26
Symbol 26 ButtonUses:24 25Used by:Timeline
Symbol 27 FontUsed by:28 29 106 107
Symbol 28 TextUses:27Used by:30
Symbol 29 TextUses:27Used by:30
Symbol 30 MovieClipUses:28 29Used by:Timeline
Symbol 31 TextUses:5Used by:Timeline
Symbol 32 TextUses:5Used by:Timeline
Symbol 33 BitmapUsed by:34
Symbol 34 GraphicUses:33Used by:35
Symbol 35 ButtonUses:34Used by:Timeline
Symbol 36 SoundUsed by:Timeline
Symbol 37 GraphicUsed by:Timeline
Symbol 38 GraphicUsed by:39
Symbol 39 MovieClipUses:38Used by:Timeline
Symbol 40 BitmapUsed by:41
Symbol 41 GraphicUses:40Used by:42
Symbol 42 MovieClipUses:41Used by:Timeline
Symbol 43 BitmapUsed by:44
Symbol 44 GraphicUses:43Used by:45
Symbol 45 MovieClipUses:44Used by:46
Symbol 46 MovieClipUses:45Used by:Timeline
Symbol 47 BitmapUsed by:49
Symbol 48 BitmapUsed by:49
Symbol 49 GraphicUses:47 48Used by:Timeline
Symbol 50 FontUsed by:52
Symbol 51 FontUsed by:52
Symbol 52 TextUses:50 51Used by:53
Symbol 53 MovieClipUses:52Used by:Timeline
Symbol 54 GraphicUsed by:Timeline
Symbol 55 MovieClipUsed by:Timeline
Symbol 56 GraphicUsed by:Timeline
Symbol 57 BitmapUsed by:59
Symbol 58 BitmapUsed by:59
Symbol 59 GraphicUses:57 58Used by:Timeline
Symbol 60 GraphicUsed by:61
Symbol 61 MovieClipUses:60Used by:74
Symbol 62 BitmapUsed by:63
Symbol 63 GraphicUses:62Used by:64
Symbol 64 MovieClipUses:63Used by:74
Symbol 65 BitmapUsed by:66
Symbol 66 GraphicUses:65Used by:67
Symbol 67 MovieClipUses:66Used by:74
Symbol 68 BitmapUsed by:69
Symbol 69 GraphicUses:68Used by:70
Symbol 70 MovieClipUses:69Used by:74
Symbol 71 BitmapUsed by:72
Symbol 72 GraphicUses:71Used by:73
Symbol 73 MovieClipUses:72Used by:74
Symbol 74 MovieClipUses:61 64 67 70 73Used by:Timeline
Symbol 75 BitmapUsed by:76
Symbol 76 GraphicUses:75Used by:77
Symbol 77 MovieClipUses:76Used by:88 92
Symbol 78 BitmapUsed by:79
Symbol 79 GraphicUses:78Used by:88
Symbol 80 BitmapUsed by:81
Symbol 81 GraphicUses:80Used by:88
Symbol 82 BitmapUsed by:83
Symbol 83 GraphicUses:82Used by:88
Symbol 84 BitmapUsed by:85
Symbol 85 GraphicUses:84Used by:88
Symbol 86 BitmapUsed by:87
Symbol 87 GraphicUses:86Used by:88
Symbol 88 MovieClipUses:77 79 81 83 85 87Used by:Timeline
Symbol 89 FontUsed by:90
Symbol 90 TextUses:89Used by:Timeline
Symbol 91 TextUses:23Used by:92
Symbol 92 MovieClipUses:77 91Used by:Timeline
Symbol 93 TextUses:5Used by:Timeline
Symbol 94 EditableTextUses:5Used by:Timeline
Symbol 95 TextUses:5Used by:Timeline
Symbol 96 EditableTextUses:5Used by:Timeline
Symbol 97 GraphicUsed by:Timeline
Symbol 98 GraphicUses:21Used by:Timeline
Symbol 99 GraphicUsed by:101
Symbol 100 GraphicUsed by:101
Symbol 101 ButtonUses:99 100Used by:Timeline
Symbol 102 FontUsed by:103
Symbol 103 TextUses:102Used by:Timeline
Symbol 104 EditableTextUses:5Used by:Timeline
Symbol 105 TextUses:5Used by:Timeline
Symbol 106 TextUses:27Used by:108
Symbol 107 TextUses:27Used by:108
Symbol 108 MovieClipUses:106 107Used by:Timeline

Instance Names

"borte"Frame 21Symbol 42 MovieClip
"borte2"Frame 21Symbol 46 MovieClip
"bonus"Frame 23Symbol 74 MovieClip
"ball"Frame 23Symbol 88 MovieClip
"car"Frame 23Symbol 92 MovieClip
"pnConnector"Frame 52Symbol 4 MovieClip [pnFlashGames]
"borterechts"Symbol 46 MovieClip Frame 1Symbol 45 MovieClip
"reifen"Symbol 74 MovieClip Frame 1Symbol 64 MovieClip
"schlussel"Symbol 74 MovieClip Frame 2Symbol 67 MovieClip
"lenkrad"Symbol 74 MovieClip Frame 3Symbol 70 MovieClip
"navi"Symbol 74 MovieClip Frame 4Symbol 73 MovieClip
"porsche"Symbol 92 MovieClip Frame 1Symbol 77 MovieClip

Special Tags

Protect (24)Timeline Frame 131 bytes "..$1$pt$LFVtYfu.CzLeDN0QEDIuU1."
ExportAssets (56)Timeline Frame 1Symbol 1 as "hit"
ExportAssets (56)Timeline Frame 1Symbol 2 as "crash"
ExportAssets (56)Timeline Frame 1Symbol 3 as "bang"
ExportAssets (56)Timeline Frame 1Symbol 4 as "pnFlashGames"
ExportAssets (56)Timeline Frame 52Symbol 4 as "pnFlashGames"

Labels

"highscore"Frame 52

Dynamic Text Variables

TimerSymbol 94 EditableText""
PunkteSymbol 96 EditableText""
ergebnisSymbol 104 EditableText""




http://swfchan.com/9/42532/info.shtml
Created: 9/5 -2019 22:18:59 Last modified: 9/5 -2019 22:18:59 Server time: 15/05 -2024 10:08:02