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

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

Battle Pong.swf

This is the info page for
Flash #42027

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


Text
s

t

n

e

r

P

.

Load-Info

loading - time remaining  :

0:00

When you need a kwik break!

When you need a kwik break!

PLAY

Instructions

Instructions

Nemo

Special Weapon
Power Ball

Kate

Special Weapon
Super Spin

Sau

Special Weapon
Paddle Shrink

Si

Special Weapon
Power paddle

Choose your player

Round 1

Get Ready!

VS

vs

0

Score

0

Click to Serve

0

0

0

Power ups

actions

Round 2

0

0

0

0

0

Round 3

0

0

0

0

0

Final Round

0

0

0

0

0

Too Bad - You lose!

Wins

Play Again?

Play Again?

Play more games

Play more games

Download

Download

0

Congratulations - You Win!

0

0

0

0

0

0

Instructions

Instructions

Use the mouse to control your paddle and return
the ball to your opponent.  Use the left and right
cursor keys to put spin on the ball and use the down
cursor to use your special more.  Different characters
moves work in different ways so see if you can find
out what works best...

<Back>

<Back>

ActionScript [AS1/AS2]

Instance of Symbol 22 MovieClip "mc_load_info" in Frame 51
//component parameters onClipEvent (initialize) { STREAM = false; PLAY_TYPE = "bytes"; PLAY_BYTES = 0; PLAY_FRAMES = 0; PLAY_PERCENTAGE = 0; }
Instance of Symbol 27 MovieClip in Frame 51
onClipEvent (load) { var myStartWidth = this._width; this._width = 0; } onClipEvent (enterFrame) { this._width = myStartWidth * _root.mc_load_info.fractionLoaded; }
Frame 106
numBalls = 7; computerScore = 0; playerScore = 0; var wins = 1; var power1 = false; var powerBall1 = false; var powerSpin1 = false; var powerShrink1 = false; var spin = false; var powerBall2 = false; var powerSpin2 = false; var powerShrink2 = false; var spin2 = false; var player1 = "blank"; var player2 = "Nemo"; stop();
Frame 108
var wins = 1; var powerBall1 = false; var powerSpin1 = false; var powerShrink1 = false; var spin = false; var powerBall2 = false; var powerSpin2 = false; var powerShrink2 = false; var spin2 = false; var player1 = "blank"; var player2 = "Nemo"; numBalls = 3; computerScore = 0; playerScore = 0; var power1 = false; var power2 = false; var speedUps1 = 3; var speedUps2 = 3; stop();
Frame 113
stop();
Instance of Symbol 62 MovieClip in Frame 113
onClipEvent (load) { this.gotoAndStop(2); }
Instance of Symbol 62 MovieClip in Frame 113
onClipEvent (load) { this.gotoAndStop(4); }
Instance of Symbol 62 MovieClip in Frame 113
onClipEvent (load) { this.gotoAndStop(3); }
Frame 125
var power1 = false; var powerBall1 = false; var powerSpin1 = false; var powerShrink1 = false; var spin = false; stop();
Instance of Symbol 62 MovieClip in Frame 125
onClipEvent (load) { this.gotoAndStop(_root.player1); }
Instance of Symbol 62 MovieClip in Frame 125
onClipEvent (load) { this.gotoAndStop(_root.player2); }
Frame 132
stop();
Instance of Symbol 62 MovieClip in Frame 132
onClipEvent (load) { this.gotoAndStop(_root.player1); }
Instance of Symbol 62 MovieClip in Frame 132
onClipEvent (load) { this.gotoAndStop(_root.player2); }
Frame 139
function startLevel() { x = ball._x; y = ball._y; power1 = false; power2 = false; dx = 5; dy = 5; if (Math.random() < 0.5) { dx = dx * -1; } if (Math.random() < 0.5) { dy = dy * -1; } Mouse.hide(); rightWall = 550; leftWall = 0; topWall = 100; bottomWall = 380; ballRadius = ball._width / 2; passedPaddle = false; } function moveBall() { x = x + dx; y = y + dy; if ((y + ballRadius) > bottomWall) { overshoot = (y + ballRadius) - bottomWall; y = y - (overShoot * 2); dy = dy * -1; beep2.start(); } if ((y - ballRadius) < topWall) { overshoot = topWall - (y - ballRadius); y = y + (overShoot * 2); dy = dy * -1; beep2.start(); } paddleRight = paddle._x + (paddle._width / 2); if (((x - ballRadius) < paddleRight) and (!passedPaddle)) { paddleTop = paddle._y - (paddle._height / 2); paddleBottom = paddle._y + (paddle._height / 2); if ((y > paddleTop) and (y < paddleBottom)) { overshoot = paddleRight - (x - ballRadius); x = x + (overShoot * 2); dx = dx * -1; beep1.start(); if (!_root.power1) { dx = dx * 1.05; dy = dy * 1.05; } if (_root.powerBall1) { dx = dx * 2; } if (_root.powerSpin1) { dy = dy * 2; } if (_root.spin == "right") { dx = dx * 1.05; dy = dy + 3; } else if (_root.spin == "left") { dx = dx * 1.05; dy = dy - 3; } } else { passedPaddle = true; } } paddleLeft = computerPaddle._x - (computerPaddle._width / 2); if (((x + ballRadius) > paddleLeft) and (!passedPaddle)) { paddleTop = computerPaddle._y - (computerPaddle._height / 2); paddleBottom = computerPaddle._y + (computerPaddle._height / 2); if ((y > paddleTop) and (y < paddleBottom)) { overshoot = (x + ballRadius) - paddleLeft; x = x - (overShoot * 2); dx = dx * -1; beep1.start(); powerup = random(10); if (powerup == 1) { dx = dx * 1.8; _root.computerPaddle.gotoAndPlay("power"); } else { dx = dx * 1.05; } dy = dy * 1.05; } else { passedPaddle = true; } } if (((x - ballRadius) < leftWall) and passedPaddle) { Mouse.show(); computerScore++; if (computerScore == 2) { gotoAndPlay (206); } else { numBalls--; dissolve.start(); gotoAndPlay (132); } } if (((x + ballRadius) > rightWall) and passedPaddle) { Mouse.show(); playerScore++; if (playerScore == 2) { player2 = "Kate"; gotoAndPlay (143); } else { numBalls--; dissolve.start(); gotoAndPlay (132); } } ball._x = x; ball._y = y; } function movePaddle() { if (_ymouse < (100 + (paddle._height / 2))) { paddle._y = 100 + (paddle._height / 2); } else if (_ymouse > (380 - (paddle._height / 2))) { paddle._y = 380 - (paddle._height / 2); } else { paddle._y = _ymouse; } } function moveComputerPaddle() { moveAmount = 8; if (ball._x > 200) { if (dx > 0) { if ((y < (computerPaddle._y - moveAmount)) && (computerPaddle._y > (100 + (computerPaddle._height / 2)))) { computerPaddle._y = computerPaddle._y - moveAmount; } else if ((y > (computerPaddle._y + moveAmount)) && (computerPaddle._y < (380 - (computerPaddle._height / 2)))) { computerPaddle._y = computerPaddle._y + moveAmount; } } } } beep1 = new Sound(); beep1.attachSound("beep1"); beep2 = new Sound(); beep2.attachSound("beep2"); dissolve = new Sound(); dissolve.attachSound("dissolve"); stop();
Instance of Symbol 103 MovieClip in Frame 139
onClipEvent (load) { _root.startLevel(); } onClipEvent (enterFrame) { _root.moveBall(); _root.movePaddle(); _root.moveComputerPaddle(); }
Instance of Symbol 55 MovieClip "paddle" in Frame 139
on (keyPress "<Down>") { if (_root.player1 == "Si") { _root.power1 = true; this.gotoAndPlay("long"); } if ((_root.player1 == "Nemo") && (_root.powerBall1 != "used")) { _root.power1 = true; _root.powerBall1 = true; this.gotoAndPlay("power"); } if ((_root.player1 == "Kate") && (_root.powerSpin1 != "used")) { _root.power1 = true; _root.powerSpin1 = true; this.gotoAndPlay("spin"); } if ((_root.player1 == "Sau") && (_root.powerShrink1 != "used")) { _root.power1 = true; _root.powerShrink1 = true; _root.computerPaddle.gotoAndPlay("shrink"); } } on (keyPress "<Left>") { if (((!_root.spin) >= 1) && (!power1)) { this.gotoAndPlay("left"); _root.spin = "left"; } } on (keyPress "<Right>") { if (((!_root.spin) >= 1) && (!power1)) { this.gotoAndPlay("right"); _root.spin = "right"; } }
Instance of Symbol 107 MovieClip "computerPaddle" in Frame 139
/* no clip actions */
Frame 143
computerScore = 0; playerScore = 0; var power1 = false; var spin = false; var powerBall2 = false; var powerSpin2 = false; var powerShrink2 = false; var spin2 = false; stop();
Instance of Symbol 62 MovieClip in Frame 143
onClipEvent (load) { this.gotoAndStop(_root.player1); }
Instance of Symbol 62 MovieClip in Frame 143
onClipEvent (load) { this.gotoAndStop(_root.player2); }
Frame 150
var power1 = false; var powerBall1 = false; var powerSpin1 = false; var powerShrink1 = false; var spin = false; stop();
Instance of Symbol 62 MovieClip in Frame 150
onClipEvent (load) { this.gotoAndStop(_root.player1); }
Instance of Symbol 62 MovieClip in Frame 150
onClipEvent (load) { this.gotoAndStop(_root.player2); }
Frame 159
function startLevel() { x = ball._x; y = ball._y; power1 = false; power2 = false; dx = 5; dy = 5; if (Math.random() < 0.5) { dx = dx * -1; } if (Math.random() < 0.5) { dy = dy * -1; } Mouse.hide(); rightWall = 550; leftWall = 0; topWall = 100; bottomWall = 380; ballRadius = ball._width / 2; passedPaddle = false; } function moveBall() { x = x + dx; y = y + dy; if ((y + ballRadius) > bottomWall) { overshoot = (y + ballRadius) - bottomWall; y = y - (overShoot * 2); dy = dy * -1; beep2.start(); } if ((y - ballRadius) < topWall) { overshoot = topWall - (y - ballRadius); y = y + (overShoot * 2); dy = dy * -1; beep2.start(); } paddleRight = paddle._x + (paddle._width / 2); if (((x - ballRadius) < paddleRight) and (!passedPaddle)) { paddleTop = paddle._y - (paddle._height / 2); paddleBottom = paddle._y + (paddle._height / 2); if ((y > paddleTop) and (y < paddleBottom)) { overshoot = paddleRight - (x - ballRadius); x = x + (overShoot * 2); dx = dx * -1; beep1.start(); if (!_root.power1) { dx = dx * 1.05; dy = dy * 1.05; } if (_root.powerBall1) { dx = dx * 2; } if (_root.powerSpin1) { dy = dy * 2; } if (_root.spin == "right") { dx = dx * 1.05; dy = dy + 3; } else if (_root.spin == "left") { dx = dx * 1.05; dy = dy - 3; } } else { passedPaddle = true; } } paddleLeft = computerPaddle._x - (computerPaddle._width / 2); if (((x + ballRadius) > paddleLeft) and (!passedPaddle)) { paddleTop = computerPaddle._y - (computerPaddle._height / 2); paddleBottom = computerPaddle._y + (computerPaddle._height / 2); if ((y > paddleTop) and (y < paddleBottom)) { overshoot = (x + ballRadius) - paddleLeft; x = x - (overShoot * 2); dx = dx * -1; beep1.start(); powerup = random(5); if (powerup == 1) { powerup = random(2); if (powerup == 1) { dy = dy - 3; _root.computerPaddle.gotoAndPlay("left"); } else { dy = dy + 3; _root.computerPaddle.gotoAndPlay("left"); } } else { dx = dx * 1.05; } dy = dy * 1.05; } else { passedPaddle = true; } } if (((x - ballRadius) < leftWall) and passedPaddle) { Mouse.show(); computerScore++; if (computerScore == 2) { gotoAndPlay (206); } else { numBalls--; dissolve.start(); gotoAndPlay (150); } } if (((x + ballRadius) > rightWall) and passedPaddle) { Mouse.show(); playerScore++; if (playerScore == 2) { player2 = "Sau"; gotoAndPlay (164); } else { numBalls--; dissolve.start(); gotoAndPlay (150); } } ball._x = x; ball._y = y; } function movePaddle() { if (_ymouse < (100 + (paddle._height / 2))) { paddle._y = 100 + (paddle._height / 2); } else if (_ymouse > (380 - (paddle._height / 2))) { paddle._y = 380 - (paddle._height / 2); } else { paddle._y = _ymouse; } } function moveComputerPaddle() { moveAmount = 11; if (ball._x > 250) { if (dx > 0) { if ((y < (computerPaddle._y - moveAmount)) && (computerPaddle._y > (100 + (computerPaddle._height / 2)))) { computerPaddle._y = computerPaddle._y - moveAmount; } else if ((y > (computerPaddle._y + moveAmount)) && (computerPaddle._y < (380 - (computerPaddle._height / 2)))) { computerPaddle._y = computerPaddle._y + moveAmount; } } } } beep1 = new Sound(); beep1.attachSound("beep1"); beep2 = new Sound(); beep2.attachSound("beep2"); dissolve = new Sound(); dissolve.attachSound("dissolve"); stop();
Instance of Symbol 103 MovieClip in Frame 159
onClipEvent (load) { _root.startLevel(); } onClipEvent (enterFrame) { _root.moveBall(); _root.movePaddle(); _root.moveComputerPaddle(); }
Instance of Symbol 55 MovieClip "paddle" in Frame 159
on (keyPress "<Down>") { if (_root.player1 == "Si") { _root.power1 = true; this.gotoAndPlay("long"); } if ((_root.player1 == "Nemo") && (_root.powerBall1 != "used")) { _root.power1 = true; _root.powerBall1 = true; this.gotoAndPlay("power"); } if ((_root.player1 == "Kate") && (_root.powerSpin1 != "used")) { _root.power1 = true; _root.powerSpin1 = true; this.gotoAndPlay("spin"); } if ((_root.player1 == "Sau") && (_root.powerShrink1 != "used")) { _root.power1 = true; _root.powerShrink1 = true; _root.computerPaddle.gotoAndPlay("shrink"); } } on (keyPress "<Left>") { if (((!_root.spin) >= 1) && (!power1)) { this.gotoAndPlay("left"); _root.spin = "left"; } } on (keyPress "<Right>") { if (((!_root.spin) >= 1) && (!power1)) { this.gotoAndPlay("right"); _root.spin = "right"; } }
Instance of Symbol 107 MovieClip "computerPaddle" in Frame 159
/* no clip actions */
Frame 164
computerScore = 0; playerScore = 0; var power1 = false; var spin = false; var powerBall2 = false; var powerSpin2 = false; var powerShrink2 = false; var spin2 = false; stop();
Instance of Symbol 62 MovieClip in Frame 164
onClipEvent (load) { this.gotoAndStop(_root.player1); }
Instance of Symbol 62 MovieClip in Frame 164
onClipEvent (load) { this.gotoAndStop(_root.player2); }
Frame 171
var power1 = false; var powerBall1 = false; var powerSpin1 = false; var powerShrink1 = false; var spin = false; stop();
Instance of Symbol 62 MovieClip in Frame 171
onClipEvent (load) { this.gotoAndStop(_root.player1); }
Instance of Symbol 62 MovieClip in Frame 171
onClipEvent (load) { this.gotoAndStop(_root.player2); }
Frame 180
function startLevel() { x = ball._x; y = ball._y; power1 = false; power2 = false; dx = 5; dy = 5; if (Math.random() < 0.5) { dx = dx * -1; } if (Math.random() < 0.5) { dy = dy * -1; } Mouse.hide(); rightWall = 550; leftWall = 0; topWall = 100; bottomWall = 380; ballRadius = ball._width / 2; passedPaddle = false; } function moveBall() { x = x + dx; y = y + dy; if ((y + ballRadius) > bottomWall) { overshoot = (y + ballRadius) - bottomWall; y = y - (overShoot * 2); dy = dy * -1; beep2.start(); } if ((y - ballRadius) < topWall) { overshoot = topWall - (y - ballRadius); y = y + (overShoot * 2); dy = dy * -1; beep2.start(); } paddleRight = paddle._x + (paddle._width / 2); if (((x - ballRadius) < paddleRight) and (!passedPaddle)) { paddleTop = paddle._y - (paddle._height / 2); paddleBottom = paddle._y + (paddle._height / 2); if ((y > paddleTop) and (y < paddleBottom)) { overshoot = paddleRight - (x - ballRadius); x = x + (overShoot * 2); dx = dx * -1; beep1.start(); if (!_root.power1) { dx = dx * 1.05; dy = dy * 1.05; } if (_root.powerBall1) { dx = dx * 2; } if (_root.powerSpin1) { dy = dy * 2; } if (_root.spin == "right") { dx = dx * 1.05; dy = dy + 3; } else if (_root.spin == "left") { dx = dx * 1.05; dy = dy - 3; } } else { passedPaddle = true; } } paddleLeft = computerPaddle._x - (computerPaddle._width / 2); if (((x + ballRadius) > paddleLeft) and (!passedPaddle)) { paddleTop = computerPaddle._y - (computerPaddle._height / 2); paddleBottom = computerPaddle._y + (computerPaddle._height / 2); if ((y > paddleTop) and (y < paddleBottom)) { overshoot = (x + ballRadius) - paddleLeft; x = x - (overShoot * 2); dx = dx * -1; beep1.start(); powerup = random(5); if (powerup == 1) { powerup = random(2); if (powerup == 1) { dy = dy - 3; _root.computerPaddle.gotoAndPlay("left"); } else { dy = dy + 3; _root.computerPaddle.gotoAndPlay("left"); } } else { dx = dx * 1.05; } dy = dy * 1.05; powerup = random(5); if (powerup == 1) { _root.paddle.gotoAndPlay("shrink"); } } else { passedPaddle = true; } } if (((x - ballRadius) < leftWall) and passedPaddle) { Mouse.show(); computerScore++; if (computerScore == 2) { gotoAndPlay (206); } else { numBalls--; dissolve.start(); gotoAndPlay (171); } } if (((x + ballRadius) > rightWall) and passedPaddle) { Mouse.show(); playerScore++; if (playerScore == 2) { player2 = "Si"; gotoAndPlay (185); } else { numBalls--; dissolve.start(); gotoAndPlay (171); } } ball._x = x; ball._y = y; } function movePaddle() { if (_ymouse < (100 + (paddle._height / 2))) { paddle._y = 100 + (paddle._height / 2); } else if (_ymouse > (380 - (paddle._height / 2))) { paddle._y = 380 - (paddle._height / 2); } else { paddle._y = _ymouse; } } function moveComputerPaddle() { moveAmount = 11; if (ball._x > 300) { if (dx > 0) { if ((y < (computerPaddle._y - moveAmount)) && (computerPaddle._y > (100 + (computerPaddle._height / 2)))) { computerPaddle._y = computerPaddle._y - moveAmount; } else if ((y > (computerPaddle._y + moveAmount)) && (computerPaddle._y < (380 - (computerPaddle._height / 2)))) { computerPaddle._y = computerPaddle._y + moveAmount; } } } } beep1 = new Sound(); beep1.attachSound("beep1"); beep2 = new Sound(); beep2.attachSound("beep2"); dissolve = new Sound(); dissolve.attachSound("dissolve"); stop();
Instance of Symbol 103 MovieClip in Frame 180
onClipEvent (load) { _root.startLevel(); } onClipEvent (enterFrame) { _root.moveBall(); _root.movePaddle(); _root.moveComputerPaddle(); }
Instance of Symbol 55 MovieClip "paddle" in Frame 180
on (keyPress "<Down>") { if (_root.player1 == "Si") { _root.power1 = true; this.gotoAndPlay("long"); } if ((_root.player1 == "Nemo") && (_root.powerBall1 != "used")) { _root.power1 = true; _root.powerBall1 = true; this.gotoAndPlay("power"); } if ((_root.player1 == "Kate") && (_root.powerSpin1 != "used")) { _root.power1 = true; _root.powerSpin1 = true; this.gotoAndPlay("spin"); } if ((_root.player1 == "Sau") && (_root.powerShrink1 != "used")) { _root.power1 = true; _root.powerShrink1 = true; _root.computerPaddle.gotoAndPlay("shrink"); } } on (keyPress "<Left>") { if (((!_root.spin) >= 1) && (!power1)) { this.gotoAndPlay("left"); _root.spin = "left"; } } on (keyPress "<Right>") { if (((!_root.spin) >= 1) && (!power1)) { this.gotoAndPlay("right"); _root.spin = "right"; } }
Instance of Symbol 107 MovieClip "computerPaddle" in Frame 180
/* no clip actions */
Frame 185
computerScore = 0; playerScore = 0; var power1 = false; var spin = false; var powerBall2 = false; var powerSpin2 = false; var powerShrink2 = false; var spin2 = false; stop();
Instance of Symbol 62 MovieClip in Frame 185
onClipEvent (load) { this.gotoAndStop(_root.player1); }
Instance of Symbol 62 MovieClip in Frame 185
onClipEvent (load) { this.gotoAndStop(_root.player2); }
Frame 192
var power1 = false; var powerBall1 = false; var powerSpin1 = false; var powerShrink1 = false; var spin = false; stop();
Instance of Symbol 62 MovieClip in Frame 192
onClipEvent (load) { this.gotoAndStop(_root.player1); }
Instance of Symbol 62 MovieClip in Frame 192
onClipEvent (load) { this.gotoAndStop(_root.player2); }
Frame 201
function startLevel() { x = ball._x; y = ball._y; power1 = false; power2 = false; dx = 5; dy = 5; if (Math.random() < 0.5) { dx = dx * -1; } if (Math.random() < 0.5) { dy = dy * -1; } Mouse.hide(); rightWall = 550; leftWall = 0; topWall = 100; bottomWall = 380; ballRadius = ball._width / 2; passedPaddle = false; } function moveBall() { x = x + dx; y = y + dy; if ((y + ballRadius) > bottomWall) { overshoot = (y + ballRadius) - bottomWall; y = y - (overShoot * 2); dy = dy * -1; beep2.start(); } if ((y - ballRadius) < topWall) { overshoot = topWall - (y - ballRadius); y = y + (overShoot * 2); dy = dy * -1; beep2.start(); } paddleRight = paddle._x + (paddle._width / 2); if (((x - ballRadius) < paddleRight) and (!passedPaddle)) { paddleTop = paddle._y - (paddle._height / 2); paddleBottom = paddle._y + (paddle._height / 2); if ((y > paddleTop) and (y < paddleBottom)) { overshoot = paddleRight - (x - ballRadius); x = x + (overShoot * 2); dx = dx * -1; beep1.start(); if (!_root.power1) { dx = dx * 1.05; dy = dy * 1.05; } if (_root.powerBall1) { dx = dx * 2; } if (_root.powerSpin1) { dy = dy * 2; } if (_root.spin == "right") { dx = dx * 1.05; dy = dy + 3; } else if (_root.spin == "left") { dx = dx * 1.05; dy = dy - 3; } powerup = random(5); if (powerup == 1) { _root.computerPaddle.gotoAndPlay("long"); } } else { passedPaddle = true; } } paddleLeft = computerPaddle._x - (computerPaddle._width / 2); if (((x + ballRadius) > paddleLeft) and (!passedPaddle)) { paddleTop = computerPaddle._y - (computerPaddle._height / 2); paddleBottom = computerPaddle._y + (computerPaddle._height / 2); if ((y > paddleTop) and (y < paddleBottom)) { overshoot = (x + ballRadius) - paddleLeft; x = x - (overShoot * 2); dx = dx * -1; beep1.start(); powerup = random(5); if (powerup == 1) { powerup = random(2); if (powerup == 1) { dy = dy - 3; _root.computerPaddle.gotoAndPlay("left"); } else { dy = dy + 3; _root.computerPaddle.gotoAndPlay("left"); } } else { dx = dx * 1.05; } dy = dy * 1.05; } else { passedPaddle = true; } } if (((x - ballRadius) < leftWall) and passedPaddle) { Mouse.show(); computerScore++; if (computerScore == 2) { gotoAndPlay (206); } else { numBalls--; dissolve.start(); gotoAndPlay (192); } } if (((x + ballRadius) > rightWall) and passedPaddle) { Mouse.show(); playerScore++; if (playerScore == 2) { gotoAndPlay (215); } else { numBalls--; dissolve.start(); gotoAndPlay (192); } } ball._x = x; ball._y = y; } function movePaddle() { if (_ymouse < (100 + (paddle._height / 2))) { paddle._y = 100 + (paddle._height / 2); } else if (_ymouse > (380 - (paddle._height / 2))) { paddle._y = 380 - (paddle._height / 2); } else { paddle._y = _ymouse; } } function moveComputerPaddle() { moveAmount = 12; if (ball._x > 200) { if (dx > 0) { if ((y < (computerPaddle._y - moveAmount)) && (computerPaddle._y > (100 + (computerPaddle._height / 2)))) { computerPaddle._y = computerPaddle._y - moveAmount; } else if ((y > (computerPaddle._y + moveAmount)) && (computerPaddle._y < (380 - (computerPaddle._height / 2)))) { computerPaddle._y = computerPaddle._y + moveAmount; } } } } beep1 = new Sound(); beep1.attachSound("beep1"); beep2 = new Sound(); beep2.attachSound("beep2"); dissolve = new Sound(); dissolve.attachSound("dissolve"); stop();
Instance of Symbol 103 MovieClip in Frame 201
onClipEvent (load) { _root.startLevel(); } onClipEvent (enterFrame) { _root.moveBall(); _root.movePaddle(); _root.moveComputerPaddle(); }
Instance of Symbol 55 MovieClip "paddle" in Frame 201
on (keyPress "<Down>") { if (_root.player1 == "Si") { _root.power1 = true; this.gotoAndPlay("long"); } if ((_root.player1 == "Nemo") && (_root.powerBall1 != "used")) { _root.power1 = true; _root.powerBall1 = true; this.gotoAndPlay("power"); } if ((_root.player1 == "Kate") && (_root.powerSpin1 != "used")) { _root.power1 = true; _root.powerSpin1 = true; this.gotoAndPlay("spin"); } if ((_root.player1 == "Sau") && (_root.powerShrink1 != "used")) { _root.power1 = true; _root.powerShrink1 = true; _root.computerPaddle.gotoAndPlay("shrink"); } } on (keyPress "<Left>") { if (((!_root.spin) >= 1) && (!power1)) { this.gotoAndPlay("left"); _root.spin = "left"; } } on (keyPress "<Right>") { if (((!_root.spin) >= 1) && (!power1)) { this.gotoAndPlay("right"); _root.spin = "right"; } }
Instance of Symbol 107 MovieClip "computerPaddle" in Frame 201
/* no clip actions */
Frame 206
stop();
Instance of Symbol 62 MovieClip in Frame 206
onClipEvent (load) { this.gotoAndStop(_root.player2); }
Frame 215
stop();
Instance of Symbol 62 MovieClip in Frame 215
onClipEvent (load) { this.gotoAndStop(_root.player1); }
Frame 224
stop();
Symbol 22 MovieClip Frame 1
function formatBytes(bytes) { var kb = 1024; var mb = (kb * 1024); var tempNum = 0; if (bytes >= mb) { tempNum = String(Math.floor((bytes / mb) * 100) / 100); if (tempNum.substring(tempNum.indexOf("."), tempNum.length).length == 2) { tempNum = tempNum + "0"; } tempNum = tempNum + " MB"; } else if (bytes >= kb) { tempNum = String(Math.floor((bytes / kb) * 100) / 100); if (tempNum.substring(tempNum.indexOf("."), tempNum.length).length == 2) { tempNum = tempNum + "0"; } tempNum = tempNum + " KB"; } else { tempNum = bytes + " B"; } return(tempNum); } this._visible = false; var isLoaded = false; var totalBytes = _parent.getBytesTotal(); var loadedBytes = _parent.getBytesLoaded(); var totalFrames = _parent._totalFrames(); var loadedFrames = _parent._framesLoaded(); var fractionLoaded = 0; var percentLoaded = "0%"; var bytesPerSecond = 0; var sizePerSecond = formatBytes(bytesPerSecond); var elapsedTime = "0:00"; var estimatedTime = "0:00"; var estimatedTimeLeft = "0:00"; var gStartTime = getTimer(); var gCurrentTime = getTimer(); var gSampleTimer = (gCurrentTime - gStartTime); var gSizeSample = loadedBytes; var framesPerSecond = 0; var frameCounter = 0; var totalSize = formatBytes(totalBytes); var loadedSize = formatBytes(loadedBytes); var loadedBytes = 0; var gLoading = true; var gPlaying = false; _parent.stop();
Symbol 22 MovieClip Frame 2
if (gLoading) { loadedBytes = _parent.getBytesLoaded(); loadedSize = formatBytes(loadedBytes); loadedFrames = _parent._framesLoaded; gCurrentTime = getTimer(); var elapsedMinutes = Math.floor(((gCurrentTime - gStartTime) / 1000) / 60); var elapsedSeconds = Math.floor(((gCurrentTime - gStartTime) / 1000) % 60); if (String(elapsedSeconds).length == 1) { elapsedSeconds = "0" + elapsedSeconds; } elapsedTime = (elapsedMinutes + ":") + elapsedSeconds; frameCounter++; if ((gCurrentTime - gStartTime) >= (gSampleTimer + 1000)) { framesPerSecond = frameCounter; frameCounter = 0; bytesPerSecond = loadedBytes - gSizeSample; sizePerSecond = formatBytes(bytesPerSecond); if (STREAM && (PLAY_TYPE == "auto")) { if ((loadedFrames / framesPerSecond) > ((totalBytes - loadedBytes) / bytesPerSecond)) { _parent.play(); } } var estimatedMinutes = Math.floor((totalBytes / bytesPerSecond) / 60); var estimatedSeconds = Math.floor((totalBytes / bytesPerSecond) % 60); if (String(estimatedSeconds).length == 1) { estimatedSeconds = "0" + estimatedSeconds; } estimatedTime = (estimatedMinutes + ":") + estimatedSeconds; var estimatedMinutesLeft = Math.floor(((totalBytes - loadedBytes) / bytesPerSecond) / 60); var estimatedSecondsLeft = Math.floor(((totalBytes - loadedBytes) / bytesPerSecond) % 60); if (String(estimatedSecondsLeft).length == 1) { estimatedSecondsLeft = "0" + estimatedSecondsLeft; } estimatedTimeLeft = (estimatedMinutesLeft + ":") + estimatedSecondsLeft; gSizeSample = loadedBytes; gSampleTimer = gCurrentTime - gStartTime; } fractionLoaded = loadedBytes / totalBytes; percentLoaded = Math.floor(fractionLoaded * 100) + "%"; if (STREAM) { switch (PLAY_TYPE) { case "bytes" : if (loadedBytes >= PLAY_BYTES) { if (!gPlaying) { _parent.play(); gPlaying = true; } } break; case "frames" : if (loadedFrames >= PLAY_FRAMES) { if (!gPlaying) { _parent.play(); gPlaying = true; } } break; case "percent" : if ((fractionLoaded * 100) < PLAY_PERCENT) { break; } if (gPlaying) { break; } _parent.play(); gPlaying = true; } } if (loadedBytes == totalBytes) { isLoaded = true; } if (isLoaded) { if (!STREAM) { _parent.play(); } gLoading = false; stop(); } }
Symbol 22 MovieClip Frame 3
gotoAndPlay (2);
Symbol 41 Button
on (release) { getURL ("http://www.kwikgames.com", _blank); }
Symbol 47 Button
on (press) { gotoAndPlay (113); }
Symbol 55 MovieClip Frame 1
stop();
Symbol 55 MovieClip Frame 15
gotoAndStop (1); _root.power1 = false;
Symbol 55 MovieClip Frame 30
gotoAndStop (1); _root.spin = false;
Symbol 55 MovieClip Frame 45
_root.spin = false; gotoAndStop (1);
Symbol 55 MovieClip Frame 69
gotoAndStop (1);
Symbol 55 MovieClip Frame 85
gotoAndStop (1); _root.powerBall1 = "used";
Symbol 55 MovieClip Frame 101
gotoAndStop (1); _root.powerSpin1 = "used";
Symbol 55 MovieClip Frame 154
gotoAndStop (1); _root.powerShrink1 = "used";
Symbol 61 Button
on (release) { gotoAndStop (224); }
Symbol 62 MovieClip Frame 1
stop();
Symbol 62 MovieClip Frame 2
stop();
Symbol 62 MovieClip Frame 3
stop();
Symbol 62 MovieClip Frame 4
stop();
Symbol 73 Button
on (release) { player1 = "Nemo"; gotoAndPlay (125); }
Symbol 74 Button
on (release) { player1 = "Si"; gotoAndPlay (125); }
Symbol 75 Button
on (release) { _root.player1 = "Kate"; gotoAndPlay (125); }
Symbol 76 Button
on (release) { _root.player1 = "Sau"; gotoAndPlay (125); }
Symbol 83 Button
on (press) { gotoAndPlay (132); }
Symbol 94 Button
on (press) { gotoAndPlay (139); }
Symbol 107 MovieClip Frame 1
stop();
Symbol 107 MovieClip Frame 15
gotoAndStop (1); _root.power2 = false;
Symbol 107 MovieClip Frame 30
gotoAndStop (1); _root.spin2 = false;
Symbol 107 MovieClip Frame 45
_root.spin2 = false; gotoAndStop (1);
Symbol 107 MovieClip Frame 91
gotoAndStop (1);
Symbol 107 MovieClip Frame 107
gotoAndStop (1); _root.powerBall2 = "used";
Symbol 107 MovieClip Frame 123
gotoAndStop (1); _root.powerSpin2 = "used";
Symbol 107 MovieClip Frame 142
gotoAndStop (1); _root.powerShrink2 = "used";
Symbol 111 Button
on (press) { gotoAndPlay (150); }
Symbol 117 Button
on (press) { gotoAndPlay (159); }
Symbol 124 Button
on (press) { gotoAndPlay (171); }
Symbol 130 Button
on (press) { gotoAndPlay (180); }
Symbol 137 Button
on (press) { gotoAndPlay (192); }
Symbol 142 Button
on (press) { gotoAndPlay (201); }
Symbol 152 Button
on (release) { gotoAndPlay (85); }
Symbol 156 Button
on (release) { getURL ("http://www.kwikgames.com"); }
Symbol 160 Button
on (release) { getURL ("http://www.kwikgames.com/battlepong/battlepong.zip"); }
Symbol 181 Button
on (release) { gotoAndPlay (85); }

Library Items

Symbol 1 Sound [beep2]
Symbol 2 Sound [beep1]
Symbol 3 Sound [dissolve]Used by:Timeline
Symbol 4 GraphicUsed by:Timeline
Symbol 5 GraphicUsed by:Timeline
Symbol 6 FontUsed by:7 8 9 10 11 12 14 64 65 66 67 68 69 70 71 77 79 80 81 82 90 92 109 110 114 116 122 123 127 129 135 136 139 141 147 148 149 150 153 154 157 158 161 164 166 175 176 177 178 179
Symbol 7 TextUses:6Used by:Timeline
Symbol 8 TextUses:6Used by:Timeline
Symbol 9 TextUses:6Used by:Timeline
Symbol 10 TextUses:6Used by:Timeline
Symbol 11 TextUses:6Used by:Timeline
Symbol 12 TextUses:6Used by:Timeline
Symbol 13 GraphicUsed by:Timeline
Symbol 14 TextUses:6Used by:Timeline
Symbol 15 GraphicUsed by:Timeline
Symbol 16 GraphicUsed by:Timeline
Symbol 17 GraphicUsed by:Timeline
Symbol 18 GraphicUsed by:Timeline
Symbol 19 GraphicUsed by:22
Symbol 20 FontUsed by:21 86
Symbol 21 TextUses:20Used by:22
Symbol 22 MovieClipUses:19 21Used by:Timeline
Symbol 23 FontUsed by:24 25
Symbol 24 EditableTextUses:23Used by:Timeline
Symbol 25 EditableTextUses:23Used by:Timeline
Symbol 26 GraphicUsed by:27
Symbol 27 MovieClipUses:26Used by:Timeline
Symbol 28 GraphicUsed by:Timeline
Symbol 29 GraphicUsed by:Timeline
Symbol 30 GraphicUsed by:Timeline
Symbol 31 GraphicUsed by:Timeline
Symbol 32 GraphicUsed by:62  Timeline
Symbol 33 GraphicUsed by:62  Timeline
Symbol 34 GraphicUsed by:62  Timeline
Symbol 35 GraphicUsed by:62  Timeline
Symbol 36 GraphicUsed by:41
Symbol 37 FontUsed by:38 40
Symbol 38 TextUses:37Used by:41
Symbol 39 GraphicUsed by:41
Symbol 40 TextUses:37Used by:41
Symbol 41 ButtonUses:36 38 39 40Used by:Timeline
Symbol 42 GraphicUsed by:47 83 111 124 137
Symbol 43 GraphicUsed by:47 83 94 111 117 124 130 137 142
Symbol 44 FontUsed by:45 65 67 69 71 88 89 91 93 95 96 97 98 102 113 115 118 119 120 126 128 131 132 133 138 140 143 144 145 162 167 168 169 170 171 172
Symbol 45 TextUses:44Used by:47 83 111 124 137
Symbol 46 GraphicUsed by:47 83 94 111 117 124 130 137 142
Symbol 47 ButtonUses:42 43 45 46Used by:Timeline
Symbol 48 GraphicUsed by:55
Symbol 49 GraphicUsed by:55 107
Symbol 50 GraphicUsed by:55 107
Symbol 51 GraphicUsed by:55 107
Symbol 52 GraphicUsed by:55
Symbol 53 GraphicUsed by:55 107
Symbol 54 GraphicUsed by:55
Symbol 55 MovieClipUses:48 49 50 51 52 53 54Used by:Timeline
Symbol 56 GraphicUsed by:Timeline
Symbol 57 FontUsed by:58 59
Symbol 58 TextUses:57Used by:61
Symbol 59 TextUses:57Used by:61
Symbol 60 GraphicUsed by:61
Symbol 61 ButtonUses:58 59 60Used by:Timeline
Symbol 62 MovieClipUses:32 35 34 33Used by:Timeline
Symbol 63 GraphicUsed by:Timeline
Symbol 64 TextUses:6Used by:Timeline
Symbol 65 TextUses:44 6Used by:Timeline
Symbol 66 TextUses:6Used by:Timeline
Symbol 67 TextUses:44 6Used by:Timeline
Symbol 68 TextUses:6Used by:Timeline
Symbol 69 TextUses:44 6Used by:Timeline
Symbol 70 TextUses:6Used by:Timeline
Symbol 71 TextUses:44 6Used by:Timeline
Symbol 72 GraphicUsed by:73 74 75 76
Symbol 73 ButtonUses:72Used by:Timeline
Symbol 74 ButtonUses:72Used by:Timeline
Symbol 75 ButtonUses:72Used by:Timeline
Symbol 76 ButtonUses:72Used by:Timeline
Symbol 77 TextUses:6Used by:Timeline
Symbol 78 GraphicUsed by:Timeline
Symbol 79 EditableTextUses:6Used by:Timeline
Symbol 80 TextUses:6Used by:Timeline
Symbol 81 TextUses:6Used by:Timeline
Symbol 82 TextUses:6Used by:Timeline
Symbol 83 ButtonUses:42 43 45 46Used by:Timeline
Symbol 84 SoundUsed by:Timeline
Symbol 85 GraphicUsed by:Timeline
Symbol 86 TextUses:20Used by:Timeline
Symbol 87 GraphicUsed by:Timeline
Symbol 88 EditableTextUses:44Used by:Timeline
Symbol 89 TextUses:44Used by:Timeline
Symbol 90 EditableTextUses:6Used by:Timeline
Symbol 91 EditableTextUses:44Used by:Timeline
Symbol 92 EditableTextUses:6Used by:Timeline
Symbol 93 TextUses:44Used by:94 117 130 142
Symbol 94 ButtonUses:46 43 93Used by:Timeline
Symbol 95 EditableTextUses:44Used by:Timeline
Symbol 96 EditableTextUses:44Used by:Timeline
Symbol 97 EditableTextUses:44Used by:Timeline
Symbol 98 TextUses:44Used by:Timeline
Symbol 99 GraphicUsed by:Timeline
Symbol 100 GraphicUsed by:101
Symbol 101 MovieClipUses:100Used by:Timeline
Symbol 102 EditableTextUses:44Used by:103
Symbol 103 MovieClipUses:102Used by:Timeline
Symbol 104 GraphicUsed by:107
Symbol 105 GraphicUsed by:107
Symbol 106 GraphicUsed by:107
Symbol 107 MovieClipUses:104 49 50 51 105 53 106Used by:Timeline
Symbol 108 GraphicUsed by:Timeline
Symbol 109 EditableTextUses:6Used by:Timeline
Symbol 110 TextUses:6Used by:Timeline
Symbol 111 ButtonUses:42 43 45 46Used by:Timeline
Symbol 112 GraphicUsed by:Timeline
Symbol 113 EditableTextUses:44Used by:Timeline
Symbol 114 EditableTextUses:6Used by:Timeline
Symbol 115 EditableTextUses:44Used by:Timeline
Symbol 116 EditableTextUses:6Used by:Timeline
Symbol 117 ButtonUses:46 43 93Used by:Timeline
Symbol 118 EditableTextUses:44Used by:Timeline
Symbol 119 EditableTextUses:44Used by:Timeline
Symbol 120 EditableTextUses:44Used by:Timeline
Symbol 121 GraphicUsed by:Timeline
Symbol 122 EditableTextUses:6Used by:Timeline
Symbol 123 TextUses:6Used by:Timeline
Symbol 124 ButtonUses:42 43 45 46Used by:Timeline
Symbol 125 GraphicUsed by:Timeline
Symbol 126 EditableTextUses:44Used by:Timeline
Symbol 127 EditableTextUses:6Used by:Timeline
Symbol 128 EditableTextUses:44Used by:Timeline
Symbol 129 EditableTextUses:6Used by:Timeline
Symbol 130 ButtonUses:46 43 93Used by:Timeline
Symbol 131 EditableTextUses:44Used by:Timeline
Symbol 132 EditableTextUses:44Used by:Timeline
Symbol 133 EditableTextUses:44Used by:Timeline
Symbol 134 GraphicUsed by:Timeline
Symbol 135 EditableTextUses:6Used by:Timeline
Symbol 136 TextUses:6Used by:Timeline
Symbol 137 ButtonUses:42 43 45 46Used by:Timeline
Symbol 138 EditableTextUses:44Used by:Timeline
Symbol 139 EditableTextUses:6Used by:Timeline
Symbol 140 EditableTextUses:44Used by:Timeline
Symbol 141 EditableTextUses:6Used by:Timeline
Symbol 142 ButtonUses:46 43 93Used by:Timeline
Symbol 143 EditableTextUses:44Used by:Timeline
Symbol 144 EditableTextUses:44Used by:Timeline
Symbol 145 EditableTextUses:44Used by:Timeline
Symbol 146 GraphicUsed by:Timeline
Symbol 147 TextUses:6Used by:Timeline
Symbol 148 TextUses:6Used by:Timeline
Symbol 149 TextUses:6Used by:152
Symbol 150 TextUses:6Used by:152
Symbol 151 GraphicUsed by:152
Symbol 152 ButtonUses:149 150 151Used by:Timeline
Symbol 153 TextUses:6Used by:156
Symbol 154 TextUses:6Used by:156
Symbol 155 GraphicUsed by:156
Symbol 156 ButtonUses:153 154 155Used by:Timeline
Symbol 157 TextUses:6Used by:160
Symbol 158 TextUses:6Used by:160
Symbol 159 GraphicUsed by:160
Symbol 160 ButtonUses:157 158 159Used by:Timeline
Symbol 161 EditableTextUses:6Used by:Timeline
Symbol 162 EditableTextUses:44Used by:Timeline
Symbol 163 GraphicUsed by:Timeline
Symbol 164 TextUses:6Used by:Timeline
Symbol 165 GraphicUsed by:Timeline
Symbol 166 EditableTextUses:6Used by:Timeline
Symbol 167 EditableTextUses:44Used by:Timeline
Symbol 168 EditableTextUses:44Used by:Timeline
Symbol 169 EditableTextUses:44Used by:Timeline
Symbol 170 EditableTextUses:44Used by:Timeline
Symbol 171 EditableTextUses:44Used by:Timeline
Symbol 172 EditableTextUses:44Used by:Timeline
Symbol 173 GraphicUsed by:Timeline
Symbol 174 GraphicUsed by:Timeline
Symbol 175 TextUses:6Used by:Timeline
Symbol 176 TextUses:6Used by:Timeline
Symbol 177 TextUses:6Used by:Timeline
Symbol 178 TextUses:6Used by:181
Symbol 179 TextUses:6Used by:181
Symbol 180 GraphicUsed by:181
Symbol 181 ButtonUses:178 179 180Used by:Timeline

Instance Names

"mc_load_info"Frame 51Symbol 22 MovieClip
"Ball"Frame 139Symbol 101 MovieClip
"paddle"Frame 139Symbol 55 MovieClip
"computerPaddle"Frame 139Symbol 107 MovieClip
"Ball"Frame 159Symbol 101 MovieClip
"paddle"Frame 159Symbol 55 MovieClip
"computerPaddle"Frame 159Symbol 107 MovieClip
"Ball"Frame 180Symbol 101 MovieClip
"paddle"Frame 180Symbol 55 MovieClip
"computerPaddle"Frame 180Symbol 107 MovieClip
"Ball"Frame 201Symbol 101 MovieClip
"paddle"Frame 201Symbol 55 MovieClip
"computerPaddle"Frame 201Symbol 107 MovieClip

Special Tags

Protect (24)Timeline Frame 10 bytes ""
ExportAssets (56)Timeline Frame 1Symbol 1 as "beep2"
ExportAssets (56)Timeline Frame 1Symbol 2 as "beep1"
ExportAssets (56)Timeline Frame 1Symbol 3 as "dissolve"
ExportAssets (56)Timeline Frame 206Symbol 3 as "dissolve"
ExportAssets (56)Timeline Frame 215Symbol 3 as "dissolve"

Labels

"start game"Frame 108
"pick"Frame 113
"level1"Frame 125
"start level"Frame 132
"play"Frame 139
"level2"Frame 143
"start level2"Frame 150
"play2"Frame 159
"level3"Frame 164
"start level3"Frame 171
"play3"Frame 180
"level4"Frame 185
"start level4"Frame 192
"play4"Frame 201
"game over"Frame 206
"you won"Frame 215
"help"Frame 224
"left"Symbol 55 MovieClip Frame 16
"right"Symbol 55 MovieClip Frame 31
"long"Symbol 55 MovieClip Frame 46
"power"Symbol 55 MovieClip Frame 70
"spin"Symbol 55 MovieClip Frame 86
"shrink"Symbol 55 MovieClip Frame 102
"nemo"Symbol 62 MovieClip Frame 1
"si"Symbol 62 MovieClip Frame 2
"kate"Symbol 62 MovieClip Frame 3
"sau"Symbol 62 MovieClip Frame 4
"left"Symbol 107 MovieClip Frame 16
"right"Symbol 107 MovieClip Frame 31
"long"Symbol 107 MovieClip Frame 46
"power"Symbol 107 MovieClip Frame 92
"spin"Symbol 107 MovieClip Frame 108
"shrink"Symbol 107 MovieClip Frame 124

Dynamic Text Variables

mc_load_info.estimatedTimeLeftSymbol 25 EditableText"0:00"
player1Symbol 79 EditableText""
playerScoreSymbol 88 EditableText"0"
player1Symbol 90 EditableText""
computerScoreSymbol 91 EditableText"0"
player2Symbol 92 EditableText""
playerScoreSymbol 95 EditableText"0"
computerScoreSymbol 96 EditableText"0"
speedUps1Symbol 97 EditableText"0"
player1Symbol 109 EditableText""
playerScoreSymbol 113 EditableText"0"
player1Symbol 114 EditableText""
computerScoreSymbol 115 EditableText"0"
player2Symbol 116 EditableText""
playerScoreSymbol 118 EditableText"0"
computerScoreSymbol 119 EditableText"0"
speedUps1Symbol 120 EditableText"0"
player1Symbol 122 EditableText""
playerScoreSymbol 126 EditableText"0"
player1Symbol 127 EditableText""
computerScoreSymbol 128 EditableText"0"
player2Symbol 129 EditableText""
playerScoreSymbol 131 EditableText"0"
computerScoreSymbol 132 EditableText"0"
speedUps1Symbol 133 EditableText"0"
player1Symbol 135 EditableText""
playerScoreSymbol 138 EditableText"0"
player1Symbol 139 EditableText""
computerScoreSymbol 140 EditableText"0"
player2Symbol 141 EditableText""
playerScoreSymbol 143 EditableText"0"
computerScoreSymbol 144 EditableText"0"
speedUps1Symbol 145 EditableText"0"
player2Symbol 161 EditableText""
speedUps1Symbol 162 EditableText"0"
player1Symbol 166 EditableText""
playerScoreSymbol 167 EditableText"0"
computerScoreSymbol 168 EditableText"0"
speedUps1Symbol 169 EditableText"0"
playerScoreSymbol 170 EditableText"0"
computerScoreSymbol 171 EditableText"0"
speedUps1Symbol 172 EditableText"0"




http://swfchan.com/9/42027/info.shtml
Created: 10/5 -2019 03:19:30 Last modified: 10/5 -2019 03:19:30 Server time: 05/05 -2024 12:01:39