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

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

ChampJock.swf

This is the info page for
Flash #42141

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


Text
Loading...

Make your own games

<p align="left"><font face="Arial" size="26" color="#0052c6" letterSpacing="0.000000" kerning="1"><a href="http://www.playza.com"><b><i>playza.com</i></b></a></font></p>

Click on the picture that matches the word shown and keep rapidly
clicking on it. Watch out for when the words change. Your horse will
start to speed up when you have been hitting the right pictures.

<p align="left"><font face="Arial" size="26" color="#0052c6" letterSpacing="0.000000" kerning="1"><a href="http://www.playza.com"><b><i>playza.com</i></b></a></font></p>

boots

saddle

helmet

Player 1

<p align="left"><font face="Arial" size="26" color="#0052c6" letterSpacing="0.000000" kerning="1"><a href="http://www.playza.com"><b><i>playza.com</i></b></a></font></p>

PRESS:

<p align="left"><font face="Arial" size="15" color="#000000" letterSpacing="0.000000" kerning="1"><a href="http://www.playza.com"><b><i>www.playza.com</i></b></a></font></p>

BETTER LUCK NEXT TIME!

<p align="left"><font face="Arial" size="15" color="#000000" letterSpacing="0.000000" kerning="1"><a href="http://www.playza.com"><b><i>www.playza.com</i></b></a></font></p>

CONGRATULATIONS!

<p align="left"><font face="Arial" size="15" color="#000000" letterSpacing="0.000000" kerning="1"><a href="http://www.playza.com"><b><i>www.playza.com</i></b></a></font></p>

ActionScript [AS1/AS2]

Frame 1
stop();
Frame 2
play();
Frame 4
stop(); _global.game = new Object(); game.speed = 0; game.score = 0; game.scoreIncrease = 0; game.currentLevel = 0; game.horsesInitialised = false; game.activeItem = ""; game.activeItemList = new Array("helmet", "boots", "whip", "saddle"); game.activeItemTimer = 36; game.activeItemCounter = 0; game.raceTimer = 0; game.playerStarted = false; game.horsesInRace = ["player", "horse1", "horse2", "horse3"]; game.winningOrder = new Array(); game.winningDistances = new Array(); game.distanceCleared = ""; game.prizeMoney = ""; game.chosenName = "Player 1"; playBtn.onRelease = function () { gotoAndPlay ("start"); }; instructionsBtn.onRelease = function () { gotoAndPlay ("instructions"); }; moreBtn.onRelease = function () { getURL ("http://www.playza.com", "_blank"); };
Frame 9
stop(); playBtn.onRelease = function () { gotoAndPlay ("start"); }; backBtn.onRelease = function () { gotoAndPlay ("main_menu"); };
Frame 13
stop(); playGameBtn.onRelease = function () { game.chosenName = nameInputBox.text; gotoAndPlay ("start_race"); };
Frame 19
stop(); var whack = new Sound(); whack.attachSound("THWACK02"); horse1.horseCrossed = false; horse1.horseName = "lightning"; horse2.horseCrossed = false; horse2.horseName = "jackal"; horse3.horseCrossed = false; horse3.horseName = "cannon ball"; playerHorse.horseCrossed = false; playerHorse.horseName = "player 1"; game.winningOrder.length = 0; activateItem = function () { if (game.activeItemCounter >= game.activeItemTimer) { randomItem = random(4); game.activeItem = game.activeItemList[randomItem]; game.activeItemTimer = random(60) + 12; game.activeItemCounter = 0; itemText.text = game.activeItem; } game.activeItemCounter++; }; checkActiveItem = function (itemName) { if (itemName == game.activeItem) { game.speed = game.speed + 0.2; } else { game.speed = game.speed - 0.1; } }; horse1.onEnterFrame = function () { var _local1 = this; i = 1; while (i <= 3) { if (game.horsesInitialised == false) { _local1._parent["horse" + i].randomStartSpeed = random(6) + 2; _local1._parent["horse" + i].randomSpeed = random(8) - 4; _local1._parent["horse" + i].randomInterval = random(30) + 10; _local1._parent["horse" + i].intervalCounter = 0; _local1._parent["horse" + i].isStarted = false; } if (i == 3) { game.horsesInitialised = true; } if ((_local1._parent["horse" + i]._x <= 250) && (_local1._parent["horse" + i].isStarted == false)) { _local1._parent["horse" + i]._x = _local1._parent["horse" + i]._x + _local1._parent["horse" + i].randomStartSpeed; } else if ((_local1._parent["horse" + i]._x >= 250) && (_local1._parent["horse" + i].isStarted == false)) { _local1._parent["horse" + i].isStarted = true; } else { _local1._parent["horse" + i]._x = _local1._parent["horse" + i]._x + _local1._parent["horse" + i].randomSpeed; if (_local1._parent["horse" + i]._x < 120) { _local1._parent["horse" + i]._x = 120; } else if (_local1._parent["horse" + i]._x > 420) { _local1._parent["horse" + i]._x = 420; } } if (_local1._parent["horse" + i].randomInterval == _local1._parent["horse" + i].intervalCounter) { _local1._parent["horse" + i].randomSpeed = random(8) - 4; _local1._parent["horse" + i].intervalCounter = 0; _local1._parent["horse" + i].randomInterval = random(30) + 10; } _local1._parent["horse" + i].intervalCounter++; i++; } }; backTrack.onEnterFrame = function () { var _local1 = this; _local1._x = _local1._x - 20; if (_local1._x <= -800) { _local1._x = 0; } if (_local1._parent.traps._x > -100) { _local1._parent.traps._x = _local1._parent.traps._x - 20; } }; playerHorse.onEnterFrame = function () { var _local1 = this; if ((game.playerStarted == false) && (_local1._x <= 250)) { _local1._x = _local1._x + 6; _local1.horseGlow._alpha = 30; } else { game.playerStarted = true; _local1.horseGlow._alpha = 0; } if (game.playerStarted == true) { _local1._x = _local1._x + game.speed; game.speed = game.speed - 0.06; if (_local1._x < 120) { _local1._x = 120; game.speed = 0; } else if (_local1._x > 420) { _local1._x = 420; game.speed = 0; } } activateItem(); }; endLine.onEnterFrame = function () { var _local1 = this; if (game.raceTimer >= 480) { _local1._x = _local1._x - 20; } game.raceTimer++; checkWinners(_local1._parent.horse1); checkWinners(_local1._parent.horse2); checkWinners(_local1._parent.horse3); checkWinners(_local1._parent.playerHorse); }; checkWinners = function (horseObject) { var _local1 = horseObject; if (endLine.hitTest(_local1) && (_local1.horseCrossed == false)) { game.winningOrder.push(_local1.horseName); _local1.horseCrossed = true; distances = new Array(); trace(game.winningOrder); if (game.winningOrder.length == 1) { if (_local1.horseName != "lightning") { temp = _local1._x - horse1._x; distances.push(temp); } if (_local1.horseName != "jackal") { temp = _local1._x - horse2._x; distances.push(temp); } if (_local1.horseName != "cannon ball") { temp = _local1._x - horse3._x; distances.push(temp); } if (_local1.horseName != "player 1") { temp = _local1._x - playerHorse._x; distances.push(temp); } smallnum1 = Math.min(distances[0], distances[1]); smallnum2 = Math.min(distances[0], distances[2]); smallestnum = Math.min(smallnum1, smallnum2); trace(distances); trace(smallestnum); calcDistances(smallestnum); } } if (game.winningOrder.length == 4) { gotoAndPlay ("results"); } }; calcDistances = function (distance) { var _local1 = distance; if (_local1 <= 15) { game.distanceCleared = "short-head"; game.prizeMoney = "$50,000"; } else if (_local1 <= 30) { game.distanceCleared = "head"; game.prizeMoney = "$75,000"; } else if (_local1 <= 50) { game.distanceCleared = "neck"; game.prizeMoney = "$100,000"; } else if (_local1 <= 95) { game.distanceCleared = "half length"; game.prizeMoney = "$250,000"; } else if (_local1 <= 190) { game.distanceCleared = "length"; game.prizeMoney = "$500,000"; } else if (_local1 <= 300) { game.distanceCleared = "2 lengths"; game.prizeMoney = "$1,000,000"; } }; helmetBtn.onPress = function () { checkActiveItem("helmet"); }; bootsBtn.onPress = function () { checkActiveItem("boots"); }; whipBtn.onPress = function () { checkActiveItem("whip"); }; saddleBtn.onPress = function () { checkActiveItem("saddle"); }; var gallop1 = new Sound(); gallop1.attachSound("gallop1"); var gallop2 = new Sound(); gallop2.attachSound("gallop2"); var gallop3 = new Sound(); gallop3.attachSound("gallop3");
Frame 22
if (game.winningOrder[0] == "player 1") { prizeTextBox.text = "you just won " + game.prizeMoney; resultsTextBox.text = ((((((game.chosenName + newline) + game.winningOrder[1]) + newline) + game.winningOrder[2]) + newline) + game.winningOrder[3]) + newline; } else if (game.winningOrder[1] == "player 1") { resultsTextBox.text = ((((((game.winningOrder[0] + newline) + game.chosenName) + newline) + game.winningOrder[2]) + newline) + game.winningOrder[3]) + newline; } else if (game.winningOrder[2] == "player 1") { resultsTextBox.text = ((((((game.winningOrder[0] + newline) + game.winningOrder[1]) + newline) + game.chosenName) + newline) + game.winningOrder[3]) + newline; } else if (game.winningOrder[3] == "player 1") { resultsTextBox.text = ((((((game.winningOrder[0] + newline) + game.winningOrder[1]) + newline) + game.winningOrder[2]) + newline) + game.chosenName) + newline; } distanceTextBox.text = game.distanceCleared; if (game.winningOrder[0] == "player 1") { playerResultBg._y = 125; } else if (game.winningOrder[1] == "player 1") { playerResultBg._y = 149; } else if (game.winningOrder[2] == "player 1") { playerResultBg._y = 173; } else if (game.winningOrder[3] == "player 1") { playerResultBg._y = 198; } if (game.winningOrder[0] == "player 1") { gotoAndPlay ("first_place"); } againBtn.onRelease = function () { gotoAndPlay ("main_menu"); }; downloadBtn.onRelease = function () { getURL ("http://www.playza.com", "_blank"); };
Frame 23
stop();
Frame 24
stop(); againBtn.onRelease = function () { gotoAndPlay ("main_menu"); }; downloadBtn.onRelease = function () { getURL ("http://www.playza.com", "_blank"); };
Symbol 11 MovieClip Frame 1
_root.stop(); PercentLoaded = (_root.getBytesLoaded() / _root.getBytesTotal()) * 100; if (PercentLoaded != 100) { setProperty(bar, _xscale , PercentLoaded); } else { _root.gotoAndStop(2); }
Symbol 11 MovieClip Frame 2
gotoAndPlay (1);
Symbol 15 Button
on (release) { getURL ("http://www.playza.com"); }

Library Items

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

Instance Names

"btnPlayzaLogo"Frame 1Symbol 15 Button
"playBtn"Frame 2Symbol 21 Button
"instructionsBtn"Frame 2Symbol 24 Button
"moreBtn"Frame 2Symbol 27 Button
"playBtn"Frame 7Symbol 34 Button
"backBtn"Frame 7Symbol 39 Button
"btnPlayzaLogo"Frame 7Symbol 15 Button
"playGameBtn"Frame 12Symbol 34 Button
"nameInputBox"Frame 12Symbol 71 EditableText
"btnPlayzaLogo"Frame 12Symbol 15 Button
"backTrack"Frame 17Symbol 75 MovieClip
"endLine"Frame 17Symbol 77 MovieClip
"horse2"Frame 17Symbol 82 MovieClip
"horse3"Frame 17Symbol 87 MovieClip
"horse1"Frame 17Symbol 92 MovieClip
"playerHorse"Frame 17Symbol 62 MovieClip
"traps"Frame 17Symbol 94 MovieClip
"helmetBtn"Frame 17Symbol 46 Button
"bootsBtn"Frame 17Symbol 48 Button
"whipBtn"Frame 17Symbol 50 Button
"saddleBtn"Frame 17Symbol 52 Button
"itemText"Frame 17Symbol 97 EditableText
"playerResultBg"Frame 22Symbol 107 MovieClip
"resultsTextBox"Frame 22Symbol 109 EditableText
"distanceTextBox"Frame 22Symbol 110 EditableText
"prizeTextBox"Frame 22Symbol 111 EditableText
"againBtn"Frame 22Symbol 117 Button
"btnPlayzaLogo"Frame 22Symbol 15 Button
"traps"Frame 24Symbol 94 MovieClip
"bar"Symbol 11 MovieClip Frame 1Symbol 7 MovieClip
"horseGlow"Symbol 62 MovieClip Frame 1Symbol 58 MovieClip
"helmetBtn"Symbol 69 MovieClip Frame 1Symbol 46 Button
"bootsBtn"Symbol 69 MovieClip Frame 1Symbol 48 Button
"whipBtn"Symbol 69 MovieClip Frame 1Symbol 50 Button
"saddleBtn"Symbol 69 MovieClip Frame 1Symbol 52 Button

Special Tags

ExportAssets (56)Timeline Frame 1Symbol 1 as "THWACK02"
ExportAssets (56)Timeline Frame 1Symbol 2 as "gallop3"
ExportAssets (56)Timeline Frame 1Symbol 3 as "gallop2"
ExportAssets (56)Timeline Frame 1Symbol 4 as "gallop1"

Labels

"main_menu"Frame 2
"instructions"Frame 7
"start"Frame 12
"start_race"Frame 17
"results"Frame 22
"first_place"Frame 24
"game_over"Frame 27




http://swfchan.com/9/42141/info.shtml
Created: 10/5 -2019 01:50:22 Last modified: 10/5 -2019 01:50:22 Server time: 19/05 -2024 00:32:31