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

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

bALL.swf

This is the info page for
Flash #99577

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


Text
LOADING

LOADING

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)

A game by Nicolay Edin and Axel Hammarbäck

A game by Nicolay Edin and Axel Hammarbäck

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 2
stop();
Instance of Symbol 57 MovieClip in Frame 2
onClipEvent (enterFrame) { if (_root.restartSingel == true) { _root.gotoAndStop("singel"); } if (_root.restartMulti == true) { _root.gotoAndStop("multi"); } }
Frame 3
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; bulletTime = false; superFast = false; invinsible = true; drunken = false;
Instance of Symbol 74 MovieClip "powerUpMC" in Frame 3
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; } trace(power); }
Instance of Symbol 87 MovieClip "enemy" in Frame 3
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 95 MovieClip in Frame 3
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 106 MovieClip "player" in Frame 3
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 106 MovieClip "invin" in Frame 3
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 126 MovieClip in Frame 3
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 158 MovieClip "menu" in Frame 3
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 4
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 64 MovieClip "edge3" in Frame 4
onClipEvent (enterFrame) { if (this.hitTest(_root.player)) { _root.player._y = _root.player._y + _root.speed; } }
Instance of Symbol 87 MovieClip "enemy" in Frame 4
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 95 MovieClip in Frame 4
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 106 MovieClip "player" in Frame 4
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 106 MovieClip "invin" in Frame 4
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 126 MovieClip in Frame 4
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 168 MovieClip "menu" in Frame 4
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 5
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 126 MovieClip in Frame 5
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 87 MovieClip "enemy" in Frame 5
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 95 MovieClip "food" in Frame 5
onClipEvent (load) { _root.en = 0; } onClipEvent (enterFrame) { if (_root.en >= 50) { _quality = "MEDIUM"; } if (_root.en >= 100) { _quality = "LOW"; } }
Instance of Symbol 106 MovieClip "player" in Frame 5
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 106 MovieClip "player2" in Frame 5
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 222 MovieClip "gameOM" in Frame 5
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 5 MovieClip Frame 1
_root.stop(); PercentLoaded = (_root.getBytesLoaded() / _root.getBytesTotal()) * 100; if (PercentLoaded != 100) { setProperty(bar, _xscale , PercentLoaded); } else { _root.play(); }
Symbol 5 MovieClip Frame 2
gotoAndPlay (1);
Symbol 23 MovieClip Frame 8
stop();
Symbol 25 Button
on (release) { gotoAndStop (3); }
Symbol 31 Button
on (release) { gotoAndStop ("toy"); }
Symbol 36 Button
on (release) { gotoAndStop (5); }
Symbol 55 Button
on (release) { getURL ("http://www.nbstuff.com", "_blank"); }
Symbol 62 MovieClip Frame 1
stop();
Symbol 62 MovieClip Frame 2
stop();
Symbol 74 MovieClip Frame 1
stop();
Symbol 74 MovieClip Frame 2
_root.powerHit = true;
Symbol 74 MovieClip Frame 7
stop();
Symbol 86 MovieClip Frame 10
stop(); _parent.removeMovieClip();
Symbol 87 MovieClip Frame 1
stop();
Symbol 95 MovieClip Frame 1
stop();
Symbol 95 MovieClip Frame 7
gotoAndStop (1);
Symbol 105 MovieClip Frame 10
stop(); _root.gameO = true;
Symbol 106 MovieClip Frame 1
stop();
Symbol 115 MovieClip Frame 1
stop();
Symbol 115 MovieClip Frame 250
_root.powerUp = false; _root.pTime = 500;
Symbol 140 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 146 Button
on (release) { _root.quit = true; _root.gotoAndStop("main"); }
Symbol 157 Button
on (release) { _root.gotoAndStop("main"); _root.restartSingel = true; _root.quit = true; }
Symbol 161 Button
on (release) { _root.gotoAndStop("main"); _root.quit2 = true; _root.quit = true; }
Symbol 167 Button
on (release) { _visible = false; }
Symbol 186 Button
on (press) { _root.quit = true; } on (release) { _root.quit = false; }
Symbol 187 Button
on (release) { _root.gotoAndStop("main"); _root.quit = true; }
Symbol 189 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 191 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 192 MovieClip Frame 1
stop();
Symbol 193 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 194 MovieClip Frame 1
stop();
Symbol 195 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 196 MovieClip Frame 1
stop();
Symbol 204 Button
on (release) { gotoAndStop (2); _root.quit = true; }
Symbol 221 Button
on (release) { _root.quit = true; _root.restartMulti = true; _root.gotoAndStop("main"); }

Library Items

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

Instance Names

"bg"Frame 3Symbol 62 MovieClip
"edge1"Frame 3Symbol 64 MovieClip
"edge3"Frame 3Symbol 64 MovieClip
"edge2"Frame 3Symbol 64 MovieClip
"upEdge"Frame 3Symbol 64 MovieClip
"powerUpMC"Frame 3Symbol 74 MovieClip
"enemy"Frame 3Symbol 87 MovieClip
"player"Frame 3Symbol 106 MovieClip
"invin"Frame 3Symbol 106 MovieClip
"time"Frame 3Symbol 115 MovieClip
"menu"Frame 3Symbol 158 MovieClip
"bg"Frame 4Symbol 62 MovieClip
"edge1"Frame 4Symbol 64 MovieClip
"edge3"Frame 4Symbol 64 MovieClip
"edge2"Frame 4Symbol 64 MovieClip
"upEdge"Frame 4Symbol 64 MovieClip
"enemy"Frame 4Symbol 87 MovieClip
"player"Frame 4Symbol 106 MovieClip
"invin"Frame 4Symbol 106 MovieClip
"time"Frame 4Symbol 115 MovieClip
"menu"Frame 4Symbol 168 MovieClip
"YNbox"Frame 4Symbol 196 MovieClip
"bg"Frame 5Symbol 62 MovieClip
"edge1"Frame 5Symbol 64 MovieClip
"edge3"Frame 5Symbol 64 MovieClip
"edge2"Frame 5Symbol 64 MovieClip
"upEdge"Frame 5Symbol 64 MovieClip
"enemy"Frame 5Symbol 87 MovieClip
"food"Frame 5Symbol 95 MovieClip
"player"Frame 5Symbol 106 MovieClip
"player2"Frame 5Symbol 106 MovieClip
"time"Frame 5Symbol 115 MovieClip
"gameOM"Frame 5Symbol 222 MovieClip
"bar"Symbol 5 MovieClip Frame 1Symbol 4 MovieClip
"sub"Symbol 158 MovieClip Frame 1Symbol 140 Button

Labels

"main"Frame 2
"singel"Frame 3
"toy"Frame 4
"multi"Frame 5
"loaded"Symbol 5 MovieClip Frame 3

Dynamic Text Variables

scoreSymbol 121 EditableText"0"
scoreSymbol 122 EditableText"0"
collectedSymbol 123 EditableText"0"
collectedSymbol 124 EditableText"0"
pUpSymbol 128 EditableText""
pUpSymbol 130 EditableText""
_root.scoreSymbol 132 EditableText"0"
_root.scoreSymbol 133 EditableText"0"
_root.nameSymbol 134 EditableText"Insert name"
randSpeedSymbol 178 EditableText"5"
scoreSymbol 205 EditableText"0"
scoreSymbol 206 EditableText"0"
scorePlayer2Symbol 207 EditableText"0"
scorePlayer2Symbol 208 EditableText"0"
timeLeftSymbol 211 EditableText"0"
timeLeftSymbol 212 EditableText"0 "
_root.winnerSymbol 219 EditableText"PLAYER 2"
_root.winnerSymbol 220 EditableText"PLAYER 2"




http://swfchan.com/20/99577/info.shtml
Created: 21/3 -2019 20:42:35 Last modified: 21/3 -2019 20:42:35 Server time: 24/04 -2024 15:05:40