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

<div style="position:absolute;top:-99px;left:-99px;"><img src="https://tools.swfchan.com/stathit.asp?noj=FRM92362667-15DC&rnd=92362667" width="1" height="1"></div>

armorgames ball-613.swf

This is the info page for
Flash #262969

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


Text
A game by Nicolay Edin and Axel Hammarbäck

A game by Nicolay Edin and Axel Hammarbäck

PRESENTS

Single player

Single player

Play with yourself

Play with yourself

Toy Mode

Toy Mode

Play with the
settings!

Play with the
settings!

Multiplayer

Multiplayer

Play with your friends
(if you have any)

Play with your friends
(if you have any)

Inspired by the game "Eskiv" made by Jean-François Geyelin

Inspired by the game "Eskiv" made by Jean-François Geyelin

Instructions:
Use the arrow keys to keep the white ball (you) away from the red balls
collect the greens to earn points and the yellow to get a random powerup
In multiplayer mode, Player 2 controls with WASD keys!

Instructions:
Use the arrow keys to keep the white ball (you) away from the red balls
collect the greens to earn points and the yellow to get a random powerup
In multiplayer mode, Player 2 controls with WASD keys!

Play more games by the creators

Play more games by the creators

Play more games by the creators

Play more games by the creators

Play more games by the creators

SCORE:

SCORE:

COLLECTED:

COLLECTED:

0

0

0

0

POWERUP

POWERUP

0

0

Insert name

Submit Score

Submit Score

Submit Score

Submit Score

Main Menu

Main Menu

Main Menu

Main Menu

Your Score

Your Score

GAME OVER

GAME OVER

Restart

Restart

Restart

Restart

Enemy Speed:

Close

Close

Close

Close

Powerups:

Powerups:

Speedy

Speedy

Bulletime

Bulletime

Invincible

Invincible

Enemy Speed:

5

Write in a number and
press clear all

Write in a number and
press clear all

Clear All

Clear All

Clear All

Clear All

Restart

Restart

Continue

Continue

Continue

Continue

0

0

0

0

TiME:

TiME:

0

0

Player 1

Player 1

Player 2

Player 2

The Winner is

The Winner is

PLAYER 2

PLAYER 2

ActionScript [AS1/AS2]

Frame 1
function count() { timeCount++; } function countD() { timeLeft--; } setInterval(count, 1000); setInterval(countD, 1000); restartSingel = false; restartMulti = false;
Frame 119
stop();
Instance of Symbol 67 MovieClip in Frame 119
onClipEvent (enterFrame) { if (_root.restartSingel == true) { _root.gotoAndStop("singel"); } if (_root.restartMulti == true) { _root.gotoAndStop("multi"); } }
Frame 120
WiiMote.init(); onEnterFrame = function () { if (WiiMote.isDown(69)) { trace("ASDSADSDASD"); } }; stop(); quit = false; mov = true; score = 0; collected = 0; powerHit = false; powerUp = false; gameO = false; newDir = 0; speed = 5; pTime = 2; timeCount = 0; name = "Insert Name"; pUp = "none"; restartSingel = false; onEnterFrame = function () { if (WiiMote.isDown(69)) { trace("ASDSADSDASD"); } }; bulletTime = false; superFast = false; invinsible = true; drunken = false;
Instance of Symbol 84 MovieClip "powerUpMC" in Frame 120
onClipEvent (enterFrame) { if (this.hitTest(_root.player)) { _root.powerUp = true; this.play(); power = random(3) + 1; _root.score = _root.score + 10; } if ((power == 1) && (_root.powerUp == true)) { _root.time.play(); _root.pUp = "Bulletime"; power = 1; _root.bulletTime = true; _root.superFast == false; _root.superFast = false; _root.invinsible = false; _root.invin._visible = false; _root.drunken == false; _root.invinv._x = 4000; } if ((power == 2) && (_root.powerUp == true)) { _root.time.play(); _root.pUp = "Speedy"; power = 2; _root.invinsible = false; _root.superFast = true; _root.bulletTime = false; _root.invin._visible = false; _root.drunken == false; _root.invinv._x = 4000; } if ((power == 3) && (_root.powerUp == true)) { _root.time.play(); _root.pUp = "Invincible"; power = 3; _root.invinsible = true; _root.bulletTime = false; _root.superFast = false; _root.drunken == false; } if (_root.powerUp == false) { _root.pUp = "None"; _root.drunken == false; _root.invinsible = false; _root.bulletTime = false; _root.superFast = false; _root.invinv._x = 4000; } }
Instance of Symbol 97 MovieClip "enemy" in Frame 120
onClipEvent (load) { ud = random(2) + 2; hit = 20; bounceR = false; bounce = false; bounceL = false; eS = random(5) + 1; eS2 = eS; } onClipEvent (enterFrame) { xid = _x - _root.player._x; yid = _y - _root.player._y; distance = Math.sqrt((xid * xid) + (yid * yid)); if (((distance <= ((_width / 2) + (_root.player._width / 2))) && (hit <= 0)) && (_root.invin._visible == false)) { _root.player.gotoAndStop(2); } } onClipEvent (enterFrame) { if ((ud == 3) && (bounce == false)) { this._x = this._x + eS; } if ((ud == 3) && (this.hitTest(_root.edge1))) { bounce = true; bounceR = true; bounceL = false; } if ((ud == 3) && (bounceR == true)) { this._x = this._x - eS; } if (((ud == 3) && (bounceR == true)) && (this.hitTest(_root.edge2))) { bounceL = true; bounceR = false; } if ((ud == 3) && (bounceL == true)) { this._x = this._x + eS; } } onClipEvent (load) { bounceD = true; bounceA = true; bounceU = false; } onClipEvent (enterFrame) { if ((ud == 2) && (bounceA == false)) { this._y = this._y + eS; } if ((ud == 2) && (this.hitTest(_root.edge3))) { bounceA = true; bounceD = true; bounceU = false; } if ((ud == 2) && (bounceD == true)) { this._y = this._y + eS; } if (((ud == 2) && (bounceD == true)) && (this.hitTest(_root.upEdge))) { bounceU = true; bounceD = false; } if ((ud == 2) && (bounceU == true)) { this._y = this._y - eS; } } onClipEvent (enterFrame) { if (_root.gameO == true) { eS2 = 0; eS = 0; } if ((_root.bulletTime == true) && (_root.powerUp == true)) { eS = 0.3; } if ((_root.superFast == true) && (_root.powerUp == true)) { es = 10; } if (_root.powerUp == false) { es = eS2; _root.superFast = false; _root.bulletTime = false; } if (this.hitTest(_root.invin) && (_root.powerUp == true)) { this.gotoAndStop(2); es = 0; hit = 20; } } onClipEvent (enterFrame) { if (hit <= 0) { hit = 0; } if (_root.quit == true) { this.removeMovieClip(); } hit--; }
Instance of Symbol 105 MovieClip in Frame 120
onClipEvent (load) { _root.en = 0; size = 20; } onClipEvent (enterFrame) { if (this.hitTest(_root.player)) { this.play(); _root.score = _root.score + size; _root.collected = _root.collected + 1; this._x = random(400) + 170; this._y = random(440) + 30; _root.en++; _root.enemy.duplicateMovieClip("enemy" + _root.en, _root.en); _root["enemy" + _root.en]._x = random(400) + 170; _root["enemy" + _root.en]._y = random(440) + 30; } if (_root.en >= 50) { _quality = "MEDIUM"; } if (_root.en >= 100) { _quality = "LOW"; } }
Instance of Symbol 116 MovieClip "player" in Frame 120
onClipEvent (enterFrame) { if ((_root.mov == true) && (Key.isDown(38))) { this._y = this._y - _root.speed; } if ((_root.mov == true) && (Key.isDown(40))) { this._y = this._y + _root.speed; } if ((_root.mov == true) && (Key.isDown(37))) { this._x = this._x - _root.speed; } if ((_root.mov == true) && (Key.isDown(39))) { this._x = this._x + _root.speed; } if (this.hitTest(_root.edge1)) { this._x = this._x - _root.speed; } if (this.hitTest(_root.edge2)) { this._x = this._x + _root.speed; } if (this.hitTest(_root.upEdge)) { this._y = this._y - _root.speed; } if (this.hitTest(_root.edge3)) { this._y = this._y + _root.speed; } } onClipEvent (enterFrame) { if (_root.powerUp == false) { _root.enemyS = 2; _root.speed = 5; } }
Instance of Symbol 116 MovieClip "invin" in Frame 120
onClipEvent (enterFrame) { if ((_root.powerUpMC.power == 3) && (_root.powerUp == true)) { this._visible = true; _x = _root.player._x; _y = _root.player._y; } else { this._visible = false; _x = 5000; _y = 59999; } }
Instance of Symbol 135 MovieClip in Frame 120
onClipEvent (enterFrame) { if ((_root.pTime <= 0) && (pHit == false)) { _root.powerUpMC.gotoAndStop(1); _root.powerUpMC._x = random(400) + 170; _root.powerUpMC._y = random(400) + 30; pHit = true; } if (_root.pTime == 1) { pHit = false; } _root.pTime--; }
Instance of Symbol 167 MovieClip "menu" in Frame 120
onClipEvent (enterFrame) { this.swapDepths(10000); } onClipEvent (load) { this._visible = false; } onClipEvent (enterFrame) { if (_root.gameO == true) { _root.speed = 0; this._visible = true; } if (_root.quit == true) { this.removeMovieClip(); } }
Frame 121
stop(); randSpeed = 5; quit = false; mov = true; score = 0; collected = 0; powerHit = false; powerUp = false; gameO = false; newDir = 0; speed = 5; pTime = 2; timeCount = 0; name = "insert name"; pUp = "none"; bulletTime = false; superFast = false; invinsible = true; drunken = false;
Instance of Symbol 74 MovieClip "edge3" in Frame 121
onClipEvent (enterFrame) { if (this.hitTest(_root.player)) { _root.player._y = _root.player._y + _root.speed; } }
Instance of Symbol 97 MovieClip "enemy" in Frame 121
onClipEvent (load) { ud = random(2) + 2; hit = 20; bounceR = false; bounce = false; bounceL = false; eS = random(_root.randSpeed) + 1; eS2 = eS; } onClipEvent (enterFrame) { xid = _x - _root.player._x; yid = _y - _root.player._y; distance = Math.sqrt((xid * xid) + (yid * yid)); if (((distance <= ((_width / 2) + (_root.player._width / 2))) && (hit <= 0)) && (_root.invin._visible == false)) { this.gotoAndStop(2); _root.menu._visible = true; } } onClipEvent (enterFrame) { if ((ud == 3) && (bounce == false)) { this._x = this._x + eS; } if ((ud == 3) && (this.hitTest(_root.edge1))) { bounce = true; bounceR = true; bounceL = false; } if ((ud == 3) && (bounceR == true)) { this._x = this._x - eS; } if (((ud == 3) && (bounceR == true)) && (this.hitTest(_root.edge2))) { bounceL = true; bounceR = false; } if ((ud == 3) && (bounceL == true)) { this._x = this._x + eS; } } onClipEvent (load) { bounceD = true; bounceA = true; bounceU = false; } onClipEvent (enterFrame) { if ((ud == 2) && (bounceA == false)) { this._y = this._y + eS; } if ((ud == 2) && (this.hitTest(_root.edge3))) { bounceA = true; bounceD = true; bounceU = false; } if ((ud == 2) && (bounceD == true)) { this._y = this._y + eS; } if (((ud == 2) && (bounceD == true)) && (this.hitTest(_root.upEdge))) { bounceU = true; bounceD = false; } if ((ud == 2) && (bounceU == true)) { this._y = this._y - eS; } } onClipEvent (enterFrame) { if (_root.gameO == true) { eS2 = 0; eS = 0; } if ((_root.bulletTime == true) && (_root.powerUp == true)) { eS = 0.3; } if ((_root.superFast == true) && (_root.powerUp == true)) { es = 10; } if (_root.powerUp == false) { es = eS2; _root.superFast = false; _root.bulletTime = false; } if (this.hitTest(_root.invin) && (_root.powerUp == true)) { this.gotoAndStop(2); es = 0; hit = 20; } } onClipEvent (enterFrame) { if (hit <= 0) { hit = 0; } if (_root.quit == true) { this.removeMovieClip(); } hit--; }
Instance of Symbol 105 MovieClip in Frame 121
onClipEvent (load) { _root.en = 0; size = 20; } onClipEvent (enterFrame) { if (this.hitTest(_root.player)) { this.play(); _root.score = _root.score + size; _root.collected = _root.collected + 1; this._x = random(400) + 170; this._y = random(440) + 30; _root.en++; _root.enemy.duplicateMovieClip("enemy" + _root.en, _root.en); _root["enemy" + _root.en]._x = random(400) + 170; _root["enemy" + _root.en]._y = random(440) + 30; } if (_root.en >= 50) { _quality = "MEDIUM"; } if (_root.en >= 100) { _quality = "LOW"; } }
Instance of Symbol 116 MovieClip "player" in Frame 121
onClipEvent (enterFrame) { if ((_root.mov == true) && (Key.isDown(38))) { _y = (_y - _root.speed); } if ((_root.mov == true) && (Key.isDown(40))) { _y = (_y + _root.speed); } if ((_root.mov == true) && (Key.isDown(37))) { _x = (_x - _root.speed); } if ((_root.mov == true) && (Key.isDown(39))) { _x = (_x + _root.speed); } trace(_x); } onClipEvent (enterFrame) { if (_x <= 133) { _x = 133; } if (_x >= 563.54) { _x = 563.54; } if (_y >= 460.6) { _y = 460.6; } if (_y <= 38.6) { _y = 38.6; } }
Instance of Symbol 116 MovieClip "invin" in Frame 121
onClipEvent (enterFrame) { if ((_root.YNbox._currentframe == 2) && (_root.powerUp == true)) { this._visible = true; _x = _root.player._x; _y = _root.player._y; } else { this._visible = false; _x = 5000; _y = 59999; } }
Instance of Symbol 135 MovieClip in Frame 121
onClipEvent (enterFrame) { if ((_root.pTime <= 0) && (pHit == false)) { _root.powerUpMC.gotoAndStop(1); _root.powerUpMC._x = random(400) + 170; _root.powerUpMC._y = random(400) + 30; pHit = true; } if (_root.pTime == 1) { pHit = false; } _root.pTime--; }
Instance of Symbol 177 MovieClip "menu" in Frame 121
onClipEvent (enterFrame) { this.swapDepths(10000); } onClipEvent (load) { this._visible = false; } onClipEvent (enterFrame) { if (_root.gameO == true) { _root.speed = 0; this._visible = true; } if (_root.quit == true) { this.removeMovieClip(); } }
Frame 122
stop(); quit = false; mov = true; score = 0; collected = 0; powerHit = false; powerUp = false; gameO2 = false; newDir = 0; speed = 5; speed2 = 5; score = 0; scorePlayer2 = 0; timeLeft = 60; restartMulti = false; bulletTime = false;
Instance of Symbol 135 MovieClip in Frame 122
onClipEvent (enterFrame) { if (_root.score <= 0) { _root.score = 0; } if (_root.scorePlayer2 <= 0) { _root.scorePlayer2 = 0; } if (_root.timeLeft <= 0) { _root.gameO2 = true; _root.timeLeft = 0; } } onClipEvent (enterFrame) { if (_root.score >= _root.scorePlayer2) { _root.winner = "Player 1"; _root.speed2 = 6; _root.speed = 5; } else if (_root.score == _root.scoreplayer2) { _root.winner = "DRAW!"; _root.speed = 5; _root.speed2 = 5; } else { _root.winner = "Player 2"; _root.speed = 6; _root.speed2 = 5; } }
Instance of Symbol 97 MovieClip "enemy" in Frame 122
onClipEvent (load) { ud = random(2) + 2; hit = 20; bounceR = false; bounce = false; bounceL = false; eS = random(5) + 1; eS2 = eS; } onClipEvent (enterFrame) { xid = _x - _root.player._x; yid = _y - _root.player._y; distance = Math.sqrt((xid * xid) + (yid * yid)); if ((distance <= ((_width / 2) + (_root.player._width / 2))) && (hit <= 0)) { _root.score = _root.score - 10; this.gotoAndStop(2); this._x = this._x - 10; _root.player._alpha = 50; } else { _root.player._alpha = 100; } } onClipEvent (enterFrame) { xid = _x - _root.player2._x; yid = _y - _root.player2._y; distance = Math.sqrt((xid * xid) + (yid * yid)); if ((distance <= ((_width / 2) + (_root.player2._width / 2))) && (hit <= 0)) { _root.scorePlayer2 = _root.scorePlayer2 - 10; _root.player2._alpha = 50; this._x = this._x - 10; this.gotoAndStop(2); } else { _root.player2._alpha = 100; } } onClipEvent (enterFrame) { if ((ud == 3) && (bounce == false)) { this._x = this._x + eS; } if ((ud == 3) && (this.hitTest(_root.edge1))) { bounce = true; bounceR = true; bounceL = false; } if ((ud == 3) && (bounceR == true)) { this._x = this._x - eS; } if (((ud == 3) && (bounceR == true)) && (this.hitTest(_root.edge2))) { bounceL = true; bounceR = false; } if ((ud == 3) && (bounceL == true)) { this._x = this._x + eS; } } onClipEvent (load) { bounceD = true; bounceA = true; bounceU = false; } onClipEvent (enterFrame) { if ((ud == 2) && (bounceA == false)) { this._y = this._y + eS; } if ((ud == 2) && (this.hitTest(_root.edge3))) { bounceA = true; bounceD = true; bounceU = false; } if ((ud == 2) && (bounceD == true)) { this._y = this._y + eS; } if (((ud == 2) && (bounceD == true)) && (this.hitTest(_root.upEdge))) { bounceU = true; bounceD = false; } if ((ud == 2) && (bounceU == true)) { this._y = this._y - eS; } } onClipEvent (enterFrame) { if (_root.gameO == true) { eS2 = 0; eS = 0; } if ((_root.bulletTime == true) && (_root.powerUp == true)) { eS = 0.3; } else { eS = eS2; } } onClipEvent (enterFrame) { if (hit <= 0) { hit = 0; } if (_root.quit == true) { this.removeMovieClip(); } hit--; }
Instance of Symbol 105 MovieClip "food" in Frame 122
onClipEvent (load) { _root.en = 0; } onClipEvent (enterFrame) { if (_root.en >= 50) { _quality = "MEDIUM"; } if (_root.en >= 100) { _quality = "LOW"; } }
Instance of Symbol 116 MovieClip "player" in Frame 122
onClipEvent (enterFrame) { if ((_root.mov == true) && (Key.isDown(38))) { this._y = this._y - _root.speed; } if ((_root.mov == true) && (Key.isDown(40))) { this._y = this._y + _root.speed; } if ((_root.mov == true) && (Key.isDown(37))) { this._x = this._x - _root.speed; } if ((_root.mov == true) && (Key.isDown(39))) { this._x = this._x + _root.speed; } if (this.hitTest(_root.edge1)) { this._x = this._x - _root.speed; } if (this.hitTest(_root.edge2)) { this._x = this._x + _root.speed; } if (this.hitTest(_root.upEdge)) { this._y = this._y - _root.speed; } if (this.hitTest(_root.edge3)) { this._y = this._y + _root.speed; } } onClipEvent (enterFrame) { if (_root.powerUp == false) { _root.enemyS = 2; } } onClipEvent (enterFrame) { if (this.hitTest(_root.food)) { _root.score = _root.score + 20; _root.collected = _root.collected + 1; _root.food._x = random(400) + 170; _root.food._y = random(440) + 30; _root.en++; _root.enemy.duplicateMovieClip("enemy" + _root.en, _root.en); _root["enemy" + _root.en]._x = random(400) + 170; _root["enemy" + _root.en]._y = random(440) + 30; } }
Instance of Symbol 116 MovieClip "player2" in Frame 122
onClipEvent (enterFrame) { if ((_root.mov == true) && (Key.isDown(87))) { this._y = this._y - _root.speed2; } if ((_root.mov == true) && (Key.isDown(83))) { this._y = this._y + _root.speed2; } if ((_root.mov == true) && (Key.isDown(65))) { this._x = this._x - _root.speed2; } if ((_root.mov == true) && (Key.isDown(68))) { this._x = this._x + _root.speed2; } if (this.hitTest(_root.edge1)) { this._x = this._x - _root.speed2; } if (this.hitTest(_root.edge2)) { this._x = this._x + _root.speed2; } if (this.hitTest(_root.upEdge)) { this._y = this._y - _root.speed2; } if (this.hitTest(_root.edge3)) { this._y = this._y + _root.speed2; } } onClipEvent (enterFrame) { if (_root.powerUp == false) { _root.enemyS = 2; } } onClipEvent (enterFrame) { if (this.hitTest(_root.food)) { _root.scorePlayer2 = _root.scorePlayer2 + 20; _root.collected = _root.collected + 1; _root.food._x = random(400) + 170; _root.food._y = random(440) + 30; _root.en++; _root.enemy.duplicateMovieClip("enemy" + _root.en, _root.en); _root["enemy" + _root.en]._x = random(400) + 170; _root["enemy" + _root.en]._y = random(440) + 30; } }
Instance of Symbol 233 MovieClip "gameOM" in Frame 122
onClipEvent (enterFrame) { this.swapDepths(10000); } onClipEvent (load) { this._visible = false; } onClipEvent (enterFrame) { if (_root.gameO2 == true) { _root.speed = 0; this._visible = true; } if (_root.quit == true) { this.removeMovieClip(); } }
Symbol 6 MovieClip Frame 1
doneLoading = 0; stop();
Instance of Symbol 2 MovieClip "bkgd" in Symbol 6 MovieClip Frame 1
onClipEvent (enterFrame) { if (_parent.doneLoading == 0) { total = _parent._parent.getBytesTotal(); isloaded = _parent._parent.getBytesLoaded(); p = 100 * (isLoaded / total); _parent.bytes = ((int(isloaded / 1000) add " KB of ") add int(total / 1000)) add " KB"; _parent.percent = int(p) add "% LOADED"; _parent.bar._xscale = p; trace("....." + Number(p)); if (Number(p) >= Number(100)) { _parent._parent.gotoAndPlay(Number(2)); _parent.gotoAndStop("off"); _parent.doneLoading = 1; } else { _parent._parent.gotoAndPlay(Number(1)); } } }
Symbol 17 MovieClip Frame 7
gotoAndPlay (1);
Symbol 20 MovieClip Frame 32
gotoAndPlay (1);
Symbol 36 MovieClip Frame 8
stop();
Symbol 38 Button
on (release) { gotoAndStop (1); }
Symbol 44 Button
on (release) { gotoAndStop ("toy"); }
Symbol 49 Button
on (release) { gotoAndStop (1); }
Symbol 60 Button
on (release) { getURL ("http://www.nbstuff.com", "_blank"); }
Symbol 63 Button
on (release) { _root.gotoAndStop("original Mode", 1); }
Symbol 64 Button
on (release) { gotoAndStop ("toy"); }
Symbol 65 Button
on (release) { _root.gotoAndStop("multi mode", 1); }
Symbol 72 MovieClip Frame 1
stop();
Symbol 72 MovieClip Frame 2
stop();
Symbol 84 MovieClip Frame 1
stop();
Symbol 84 MovieClip Frame 2
_root.powerHit = true;
Symbol 84 MovieClip Frame 7
stop();
Symbol 96 MovieClip Frame 10
stop(); _parent.removeMovieClip();
Symbol 97 MovieClip Frame 1
stop();
Symbol 105 MovieClip Frame 1
stop();
Symbol 105 MovieClip Frame 7
gotoAndStop (1);
Symbol 115 MovieClip Frame 10
stop(); _root.gameO = true;
Symbol 116 MovieClip Frame 1
stop();
Symbol 124 MovieClip Frame 1
stop();
Symbol 124 MovieClip Frame 250
_root.powerUp = false; _root.pTime = 500;
Symbol 149 Button
on (release) { score = _root.score; name = _root.name; _root.game_id = "ballo"; _root.getURL("http://www.nbstuff.com/highscores/ball/addscore.php", "_blank", "POST"); _root.menu.sub._visible = false; }
Symbol 155 Button
on (release) { _root.quit = true; _root.gotoAndStop("main"); }
Symbol 166 Button
on (release) { _root.gotoAndStop("main"); _root.restartSingel = true; _root.quit = true; }
Symbol 170 Button
on (release) { _root.gotoAndStop("main"); _root.quit2 = true; _root.quit = true; }
Symbol 176 Button
on (release) { _visible = false; }
Symbol 195 Button
on (press) { _root.quit = true; } on (release) { _root.quit = false; }
Symbol 196 Button
on (release) { _root.gotoAndStop("main"); _root.quit = true; }
Symbol 198 Button
on (release) { _root.pUp = "Speedy"; _root.powerUp = true; power = 2; _root.invinsible = false; _root.superFast = true; _root.bulletTime = false; _root.invin._visible = false; _root.drunken == false; _root.invinv._x = 4000; gotoAndStop (2); }
Symbol 200 Button
on (release) { _root.pUp = "Bulletime"; _root.powerUp = false; _root.bulletTime = false; _root.superFast == false; _root.superFast = false; _root.invinsible = false; _root.invin._visible = false; _root.drunken == false; _root.invinv._x = 4000; gotoAndStop (1); }
Symbol 201 MovieClip Frame 1
stop();
Symbol 202 Button
on (release) { _root.pUp = "Bulletime"; _root.powerUp = true; _root.bulletTime = true; _root.superFast == false; _root.superFast = false; _root.invinsible = false; _root.invin._visible = false; _root.drunken == false; _root.invinv._x = 4000; gotoAndStop (2); }
Symbol 203 Button
on (release) { _root.pUp = "Bulletime"; _root.powerUp = false; _root.bulletTime = false; _root.superFast == false; _root.superFast = false; _root.invinsible = false; _root.invin._visible = false; _root.drunken == false; _root.invinv._x = 4000; gotoAndStop (1); }
Symbol 204 MovieClip Frame 1
stop();
Symbol 205 Button
on (release) { _root.powerUp = true; _root.pUp = "Invincible"; power = 3; _root.invinsible = true; _root.bulletTime = false; _root.superFast = false; _root.drunken == false; gotoAndStop (2); }
Symbol 206 Button
on (release) { _root.pUp = "Bulletime"; _root.powerUp = false; _root.bulletTime = false; _root.superFast == false; _root.superFast = false; _root.invinsible = false; _root.invin._visible = false; _root.drunken == false; _root.invinv._x = 4000; gotoAndStop (1); }
Symbol 207 MovieClip Frame 1
stop();
Symbol 215 Button
on (release) { gotoAndStop (119); _root.quit = true; }
Symbol 232 Button
on (release) { _root.quit = true; _root.restartMulti = true; _root.gotoAndStop("main"); }

Library Items

Symbol 1 GraphicUsed by:2
Symbol 2 MovieClipUses:1Used by:6
Symbol 3 FontUsed by:4 5 22
Symbol 4 EditableTextUses:3Used by:6
Symbol 5 EditableTextUses:3Used by:6
Symbol 6 MovieClipUses:2 4 5Used by:Timeline
Symbol 7 GraphicUsed by:11
Symbol 8 GraphicUsed by:11
Symbol 9 GraphicUsed by:11
Symbol 10 GraphicUsed by:11
Symbol 11 MovieClipUses:7 8 9 10Used by:61  Timeline
Symbol 12 FontUsed by:13 14 50 51 52 53 54 55 56 57 58 125 126 127 128 136 137 138 139 168 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 220 221 224 225 226 227
Symbol 13 TextUses:12Used by:61  Timeline
Symbol 14 TextUses:12Used by:61  Timeline
Symbol 15 GraphicUsed by:Timeline
Symbol 16 GraphicUsed by:17
Symbol 17 MovieClipUses:16Used by:Timeline
Symbol 18 GraphicUsed by:20
Symbol 19 GraphicUsed by:20
Symbol 20 MovieClipUses:18 19Used by:Timeline
Symbol 21 GraphicUsed by:Timeline
Symbol 22 TextUses:3Used by:Timeline
Symbol 23 GraphicUsed by:61
Symbol 24 GraphicUsed by:25 38 44 49 63 64 65
Symbol 25 MovieClipUses:24Used by:38 39 49 63 65
Symbol 26 GraphicUsed by:27 38 44 49 63 64 65
Symbol 27 MovieClipUses:26Used by:38 39 49 63 65
Symbol 28 FontUsed by:29 30 31 32 40 41 42 43 45 46 47 48
Symbol 29 EditableTextUses:28Used by:38 63
Symbol 30 EditableTextUses:28Used by:38 63
Symbol 31 EditableTextUses:28Used by:38 63
Symbol 32 EditableTextUses:28Used by:38 63
Symbol 33 GraphicUsed by:36 38 44 49 63 64 65
Symbol 34 GraphicUsed by:36
Symbol 35 GraphicUsed by:36
Symbol 36 MovieClipUses:33 34 35Used by:38 44 49 63 64 65
Symbol 37 SoundUsed by:38 44 49 63 64 65
Symbol 38 ButtonUses:25 27 29 30 31 32 36 24 26 33 37Used by:61
Symbol 39 MovieClipUses:25 27Used by:44 64
Symbol 40 EditableTextUses:28Used by:44 64
Symbol 41 EditableTextUses:28Used by:44 64
Symbol 42 EditableTextUses:28Used by:44 64
Symbol 43 EditableTextUses:28Used by:44 64
Symbol 44 ButtonUses:39 40 41 42 43 36 24 26 33 37Used by:61
Symbol 45 EditableTextUses:28Used by:49 65
Symbol 46 EditableTextUses:28Used by:49 65
Symbol 47 EditableTextUses:28Used by:49 65
Symbol 48 EditableTextUses:28Used by:49 65
Symbol 49 ButtonUses:25 27 45 46 47 48 36 24 26 33 37Used by:61
Symbol 50 TextUses:12Used by:61  Timeline
Symbol 51 TextUses:12Used by:61  Timeline
Symbol 52 TextUses:12Used by:61  Timeline
Symbol 53 TextUses:12Used by:61  Timeline
Symbol 54 TextUses:12Used by:60
Symbol 55 TextUses:12Used by:60
Symbol 56 TextUses:12Used by:60
Symbol 57 TextUses:12Used by:60
Symbol 58 TextUses:12Used by:60
Symbol 59 GraphicUsed by:60
Symbol 60 ButtonUses:54 55 56 57 58 59Used by:61  Timeline
Symbol 61 MovieClipUses:23 38 44 49 11 13 14 50 51 52 53 60Used by:Timeline
Symbol 62 GraphicUsed by:Timeline
Symbol 63 ButtonUses:25 27 29 30 31 32 36 24 26 33 37Used by:Timeline
Symbol 64 ButtonUses:39 40 41 42 43 36 24 26 33 37Used by:Timeline
Symbol 65 ButtonUses:25 27 45 46 47 48 36 24 26 33 37Used by:Timeline
Symbol 66 GraphicUsed by:67
Symbol 67 MovieClipUses:66Used by:Timeline
Symbol 68 BitmapUsed by:69
Symbol 69 GraphicUses:68Used by:72
Symbol 70 GraphicUsed by:71
Symbol 71 MovieClipUses:70Used by:72
Symbol 72 MovieClipUses:69 71Used by:Timeline
Symbol 73 GraphicUsed by:74
Symbol 74 MovieClipUses:73Used by:Timeline
Symbol 75 GraphicUsed by:84
Symbol 76 ShapeTweeningUsed by:84
Symbol 77 ShapeTweeningUsed by:84
Symbol 78 ShapeTweeningUsed by:84
Symbol 79 SoundUsed by:84 105
Symbol 80 ShapeTweeningUsed by:84
Symbol 81 ShapeTweeningUsed by:84
Symbol 82 ShapeTweeningUsed by:84
Symbol 83 GraphicUsed by:84 105
Symbol 84 MovieClipUses:75 76 77 78 79 80 81 82 83Used by:Timeline
Symbol 85 GraphicUsed by:97
Symbol 86 GraphicUsed by:96 115
Symbol 87 SoundUsed by:96 115
Symbol 88 GraphicUsed by:96
Symbol 89 GraphicUsed by:96
Symbol 90 GraphicUsed by:96
Symbol 91 GraphicUsed by:96
Symbol 92 GraphicUsed by:96
Symbol 93 GraphicUsed by:96
Symbol 94 GraphicUsed by:96
Symbol 95 GraphicUsed by:96
Symbol 96 MovieClipUses:86 87 88 89 90 91 92 93 94 95Used by:97
Symbol 97 MovieClipUses:85 96Used by:Timeline
Symbol 98 GraphicUsed by:105
Symbol 99 ShapeTweeningUsed by:105
Symbol 100 ShapeTweeningUsed by:105
Symbol 101 ShapeTweeningUsed by:105
Symbol 102 ShapeTweeningUsed by:105
Symbol 103 ShapeTweeningUsed by:105
Symbol 104 ShapeTweeningUsed by:105
Symbol 105 MovieClipUses:98 99 100 101 79 102 103 104 83Used by:Timeline
Symbol 106 GraphicUsed by:116
Symbol 107 GraphicUsed by:115
Symbol 108 GraphicUsed by:115
Symbol 109 GraphicUsed by:115
Symbol 110 GraphicUsed by:115
Symbol 111 GraphicUsed by:115
Symbol 112 GraphicUsed by:115
Symbol 113 GraphicUsed by:115
Symbol 114 GraphicUsed by:115
Symbol 115 MovieClipUses:86 87 107 108 109 110 111 112 113 114Used by:116
Symbol 116 MovieClipUses:106 115Used by:Timeline
Symbol 117 GraphicUsed by:118
Symbol 118 MovieClipUses:117Used by:Timeline
Symbol 119 GraphicUsed by:124
Symbol 120 ShapeTweeningUsed by:124
Symbol 121 GraphicUsed by:124
Symbol 122 ShapeTweeningUsed by:124
Symbol 123 GraphicUsed by:124
Symbol 124 MovieClipUses:119 120 121 122 123Used by:Timeline
Symbol 125 TextUses:12Used by:Timeline
Symbol 126 TextUses:12Used by:Timeline
Symbol 127 TextUses:12Used by:Timeline
Symbol 128 TextUses:12Used by:Timeline
Symbol 129 FontUsed by:130 131 132 133 141 142 143 144 145 146 147 150 151 152 153 156 157 158 159 161 162 163 164 171 172 173 174 208 209 210 211 212 214 216 217 218 219 222 223 228 229 230 231
Symbol 130 EditableTextUses:129Used by:Timeline
Symbol 131 EditableTextUses:129Used by:Timeline
Symbol 132 EditableTextUses:129Used by:Timeline
Symbol 133 EditableTextUses:129Used by:Timeline
Symbol 134 GraphicUsed by:135
Symbol 135 MovieClipUses:134Used by:Timeline
Symbol 136 TextUses:12Used by:Timeline
Symbol 137 EditableTextUses:12Used by:Timeline
Symbol 138 TextUses:12Used by:Timeline
Symbol 139 EditableTextUses:12Used by:Timeline
Symbol 140 GraphicUsed by:167
Symbol 141 EditableTextUses:129Used by:167
Symbol 142 EditableTextUses:129Used by:167
Symbol 143 EditableTextUses:129Used by:167
Symbol 144 TextUses:129Used by:149
Symbol 145 TextUses:129Used by:149
Symbol 146 TextUses:129Used by:149
Symbol 147 TextUses:129Used by:149
Symbol 148 GraphicUsed by:149
Symbol 149 ButtonUses:144 145 146 147 148Used by:167
Symbol 150 TextUses:129Used by:155 170 196
Symbol 151 TextUses:129Used by:155 170 196
Symbol 152 TextUses:129Used by:155 170 196
Symbol 153 TextUses:129Used by:155 170 196
Symbol 154 GraphicUsed by:155 170 196
Symbol 155 ButtonUses:150 151 152 153 154Used by:167
Symbol 156 TextUses:129Used by:167
Symbol 157 TextUses:129Used by:167
Symbol 158 TextUses:129Used by:160
Symbol 159 TextUses:129Used by:160
Symbol 160 MovieClipUses:158 159Used by:167 177 233
Symbol 161 TextUses:129Used by:166 232
Symbol 162 TextUses:129Used by:166 232
Symbol 163 TextUses:129Used by:166 232
Symbol 164 TextUses:129Used by:166 232
Symbol 165 GraphicUsed by:166 232
Symbol 166 ButtonUses:161 162 163 164 165Used by:167
Symbol 167 MovieClipUses:140 141 142 143 149 155 156 157 160 166Used by:Timeline
Symbol 168 TextUses:12Used by:Timeline
Symbol 169 GraphicUsed by:177 233
Symbol 170 ButtonUses:150 151 152 153 154Used by:177
Symbol 171 TextUses:129Used by:176
Symbol 172 TextUses:129Used by:176
Symbol 173 TextUses:129Used by:176
Symbol 174 TextUses:129Used by:176
Symbol 175 GraphicUsed by:176
Symbol 176 ButtonUses:171 172 173 174 175Used by:177
Symbol 177 MovieClipUses:169 170 160 176Used by:Timeline
Symbol 178 TextUses:12Used by:Timeline
Symbol 179 TextUses:12Used by:Timeline
Symbol 180 TextUses:12Used by:Timeline
Symbol 181 TextUses:12Used by:Timeline
Symbol 182 TextUses:12Used by:Timeline
Symbol 183 TextUses:12Used by:Timeline
Symbol 184 TextUses:12Used by:Timeline
Symbol 185 TextUses:12Used by:Timeline
Symbol 186 TextUses:12Used by:Timeline
Symbol 187 EditableTextUses:12Used by:Timeline
Symbol 188 TextUses:12Used by:Timeline
Symbol 189 TextUses:12Used by:Timeline
Symbol 190 TextUses:12Used by:195
Symbol 191 TextUses:12Used by:195
Symbol 192 TextUses:12Used by:195
Symbol 193 TextUses:12Used by:195
Symbol 194 GraphicUsed by:195
Symbol 195 ButtonUses:190 191 192 193 194Used by:Timeline
Symbol 196 ButtonUses:150 151 152 153 154Used by:233  Timeline
Symbol 197 GraphicUsed by:198 202 205
Symbol 198 ButtonUses:197Used by:201
Symbol 199 GraphicUsed by:200 203 206
Symbol 200 ButtonUses:199Used by:201
Symbol 201 MovieClipUses:198 200Used by:Timeline
Symbol 202 ButtonUses:197Used by:204
Symbol 203 ButtonUses:199Used by:204
Symbol 204 MovieClipUses:202 203Used by:Timeline
Symbol 205 ButtonUses:197Used by:207
Symbol 206 ButtonUses:199Used by:207
Symbol 207 MovieClipUses:205 206Used by:Timeline
Symbol 208 TextUses:129Used by:215
Symbol 209 TextUses:129Used by:215
Symbol 210 TextUses:129Used by:215
Symbol 211 TextUses:129Used by:215
Symbol 212 TextUses:129Used by:215
Symbol 213 GraphicUsed by:215
Symbol 214 TextUses:129Used by:215
Symbol 215 ButtonUses:208 209 210 211 212 213 214Used by:Timeline
Symbol 216 EditableTextUses:129Used by:Timeline
Symbol 217 EditableTextUses:129Used by:Timeline
Symbol 218 EditableTextUses:129Used by:Timeline
Symbol 219 EditableTextUses:129Used by:Timeline
Symbol 220 TextUses:12Used by:Timeline
Symbol 221 TextUses:12Used by:Timeline
Symbol 222 EditableTextUses:129Used by:Timeline
Symbol 223 EditableTextUses:129Used by:Timeline
Symbol 224 TextUses:12Used by:Timeline
Symbol 225 TextUses:12Used by:Timeline
Symbol 226 TextUses:12Used by:Timeline
Symbol 227 TextUses:12Used by:Timeline
Symbol 228 TextUses:129Used by:233
Symbol 229 TextUses:129Used by:233
Symbol 230 EditableTextUses:129Used by:233
Symbol 231 EditableTextUses:129Used by:233
Symbol 232 ButtonUses:161 162 163 164 165Used by:233
Symbol 233 MovieClipUses:169 196 228 229 160 230 231 232Used by:Timeline

Instance Names

"bg"Frame 120Symbol 72 MovieClip
"edge1"Frame 120Symbol 74 MovieClip
"edge3"Frame 120Symbol 74 MovieClip
"edge2"Frame 120Symbol 74 MovieClip
"upEdge"Frame 120Symbol 74 MovieClip
"powerUpMC"Frame 120Symbol 84 MovieClip
"enemy"Frame 120Symbol 97 MovieClip
"player"Frame 120Symbol 116 MovieClip
"invin"Frame 120Symbol 116 MovieClip
"time"Frame 120Symbol 124 MovieClip
"menu"Frame 120Symbol 167 MovieClip
"bg"Frame 121Symbol 72 MovieClip
"edge1"Frame 121Symbol 74 MovieClip
"edge3"Frame 121Symbol 74 MovieClip
"edge2"Frame 121Symbol 74 MovieClip
"upEdge"Frame 121Symbol 74 MovieClip
"enemy"Frame 121Symbol 97 MovieClip
"player"Frame 121Symbol 116 MovieClip
"invin"Frame 121Symbol 116 MovieClip
"time"Frame 121Symbol 124 MovieClip
"menu"Frame 121Symbol 177 MovieClip
"YNbox"Frame 121Symbol 207 MovieClip
"bg"Frame 122Symbol 72 MovieClip
"edge1"Frame 122Symbol 74 MovieClip
"edge3"Frame 122Symbol 74 MovieClip
"edge2"Frame 122Symbol 74 MovieClip
"upEdge"Frame 122Symbol 74 MovieClip
"enemy"Frame 122Symbol 97 MovieClip
"food"Frame 122Symbol 105 MovieClip
"player"Frame 122Symbol 116 MovieClip
"player2"Frame 122Symbol 116 MovieClip
"time"Frame 122Symbol 124 MovieClip
"gameOM"Frame 122Symbol 233 MovieClip
"bkgd"Symbol 6 MovieClip Frame 1Symbol 2 MovieClip
"sub"Symbol 167 MovieClip Frame 1Symbol 149 Button

Labels

"main"Frame 119
"original Mode"Frame 120
"toy"Frame 121
"multi mode"Frame 122
"on"Symbol 6 MovieClip Frame 1
"off"Symbol 6 MovieClip Frame 2

Dynamic Text Variables

percentSymbol 4 EditableText""
bytesSymbol 5 EditableText""
scoreSymbol 130 EditableText"0"
scoreSymbol 131 EditableText"0"
collectedSymbol 132 EditableText"0"
collectedSymbol 133 EditableText"0"
pUpSymbol 137 EditableText""
pUpSymbol 139 EditableText""
_root.scoreSymbol 141 EditableText"0"
_root.scoreSymbol 142 EditableText"0"
_root.nameSymbol 143 EditableText"Insert name"
randSpeedSymbol 187 EditableText"5"
scoreSymbol 216 EditableText"0"
scoreSymbol 217 EditableText"0"
scorePlayer2Symbol 218 EditableText"0"
scorePlayer2Symbol 219 EditableText"0"
timeLeftSymbol 222 EditableText"0"
timeLeftSymbol 223 EditableText"0 "
_root.winnerSymbol 230 EditableText"PLAYER 2"
_root.winnerSymbol 231 EditableText"PLAYER 2"




https://swfchan.com/53/262969/info.shtml
Created: 13/3 -2026 21:00:08 Last modified: 13/3 -2026 21:00:08 Server time: 15/03 -2026 22:04:08