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

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

CC12 Game Demo Reel '08.swf

This is the info page for
Flash #58946

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


Text
Arrow Keys To Move. A to select.
Press M at anytime to return to the menu.
Press Q to toggle quality.

Pong EXTREME! Demo

Speed

ARROW KEYS/WASD KEYS To Move

LEFT CLICK to shoot

R To Reload

RELOADING

Switch!

Level 1

Level 2

Level 3

Level 4

Level 5

Speed!

GAME OVER

Your Final Score:

ActionScript [AS1/AS2]

Frame 1
var myMenu = new ContextMenu(); myMenu.hideBuiltInItems(); _root.menu = myMenu; _quality = "LOW"; _quality = "MEDIUM"; _quality = "HIGH"; myListener = new Object(); myListener.onKeyDown = function () { if (Key.getCode() == 81) { if ((i++) >= 2) { i = 0; } _quality = ["HIGH", "MEDIUM", "LOW"][i]; } if (Key.getCode() == 77) { _root.gotoAndStop("menu"); } }; Key.addListener(myListener);
Frame 2
stop();
Instance of Symbol 23 MovieClip "man" in Frame 2
onClipEvent (load) { vx = 0; vy = 0; friction = 0.8; } onClipEvent (enterFrame) { vx = vx * friction; vy = vy * friction; _x = (_x + vx); _y = (_y + vy); if (Key.isDown(39)) { vx = vx + 5; } if (Key.isDown(37)) { vx = vx - 5; } if (Key.isDown(40)) { vy = vy + 5; } if (Key.isDown(38)) { vy = vy - 5; } if (this.hitTest(_root.pl1)) { _root.pl1.inne._visible = true; if (Key.isDown(65)) { _root.gotoAndStop("game1"); } } else { _root.pl1.inne._visible = false; } if (this.hitTest(_root.pl2)) { _root.pl2.inne2._visible = true; if (Key.isDown(65)) { _root.gotoAndStop("game2"); } } else { _root.pl2.inne2._visible = false; } if (this.hitTest(_root.pl3)) { _root.pl3.inne3._visible = true; if (Key.isDown(65)) { _root.gotoAndStop("game3"); } } else { _root.pl3.inne3._visible = false; } if (this.hitTest(_root.pl4)) { _root.pl4.inne4._visible = true; if (Key.isDown(65)) { _root.gotoAndStop("game4"); } } else { _root.pl4.inne4._visible = false; } if (_x > 520) { _x = -19; } if (_x < -20) { _x = 519; } if (_y > 620) { _y = -19; } if (_y < -20) { _y = 619; } updateAfterEvent(); }
Frame 3
stop(); reloading = false; bc = 0; onMouseDown = function () { bc++; _root.bulleet.nextFrame(); if (bc > 1100) { bc = 1000; } duplicateMovieClip ("bullet2", "b" + bc, bc); with (_root["b" + bc]) { spd = 20; _x = gun._x; _y = gun._y; _rotation = _root.gun._rotation; } _root["b" + bc].onEnterFrame = function () { with (this) { if (_rotation > 180) { _y = _y + (spd * Math.cos((Math.PI/180) * _rotation)); _x = _x - (spd * Math.sin((Math.PI/180) * _rotation)); } else { _y = _y - (spd * Math.cos((Math.PI/180) * _rotation)); _x = _x + (spd * Math.sin((Math.PI/180) * _rotation)); } if ((((_x > Stage.width) || (_x < 0)) || (_y < 0)) || (_y > Stage.height)) { this.removeMovieClip(); } } }; }; onEnterFrame = function () { with (gun) { this.Xd = _root._xmouse - _x; this.Yd = _root._ymouse - _y; radAngle = Math.atan2(Yd, Xd); _rotation = int(((radAngle * 360) / (Math.PI*2)) + 90); } };
Instance of Symbol 40 MovieClip "bullet2" in Frame 3
onClipEvent (load) { spd = 20; _x = _root.gun._x; _y = _root.gun._y; _rotation = _root.gun._rotation; } onClipEvent (enterFrame) { if (_name == "bullet2") { _x = -1000; } else if (_rotation > 180) { _y = (_y + (spd * Math.cos((Math.PI/180) * _rotation))); _x = (_x - (spd * Math.sin((Math.PI/180) * _rotation))); } else { _y = (_y - (spd * Math.cos((Math.PI/180) * _rotation))); _x = (_x + (spd * Math.sin((Math.PI/180) * _rotation))); } if ((((_x > Stage.width) || (_x < 0)) || (_y < 0)) || (_y > Stage.height)) { this.removeMovieClip(); } if (this.hitTest(_root.pl)) { _root.nextFrame(); } }
Instance of Symbol 42 MovieClip "gun" in Frame 3
onClipEvent (enterFrame) { Xd = _root._xmouse - _x; Yd = _root._ymouse - _y; radAngle = Math.atan2(Yd, Xd); _rotation = int(((radAngle * 360) / (Math.PI*2)) + 90); updateAfterEvent(); getDepth(1000); }
Instance of Symbol 23 MovieClip "man" in Frame 3
onClipEvent (enterFrame) { getDepth(1001); }
Frame 4
stop(); reloading = false; bc = 0; onLoad = function () { _root.score = 0; }; onMouseDown = function () { if (bc < 11) { bc++; _root.bulleet.nextFrame(); if (bc > 1100) { bc = 1000; } duplicateMovieClip ("bullet2", "b" + bc, bc); with (_root["b" + bc]) { spd = 20; _x = gun._x; _y = gun._y; _rotation = _root.gun._rotation; } _root["b" + bc].onEnterFrame = function () { with (this) { if (_rotation > 180) { _y = _y + (spd * Math.cos((Math.PI/180) * _rotation)); _x = _x - (spd * Math.sin((Math.PI/180) * _rotation)); } else { _y = _y - (spd * Math.cos((Math.PI/180) * _rotation)); _x = _x + (spd * Math.sin((Math.PI/180) * _rotation)); } if ((((_x > Stage.width) || (_x < 0)) || (_y < 0)) || (_y > Stage.height)) { this.removeMovieClip(); } } }; } }; onEnterFrame = function () { _root.score++; with (gun) { this.Xd = _root._xmouse - _x; this.Yd = _root._ymouse - _y; radAngle = Math.atan2(Yd, Xd); _rotation = int(((radAngle * 360) / (Math.PI*2)) + 90); } if (Key.isDown(82) && (reloading == false)) { _root.reload.play(); reloading = true; } };
Instance of Symbol 40 MovieClip "bullet2" in Frame 4
onClipEvent (load) { spd = 20; _x = _root.gun._x; _y = _root.gun._y; _rotation = _root.gun._rotation; } onClipEvent (enterFrame) { if (_name == "bullet2") { _x = -1000; } else if (_rotation > 180) { _y = (_y + (spd * Math.cos((Math.PI/180) * _rotation))); _x = (_x - (spd * Math.sin((Math.PI/180) * _rotation))); } else { _y = (_y - (spd * Math.cos((Math.PI/180) * _rotation))); _x = (_x + (spd * Math.sin((Math.PI/180) * _rotation))); } if ((((_x > Stage.width) || (_x < 0)) || (_y < 0)) || (_y > Stage.height)) { this.removeMovieClip(); } if (this.hitTest(_root.e1)) { _root.e1._x = random(500); _root.e1._y = random(-50); _root.e1.speed = random(7) + 2; } if (this.hitTest(_root.e2)) { _root.e2._x = random(500); _root.e2._y = random(-50); _root.e2.speed = random(7) + 2; } if (this.hitTest(_root.e3)) { _root.e3._x = random(500); _root.e3._y = random(-50); _root.e3.speed = random(7) + 2; } if (this.hitTest(_root.e4)) { _root.e4._x = random(500); _root.e4._y = random(-50); _root.e4.speed = random(7) + 2; } if (this.hitTest(_root.e5)) { _root.e5._x = random(500); _root.e5._y = random(-50); _root.e5.speed = random(7) + 2; } if (this.hitTest(_root.e6)) { _root.e6._x = random(500); _root.e6._y = random(-50); _root.e6.speed = random(7) + 2; } if (this.hitTest(_root.e7)) { _root.e7._x = random(500); _root.e7._y = random(-50); _root.e7.speed = random(7) + 2; } if (this.hitTest(_root.e8)) { _root.e8._x = random(500); _root.e8._y = random(-50); _root.e8.speed = random(7) + 2; } }
Instance of Symbol 64 MovieClip "hp" in Frame 4
onClipEvent (load) { health = 200; } onClipEvent (enterFrame) { _width = health; if (health == 0) { _root.nextFrame(); } }
Instance of Symbol 66 MovieClip "e6" in Frame 4
onClipEvent (load) { this._x = random(500); this._y = random(-50); speed = random(7) + 2; } onClipEvent (enterFrame) { this._y = this._y + speed; if (this._y >= 650) { _root.nextFrame(); } if (_root.bullet2.hitTest(this)) { this._x = random(500); this._y = random(-50); speed = random(7) + 2; } if (_y >= 430) { _root.hp.health = _root.hp.health - 10; this._x = random(500); this._y = random(-50); speed = random(7) + 2; } }
Instance of Symbol 66 MovieClip "e5" in Frame 4
onClipEvent (load) { this._x = random(500); this._y = random(-50); speed = random(7) + 2; } onClipEvent (enterFrame) { this._y = this._y + speed; if (this._y >= 650) { _root.nextFrame(); } if (_root.bullet2.hitTest(this)) { this._x = random(500); this._y = random(-50); speed = random(7) + 2; } if (_y >= 430) { _root.hp.health = _root.hp.health - 10; this._x = random(500); this._y = random(-50); speed = random(7) + 2; } }
Instance of Symbol 66 MovieClip "e4" in Frame 4
onClipEvent (load) { this._x = random(500); this._y = random(-50); speed = random(7) + 2; } onClipEvent (enterFrame) { this._y = this._y + speed; if (this._y >= 650) { _root.nextFrame(); } if (_root.bullet2.hitTest(this)) { this._x = random(500); this._y = random(-50); speed = random(7) + 2; } if (_y >= 430) { _root.hp.health = _root.hp.health - 10; this._x = random(500); this._y = random(-50); speed = random(7) + 2; } }
Instance of Symbol 66 MovieClip "e3" in Frame 4
onClipEvent (load) { this._x = random(500); this._y = random(-50); speed = random(7) + 2; } onClipEvent (enterFrame) { this._y = this._y + speed; if (this._y >= 650) { _root.nextFrame(); } if (_root.bullet2.hitTest(this)) { this._x = random(500); this._y = random(-50); speed = random(7) + 2; } if (_y >= 430) { _root.hp.health = _root.hp.health - 10; this._x = random(500); this._y = random(-50); speed = random(7) + 2; } }
Instance of Symbol 66 MovieClip "e2" in Frame 4
onClipEvent (load) { this._x = random(500); this._y = random(-50); speed = random(7) + 2; } onClipEvent (enterFrame) { this._y = this._y + speed; if (this._y >= 650) { _root.nextFrame(); } if (_root.bullet2.hitTest(this)) { this._x = random(500); this._y = random(-50); speed = random(7) + 2; } if (_y >= 430) { _root.hp.health = _root.hp.health - 10; this._x = random(500); this._y = random(-50); speed = random(7) + 2; } }
Instance of Symbol 66 MovieClip "e1" in Frame 4
onClipEvent (load) { this._x = random(500); this._y = random(-50); speed = random(7) + 2; } onClipEvent (enterFrame) { this._y = this._y + speed; if (this._y >= 650) { _root.nextFrame(); } if (_root.bullet2.hitTest(this)) { this._x = random(500); this._y = random(-50); speed = random(7) + 2; } if (_y >= 430) { _root.hp.health = _root.hp.health - 10; this._x = random(500); this._y = random(-50); speed = random(7) + 2; } }
Instance of Symbol 42 MovieClip "gun" in Frame 4
onClipEvent (enterFrame) { Xd = _root._xmouse - _x; Yd = _root._ymouse - _y; radAngle = Math.atan2(Yd, Xd); _rotation = int(((radAngle * 360) / (Math.PI*2)) + 90); updateAfterEvent(); } onClipEvent (load) { vx = 0; vy = 0; friction = 0.8; } onClipEvent (enterFrame) { vx = vx * friction; vy = vy * friction; _x = (_x + vx); _y = (_y + vy); if (Key.isDown(68) || (Key.isDown(39))) { vx = vx + 3; } if (Key.isDown(65) || (Key.isDown(37))) { vx = vx - 3; } if (Key.isDown(83) || (Key.isDown(40))) { vy = vy + 3; } if (Key.isDown(87) || (Key.isDown(38))) { vy = vy - 3; } if (this.hitTest(_root.pl)) { _root.pl.inne._visible = true; if (Key.isDown(65)) { _root.gotoAndStop(random(2) + 2); } } else { _root.pl.inne._visible = false; } updateAfterEvent(); this.getDepth(101); }
Instance of Symbol 23 MovieClip "man" in Frame 4
onClipEvent (load) { vx = 0; vy = 0; friction = 0.8; } onClipEvent (enterFrame) { vx = vx * friction; vy = vy * friction; _x = (_x + vx); _y = (_y + vy); if (Key.isDown(68) || (Key.isDown(39))) { vx = vx + 3; } if (Key.isDown(65) || (Key.isDown(37))) { vx = vx - 3; } if (Key.isDown(83) || (Key.isDown(40))) { vy = vy + 3; } if (Key.isDown(87) || (Key.isDown(38))) { vy = vy - 3; } if (this.hitTest(_root.pl)) { _root.pl.inne._visible = true; if (Key.isDown(65)) { _root.gotoAndStop(random(2) + 2); } } else { _root.pl.inne._visible = false; } updateAfterEvent(); this.getDepth(101); }
Instance of Symbol 68 MovieClip "cursor" in Frame 4
onClipEvent (enterFrame) { Mouse.hide(); _x = _root._xmouse; _y = _root._ymouse; updateAfterEvent(); }
Frame 5
stop(); reloading = false; bc = 0; onMouseDown = function () { bc++; _root.bulleet.nextFrame(); if (bc > 1100) { bc = 1000; } duplicateMovieClip ("bullet2", "b" + bc, bc); with (_root["b" + bc]) { spd = 20; _x = gun._x; _y = gun._y; _rotation = _root.gun._rotation; } _root["b" + bc].onEnterFrame = function () { with (this) { if (_rotation > 180) { _y = _y + (spd * Math.cos((Math.PI/180) * _rotation)); _x = _x - (spd * Math.sin((Math.PI/180) * _rotation)); } else { _y = _y - (spd * Math.cos((Math.PI/180) * _rotation)); _x = _x + (spd * Math.sin((Math.PI/180) * _rotation)); } if ((((_x > Stage.width) || (_x < 0)) || (_y < 0)) || (_y > Stage.height)) { this.removeMovieClip(); } } }; }; onEnterFrame = function () { with (gun) { this.Xd = _root._xmouse - _x; this.Yd = _root._ymouse - _y; radAngle = Math.atan2(Yd, Xd); _rotation = int(((radAngle * 360) / (Math.PI*2)) + 90); } }; Mouse.show();
Instance of Symbol 40 MovieClip "bullet2" in Frame 5
onClipEvent (load) { spd = 20; _x = _root.gun._x; _y = _root.gun._y; _rotation = _root.gun._rotation; } onClipEvent (enterFrame) { if (_name == "bullet2") { _x = -1000; } else if (_rotation > 180) { _y = (_y + (spd * Math.cos((Math.PI/180) * _rotation))); _x = (_x - (spd * Math.sin((Math.PI/180) * _rotation))); } else { _y = (_y - (spd * Math.cos((Math.PI/180) * _rotation))); _x = (_x + (spd * Math.sin((Math.PI/180) * _rotation))); } if ((((_x > Stage.width) || (_x < 0)) || (_y < 0)) || (_y > Stage.height)) { this.removeMovieClip(); } if (this.hitTest(_root.pl)) { _root.gotoAndStop(2); } }
Instance of Symbol 42 MovieClip "gun" in Frame 5
onClipEvent (enterFrame) { Xd = _root._xmouse - _x; Yd = _root._ymouse - _y; radAngle = Math.atan2(Yd, Xd); _rotation = int(((radAngle * 360) / (Math.PI*2)) + 90); updateAfterEvent(); getDepth(1000); }
Instance of Symbol 23 MovieClip "man" in Frame 5
onClipEvent (enterFrame) { getDepth(1001); }
Frame 6
stop();
Frame 7
_root.score = 0; _root.scoree = 0; _root.timer = 120; onEnterFrame = function () { if (_root.timer == 0) { _root.nextFrame(); } };
Instance of Symbol 93 MovieClip "paddley" in Frame 7
onClipEvent (load) { this._y = 390; this._x = 275; this.paddlespeed = 15; } onClipEvent (enterFrame) { this._x = _root._xmouse; Mouse.hide(); }
Instance of Symbol 97 MovieClip "paddlez" in Frame 7
onClipEvent (load) { this._y = 5; this._x = 275; this.paddlespeed = 5; } onClipEvent (enterFrame) { if (this._x > (_root.ball._x + 5)) { this._x = this._x - this.paddlespeed; } if (this._x < (_root.ball._x - 5)) { this._x = this._x + this.paddlespeed; } }
Instance of Symbol 99 MovieClip "ball" in Frame 7
onClipEvent (load) { function reset() { this._x = 275; this._y = 200; this.fullspeed = 14; this.xspeed = 0; this.yspeed = 9; this.udist = 0; this.edist = 0; this.ufraction = 0; this.efraction = 0; } this.reset(); } onClipEvent (enterFrame) { _rotation = ((_x * 360) / 550); if ((this._x >= 525) && (this.xspeed > 0)) { this.xspeed = -this.xspeed; } if ((this._x <= 25) && (this.xspeed < 0)) { this.xspeed = -this.xspeed; } if (this.hitTest(_root.paddley)) { this.udist = _root.paddley._x - _root.ball._x; if (this.udist != 0) { this.ufraction = this.udist / (_root.paddley._width / 2); this.xspeed = -((1 - Math.abs(this.ufraction)) * this.fullspeed); this.yspeed = this.ufraction * this.fullspeed; } else if (this.udist == 0) { this.yspeed = -this.fullspeed; } if (this.yspeed > 0) { this.yspeed = -this.yspeed; } } if (this.hitTest(_root.paddlez)) { this.edist = _root.paddlez._x - this._x; if (this.edist != 0) { this.efraction = this.edist / (_root.paddlez._width / 2); this.xspeed = -((1 - Math.abs(this.efraction)) * this.fullspeed); this.yspeed = this.efraction * this.fullspeed; } else { this.yspeed = this.fullspeed; } if (this.yspeed < 0) { this.yspeed = -this.yspeed; } } this._y = this._y + this.yspeed; this._x = this._x + this.xspeed; if (this._y > 440) { reset(); _root.scoree = _root.scoree + 1; } if (this._y < -40) { reset(); _root.score = _root.score + 1; } }
Instance of Symbol 71 MovieClip in Frame 8
on (press) { _root.gotoAndStop("game2"); }
Frame 9
stop();
Frame 10
stop();
Instance of Symbol 3 MovieClip [hero] "hero" in Frame 10
onClipEvent (load) { yspeed = 0; xspeed = 0; wind = 0; power = 0.65; gravity = 0.1; upconstant = 0.75; friction = 0.99; } onClipEvent (enterFrame) { if (Key.isDown(37)) { xspeed = xspeed - power; } if (Key.isDown(39)) { xspeed = xspeed + power; } if (Key.isDown(38)) { yspeed = yspeed - (power * upconstant); } if (Key.isDown(40)) { yspeed = yspeed + (power * upconstant); } xspeed = (xspeed + wind) * friction; yspeed = yspeed + gravity; _y = (_y + yspeed); _x = (_x + xspeed); _rotation = (_rotation + xspeed); if (_root.wall.hitTest(_x, _y, true)) { xspeed = 0; yspeed = 0; _x = 450; _y = 50; } if (_root.environment.hitTest(_x, _y, true)) { xspeed = 0; yspeed = 0; _x = 450; _y = 50; } if (_root.trig.hitTest(_x, _y, true)) { _root.trig.gotoAndStop(2); _root.environment.gotoAndStop(2); } }
Instance of Symbol 118 MovieClip "next1" in Frame 10
onClipEvent (load) { if (this.hitTest(_root.hero)) { _root.nextFrame(); } }
Frame 11
stop(); _root.environment.gotoAndStop(3); _root.trig.gotoAndStop(1); _root.next1.gotoAndStop(2);
Instance of Symbol 3 MovieClip [hero] "hero" in Frame 11
onClipEvent (load) { yspeed = 0; xspeed = 0; wind = 0; power = 0.65; gravity = 0.1; upconstant = 0.75; friction = 0.99; } onClipEvent (enterFrame) { if (Key.isDown(37)) { xspeed = xspeed - power; } if (Key.isDown(39)) { xspeed = xspeed + power; } if (Key.isDown(38)) { yspeed = yspeed - (power * upconstant); } if (Key.isDown(40)) { yspeed = yspeed + (power * upconstant); } xspeed = (xspeed + wind) * friction; yspeed = yspeed + gravity; _y = (_y + yspeed); _x = (_x + xspeed); _rotation = (_rotation + xspeed); if (_root.wall.hitTest(_x, _y, true)) { xspeed = 0; yspeed = 0; _x = 450; _y = 50; } if (_root.environment.hitTest(_x, _y, true)) { xspeed = 0; yspeed = 0; _x = 450; _y = 50; } if (_root.trig.hitTest(_x, _y, true)) { _root.trig.gotoAndStop(2); _root.environment.gotoAndStop(2); _root.next1.gotoAndStop(1); } }
Frame 12
_root.environment.gotoAndStop(4); _root.trig.gotoAndStop(1); _root.next1.gotoAndStop(2);
Instance of Symbol 3 MovieClip [hero] "hero" in Frame 12
onClipEvent (load) { yspeed = 0; xspeed = 0; wind = 0; power = 0.65; gravity = 0.1; upconstant = 0.75; friction = 0.99; } onClipEvent (enterFrame) { if (Key.isDown(37)) { xspeed = xspeed - power; } if (Key.isDown(39)) { xspeed = xspeed + power; } if (Key.isDown(38)) { yspeed = yspeed - (power * upconstant); } if (Key.isDown(40)) { yspeed = yspeed + (power * upconstant); } xspeed = (xspeed + wind) * friction; yspeed = yspeed + gravity; _y = (_y + yspeed); _x = (_x + xspeed); _rotation = (_rotation + xspeed); if (_root.wall.hitTest(_x, _y, true)) { xspeed = 0; yspeed = 0; _x = 450; _y = 50; } if (_root.environment.hitTest(_x, _y, true)) { xspeed = 0; yspeed = 0; _x = 450; _y = 50; } if (_root.trig.hitTest(_x, _y, true)) { _root.trig.gotoAndStop(2); _root.next1.gotoAndStop(1); } }
Frame 13
_root.environment.gotoAndStop(4); _root.trig.gotoAndStop(1); _root.next1.gotoAndStop(2); _root.environment2.gotoAndStop(4);
Instance of Symbol 118 MovieClip "next1" in Frame 13
onClipEvent (enterFrame) { if (this.hitTest(_root.hero)) { _root.nextFrame(); } }
Instance of Symbol 3 MovieClip [hero] "hero" in Frame 13
onClipEvent (load) { yspeed = 0; xspeed = 0; wind = 0; power = 0.65; gravity = 0.1; upconstant = 0.75; friction = 0.99; } onClipEvent (enterFrame) { if (Key.isDown(37)) { xspeed = xspeed - power; } if (Key.isDown(39)) { xspeed = xspeed + power; } if (Key.isDown(38)) { yspeed = yspeed - (power * upconstant); } if (Key.isDown(40)) { yspeed = yspeed + (power * upconstant); } xspeed = (xspeed + wind) * friction; yspeed = yspeed + gravity; _y = (_y + yspeed); _x = (_x + xspeed); _rotation = (_rotation + xspeed); if (_root.wall.hitTest(_x, _y, true)) { xspeed = 0; yspeed = 0; _x = 450; _y = 50; } if (_root.environment.hitTest(_x, _y, true)) { xspeed = 0; yspeed = 0; _x = 450; _y = 50; } if (_root.environment2.hitTest(_x, _y, true)) { xspeed = 0; yspeed = 0; _x = 450; _y = 50; } if (_root.environment1.hitTest(_x, _y, true)) { xspeed = 0; yspeed = 0; _x = 450; _y = 50; } if (_root.trig.hitTest(_x, _y, true)) { _root.trig.gotoAndStop(2); _root.next1.gotoAndStop(1); _root.environment1.gotoAndStop(2); } }
Frame 14
_root.trig.gotoAndStop(1); _root.next1.gotoAndStop(2); _root.environment2.gotoAndStop(4);
Instance of Symbol 3 MovieClip [hero] "hero" in Frame 14
onClipEvent (load) { yspeed = 0; xspeed = 0; wind = 0; power = 0.65; gravity = 0.1; upconstant = 0.75; friction = 0.99; } onClipEvent (enterFrame) { if (Key.isDown(37)) { xspeed = xspeed - power; } if (Key.isDown(39)) { xspeed = xspeed + power; } if (Key.isDown(38)) { yspeed = yspeed - (power * upconstant); } if (Key.isDown(40)) { yspeed = yspeed + (power * upconstant); } xspeed = (xspeed + wind) * friction; yspeed = yspeed + gravity; _y = (_y + yspeed); _x = (_x + xspeed); _rotation = (_rotation + xspeed); if (_root.wall.hitTest(_x, _y, true)) { xspeed = 0; yspeed = 0; _x = 450; _y = 50; } if (_root.en3.hitTest(_x, _y, true)) { xspeed = 0; yspeed = 0; _x = 450; _y = 50; } if (_root.en2.hitTest(_x, _y, true)) { xspeed = 0; yspeed = 0; _x = 450; _y = 50; } if (_root.en1.hitTest(_x, _y, true)) { xspeed = 0; yspeed = 0; _x = 450; _y = 50; } if (_root.trig.hitTest(_x, _y, true)) { _root.trig.gotoAndStop(2); _root.en1.gotoAndStop(2); _root.next1.gotoAndStop(1); } if (_root.trig2.hitTest(_x, _y, true)) { _root.trig2.gotoAndStop(2); _root.en3.gotoAndStop(2); } if (_root.trig3.hitTest(_x, _y, true)) { _root.trig3.gotoAndStop(2); _root.en2.gotoAndStop(2); } }
Frame 15
stop();
Frame 16
stop(); score = 0;
Instance of Symbol 133 MovieClip in Frame 16
onClipEvent (load) { yspeed = 0; xspeed = 0; wind = 0; power = 0.65; gravity = 0.1; upconstant = 0.75; friction = 0.99; _root.coin._x = (Math.random() * 400) + 50; _root.coin._y = (Math.random() * 250) + 50; } onClipEvent (enterFrame) { if (_alpha < 100) { _alpha = (_alpha + 0.5); } if (Key.isDown(37)) { xspeed = xspeed - power; } if (Key.isDown(39)) { xspeed = xspeed + power; } if (Key.isDown(38)) { yspeed = yspeed - (power * upconstant); } if (Key.isDown(40)) { yspeed = yspeed + (power * upconstant); } xspeed = (xspeed + wind) * friction; yspeed = yspeed + gravity; _y = (_y + yspeed); _x = (_x + xspeed); _rotation = (_rotation + xspeed); if (_root.wall.hitTest(_x, _y, true) and (_alpha >= 100)) { xspeed = 0; yspeed = 0; _x = 50; _y = 50; _root.score = _root.score - 2; if (_root.score < 0) { _root.score = 0; } _alpha = 10; } if (_root.environment2.hitTest(_x, _y, true) and (_alpha >= 100)) { xspeed = 0; yspeed = 0; this._x = 79.3; this._y = 103.3; _root.lives.nextFrame(); if (_root.score < 0) { _root.score = 0; } _alpha = 10; } if (_root.coin.hitTest(this)) { _root.coin._x = (Math.random() * 400) + 50; _root.coin._y = (Math.random() * 250) + 50; _root.score++; } if ((this._y > 344.4) and (_alpha >= 100)) { xspeed = 0; yspeed = 0; _root.lives.nextFrame(); if (_root.score < 0) { _root.score = 0; } this._x = 79.3; this._y = 103.3; _alpha = 10; } if ((this._y < 53.3) and (_alpha >= 100)) { xspeed = 0; yspeed = 0; _root.lives.nextFrame(); if (_root.score < 0) { _root.score = 0; } this._x = 79.3; this._y = 103.3; _alpha = 10; } }
Instance of Symbol 140 MovieClip "environment2" in Frame 16
onClipEvent (enterFrame) { _rotation = ((_rotation + 0.1) + (_root.score * 0.1)); }
Instance of Symbol 71 MovieClip "pl" in Frame 17
on (press) { _root.gotoAndStop("game4"); }
Symbol 3 MovieClip [hero] Frame 1
stop();
Symbol 14 MovieClip Frame 1
function timerHandler() { if (!loadingComplete) { var _local4 = _root.getBytesLoaded() / _root.getBytesTotal(); bar._xscale = 100 * _local4; if (_local4 == 1) { loadingComplete = true; if (AUTO_PLAY) { startMovie(); } else { gotoAndStop ("loaded"); } return(undefined); } } dt = getTimer() - time; time = time + dt; frameAccum = frameAccum + dt; var _local3 = 0; while ((frameAccum >= FRAME_TIME) && (_local3 < MAX_FRAME_SKIP)) { advanceFrame(tankLogo, true, true); advanceFrame(loadingText, false, true); advanceFrame(barGfx, false, true); if (loadingComplete) { advanceFrame(this, false, false); } (frameAccum = frameAccum - FRAME_TIME); _local3++; } updateAfterEvent(); } function advanceFrame(clip, recurse, loop) { if (!clip) { return(undefined); } clip.stop(); if (clip._currentframe == clip._totalframes) { if (loop) { clip.gotoAndStop(1); } } else { clip.nextFrame(); } if (recurse) { for (childName in clip) { if (typeof(clip[childName]) == "movieclip") { advanceFrame(clip[childName], recurse, loop); } } } } function startMovie() { clearInterval(intervalId); _root.play(); } _root.stop(); stop(); var FRAME_TIME = 33.3333333333333; var AUTO_PLAY = false; var MAX_FRAME_SKIP = 5; var loadingComplete; var intervalId; var time; var frameAccum; loadingComplete = false; intervalId = setInterval(this, "timerHandler", FRAME_TIME / 2); frameAccum = 0; time = getTimer(); timerHandler();
Symbol 14 MovieClip Frame 37
startMovie();
Symbol 42 MovieClip Frame 1
stop();
Symbol 52 MovieClip Frame 1
stop();
Symbol 52 MovieClip Frame 2
_root.bc = 11; _root.bulleet.rel._visible = false;
Symbol 52 MovieClip Frame 15
_root.reloading = false; _root.bc = 0; _root.bulleet.gotoAndStop(1); _root.bulleet.rel._visible = false;
Symbol 62 MovieClip Frame 1
stop();
Symbol 80 Button
on (press) { gotoAndStop ("story"); }
Symbol 82 Button
on (press) { nextFrame(); }
Symbol 84 Button
on (press) { gotoAndPlay (1); }
Symbol 103 MovieClip Frame 30
_root.timer--;
Symbol 112 Button
on (release) { _root.nextFrame(); }
Symbol 115 MovieClip Frame 1
stop();
Symbol 115 MovieClip Frame 2
stop();
Symbol 118 MovieClip Frame 1
stop(); if (this.hitTest(_root.hero)) { _root.nextFrame(); }
Instance of Symbol 117 MovieClip in Symbol 118 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.hero)) { _root.nextFrame(); } }
Symbol 118 MovieClip Frame 2
stop();
Symbol 122 MovieClip Frame 1
stop();
Symbol 122 MovieClip Frame 3
stop();
Symbol 129 MovieClip Frame 1
stop();
Symbol 147 MovieClip Frame 1
stop();
Symbol 147 MovieClip Frame 6
_root.nextFrame();

Library Items

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

Instance Names

"man"Frame 2Symbol 23 MovieClip
"pl1"Frame 2Symbol 27 MovieClip
"pl2"Frame 2Symbol 29 MovieClip
"pl3"Frame 2Symbol 31 MovieClip
"pl4"Frame 2Symbol 34 MovieClip
"bullet2"Frame 3Symbol 40 MovieClip
"gun"Frame 3Symbol 42 MovieClip
"man"Frame 3Symbol 23 MovieClip
"pl"Frame 3Symbol 44 MovieClip
"bullet2"Frame 4Symbol 40 MovieClip
"reload"Frame 4Symbol 52 MovieClip
"bulleet"Frame 4Symbol 62 MovieClip
"hp"Frame 4Symbol 64 MovieClip
"e6"Frame 4Symbol 66 MovieClip
"e5"Frame 4Symbol 66 MovieClip
"e4"Frame 4Symbol 66 MovieClip
"e3"Frame 4Symbol 66 MovieClip
"e2"Frame 4Symbol 66 MovieClip
"e1"Frame 4Symbol 66 MovieClip
"gun"Frame 4Symbol 42 MovieClip
"man"Frame 4Symbol 23 MovieClip
"cursor"Frame 4Symbol 68 MovieClip
"bullet2"Frame 5Symbol 40 MovieClip
"gun"Frame 5Symbol 42 MovieClip
"man"Frame 5Symbol 23 MovieClip
"pl"Frame 5Symbol 71 MovieClip
"paddley"Frame 7Symbol 93 MovieClip
"paddlez"Frame 7Symbol 97 MovieClip
"ball"Frame 7Symbol 99 MovieClip
"trig"Frame 10Symbol 115 MovieClip
"hero"Frame 10Symbol 3 MovieClip [hero]
"next1"Frame 10Symbol 118 MovieClip
"environment"Frame 10Symbol 122 MovieClip
"wall"Frame 10Symbol 124 MovieClip
"next1"Frame 11Symbol 118 MovieClip
"hero"Frame 11Symbol 3 MovieClip [hero]
"hero"Frame 12Symbol 3 MovieClip [hero]
"next1"Frame 13Symbol 118 MovieClip
"hero"Frame 13Symbol 3 MovieClip [hero]
"environment"Frame 13Symbol 122 MovieClip
"environment1"Frame 13Symbol 122 MovieClip
"environment2"Frame 13Symbol 122 MovieClip
"trig2"Frame 14Symbol 115 MovieClip
"trig3"Frame 14Symbol 115 MovieClip
"next1"Frame 14Symbol 118 MovieClip
"hero"Frame 14Symbol 3 MovieClip [hero]
"en3"Frame 14Symbol 129 MovieClip
"en2"Frame 14Symbol 129 MovieClip
"en1"Frame 14Symbol 129 MovieClip
"game4"Frame 15Symbol 133 MovieClip
"cool1"Frame 15Symbol 134 MovieClip
"cool2"Frame 15Symbol 134 MovieClip
"coin"Frame 16Symbol 136 MovieClip
"environment2"Frame 16Symbol 140 MovieClip
"lives"Frame 16Symbol 147 MovieClip
"pl"Frame 17Symbol 71 MovieClip
"bar"Symbol 14 MovieClip Frame 1Symbol 8 MovieClip
"inne"Symbol 27 MovieClip Frame 1Symbol 25 MovieClip
"inne2"Symbol 29 MovieClip Frame 1Symbol 25 MovieClip
"inne3"Symbol 31 MovieClip Frame 1Symbol 25 MovieClip
"inne4"Symbol 34 MovieClip Frame 1Symbol 25 MovieClip
"rel"Symbol 62 MovieClip Frame 11Symbol 50 MovieClip

Special Tags

FileAttributes (69)Timeline Frame 1Access local files only, Metadata not present, AS1/AS2.
ExportAssets (56)Timeline Frame 1Symbol 3 as "hero"

Labels

"menu"Frame 2
"game1"Frame 3
"game2"Frame 6
"game3"Frame 9
"game4"Frame 15
"loaded"Symbol 14 MovieClip Frame 2

Dynamic Text Variables

scoreSymbol 88 EditableText""
scoreeSymbol 89 EditableText""
timerSymbol 101 EditableText""
scoreSymbol 105 EditableText""
scoreeSymbol 106 EditableText""
scoreSymbol 138 EditableText""
scoreSymbol 150 EditableText""




http://swfchan.com/12/58946/info.shtml
Created: 16/4 -2019 23:51:50 Last modified: 16/4 -2019 23:51:50 Server time: 15/05 -2024 03:16:39