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

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

initial d - timed stage.swf

This is the info page for
Flash #69491

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


Text
Timed Stage

Start Race

Start Race

Test Drive

Test Drive

Instructions

Instructions

Options

Options

How to Drive

UP = Accelerate
DOWN = Decelerate and Reverse

LEFT = Turn Left
RIGHT = Turn Right

M = Back to Main Menu

SPACE BAR = Brakes

Back

Back

Game Options

Stop Musics

Stop Musics

Play Musics

Play Musics

kmph

00

30

60

90

120

0

0

Time:

Lap:

Average Speed:

000.000

0

kmph

LAP TIMES:

Lap 3: 00.0

Lap 2: 00.0

sec

Lap 1: 00.0

sec

sec

Time:

Press M to return to the Main Menu

The Race
is Over!

<p align="left"><font face="EraserDust" size="14" color="#000000"><b>Lap 3:</b></font></p>

<p align="left"><font face="EraserDust" size="14" color="#000000"><b>Lap 2:</b></font></p>

Lap 1:

Total Time:

Back

dsa;lfjdfk
sad;lfj;aslkfdj
;asdjf;lkjsd
;asjdf;lkasjd
;asklfdj

Bunta's Challenge

Wall Hits:

Average Speed:

0

ActionScript [AS1/AS2]

Frame 27
stop();
Frame 28
stop();
Frame 29
stop();
Frame 30
_root.gotoAndPlay("mainmenu2");
Frame 32
_root.gotoAndPlay("mainmenu2");
Frame 92
stop();
Instance of Symbol 71 MovieClip "lights" in Frame 92
onClipEvent (load) { startime = 0; } onClipEvent (enterFrame) { startime++; if (startime == 15) { _root.lights.gotoAndStop(2); } if (startime == 30) { _root.lights.gotoAndStop(3); } if (startime == 45) { _root.gotoAndPlay("startrace2"); } }
Frame 93
stop();
Instance of Symbol 74 MovieClip "player" in Frame 93
onClipEvent (load) { _rotation = 0; thrdir = _rotation; move = 0; keyup = false; avgspd = 0; ttlspd = 0; ttlfrm = 0; cpa = 0; cpb = 0; cpc = 0; cporder = 0; lappy = 0; lapa = 0; laptimer = 0; _global.time1 = 0; _global.time2 = 0; _global.time3 = 0; _global.wallhit = 0; } onClipEvent (enterFrame) { if (move >= 0) { _root.needle._rotation = (180 * move) / 21; } if (_root.needle._rotation >= 180) { _root.needle._rotation = 180; } if (move > 0) { if (move < 1) { move = 0; } } thrdir = _rotation; if (Key.isDown(32)) { _root.player.gotoAndStop(2); if (Math.abs(move) >= 3) { move = move - (3 * (move / Math.abs(move))); } else if (move < 3) { if (move > -3) { move = 0; } } } else { _root.player.gotoAndStop(1); } if (Key.isDown(39)) { if (move != 0) { _rotation = (_rotation + 8.18181818181818); } } if (Key.isDown(37)) { if (move != 0) { _rotation = (_rotation - 8.18181818181818); } } if (Key.isDown(38)) { keyup = true; if (move < 21) { move = move + ((21 - move) / 8); } else if (move >= 21) { move = 21; } } else if (move > 0) { move = move - 0.7; } else { keyup = false; } if (Key.isDown(40)) { if (move > -6) { move = move - 1.1; } } else if (move < 0) { move = move + 0.8; } if (Key.isDown(77)) { _root.gotoAndPlay("mainmenu2"); } x = Math.sin(thrdir * (Math.PI/180)) * move; y = (Math.cos(thrdir * (Math.PI/180)) * move) * -1; if ((_x + x) <= 18.5) { _x = 530; } else if ((_x + x) >= 531) { _x = 19; } if ((_y + y) <= 18.5) { _y = 380; } else if ((_y + y) >= 381) { _y = 19; } if (_root.track.hitTest(_x + x, _y + y, true)) { _root.track._x = _root.track._x - x; _root.track._y = _root.track._y - y; } else { _global.wallhit = _global.wallhit + 1; move = move * -0.6; } if (_root.track.checkpoint1.hitTest(_x + x, _y + y, true)) { if (cpa != 1) { cpc = cpb; cpb = cpa; cpa = 1; } } if (_root.track.checkpoint2.hitTest(_x + x, _y + y, true)) { if (cpa != 2) { cpc = cpb; cpb = cpa; cpa = 2; } } if (_root.track.checkpoint3.hitTest(_x + x, _y + y, true)) { if (cpa != 3) { cpc = cpb; cpb = cpa; cpa = 3; } } if (((cpa == 3) && (cpb == 2)) && (cpc == 1)) { lappy = lappy + 1; cpc = 4; } if (((cpa == 1) && (cpb == 2)) && (cpc == 3)) { lappy = lappy - 1; cpc = 4; } if (lappy > lapa) { lapa = lappy; if (lapa == 2) { _global.time1 = int((laptimer / 12) * 10) / 10; } if (lapa == 3) { _global.time2 = int((laptimer / 12) * 10) / 10; } if (lapa == 4) { _global.time3 = int((laptimer / 12) * 10) / 10; _global.avgspd = avgspd; _root.gotoAndPlay("finishrace"); } laptimer = 0; } if (lapa == 1) { laptimer++; timeval = int((laptimer / 12) * 10) / 10; timestr = timeval.toString(); if (timestr.indexOf(".") == -1) { timestr = timestr + ".0"; } _root.lap1time.text = "Lap 1: " + timestr; } if (lapa == 2) { laptimer++; timeval = int((laptimer / 12) * 10) / 10; timestr = timeval.toString(); if (timestr.indexOf(".") == -1) { timestr = timestr + ".0"; } _root.lap2time.text = "Lap 2: " + timestr; } if (lapa == 3) { laptimer++; timeval = int((laptimer / 12) * 10) / 10; timestr = timeval.toString(); if (timestr.indexOf(".") == -1) { timestr = timestr + ".0"; } _root.lap3time.text = "Lap 3: " + timestr; } ttlfrm++; ttlspd = ttlspd + Math.abs(move); avgspd = int(((ttlspd / ttlfrm) * 5.71428571428571) * 1000) / 1000; _root.avgspdtxt.text = avgspd; _root.lapnumb.text = lappy + "/3"; }
Frame 94
stop();
Instance of Symbol 74 MovieClip "player" in Frame 94
onClipEvent (load) { _rotation = 0; thrdir = _rotation; move = 0; keyup = false; } onClipEvent (enterFrame) { if (move >= 0) { _root.needle._rotation = (180 * move) / 21; } if (_root.needle._rotation >= 180) { _root.needle._rotation = 180; } if (move > 0) { if (move < 1) { move = 0; } } thrdir = _rotation; if (Key.isDown(32)) { _root.player.gotoAndStop(2); if (Math.abs(move) >= 3) { move = move - (3 * (move / Math.abs(move))); } else if (move < 3) { if (move > -3) { move = 0; } } } else { _root.player.gotoAndStop(1); } if (Key.isDown(39)) { if (move != 0) { _rotation = (_rotation + 8.18181818181818); } } if (Key.isDown(37)) { if (move != 0) { _rotation = (_rotation - 8.18181818181818); } } if (Key.isDown(38)) { keyup = true; if (move < 21) { move = move + ((21 - move) / 8); } else if (move >= 21) { move = 21; } } else if (move > 0) { move = move - 0.7; } else { keyup = false; } if (Key.isDown(40)) { if (move > -6) { move = move - 1.1; } } else if (move < 0) { move = move + 0.8; } if (Key.isDown(77)) { _root.gotoAndPlay("mainmenu2"); } x = Math.sin(thrdir * (Math.PI/180)) * move; y = (Math.cos(thrdir * (Math.PI/180)) * move) * -1; if ((_x + x) <= 18.5) { _x = 530; } else if ((_x + x) >= 531) { _x = 19; } if ((_y + y) <= 18.5) { _y = 380; } else if ((_y + y) >= 381) { _y = 19; } if (!_root.track.hitTest(_x + x, _y + y, true)) { _x = (_x + x); _y = (_y + y); } else { move = move * -0.6; } }
Frame 95
timeval = _global.time1; timestr = timeval.toString(); if (timestr.indexOf(".") == -1) { timestr = timestr + ".0"; } _root.lap1.text = timestr + "s"; timeval = _global.time2; timestr = timeval.toString(); if (timestr.indexOf(".") == -1) { timestr = timestr + ".0"; } _root.lap2.text = timestr + "s"; timeval = _global.time3; timestr = timeval.toString(); if (timestr.indexOf(".") == -1) { timestr = timestr + ".0"; } _root.lap3.text = timestr + "s"; _root.hits.text = _global.wallhit; _root.avspd.text = Math.round(_global.avgspd) + " kmph"; totaltime = (_global.time1 + _global.time2) + _global.time3; timestr = totaltime.toString(); if (timestr.indexOf(".") == -1) { timestr = timestr + ".0"; } _root.laptotal.text = timestr + "s"; _root.buntatext.text = "Nice race, kid!"; if (_global.wallhit > 5) { _root.buntatext.text = _root.buntatext.text + " You hit the walls far too much, but that can be corrected if you just brake more often."; } if (_global.avgspd > 110) { _root.buntatext.text = _root.buntatext.text + " Excellent speeds. I saw the way you handled those curves. You have expert precision."; } if (totaltime > 150) { _root.buntatext.text = _root.buntatext.text + " Work harder to improve your time."; } if ((totaltime > 120) && (totaltime <= 150)) { _root.buntatext.text = _root.buntatext.text + " Your times are impressive. Try to perfect that time, and you might beat my personal best."; } if (totaltime <= 120) { _root.buntatext.text = _root.buntatext.text + " That was an amazing run. Now, try to beat my best time: 101.6 seconds"; } if (totaltime < 101.6) { _root.buntatext.text = "Incredible! You have perfected this course. Not only have you impressed me, but you have beaten my best time of 101.6 seconds. You are truly an amazing driver!"; } stop();
Symbol 11 Button
on (release) { _root.play(); }
Symbol 12 MovieClip Frame 1
_root.stop(); PercentLoaded = (_root.getBytesLoaded() / _root.getBytesTotal()) * 100; if (PercentLoaded != 100) { setProperty(bar, _xscale , PercentLoaded); } else { gotoAndStop ("loaded"); }
Symbol 12 MovieClip Frame 2
gotoAndPlay (1);
Symbol 27 Button
on (release) { _root.gotoAndStop("startrace1"); }
Symbol 30 Button
on (release) { _root.gotoAndStop("testdrive"); }
Symbol 33 Button
on (release) { _root.gotoAndStop("instructionspage1"); }
Symbol 36 Button
on (release) { _root.gotoAndPlay("options"); }
Symbol 52 Button
on (release) { gotoAndStop ("menuready"); }
Symbol 57 Button
on (release) { _root.gotoAndPlay("stopmusic"); }
Symbol 60 Button
on (release) { _root.gotoAndPlay("playmusic"); }
Symbol 71 MovieClip Frame 1
stop();
Symbol 71 MovieClip Frame 2
stop();
Symbol 71 MovieClip Frame 3
stop();
Symbol 74 MovieClip Frame 1
stop();
Symbol 74 MovieClip Frame 2
stop();
Symbol 87 MovieClip Frame 12
this.time++; this.gotoAndPlay(1);
Symbol 117 Button
on (release) { _root.gotoAndPlay("mainmenu2"); }

Library Items

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

Instance Names

"track"Frame 92Symbol 64 MovieClip
"lights"Frame 92Symbol 71 MovieClip
"player"Frame 93Symbol 74 MovieClip
"needle"Frame 93Symbol 84 MovieClip
"avgspdtxt"Frame 93Symbol 91 EditableText
"lapnumb"Frame 93Symbol 92 EditableText
"lap3time"Frame 93Symbol 95 EditableText
"lap2time"Frame 93Symbol 96 EditableText
"lap1time"Frame 93Symbol 98 EditableText
"player"Frame 94Symbol 74 MovieClip
"needle"Frame 94Symbol 84 MovieClip
"lap3"Frame 95Symbol 107 EditableText
"lap2"Frame 95Symbol 110 EditableText
"lap1"Frame 95Symbol 112 EditableText
"laptotal"Frame 95Symbol 115 EditableText
"hits"Frame 95Symbol 127 EditableText
"avspd"Frame 95Symbol 129 EditableText
"buntatext"Frame 95Symbol 131 EditableText
"bar"Symbol 12 MovieClip Frame 1Symbol 3 MovieClip
"checkpoint2"Symbol 64 MovieClip Frame 1Symbol 63 MovieClip
"checkpoint1"Symbol 64 MovieClip Frame 1Symbol 63 MovieClip
"checkpoint3"Symbol 64 MovieClip Frame 1Symbol 63 MovieClip

Labels

"mainmenu"Frame 2
"mainmenu2"Frame 3
"menuready"Frame 27
"instructionspage1"Frame 28
"options"Frame 29
"stopmusic"Frame 30
"playmusic"Frame 32
"startrace1"Frame 92
"startrace2"Frame 93
"testdrive"Frame 94
"finishrace"Frame 95
"loaded"Symbol 12 MovieClip Frame 3

Dynamic Text Variables

timeSymbol 85 EditableText"0"
timeSymbol 86 EditableText"0"




http://swfchan.com/14/69491/info.shtml
Created: 10/4 -2019 09:57:57 Last modified: 10/4 -2019 09:57:57 Server time: 29/04 -2024 12:18:45