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

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

surf chaves.swf

This is the info page for
Flash #240470

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


Text
loading...

loading..

loading.

LOADING

INSTRUCTIONS

Surf the waves, pull off cool tricks and avoid the nasties -
especially those big fish! Use the left and right arrow keys to
control your surfer  using the space bar to turn quicker. Score
points by jumping high off the wave and spinning in the air
(remember to land pointing down the wave or it's wipe out and
the points earned re subtracted from your score) - if you can
jump very close to the edge of the pipe then you can score
heaps more points - get too close and splash!
Wipe outs lose you points and the seagulls and buoys will
send you tumbling - hit the shark fin and your dinner. Good
luck dude!

00000

00000

SCORE

00000

TIME

0:00

CLICK OR PRESS SPACE TO PLAY

CLICK OR PRESS SPACE TO PLAY

CLICK OR PRESS SPACE TO PLAY

Place this component on a frame where the
highscores should be displayed. The silhouette
helps you position it correctly on your page.

scoreLocation
gamename
saveScore
scoreIsTime
scoreReversed

The absolute path to the
score variable.
Game identifier.
Set to false to only show
the scores.
Score is based on time -
'00m23s45ms' should be
sent as '2345' (number
mustn't start with a zero).
Score is sorted descending,
time is sorted ascending.

PLAY AGAIN!

PLAY AGAIN!

ActionScript [AS1/AS2]

Frame 1
stop();
Instance of Symbol 6 MovieClip in Frame 1
onClipEvent (enterFrame) { if (5 < _parent._framesloaded) { _parent.nextFrame(); } }
Frame 3
play();
Instance of Symbol 26 MovieClip "progress" in Frame 15
onClipEvent (enterFrame) { percentLoaded = int((_root.getBytesLoaded() / _root.getBytesTotal()) * 100); gotoAndStop(percentLoaded); if (98 < percentLoaded) { _parent.gotoAndStop("ready"); } }
Frame 17
stop();
Frame 19
level = 0; stop();
Frame 30
function newGame() { surfer.gotoAndStop(1); eaten = false; level = 3; score = 0; newLevel(); } function newLevel() { threshold = 1 + ((level - 1) * 11000); speed = 0; pipeX = 0; pipe.x = pipeX; pipe._x = pipeX; startTime = getTimer(); gameOn = true; gotoAndStop ("game"); } surfer.active = false; surfer.readytogo = false; level++; if (level == 1) { info = "ROUND 1 - SIMPLY SCORE 14000 TO QUALIFY FOR ROUND 2"; } else if (level == 2) { info = "ROUND 2 - DODGE THE OBSTACLES AND SCORE MORE THAN 25000 TO QUALIFY FOR ROUND 3"; } else if (level == 3) { info = "ROUND 3 - SURVIVE THE SHARK ATTACKS AND SCORE AS MANY AS YOU CAN IN THE FINAL ROUND"; } stop();
Instance of Symbol 77 MovieClip "wave" in Frame 30
onClipEvent (load) { sy = 240.9; _y = sy; } onClipEvent (enterFrame) { _y = (sy + _parent.jumpHeight); }
Instance of Symbol 92 MovieClip "surface" in Frame 30
onClipEvent (load) { sy = 135.3; _y = sy; } onClipEvent (enterFrame) { _x = (_x + _parent.speed); if (833.1 < _x) { _x = (_x - 559.5); } if (_x < 273.6) { _x = (_x + 559.5); } _y = (sy + _parent.jumpHeight); }
Instance of Symbol 100 MovieClip in Frame 30
onClipEvent (load) { active = false; _parent.sharkZ = 1000; } onClipEvent (enterFrame) { if ((((2 < _parent.level) && (!active)) && (_parent.gameOn)) && (random(200) == 0)) { active = true; dir = 1 - (random(2) * 2); if (dir == 1) { _x = -140; _xscale = 100; } else { _x = 680; _xscale = -100; } } if (active) { _y = (_parent.surface._y + 135); _x = (_x + (dir * 5)); dx = _x - _parent.surfer._x; dy = _y - _parent.surfer._y; dz = Math.sqrt((dx * dx) + (dy * dy)); _parent.sharkZ = dz; if ((dz < 40) && (_parent.surfer.active)) { _parent.surfer.wipeout(-1); _parent.eaten = true; } if ((_x < -140) || (680 < _x)) { _parent.sharkZ = 1000; active = false; } } }
Instance of Symbol 102 MovieClip in Frame 30
onClipEvent (load) { _parent.buoyZ = 1000; active = false; } onClipEvent (enterFrame) { sy = _parent.surface._y; if ((((1 < _parent.level) && (!active)) && (_parent.gameOn)) && (random(100) == 0)) { active = true; _x = 600; moveY = 100 + random(150); _y = (sy + moveY); } if (active) { _x = (_x + _parent.speed); if (_alpha < 5) { active = false; _xscale = 100; _yscale = 100; _alpha = 100; _x = 600; _parent.buoyZ = 1000; } else if (0 >= moveY) { _y = sy; _xscale = (_xscale - 20); _yscale = (_yscale - 20); _alpha = (_alpha - 20); } else { moveY = moveY - 2; _y = (sy + moveY); dx = _x - _parent.surfer._x; dy = _y - _parent.surfer._y; dz = Math.sqrt((dx * dx) + (dy * dy)); _parent.buoyZ = dz; if ((dz < 40) && (_parent.surfer.active)) { _parent.surfer.wipeout(500); } } } }
Instance of Symbol 112 MovieClip "bird" in Frame 30
onClipEvent (load) { _parent.birdZ = 1000; active = false; } onClipEvent (enterFrame) { if ((((1 < _parent.level) && (!active)) && (_parent.gameOn)) && (random(75) == 0)) { _parent.sfx.playSound("bird"); sfxCount = 100; active = true; _x = 600; sy = random(80); } if (active) { sfxCount--; if ((sfxCount < 0) && (random(100) == 0)) { _parent.sfx.playSound("bird"); sfxCount = 100; } _x = (_x + (-5 + _parent.speed)); _y = (sy + _parent.jumpHeight); dx = _x - _parent.surfer._x; dy = _y - _parent.surfer._y; dz = Math.sqrt((dx * dx) + (dy * dy)); _parent.birdZ = dz; if ((dz < 40) && (_parent.surfer.active)) { _parent.surfer.wipeout(500); _parent.surfer.birdhit = true; } if (_x < -50) { _parent.birdZ = 1000; active = false; } } }
Instance of Symbol 200 MovieClip "surfer" in Frame 30
onClipEvent (load) { function wipeout(scoreloss) { _parent.speed = 0; active = false; flyin = false; crashCount = 0; _parent.score = _parent.score - scoreloss; if (_parent.score < 0) { _parent.score = 0; } if (scoreloss != -1) { _parent.sfx.playSound("scream1"); } else { _parent.sfx.playSound("scream2"); } gotoAndPlay ("wipeout"); } readytogo = false; active = false; flyin = false; top = 150; bottom = 350; left = 120; right = 560; resetX = 275; resetY = 155; leftX = resetX - 100; rightX = resetX + 100; slideX = 5; dx = 0; dy = 0; g = -0.7; accelY = 0.6; accelX = 5; brakesX = 0.8; brakesXmax = 0.8; maxX = 30; jumpY = 0; crashCount = 0; jumpSpin = "none"; spinScore = 0; } onClipEvent (enterFrame) { if (((Key.isDown(39) || (Key.isDown(37))) && (!active)) && (readytogo)) { active = true; readytogo = false; } cf = this._currentframe; x = this._x; y = this._y; if (active) { rot = 1; if (Key.isDown(32)) { rot = 2; } if (Key.isDown(37)) { spinScore = spinScore + (rot * 10); cf = cf - rot; } if (Key.isDown(39)) { spinScore = spinScore + (rot * 10); cf = cf + rot; } if (30 < cf) { cf = cf - 29; } if (cf < 1) { cf = cf + 29; } this.gotoAndStop(cf); this.shad.gotoAndStop(cf); if (flyin) { i++; _parent.jumpHeight = ((jumpY * i) - (g * Math.pow(i, 2))) * -1; y = sy + ((jumpY * i) - (g * Math.pow(i, 2))); y = top; _parent.speed = _parent.speed * 0.88; spinScore = spinScore + (_parent.jumpHeight / 20); if ((top < y) || (_parent.jumpHeight < 0)) { px = _parent.pipeX - _x; _parent.jumpHeight = 0; if (((5 < cf) && (cf < 27)) || (135 < px)) { if (135 < px) { spinScore = spinScore + 2300; } else if (0 < px) { spinScore = spinScore + (px * 17); } wipeout(Math.ceil(spinScore)); } else { _parent.sfx.playSound("land"); if (0 < px) { spinScore = spinScore + (px * 17); } _parent.jumpScore = Math.ceil(spinScore); _parent.score = _parent.score + _parent.jumpScore; _parent.jumpScoreMC.gotoAndPlay(2); } shad._visible = true; flyin = false; } } else { angle = (cf - 1) * 12; angleX = Math.sin(angle * (Math.PI/180)); if (0.9 < angleX) { brakesX = brakesX - 0.01; } else if (brakesX < brakesXmax) { brakesX = brakesX + 0.02; } else if (brakesXmax < brakesX) { brakesX = brakesXmax; } angleX = angleX * accelX; dx = dx + angleX; _x = (_x - angleX); if (_x < leftX) { _x = leftX; } if (rightX < _x) { _x = rightX; } dx = dx * brakesX; if (maxX < dx) { dx = maxX; } if (dx < (-maxX)) { dx = -maxX; } dy = Math.cos(angle * (Math.PI/180)) * ((maxX * accelY) + (Math.abs(dx) * accelY)); if (200 < (_parent.pipeX - _x)) { wipeout(200); } if (!_parent.gameOn) { active = false; if ((_parent.level < 3) && (_parent.score >= _parent.threshold)) { _parent.gotoAndStop("start"); } else { _parent.gotoAndStop("gameover"); } } y = y + dy; if (y < top) { jumpY = dy; jumpSpin = "none"; spinScore = 0; sy = y; i = 0; shad._visible = false; flyin = true; } if (bottom < y) { wipeout(500); } } _parent.speed = dx; _y = y; } else if (birdhit) { _y = (_y + 10); } }
Instance of Symbol 205 MovieClip "pipe" in Frame 30
onClipEvent (load) { wx = 11; } onClipEvent (enterFrame) { if (_parent.surfer.active) { dx = wx - (x / 30); if (dx < wx) { dx = wx; } if (_parent.surfer.active) { x = x + dx; } x = x + _parent.speed; if (0 < x) { _x = x; _parent.pipeX = x; } } _y = (_parent.surface._y + 95); }
Instance of Symbol 219 MovieClip in Frame 30
onClipEvent (enterFrame) { if (_parent.gameOn) { secs = (0 + (20 * _parent.level)) - Math.round((getTimer() - _parent.startTime) / 1000); if (0 < secs) { mins = Math.floor(secs / 60); secs = secs - (mins * 60); if (secs < 10) { secs = "0" + secs; } _parent.timeDisplay = (mins + ":") + secs; } else { _parent.timeDisplay = "0:00"; _parent.gameOn = false; } } }
Frame 34
surfer.readytogo = true; stop();
Frame 39
surfer.active = false; gameOn = false; if (eaten) { info = "UR FISH FOOD DUDE"; } else if (level < 3) { info = "NEARLY DUDE - TRY AGAIN"; } else if (level == 3) { info = "COOL SURFIN DUDE"; } stop();
Instance of Symbol 391 MovieClip in Frame 39
onClipEvent (load) { scoreLocation = "_root.score"; gamename = "surf"; saveScore = true; scoreIsTime = false; scoreReversed = false; }
Symbol 20 MovieClip Frame 1
play();
Symbol 20 MovieClip Frame 99
_parent.nextFrame(); stop();
Symbol 26 MovieClip Frame 1
stop();
Symbol 37 Button
on (release) { nextFrame(); }
Symbol 44 Button
on (release) { gotoAndStop (1); }
Symbol 45 MovieClip Frame 1
stop();
Symbol 51 Button
on (release) { getURL ("http://www.miniclip.com/Homepage.htm", "_blank"); }
Symbol 55 Button
on (release) { play(); } on (keyPress "<Space>") { play(); }
Symbol 58 Button
on (release) { _parent._parent.mute = true; stopAllSounds(); nextFrame(); }
Symbol 60 Button
on (release) { _parent._parent.mute = false; _parent.startSounds(); prevFrame(); }
Symbol 61 MovieClip Frame 1
stop();
Symbol 70 MovieClip Frame 1
function playSound(sfxName) { if (!_parent.mute) { gotoAndStop(sfxName); } } function startSounds() { gotoAndStop ("music"); } stop();
Instance of Symbol 61 MovieClip "mute" in Symbol 70 MovieClip Frame 1
onClipEvent (load) { if (_parent._parent.mute) { stopAllSounds(); this.gotoAndStop(2); } else { _parent.startSounds(); } }
Symbol 70 MovieClip Frame 5
gotoAndStop ("wave");
Symbol 70 MovieClip Frame 10
gotoAndStop (1);
Symbol 70 MovieClip Frame 15
gotoAndStop (1);
Symbol 70 MovieClip Frame 20
gotoAndStop (1);
Symbol 70 MovieClip Frame 25
gotoAndStop (1);
Symbol 70 MovieClip Frame 30
gotoAndStop (1);
Symbol 70 MovieClip Frame 35
gotoAndStop (1);
Symbol 70 MovieClip Frame 40
gotoAndStop (1);
Symbol 121 MovieClip Frame 1
stop();
Symbol 200 MovieClip Frame 1
stop();
Symbol 200 MovieClip Frame 35
play();
Symbol 200 MovieClip Frame 40
_parent.sfx.playSound("splash");
Symbol 200 MovieClip Frame 51
if (_parent.eaten) { trace("eaten"); _parent.gotoAndStop("gameover"); stop(); }
Symbol 200 MovieClip Frame 67
birdhit = false; _parent.jumpHeight = 0; _parent.speed = 0; _x = resetX; _y = resetY; _parent.pipeX = 0; _parent.pipe.x = _parent.pipeX; _parent.pipe._x = _parent.pipeX;
Symbol 200 MovieClip Frame 68
play();
Symbol 200 MovieClip Frame 69
if ((_parent.sharkZ < 150) || (_parent.buoyZ < 100)) { }
Symbol 200 MovieClip Frame 80
readytogo = true; gotoAndStop (1);
Symbol 209 MovieClip Frame 1
stop();
Symbol 209 MovieClip Frame 2
play();
Symbol 209 MovieClip Frame 10
_parent.sfx.playSound("blip");
Symbol 209 MovieClip Frame 35
gotoAndStop (1);
Symbol 223 Button
on (release, keyPress "<Space>") { if (3 < level) { newLevel(); } else { newGame(); } }
Symbol 235 MovieClip Frame 2
stop();
Symbol 249 Button
on (release) { sendHighScore(); }
Symbol 265 MovieClip Frame 18
txtUsername = _parent.mcHighScoreData.notSentUsername; myDate = new Date(); stop();
Symbol 271 Button
on (release) { gotoAndPlay ("weekly"); }
Symbol 274 Button
on (release) { gotoAndPlay ("monthly"); }
Symbol 310 MovieClip Frame 11
stop();
Instance of Symbol 310 MovieClip in Symbol 311 MovieClip Frame 1
onClipEvent (load) { stop(); }
Instance of Symbol 310 MovieClip in Symbol 311 MovieClip Frame 1
onClipEvent (load) { stop(); }
Instance of Symbol 310 MovieClip in Symbol 311 MovieClip Frame 1
onClipEvent (load) { stop(); }
Instance of Symbol 310 MovieClip in Symbol 311 MovieClip Frame 1
onClipEvent (load) { stop(); }
Instance of Symbol 310 MovieClip in Symbol 311 MovieClip Frame 1
onClipEvent (load) { stop(); }
Instance of Symbol 310 MovieClip in Symbol 311 MovieClip Frame 1
onClipEvent (load) { stop(); }
Instance of Symbol 310 MovieClip in Symbol 311 MovieClip Frame 1
onClipEvent (load) { stop(); }
Instance of Symbol 310 MovieClip in Symbol 311 MovieClip Frame 1
onClipEvent (load) { stop(); }
Instance of Symbol 310 MovieClip in Symbol 311 MovieClip Frame 1
onClipEvent (load) { stop(); }
Symbol 311 MovieClip Frame 10
stop();
Symbol 317 Button
on (release) { gotoAndStop ("daily"); }
Symbol 389 Button
on (release) { gameURL = ("http://www.miniclip.com/" + gamename) + ".htm"; getURL (gameURL, "_blank"); }
Symbol 391 MovieClip Frame 1
function sendHighScore() { play(); } function convertScoreToTime(scoreToBeConverted) { if (scoreIsTime) { if (!scoreReversed) { var convertScore = (1000000 - scoreToBeConverted); } else { var convertScore = scoreToBeConverted; } var strScore = new String(convertScore); if (99999 < convertScore) { var tmpTime = ((((strScore.substring(0, 2) + ":") + strScore.substring(2, 4)) + ":") + strScore.substring(4, 6)); } else if (9999 < convertScore) { var tmpTime = ((((("0" + strScore.substring(0, 1)) + ":") + strScore.substring(1, 3)) + ":") + strScore.substring(3, 5)); } else if (999 < convertScore) { var tmpTime = ((("00:" + strScore.substring(0, 2)) + ":") + strScore.substring(2, 5)); } else if (99 < convertScore) { var tmpTime = ((("00:0" + strScore.substring(0, 1)) + ":") + strScore.substring(1, 3)); } else if (9 < convertScore) { var tmpTime = ("00:00:" + strScore.substring(0, 2)); } else { var tmpTime = ("00:00:0" + strScore.substring(0, 1)); } convertScore = tmpTime; if ((convertScore != "10:00:00") && (convertScore != "00:00:0")) { return(convertScore); } } else { var convertScore = (1000000000 - scoreToBeConverted); if (convertScore != 1000000000) { return(convertScore); } } } function getHighScores(period, target) { target.records = 0; if (saveScore) { target.score = localScore; target.username = txtUsername; target.notSentScore = localScore; target.notSentUsername = txtUsername; } target.gamename = gamename; target.low = 0; target.high = 10; target.formaction = "gethighscores"; target.dwm = period; var preventCaching = (getTimer() + random(100)); target.loadVariables("http://www.miniclip.com/Flash/proxy.php?preventCashing=" + preventCaching, "GET"); play(); } function sendHighScore() { if ((txtUsername != "") && (txtUsername != undefined)) { getHighScores(2, mcHighScoreData); } } if ((_url.slice(0, 23) != "http://www.miniclip.com") and (_url.slice(0, 19) != "http://miniclip.com")) { offsite = true; play(); } else { this.username = ""; this.score = 0; gameName = gamename; position_d = 0; position_w = 0; position_m = 0; mcHighScoreData.records = 0; dailyLoaded = false; weeklyLoaded = false; monthlyLoaded = false; dailyTabClicked = false; weeklyTabClicked = false; monthlyTabClicked = false; timeOutVal = 15000; completed = "false"; localScore = int(eval (scoreLocation)); if (0 < localScore) { if (scoreIsTime) { if (!scoreReversed) { localScore = 1000000 - localScore; } } else if (scoreReversed) { localScore = 1000000000 - localScore; } } else { localScore = 0; } this._x = int(this._x); this._y = int(this._y); if (gameName == undefined) { trace("MINICLIP.COM HIGHSCORE COMPONENT WARNING"); trace("========================================"); trace("The 'gameName' parameter has not been set. This parameter"); trace("needs to be set for the highscore component to function."); } if ((eval (scoreLocation) == undefined) && (saveScore)) { trace("MINICLIP.COM HIGHSCORE COMPONENT WARNING"); trace("========================================"); trace("The 'scoreLocation' parameter does not contain any data."); trace("This parameter needs to be pointing to the game score variable"); trace("set for the highscore component to function."); localScore = 0; } if (saveScore && (0 < eval (scoreLocation))) { gotoAndPlay ("save"); } else { getHighScores(2, mcHighScoreData); gotoAndPlay ("load"); } }
Instance of Symbol 235 MovieClip in Symbol 391 MovieClip Frame 1
onClipEvent (load) { _visible = false; }
Symbol 391 MovieClip Frame 9
Selection.setFocus("txtUsername"); stop();
Instance of Symbol 245 MovieClip in Symbol 391 MovieClip Frame 9
onClipEvent (keyDown) { if (Key.isDown(13)) { _parent.sendHighScore(); } }
Symbol 391 MovieClip Frame 15
mcHighScoreData.username = ""; everyNSeconds = getTimer() + 2000; timeOut = getTimer() + timeOutVal; timeOutOffsite = getTimer() + 1000;
Symbol 391 MovieClip Frame 17
if ((timeOutOffsite < getTimer()) && (offsite)) { gotoAndPlay ("completed"); } else if ((timeOut < getTimer()) && (!offsite)) { timeOut = getTimer() + timeOutVal; completed = false; gotoAndPlay ("failedLoading"); } else if (0 < mcHighScoreData.records) { mcHighScoreData.positionDaily = mcHighScoreData.position; if (scoreIsTime) { mcHighScoreData.notSentScore = convertScoreToTime(localScore); } var i = 0; while (i < mcHighScoreData.high) { mcHighScoreData["userNameDaily" + i] = mcHighScoreData["user_name" + i]; mcHighScoreData["scoreDaily" + i] = mcHighScoreData["score" + i]; mcHighScoreData["dateDaily" + i] = mcHighScoreData["date" + i]; i++; } gotoAndPlay ("completed"); } else { if (everyNSeconds < getTimer()) { getHighScores(2, mcHighScoreData); everyNSeconds = getTimer() + 2000; trace("try"); } gotoAndPlay(_currentframe - 1); }
Symbol 391 MovieClip Frame 28
stop();
Instance of Symbol 265 MovieClip "mcYourScore" in Symbol 391 MovieClip Frame 34
onClipEvent (load) { trace(_parent.saveScore); if ((0 >= _parent.localScore) or (!_parent.saveScore)) { this._visible = false; } }
Symbol 391 MovieClip Frame 40
if (offsite) { gotoAndStop ("offsite"); }
Symbol 391 MovieClip Frame 41
saveScore = false; if (!dailyTabClicked) { mcYourScore.position = position; dailyTabClicked = true; var i = 0; while (i < mcHighScoreData.high) { if (scoreIsTime or scoreReversed) { mcHighScoreData["scoreDaily" + i] = convertScoreToTime(mcHighScoreData["scoreDaily" + i]); } i++; } } var i = 0; while (i < mcHighScoreData.high) { this["txtUserName" + i] = mcHighScoreData["userNameDaily" + i]; this["txtScore" + i] = mcHighScoreData["scoreDaily" + i]; this["txtDate" + i] = mcHighScoreData["dateDaily" + i]; i++; } mcYourScore.position = mcHighScoreData.positionDaily; stop();
Symbol 391 MovieClip Frame 48
if ((!weeklyTabClicked) or (!weeklyLoaded)) { getHighScores(1, mcHighScoreData); weeklyTabClicked = true; } else if (weeklyLoaded) { gotoAndPlay ("weeklyLoaded"); }
Symbol 391 MovieClip Frame 55
if (0 < mcHighScoreData.records) { mcHighScoreData.positionWeekly = mcHighScoreData.position; weeklyLoaded = true; var i = 0; while (i < mcHighScoreData.high) { mcHighScoreData["userNameWeekly" + i] = mcHighScoreData["user_name" + i]; mcHighScoreData["scoreWeekly" + i] = mcHighScoreData["score" + i]; mcHighScoreData["dateWeekly" + i] = mcHighScoreData["date" + i]; if (scoreIsTime or scoreReversed) { mcHighScoreData["scoreWeekly" + i] = convertScoreToTime(mcHighScoreData["scoreWeekly" + i]); } i++; } gotoAndPlay ("weeklyLoaded"); } else { gotoAndPlay(_currentframe - 1); }
Symbol 391 MovieClip Frame 56
var i = 0; while (i < mcHighScoreData.high) { this["txtUserName" + i] = mcHighScoreData["userNameWeekly" + i]; this["txtScore" + i] = mcHighScoreData["scoreWeekly" + i]; this["txtDate" + i] = mcHighScoreData["dateWeekly" + i]; i++; } mcYourScore.position = mcHighScoreData.positionWeekly; stop();
Symbol 391 MovieClip Frame 68
if ((!monthlyTabClicked) or (!monthlyLoaded)) { getHighscores(0, mcHighScoreData); monthlyTabClicked = true; } else if (monthlyLoaded) { gotoAndPlay ("monthlyLoaded"); }
Symbol 391 MovieClip Frame 75
if (0 < mcHighScoreData.records) { mcHighScoreData.positionMonthly = mcHighScoreData.position; monthlyLoaded = true; var i = 0; while (i < mcHighScoreData.high) { mcHighScoreData["userNameMonthly" + i] = mcHighScoreData["user_name" + i]; mcHighScoreData["scoreMonthly" + i] = mcHighScoreData["score" + i]; mcHighScoreData["dateMonthly" + i] = mcHighScoreData["date" + i]; if (scoreIsTime or scoreReversed) { mcHighScoreData["scoreMonthly" + i] = convertScoreToTime(mcHighScoreData["scoreMonthly" + i]); } i++; } gotoAndPlay ("monthlyLoaded"); } else { gotoAndPlay(_currentframe - 1); }
Symbol 391 MovieClip Frame 76
var i = 0; while (i < mcHighScoreData.high) { this["txtUserName" + i] = mcHighScoreData["userNameMonthly" + i]; this["txtScore" + i] = mcHighScoreData["scoreMonthly" + i]; this["txtDate" + i] = mcHighScoreData["dateMonthly" + i]; i++; } mcYourScore.position = mcHighScoreData.positionMonthly; stop();
Symbol 391 MovieClip Frame 91
stop();
Symbol 395 Button
on (release) { getURL ("http://www.miniclip.com/signup.htm", "_blank"); }
Symbol 399 Button
on (release) { getURL ("http://www.miniclip.com/Homepage.htm", "_blank"); }
Symbol 403 Button
on (release) { gotoAndStop ("ready"); }

Library Items

Symbol 1 GraphicUsed by:Timeline
Symbol 2 FontUsed by:3 4 5
Symbol 3 TextUses:2Used by:6
Symbol 4 TextUses:2Used by:6
Symbol 5 TextUses:2Used by:6
Symbol 6 MovieClipUses:3 4 5Used by:Timeline
Symbol 10 SoundUsed by:20
Symbol 11 GraphicUsed by:20 389
Symbol 16 GraphicUsed by:20
Symbol 17 SoundUsed by:20
Symbol 18 Font
Symbol 20 MovieClipUses:10 11 16 17Used by:Timeline
Symbol 21 GraphicUsed by:26
Symbol 22 GraphicUsed by:26
Symbol 23 GraphicUsed by:26
Symbol 24 FontUsed by:25 400 402
Symbol 25 TextUses:24Used by:26
Symbol 26 MovieClipUses:21 22 23 25Used by:Timeline
Symbol 27 Bitmap
Symbol 404 BitmapUsed by:28
Symbol 28 GraphicUses:404Used by:Timeline
Symbol 33 GraphicUsed by:45
Symbol 34 FontUsed by:35 206 207 211 213 217 218 220 221 222
Symbol 35 TextUses:34Used by:37
Symbol 36 GraphicUsed by:37
Symbol 37 ButtonUses:35 36Used by:45
Symbol 38 GraphicUsed by:45 223
Symbol 39 FontUsed by:40
Symbol 40 TextUses:39Used by:45
Symbol 41 GraphicUsed by:44
Symbol 42 GraphicUsed by:44
Symbol 43 GraphicUsed by:44
Symbol 44 ButtonUses:41 42 43Used by:45
Symbol 45 MovieClipUses:33 37 38 40 44Used by:Timeline
Symbol 48 Font
Symbol 50 GraphicUsed by:51 55 223
Symbol 51 ButtonUses:50Used by:Timeline
Symbol 52 GraphicUsed by:55
Symbol 53 GraphicUsed by:55
Symbol 54 GraphicUsed by:55
Symbol 55 ButtonUses:52 53 54 50Used by:Timeline
Symbol 56 GraphicUsed by:70
Symbol 57 GraphicUsed by:58 60 271 274 317 391 395 399 403
Symbol 58 ButtonUses:57Used by:61
Symbol 59 GraphicUsed by:61
Symbol 60 ButtonUses:57Used by:61
Symbol 61 MovieClipUses:58 59 60Used by:70
Symbol 62 SoundUsed by:70
Symbol 63 SoundUsed by:70
Symbol 65 SoundUsed by:70
Symbol 66 SoundUsed by:70
Symbol 67 SoundUsed by:70
Symbol 68 SoundUsed by:70
Symbol 69 SoundUsed by:70
Symbol 70 MovieClipUses:56 61 62 63 65 66 67 68 69Used by:Timeline
Symbol 71 GraphicUsed by:Timeline
Symbol 72 GraphicUsed by:77
Symbol 73 GraphicUsed by:77
Symbol 74 GraphicUsed by:77
Symbol 75 GraphicUsed by:77
Symbol 76 GraphicUsed by:77
Symbol 77 MovieClipUses:72 73 74 75 76Used by:Timeline
Symbol 78 GraphicUsed by:92
Symbol 79 GraphicUsed by:86 89 100 102 120 200 205
Symbol 80 GraphicUsed by:86 89 100 102 120 200 205
Symbol 81 GraphicUsed by:86 89 100 102 120 200 205
Symbol 82 GraphicUsed by:86 89 100 102 120 200 205
Symbol 83 GraphicUsed by:86 89 100 102 120 200 205
Symbol 84 GraphicUsed by:86 205
Symbol 85 GraphicUsed by:86 205
Symbol 86 MovieClipUses:79 80 81 82 83 84 85Used by:92
Symbol 87 GraphicUsed by:89
Symbol 88 GraphicUsed by:89
Symbol 89 MovieClipUses:79 80 81 82 83 87 88Used by:92
Symbol 90 GraphicUsed by:92
Symbol 91 GraphicUsed by:92
Symbol 92 MovieClipUses:78 86 89 90 91Used by:Timeline
Symbol 93 GraphicUsed by:100
Symbol 94 GraphicUsed by:100
Symbol 95 GraphicUsed by:96
Symbol 96 MovieClipUses:95Used by:100
Symbol 97 GraphicUsed by:100 102 120 200 205
Symbol 98 GraphicUsed by:100 102 120 200 205
Symbol 99 GraphicUsed by:100 102 120 200 205
Symbol 100 MovieClipUses:93 94 96 79 97 80 82 81 83 98 99Used by:Timeline
Symbol 101 GraphicUsed by:102
Symbol 102 MovieClipUses:101 79 82 80 83 81 98 97 99Used by:Timeline
Symbol 103 GraphicUsed by:112
Symbol 104 GraphicUsed by:112
Symbol 105 GraphicUsed by:112
Symbol 106 GraphicUsed by:112
Symbol 107 GraphicUsed by:112
Symbol 108 GraphicUsed by:112
Symbol 109 GraphicUsed by:112
Symbol 110 GraphicUsed by:112
Symbol 111 GraphicUsed by:112
Symbol 112 MovieClipUses:103 104 105 106 107 108 109 110 111Used by:Timeline
Symbol 113 GraphicUsed by:121 200 223
Symbol 114 GraphicUsed by:119
Symbol 115 GraphicUsed by:119
Symbol 116 GraphicUsed by:119
Symbol 117 GraphicUsed by:119
Symbol 118 GraphicUsed by:119
Symbol 119 MovieClipUses:114 115 116 117 118Used by:121
Symbol 120 MovieClipUses:79 80 81 97 82 83 98 99Used by:121
Symbol 121 MovieClipUses:113 119 120Used by:200
Symbol 122 BitmapUsed by:123
Symbol 123 GraphicUses:122Used by:200
Symbol 124 BitmapUsed by:125
Symbol 125 GraphicUses:124Used by:200
Symbol 126 BitmapUsed by:127
Symbol 127 GraphicUses:126Used by:200
Symbol 128 BitmapUsed by:129
Symbol 129 GraphicUses:128Used by:200
Symbol 130 BitmapUsed by:131
Symbol 131 GraphicUses:130Used by:200
Symbol 132 BitmapUsed by:133
Symbol 133 GraphicUses:132Used by:200
Symbol 134 BitmapUsed by:135
Symbol 135 GraphicUses:134Used by:200
Symbol 136 BitmapUsed by:137
Symbol 137 GraphicUses:136Used by:200
Symbol 138 BitmapUsed by:139
Symbol 139 GraphicUses:138Used by:200
Symbol 140 BitmapUsed by:141
Symbol 141 GraphicUses:140Used by:200
Symbol 142 BitmapUsed by:143
Symbol 143 GraphicUses:142Used by:200
Symbol 144 BitmapUsed by:145
Symbol 145 GraphicUses:144Used by:200
Symbol 146 BitmapUsed by:147
Symbol 147 GraphicUses:146Used by:200
Symbol 148 BitmapUsed by:149
Symbol 149 GraphicUses:148Used by:200
Symbol 150 BitmapUsed by:151
Symbol 151 GraphicUses:150Used by:200
Symbol 152 BitmapUsed by:153
Symbol 153 GraphicUses:152Used by:200
Symbol 154 BitmapUsed by:155
Symbol 155 GraphicUses:154Used by:200
Symbol 156 BitmapUsed by:157
Symbol 157 GraphicUses:156Used by:200
Symbol 158 BitmapUsed by:159
Symbol 159 GraphicUses:158Used by:200
Symbol 160 BitmapUsed by:161
Symbol 161 GraphicUses:160Used by:200
Symbol 162 BitmapUsed by:163
Symbol 163 GraphicUses:162Used by:200
Symbol 164 BitmapUsed by:165
Symbol 165 GraphicUses:164Used by:200
Symbol 166 BitmapUsed by:167
Symbol 167 GraphicUses:166Used by:200
Symbol 168 BitmapUsed by:169
Symbol 169 GraphicUses:168Used by:200
Symbol 170 BitmapUsed by:171
Symbol 171 GraphicUses:170Used by:200
Symbol 172 BitmapUsed by:173
Symbol 173 GraphicUses:172Used by:200
Symbol 174 BitmapUsed by:175
Symbol 175 GraphicUses:174Used by:200
Symbol 176 BitmapUsed by:177
Symbol 177 GraphicUses:176Used by:200
Symbol 178 BitmapUsed by:179
Symbol 179 GraphicUses:178Used by:200
Symbol 180 BitmapUsed by:181
Symbol 181 GraphicUses:180Used by:200
Symbol 182 BitmapUsed by:183
Symbol 183 GraphicUses:182Used by:200
Symbol 184 BitmapUsed by:185
Symbol 185 GraphicUses:184Used by:200
Symbol 186 BitmapUsed by:187
Symbol 187 GraphicUses:186Used by:200
Symbol 188 BitmapUsed by:189
Symbol 189 GraphicUses:188Used by:200
Symbol 190 BitmapUsed by:191
Symbol 191 GraphicUses:190Used by:200
Symbol 192 BitmapUsed by:193
Symbol 193 GraphicUses:192Used by:200
Symbol 194 BitmapUsed by:195
Symbol 195 GraphicUses:194Used by:200
Symbol 196 BitmapUsed by:197
Symbol 197 GraphicUses:196Used by:200
Symbol 198 BitmapUsed by:199
Symbol 199 GraphicUses:198Used by:200
Symbol 200 MovieClipUses:121 123 125 127 129 131 133 135 137 139 141 143 145 147 149 151 153 155 157 159 161 163 165 167 169 171 173 175 177 179 181 183 185 187 113 189 79 191 193 81 195 83 197 98 199 99 80 97 82Used by:Timeline
Symbol 201 GraphicUsed by:205
Symbol 202 GraphicUsed by:205
Symbol 203 GraphicUsed by:205
Symbol 204 GraphicUsed by:205
Symbol 205 MovieClipUses:201 98 79 81 97 99 80 83 82 202 203 204 84 85Used by:Timeline
Symbol 206 EditableTextUses:34Used by:208
Symbol 207 EditableTextUses:34Used by:208
Symbol 208 MovieClipUses:206 207Used by:209
Symbol 209 MovieClipUses:208Used by:Timeline
Symbol 210 GraphicUsed by:Timeline
Symbol 211 TextUses:34Used by:Timeline
Symbol 213 EditableTextUses:34Used by:214
Symbol 214 MovieClipUses:213Used by:Timeline
Symbol 217 TextUses:34Used by:Timeline
Symbol 218 EditableTextUses:34Used by:219
Symbol 219 MovieClipUses:218Used by:Timeline
Symbol 220 TextUses:34Used by:223
Symbol 221 TextUses:34Used by:223
Symbol 222 TextUses:34Used by:223
Symbol 223 ButtonUses:38 220 221 113 222 50Used by:Timeline
Symbol 226 GraphicUsed by:Timeline
Symbol 227 GraphicUsed by:235
Symbol 228 FontUsed by:230 231 232
Symbol 230 TextUses:228Used by:235
Symbol 231 TextUses:228Used by:235
Symbol 232 TextUses:228Used by:235
Symbol 235 MovieClipUses:227 230 231 232Used by:391
Symbol 236 GraphicUsed by:237
Symbol 237 MovieClipUses:236Used by:391
Symbol 241 FontUsed by:242 261 262 263 264 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380
Symbol 242 EditableTextUses:241Used by:391
Symbol 245 MovieClipUsed by:391
Symbol 249 ButtonUsed by:391
Symbol 259 GraphicUsed by:265
Symbol 260 GraphicUsed by:265 391
Symbol 261 EditableTextUses:241Used by:265
Symbol 262 EditableTextUses:241Used by:265
Symbol 263 EditableTextUses:241Used by:265
Symbol 264 EditableTextUses:241Used by:265
Symbol 265 MovieClipUses:259 260 261 262 263 264Used by:391
Symbol 266 GraphicUsed by:391
Symbol 268 GraphicUsed by:271
Symbol 270 GraphicUsed by:271 274
Symbol 271 ButtonUses:268 57 270Used by:391
Symbol 272 GraphicUsed by:274
Symbol 274 ButtonUses:272 57 270Used by:391
Symbol 276 EditableTextUses:241Used by:391
Symbol 277 EditableTextUses:241Used by:391
Symbol 278 EditableTextUses:241Used by:391
Symbol 279 EditableTextUses:241Used by:391
Symbol 280 EditableTextUses:241Used by:391
Symbol 281 EditableTextUses:241Used by:391
Symbol 282 EditableTextUses:241Used by:391
Symbol 283 EditableTextUses:241Used by:391
Symbol 284 EditableTextUses:241Used by:391
Symbol 285 EditableTextUses:241Used by:391
Symbol 286 EditableTextUses:241Used by:391
Symbol 287 EditableTextUses:241Used by:391
Symbol 288 EditableTextUses:241Used by:391
Symbol 289 EditableTextUses:241Used by:391
Symbol 290 EditableTextUses:241Used by:391
Symbol 291 EditableTextUses:241Used by:391
Symbol 292 EditableTextUses:241Used by:391
Symbol 293 EditableTextUses:241Used by:391
Symbol 294 EditableTextUses:241Used by:391
Symbol 295 EditableTextUses:241Used by:391
Symbol 296 EditableTextUses:241Used by:391
Symbol 297 EditableTextUses:241Used by:391
Symbol 298 EditableTextUses:241Used by:391
Symbol 299 EditableTextUses:241Used by:391
Symbol 300 EditableTextUses:241Used by:391
Symbol 301 EditableTextUses:241Used by:391
Symbol 302 EditableTextUses:241Used by:391
Symbol 303 EditableTextUses:241Used by:391
Symbol 304 EditableTextUses:241Used by:391
Symbol 305 EditableTextUses:241Used by:391
Symbol 308 GraphicUsed by:310
Symbol 309 GraphicUsed by:310
Symbol 310 MovieClipUses:308 309Used by:311
Symbol 311 MovieClipUses:310Used by:391
Symbol 312 GraphicUsed by:391
Symbol 314 GraphicUsed by:391
Symbol 315 GraphicUsed by:317
Symbol 316 GraphicUsed by:317
Symbol 317 ButtonUses:315 57 316Used by:391
Symbol 319 EditableTextUses:241Used by:391
Symbol 320 EditableTextUses:241Used by:391
Symbol 321 EditableTextUses:241Used by:391
Symbol 322 EditableTextUses:241Used by:391
Symbol 323 EditableTextUses:241Used by:391
Symbol 324 EditableTextUses:241Used by:391
Symbol 325 EditableTextUses:241Used by:391
Symbol 326 EditableTextUses:241Used by:391
Symbol 327 EditableTextUses:241Used by:391
Symbol 328 EditableTextUses:241Used by:391
Symbol 329 EditableTextUses:241Used by:391
Symbol 330 EditableTextUses:241Used by:391
Symbol 331 EditableTextUses:241Used by:391
Symbol 332 EditableTextUses:241Used by:391
Symbol 333 EditableTextUses:241Used by:391
Symbol 334 EditableTextUses:241Used by:391
Symbol 335 EditableTextUses:241Used by:391
Symbol 336 EditableTextUses:241Used by:391
Symbol 337 EditableTextUses:241Used by:391
Symbol 338 EditableTextUses:241Used by:391
Symbol 339 EditableTextUses:241Used by:391
Symbol 340 EditableTextUses:241Used by:391
Symbol 341 EditableTextUses:241Used by:391
Symbol 342 EditableTextUses:241Used by:391
Symbol 343 EditableTextUses:241Used by:391
Symbol 344 EditableTextUses:241Used by:391
Symbol 345 EditableTextUses:241Used by:391
Symbol 346 EditableTextUses:241Used by:391
Symbol 347 EditableTextUses:241Used by:391
Symbol 348 EditableTextUses:241Used by:391
Symbol 349 GraphicUsed by:391
Symbol 351 EditableTextUses:241Used by:391
Symbol 352 EditableTextUses:241Used by:391
Symbol 353 EditableTextUses:241Used by:391
Symbol 354 EditableTextUses:241Used by:391
Symbol 355 EditableTextUses:241Used by:391
Symbol 356 EditableTextUses:241Used by:391
Symbol 357 EditableTextUses:241Used by:391
Symbol 358 EditableTextUses:241Used by:391
Symbol 359 EditableTextUses:241Used by:391
Symbol 360 EditableTextUses:241Used by:391
Symbol 361 EditableTextUses:241Used by:391
Symbol 362 EditableTextUses:241Used by:391
Symbol 363 EditableTextUses:241Used by:391
Symbol 364 EditableTextUses:241Used by:391
Symbol 365 EditableTextUses:241Used by:391
Symbol 366 EditableTextUses:241Used by:391
Symbol 367 EditableTextUses:241Used by:391
Symbol 368 EditableTextUses:241Used by:391
Symbol 369 EditableTextUses:241Used by:391
Symbol 370 EditableTextUses:241Used by:391
Symbol 371 EditableTextUses:241Used by:391
Symbol 372 EditableTextUses:241Used by:391
Symbol 373 EditableTextUses:241Used by:391
Symbol 374 EditableTextUses:241Used by:391
Symbol 375 EditableTextUses:241Used by:391
Symbol 376 EditableTextUses:241Used by:391
Symbol 377 EditableTextUses:241Used by:391
Symbol 378 EditableTextUses:241Used by:391
Symbol 379 EditableTextUses:241Used by:391
Symbol 380 EditableTextUses:241Used by:391
Symbol 381 GraphicUsed by:391
Symbol 382 GraphicUsed by:391
Symbol 383 GraphicUsed by:391
Symbol 385 GraphicUsed by:389
Symbol 387 GraphicUsed by:389
Symbol 389 ButtonUses:385 387 11Used by:391
Symbol 390 GraphicUsed by:391
Symbol 391 MovieClipUses:235 237 242 245 249 265 57 266 271 274 260 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 311 312 314 317 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 389 390Used by:Timeline
Symbol 395 ButtonUses:57Used by:Timeline
Symbol 399 ButtonUses:57Used by:Timeline
Symbol 400 TextUses:24Used by:403
Symbol 401 GraphicUsed by:403
Symbol 402 TextUses:24Used by:403
Symbol 403 ButtonUses:400 401 402 57Used by:Timeline

Instance Names

"progress"Frame 15Symbol 26 MovieClip
"sfx"Frame 19Symbol 70 MovieClip
"wave"Frame 30Symbol 77 MovieClip
"surface"Frame 30Symbol 92 MovieClip
"bird"Frame 30Symbol 112 MovieClip
"surfer"Frame 30Symbol 200 MovieClip
"pipe"Frame 30Symbol 205 MovieClip
"jumpScoreMC"Frame 30Symbol 209 MovieClip
"sfx"Frame 30Symbol 70 MovieClip
"mute"Symbol 70 MovieClip Frame 1Symbol 61 MovieClip
"shad"Symbol 200 MovieClip Frame 1Symbol 121 MovieClip
"mcHighScoreData"Symbol 391 MovieClip Frame 1Symbol 237 MovieClip
"mcYourScore"Symbol 391 MovieClip Frame 34Symbol 265 MovieClip

Special Tags

Protect (24)Timeline Frame 10 bytes ""

Labels

"ready"Frame 19
"start"Frame 30
"game"Frame 34
"gameover"Frame 39
"music"Symbol 70 MovieClip Frame 5
"wave"Symbol 70 MovieClip Frame 10
"bird"Symbol 70 MovieClip Frame 15
"splash"Symbol 70 MovieClip Frame 20
"land"Symbol 70 MovieClip Frame 25
"blip"Symbol 70 MovieClip Frame 30
"scream1"Symbol 70 MovieClip Frame 35
"scream2"Symbol 70 MovieClip Frame 40
"wipeout"Symbol 200 MovieClip Frame 35
"save"Symbol 391 MovieClip Frame 2
"load"Symbol 391 MovieClip Frame 15
"failedLoading"Symbol 391 MovieClip Frame 20
"completed"Symbol 391 MovieClip Frame 34
"daily"Symbol 391 MovieClip Frame 41
"weekly"Symbol 391 MovieClip Frame 48
"weeklyLoaded"Symbol 391 MovieClip Frame 56
"monthly"Symbol 391 MovieClip Frame 68
"monthlyLoaded"Symbol 391 MovieClip Frame 76
"offsite"Symbol 391 MovieClip Frame 91

Dynamic Text Variables

_parent._parent.jumpScoreSymbol 206 EditableText"00000"
_parent._parent.jumpScoreSymbol 207 EditableText"00000"
_parent.scoreSymbol 213 EditableText"00000"
_parent.timeDisplaySymbol 218 EditableText"0:00"
txtUsernameSymbol 242 EditableText""
positionSymbol 261 EditableText""
_parent.mcHighScoreData.dateDaily0Symbol 262 EditableText" "
_parent.mcHighScoreData.notSentScoreSymbol 263 EditableText" "
txtUsernameSymbol 264 EditableText" "
txtDate0Symbol 276 EditableText" "
txtScore0Symbol 277 EditableText" "
txtUserName0Symbol 278 EditableText" "
txtDate1Symbol 279 EditableText" "
txtScore1Symbol 280 EditableText" "
txtUserName1Symbol 281 EditableText" "
txtDate2Symbol 282 EditableText" "
txtScore2Symbol 283 EditableText" "
txtUserName2Symbol 284 EditableText" "
txtDate3Symbol 285 EditableText" "
txtScore3Symbol 286 EditableText" "
txtUserName3Symbol 287 EditableText" "
txtDate4Symbol 288 EditableText" "
txtScore4Symbol 289 EditableText" "
txtUserName4Symbol 290 EditableText" "
txtDate5Symbol 291 EditableText" "
txtScore5Symbol 292 EditableText" "
txtUserName5Symbol 293 EditableText" "
txtDate6Symbol 294 EditableText" "
txtScore6Symbol 295 EditableText" "
txtUserName6Symbol 296 EditableText" "
txtDate7Symbol 297 EditableText" "
txtScore7Symbol 298 EditableText" "
txtUserName7Symbol 299 EditableText" "
txtDate8Symbol 300 EditableText" "
txtScore8Symbol 301 EditableText" "
txtUserName8Symbol 302 EditableText" "
txtDate9Symbol 303 EditableText" "
txtScore9Symbol 304 EditableText" "
txtUserName9Symbol 305 EditableText" "
txtDate0Symbol 319 EditableText" "
txtScore0Symbol 320 EditableText" "
txtUserName0Symbol 321 EditableText" "
txtDate1Symbol 322 EditableText" "
txtScore1Symbol 323 EditableText" "
txtUserName1Symbol 324 EditableText" "
txtDate2Symbol 325 EditableText" "
txtScore2Symbol 326 EditableText" "
txtUserName2Symbol 327 EditableText" "
txtDate3Symbol 328 EditableText" "
txtScore3Symbol 329 EditableText" "
txtUserName3Symbol 330 EditableText" "
txtDate4Symbol 331 EditableText" "
txtScore4Symbol 332 EditableText" "
txtUserName4Symbol 333 EditableText" "
txtDate5Symbol 334 EditableText" "
txtScore5Symbol 335 EditableText" "
txtUserName5Symbol 336 EditableText" "
txtDate6Symbol 337 EditableText" "
txtScore6Symbol 338 EditableText" "
txtUserName6Symbol 339 EditableText" "
txtDate7Symbol 340 EditableText" "
txtScore7Symbol 341 EditableText" "
txtUserName7Symbol 342 EditableText" "
txtDate8Symbol 343 EditableText" "
txtScore8Symbol 344 EditableText" "
txtUserName8Symbol 345 EditableText" "
txtDate9Symbol 346 EditableText" "
txtScore9Symbol 347 EditableText" "
txtUserName9Symbol 348 EditableText" "
txtDate0Symbol 351 EditableText" "
txtScore0Symbol 352 EditableText" "
txtUserName0Symbol 353 EditableText" "
txtDate1Symbol 354 EditableText" "
txtScore1Symbol 355 EditableText" "
txtUserName1Symbol 356 EditableText" "
txtDate2Symbol 357 EditableText" "
txtScore2Symbol 358 EditableText" "
txtUserName2Symbol 359 EditableText" "
txtDate3Symbol 360 EditableText" "
txtScore3Symbol 361 EditableText" "
txtUserName3Symbol 362 EditableText" "
txtDate4Symbol 363 EditableText" "
txtScore4Symbol 364 EditableText" "
txtUserName4Symbol 365 EditableText" "
txtDate5Symbol 366 EditableText" "
txtScore5Symbol 367 EditableText" "
txtUserName5Symbol 368 EditableText" "
txtDate6Symbol 369 EditableText" "
txtScore6Symbol 370 EditableText" "
txtUserName6Symbol 371 EditableText" "
txtDate7Symbol 372 EditableText" "
txtScore7Symbol 373 EditableText" "
txtUserName7Symbol 374 EditableText" "
txtDate8Symbol 375 EditableText" "
txtScore8Symbol 376 EditableText" "
txtUserName8Symbol 377 EditableText" "
txtDate9Symbol 378 EditableText" "
txtScore9Symbol 379 EditableText" "
txtUserName9Symbol 380 EditableText" "




http://swfchan.com/49/240470/info.shtml
Created: 21/4 -2021 16:34:21 Last modified: 21/4 -2021 16:34:21 Server time: 28/04 -2024 16:22:40