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

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

Growth Homicide.swf

This is the info page for
Flash #70267

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


Text
Growth Homicide

By Matthew Thomas

What is your name/username?
This is so you can submit your final score to
the highscore list and compete agianst
people from around the world.

Name

Menu

Load Game

Info

Credits

Options

Play

INFO:
You are an advanced cell in an ancient body.
The other cells natural instinct is to combine
into the largest cell to make it larger. You
being the advanced cell don't want these
idiot cells merging with you.
Use your shield and laser to hold the hords of
cells off.
Use the left mouse button to shoot your
laser.There is a store where you can upgrade,
buy new weapons and defences after every
level.
Hit space to pause and  enter to unpause.

Credits:
Coding:Computer Turret.
-Matthew Thomas
Menu's:Computer Turret.
-Matthew Thomas
Graphics:Computer Turret.
-Matthew Thomas
Game idea:Computer Turret.
-Matthew Thomas
Weapon ideas:Derry
Game Music:Remote Pulse
-by Rave4Yourself

Options:
Here you can turn on/off the music/sound
and pick the starting difficulty.
Music and Sound:
Difficulty:

On

Off

Wimpy

Normal

Hard

PAUSED
Hit enter to
resume

Score:

Cash:

STORE:
Upgrade Item-----------------------Cost

lvl2

Shield(Gives +1 shield)

200

lvl3

375

Laser Size

+10

100

+17

150

Transfer score
to cash:

1

5

10

50

ALL

Shield upgrades are not
visable until your lvl 1 shield
is gone from play.(The next
lvl shield well appear if the
1st/2nd fails)

More upgrades

Mines

Weapons

500

Mines well be placed every
level once bought. They are
placed in a ring around your
shield.
The beam well appear when
you click.

PWR Beam

600

PWR Wave

Save Game

1200

50

GameOver:
Let's see how you did.
Your score has been submitted to the
highscores.

View Highscores

ActionScript [AS1/AS2]

Frame 1
function itemHandler1(obj, item) { getURL ("http://computerturret.tk"); } function itemHandler2(obj2, item2) { getURL (""); } stop(); var myMenu = new ContextMenu(); myMenu.hideBuiltInItems(); item1 = new ContextMenuItem("Visit Computer Turret for more flash fun.", itemHandler1); myMenu.customItems.push(item1); item2 = new ContextMenuItem("Copyright by Matthew Thomas and Computer Turret", itemHandler2); myMenu.customItems.push(item2); _root.menu = myMenu;
Instance of Symbol 3 MovieClip in Frame 1
onClipEvent (enterFrame) { this._rotation++; }
Instance of Symbol 7 MovieClip in Frame 1
onClipEvent (enterFrame) { this._xscale = (_root.sloaded / _root.total) * 100; _root.sloaded = _root.getBytesLoaded(); _root.total = _root.getBytesTotal(); _root.percentloaded = int((_root.sloaded / _root.total) * 100) + "%"; if (_root.sloaded >= _root.total) { _root.gotoAndStop(2); } }
Frame 2
function saveGame() { _root.info = "Game Saved"; myLSO = SharedObject.getLocal("hero"); if (myLSO.data.myObj == undefined) { trace("Saved Game"); } else { trace("Overwrote Saved Game"); } myObj = {}; myObj.objArray = new Array(); myObj.objArray[0] = username; myObj.objArray[2] = beam; myObj.objArray[3] = wave; myObj.objArray[4] = speed; myObj.objArray[5] = score; myObj.objArray[6] = money; myObj.objArray[7] = mines; myObj.objArray[8] = shieldlvl; myObj.objArray[9] = lx; myObj.objArray[10] = ly; myLSO.data.myObj = myObj; } function loadGame() { _root.info = "Game Loaded"; myLSO = SharedObject.getLocal("hero"); if (myLSO.data.myObj == undefined) { trace("No Saved Game"); _root.info = "No Saved Game"; } else { trace("Loaded Game"); _root.info = "Game Loaded " + _root.username; username = myLSO.data.myObj.objArray[0]; beam = myLSO.data.myObj.objArray[2]; wave = myLSO.data.myObj.objArray[3]; speed = myLSO.data.myObj.objArray[4]; score = myLSO.data.myObj.objArray[5]; money = myLSO.data.myObj.objArray[6]; mines = myLSO.data.myObj.objArray[7]; shieldlvl = myLSO.data.myObj.objArray[8]; lx = myLSO.data.myObj.objArray[9]; ly = myLSO.data.myObj.objArray[10]; Obj.objArray[13]; } } stop(); _root.restart = false; speed = 60; money = 0; wave = false; score = 0; beam = false; mines = false; _root.shieldlvl = 1; pausee = false; music = "on"; maxtime = 300; thetime = 0;
Instance of Symbol 23 MovieClip in Frame 2
onClipEvent (enterFrame) { if (_root.music == "off") { stopAllSounds(); } }
Instance of Symbol 25 MovieClip "aimer" in Frame 2
onClipEvent (enterFrame) { Mouse.hide(); this._x = _root._xmouse; this._y = _root._ymouse; }
Frame 3
stop();
Frame 4
stop();
Frame 5
stop();
Frame 6
stop();
Frame 7
stop(); thetime = 0; pausee = false; _root.restart = false;
Instance of Symbol 57 MovieClip in Frame 7
onClipEvent (enterFrame) { if (_root.pausee == false) { this._x = this._x + ((_root.ball._x - _x) / _root.speed); this._y = this._y + ((_root.ball._y - _y) / _root.speed); } if (this.hitTest(_root.ball)) { _root.ball._xscale = _root.ball._xscale + 10; this._y = random(600) - 600; this._x = random(600); } if (_root.ball._xscale > 199) { _root.gotoAndStop("gameover"); } if (this.hitTest(_root.shield)) { _root.shield.nextFrame(); this._y = random(600) - 600; this._x = random(600); _root.score = _root.score + 2; } if (this.hitTest(_root.laser)) { this._y = random(600) - 600; this._x = random(600); _root.score = _root.score + 2; } if (_root.m1.hitTest(this)) { this._y = random(600) - 600; this._x = random(600); _root.score = _root.score + 2; _root.m1.gotoAndStop(140); } if (_root.m2.hitTest(this)) { this._y = random(600) - 600; this._x = random(600); _root.score = _root.score + 2; _root.m2.gotoAndStop(140); } if (_root.m3.hitTest(this)) { this._y = random(600) - 600; this._x = random(600); _root.score = _root.score + 2; _root.m3.gotoAndStop(140); } if (_root.m4.hitTest(this)) { this._y = random(600) - 600; this._x = random(600); _root.score = _root.score + 2; _root.m4.gotoAndStop(140); } if (_root.b.hitTest(_x, _y, true)) { this._y = random(600) - 600; this._x = random(600); _root.score = _root.score + 2; } if (_root.w.hitTest(_x, _y, true)) { this._y = random(600) - 600; this._x = random(600); _root.score = _root.score + 2; } if (_root.restart == true) { this._x = 700; this._y = -700; } }
Instance of Symbol 57 MovieClip in Frame 7
onClipEvent (enterFrame) { if (_root.pausee == false) { this._x = this._x + ((_root.ball._x - _x) / _root.speed); this._y = this._y + ((_root.ball._y - _y) / _root.speed); } if (this.hitTest(_root.ball)) { _root.ball._xscale = _root.ball._xscale + 10; this._x = random(600) - 600; this._y = random(600); } if (_root.ball._xscale > 199) { _root.gotoAndStop("gameover"); } if (this.hitTest(_root.shield)) { _root.shield.nextFrame(); this._x = random(600) - 600; this._y = random(600); _root.score = _root.score + 2; } if (this.hitTest(_root.laser)) { this._x = random(600) - 600; this._y = random(600); _root.score = _root.score + 2; } if (_root.m1.hitTest(this)) { this._x = random(600) - 600; this._y = random(600); _root.score = _root.score + 2; _root.m1.gotoAndStop(140); } if (_root.m2.hitTest(this)) { this._x = random(600) - 600; this._y = random(600); _root.score = _root.score + 2; _root.m2.gotoAndStop(140); } if (_root.m3.hitTest(this)) { this._x = random(600) - 600; this._y = random(600); _root.score = _root.score + 2; _root.m3.gotoAndStop(140); } if (_root.m4.hitTest(this)) { this._x = random(600) - 600; this._y = random(600); _root.score = _root.score + 2; _root.m4.gotoAndStop(140); } if (_root.b.hitTest(_x, _y, true)) { this._x = random(600) - 600; this._y = random(600); _root.score = _root.score + 2; } if (_root.w.hitTest(_x, _y, true)) { this._x = random(600) - 600; this._y = random(600); _root.score = _root.score + 2; } if (_root.restart == true) { this._x = -700; this._y = 500; } }
Instance of Symbol 57 MovieClip in Frame 7
onClipEvent (enterFrame) { if (_root.pausee == false) { this._x = this._x + ((_root.ball._x - _x) / _root.speed); this._y = this._y + ((_root.ball._y - _y) / _root.speed); } if (this.hitTest(_root.ball)) { _root.ball._xscale = _root.ball._xscale + 10; this._x = random(600) + 600; this._y = random(600); } if (_root.ball._xscale > 199) { _root.gotoAndStop("gameover"); } if (this.hitTest(_root.shield)) { _root.shield.nextFrame(); this._x = random(600) + 600; this._y = random(600); _root.score = _root.score + 2; } if (this.hitTest(_root.laser)) { this._x = random(600) + 600; this._y = random(600); _root.score = _root.score + 2; } if (_root.m1.hitTest(this)) { this._x = random(600) + 600; this._y = random(600); _root.score = _root.score + 2; _root.m1.gotoAndStop(140); } if (_root.m2.hitTest(this)) { this._x = random(600) + 600; this._y = random(600); _root.score = _root.score + 2; _root.m2.gotoAndStop(140); } if (_root.m3.hitTest(this)) { this._x = random(600) + 600; this._y = random(600); _root.score = _root.score + 2; _root.m3.gotoAndStop(140); } if (_root.m4.hitTest(this)) { this._x = random(600) + 600; this._y = random(600); _root.score = _root.score + 2; _root.m4.gotoAndStop(140); } if (_root.b.hitTest(_x, _y, true)) { this._x = random(600) + 600; this._y = random(600); _root.score = _root.score + 2; } if (_root.w.hitTest(_x, _y, true)) { this._x = random(600) + 600; this._y = random(600); _root.score = _root.score + 2; } if (_root.restart == true) { this._x = 700; this._y = 200; } }
Instance of Symbol 57 MovieClip in Frame 7
onClipEvent (enterFrame) { if (_root.pausee == false) { this._x = this._x + ((_root.ball._x - _x) / _root.speed); this._y = this._y + ((_root.ball._y - _y) / _root.speed); } if (this.hitTest(_root.ball)) { _root.ball._xscale = _root.ball._xscale + 10; this._x = random(600) - 600; this._y = random(600); } if (_root.ball._xscale > 199) { _root.gotoAndStop("gameover"); } if (this.hitTest(_root.shield)) { _root.shield.nextFrame(); this._x = random(600) - 600; this._y = random(600); _root.score = _root.score + 2; } if (this.hitTest(_root.laser)) { this._x = random(600) - 600; this._y = random(600); _root.score = _root.score + 2; } if (_root.m1.hitTest(this)) { this._x = random(600) - 600; this._y = random(600); _root.score = _root.score + 2; _root.m1.gotoAndStop(140); } if (_root.m2.hitTest(this)) { this._x = random(600) - 600; this._y = random(600); _root.score = _root.score + 2; _root.m2.gotoAndStop(140); } if (_root.m3.hitTest(this)) { this._x = random(600) - 600; this._y = random(600); _root.score = _root.score + 2; _root.m3.gotoAndStop(140); } if (_root.m4.hitTest(this)) { this._x = random(600) - 600; this._y = random(600); _root.score = _root.score + 2; _root.m4.gotoAndStop(140); } if (_root.b.hitTest(_x, _y, true)) { this._x = random(600) - 600; this._y = random(600); _root.score = _root.score + 2; } if (_root.w.hitTest(_x, _y, true)) { this._x = random(600) - 600; this._y = random(600); _root.score = _root.score + 2; } if (_root.restart == true) { this._x = -700; this._y = 300; } }
Instance of Symbol 57 MovieClip in Frame 7
onClipEvent (enterFrame) { if (_root.pausee == false) { this._x = this._x + ((_root.ball._x - _x) / _root.speed); this._y = this._y + ((_root.ball._y - _y) / _root.speed); } if (this.hitTest(_root.ball)) { _root.ball._xscale = _root.ball._xscale + 10; this._x = random(600) - 600; this._y = random(600); } if (_root.ball._xscale > 199) { _root.gotoAndStop("gameover"); } if (this.hitTest(_root.shield)) { _root.shield.nextFrame(); this._x = random(600) - 600; this._y = random(600); _root.score = _root.score + 2; } if (this.hitTest(_root.laser)) { this._x = random(600) - 600; this._y = random(600); _root.score = _root.score + 2; } if (_root.m1.hitTest(this)) { this._x = random(600) - 600; this._y = random(600); _root.score = _root.score + 2; _root.m1.gotoAndStop(140); } if (_root.m2.hitTest(this)) { this._x = random(600) - 600; this._y = random(600); _root.score = _root.score + 2; _root.m2.gotoAndStop(140); } if (_root.m3.hitTest(this)) { this._x = random(600) - 600; this._y = random(600); _root.score = _root.score + 2; _root.m3.gotoAndStop(140); } if (_root.m4.hitTest(this)) { this._x = random(600) - 600; this._y = random(600); _root.score = _root.score + 2; _root.m4.gotoAndStop(140); } if (_root.b.hitTest(_x, _y, true)) { this._x = random(600) - 600; this._y = random(600); _root.score = _root.score + 2; } if (_root.w.hitTest(_x, _y, true)) { this._x = random(600) - 600; this._y = random(600); _root.score = _root.score + 2; } if (_root.restart == true) { this._x = -700; this._y = 200; } }
Instance of Symbol 57 MovieClip in Frame 7
onClipEvent (enterFrame) { if (_root.pausee == false) { this._x = this._x + ((_root.ball._x - _x) / _root.speed); this._y = this._y + ((_root.ball._y - _y) / _root.speed); } if (this.hitTest(_root.ball)) { _root.ball._xscale = _root.ball._xscale + 10; this._y = random(600) + 600; this._x = random(600); } if (_root.ball._xscale > 199) { _root.gotoAndStop("gameover"); } if (this.hitTest(_root.shield)) { _root.shield.nextFrame(); this._y = random(600) + 600; this._x = random(600); _root.score = _root.score + 2; } if (this.hitTest(_root.laser)) { this._y = random(600) + 600; this._x = random(600); _root.score = _root.score + 2; } if (_root.m1.hitTest(this)) { this._y = random(600) + 600; this._x = random(600); _root.score = _root.score + 2; _root.m1.gotoAndStop(140); } if (_root.m2.hitTest(this)) { this._y = random(600) + 600; this._x = random(600); _root.score = _root.score + 2; _root.m2.gotoAndStop(140); } if (_root.m3.hitTest(this)) { this._y = random(600) + 600; this._x = random(600); _root.score = _root.score + 2; _root.m3.gotoAndStop(140); } if (_root.m4.hitTest(this)) { this._y = random(600) + 600; this._x = random(600); _root.score = _root.score + 2; _root.m4.gotoAndStop(140); } if (_root.b.hitTest(_x, _y, true)) { this._y = random(600) + 600; this._x = random(600); _root.score = _root.score + 2; } if (_root.w.hitTest(_x, _y, true)) { this._y = random(600) + 600; this._x = random(600); _root.score = _root.score + 2; } if (_root.restart == true) { this._x = 700; this._y = 700; } }
Instance of Symbol 57 MovieClip in Frame 7
onClipEvent (enterFrame) { if (_root.pausee == false) { this._x = this._x + ((_root.ball._x - _x) / _root.speed); this._y = this._y + ((_root.ball._y - _y) / _root.speed); } if (this.hitTest(_root.ball)) { _root.ball._xscale = _root.ball._xscale + 10; this._x = random(600) + 600; this._y = random(600); } if (_root.ball._xscale > 199) { _root.gotoAndStop("gameover"); } if (this.hitTest(_root.shield)) { _root.shield.nextFrame(); this._x = random(600) + 600; this._y = random(600); _root.score = _root.score + 2; } if (this.hitTest(_root.laser)) { this._x = random(600) + 600; this._y = random(600); _root.score = _root.score + 2; } if (_root.m1.hitTest(this)) { this._x = random(600) + 600; this._y = random(600); _root.score = _root.score + 2; _root.m1.gotoAndStop(140); } if (_root.m2.hitTest(this)) { this._x = random(600) + 600; this._y = random(600); _root.score = _root.score + 2; _root.m2.gotoAndStop(140); } if (_root.m3.hitTest(this)) { this._x = random(600) + 600; this._y = random(600); _root.score = _root.score + 2; _root.m3.gotoAndStop(140); } if (_root.m4.hitTest(this)) { this._x = random(600) + 600; this._y = random(600); _root.score = _root.score + 2; _root.m4.gotoAndStop(140); } if (_root.b.hitTest(_x, _y, true)) { this._x = random(600) + 600; this._y = random(600); _root.score = _root.score + 2; } if (_root.w.hitTest(_x, _y, true)) { this._x = random(600) + 600; this._y = random(600); _root.score = _root.score + 2; } if (_root.restart == true) { this._x = 700; this._y = 100; } }
Instance of Symbol 57 MovieClip in Frame 7
onClipEvent (enterFrame) { if (_root.pausee == false) { this._x = this._x + ((_root.ball._x - _x) / _root.speed); this._y = this._y + ((_root.ball._y - _y) / _root.speed); } if (this.hitTest(_root.ball)) { _root.ball._xscale = _root.ball._xscale + 10; this._x = random(600) + 600; this._y = random(600); } if (_root.ball._xscale > 199) { _root.gotoAndStop("gameover"); } if (this.hitTest(_root.shield)) { _root.shield.nextFrame(); this._x = random(600) + 600; this._y = random(600); _root.score = _root.score + 2; } if (this.hitTest(_root.laser)) { this._x = random(600) + 600; this._y = random(600); _root.score = _root.score + 2; } if (_root.m1.hitTest(this)) { this._x = random(600) + 600; this._y = random(600); _root.score = _root.score + 2; _root.m1.gotoAndStop(140); } if (_root.m2.hitTest(this)) { this._x = random(600) + 600; this._y = random(600); _root.score = _root.score + 2; _root.m2.gotoAndStop(140); } if (_root.m3.hitTest(this)) { this._x = random(600) + 600; this._y = random(600); _root.score = _root.score + 2; _root.m3.gotoAndStop(140); } if (_root.m4.hitTest(this)) { this._x = random(600) + 600; this._y = random(600); _root.score = _root.score + 2; _root.m4.gotoAndStop(140); } if (_root.b.hitTest(_x, _y, true)) { this._x = random(600) + 600; this._y = random(600); _root.score = _root.score + 2; } if (_root.w.hitTest(_x, _y, true)) { this._x = random(600) + 600; this._y = random(600); _root.score = _root.score + 2; } if (_root.restart == true) { this._x = 700; this._y = 300; } }
Instance of Symbol 57 MovieClip in Frame 7
onClipEvent (enterFrame) { if (_root.pausee == false) { this._x = this._x + ((_root.ball._x - _x) / _root.speed); this._y = this._y + ((_root.ball._y - _y) / _root.speed); } if (this.hitTest(_root.ball)) { _root.ball._xscale = _root.ball._xscale + 10; this._y = random(600) - 600; this._x = random(600); } if (_root.ball._xscale > 199) { _root.gotoAndStop("gameover"); } if (this.hitTest(_root.shield)) { _root.shield.nextFrame(); this._y = random(600) - 600; this._x = random(600); _root.score = _root.score + 2; } if (this.hitTest(_root.laser)) { this._y = random(600) - 600; this._x = random(600); _root.score = _root.score + 2; } if (_root.m1.hitTest(this)) { this._y = random(600) - 600; this._x = random(600); _root.score = _root.score + 2; _root.m1.gotoAndStop(140); } if (_root.m2.hitTest(this)) { this._y = random(600) - 600; this._x = random(600); _root.score = _root.score + 2; _root.m2.gotoAndStop(140); } if (_root.m3.hitTest(this)) { this._y = random(600) - 600; this._x = random(600); _root.score = _root.score + 2; _root.m3.gotoAndStop(140); } if (_root.m4.hitTest(this)) { this._y = random(600) - 600; this._x = random(600); _root.score = _root.score + 2; _root.m4.gotoAndStop(140); } if (_root.b.hitTest(_x, _y, true)) { this._y = random(600) - 600; this._x = random(600); _root.score = _root.score + 2; } if (_root.w.hitTest(_x, _y, true)) { this._y = random(600) - 600; this._x = random(600); _root.score = _root.score + 2; } if (_root.restart == true) { this._x = 600; this._y = -700; } }
Instance of Symbol 57 MovieClip in Frame 7
onClipEvent (enterFrame) { if (_root.pausee == false) { this._x = this._x + ((_root.ball._x - _x) / _root.speed); this._y = this._y + ((_root.ball._y - _y) / _root.speed); } if (this.hitTest(_root.ball)) { _root.ball._xscale = _root.ball._xscale + 10; this._y = random(600) - 600; this._x = random(600); } if (_root.ball._xscale > 199) { _root.gotoAndStop("gameover"); } if (this.hitTest(_root.shield)) { _root.shield.nextFrame(); this._y = random(600) - 600; this._x = random(600); _root.score = _root.score + 2; } if (this.hitTest(_root.laser)) { this._y = random(600) - 600; this._x = random(600); _root.score = _root.score + 2; } if (_root.m1.hitTest(this)) { this._y = random(600) - 600; this._x = random(600); _root.score = _root.score + 2; _root.m1.gotoAndStop(140); } if (_root.m2.hitTest(this)) { this._y = random(600) - 600; this._x = random(600); _root.score = _root.score + 2; _root.m2.gotoAndStop(140); } if (_root.m3.hitTest(this)) { this._y = random(600) - 600; this._x = random(600); _root.score = _root.score + 2; _root.m3.gotoAndStop(140); } if (_root.m4.hitTest(this)) { this._y = random(600) - 600; this._x = random(600); _root.score = _root.score + 2; _root.m4.gotoAndStop(140); } if (_root.b.hitTest(_x, _y, true)) { this._y = random(600) - 600; this._x = random(600); _root.score = _root.score + 2; } if (_root.w.hitTest(_x, _y, true)) { this._y = random(600) - 600; this._x = random(600); _root.score = _root.score + 2; } if (_root.restart == true) { this._x = 300; this._y = -700; } }
Instance of Symbol 57 MovieClip in Frame 7
onClipEvent (enterFrame) { if (_root.pausee == false) { this._x = this._x + ((_root.ball._x - _x) / _root.speed); this._y = this._y + ((_root.ball._y - _y) / _root.speed); } if (this.hitTest(_root.ball)) { _root.ball._xscale = _root.ball._xscale + 10; this._y = random(600) + 600; this._x = random(600); } if (_root.ball._xscale > 199) { _root.gotoAndStop("gameover"); } if (this.hitTest(_root.shield)) { _root.shield.nextFrame(); this._y = random(600) + 600; this._x = random(600); _root.score = _root.score + 2; } if (this.hitTest(_root.laser)) { this._y = random(600) + 600; this._x = random(600); _root.score = _root.score + 2; } if (_root.m1.hitTest(this)) { this._y = random(600) + 600; this._x = random(600); _root.score = _root.score + 2; _root.m1.gotoAndStop(140); } if (_root.m2.hitTest(this)) { this._y = random(600) + 600; this._x = random(600); _root.score = _root.score + 2; _root.m2.gotoAndStop(140); } if (_root.m3.hitTest(this)) { this._y = random(600) + 600; this._x = random(600); _root.score = _root.score + 2; _root.m3.gotoAndStop(140); } if (_root.m4.hitTest(this)) { this._y = random(600) + 600; this._x = random(600); _root.score = _root.score + 2; _root.m4.gotoAndStop(140); } if (_root.b.hitTest(_x, _y, true)) { this._y = random(600) + 600; this._x = random(600); _root.score = _root.score + 2; } if (_root.w.hitTest(_x, _y, true)) { this._y = random(600) + 600; this._x = random(600); _root.score = _root.score + 2; } if (_root.restart == true) { this._x = 700; this._y = 700; } }
Instance of Symbol 57 MovieClip in Frame 7
onClipEvent (enterFrame) { if (_root.pausee == false) { this._x = this._x + ((_root.ball._x - _x) / _root.speed); this._y = this._y + ((_root.ball._y - _y) / _root.speed); } if (this.hitTest(_root.ball)) { _root.ball._xscale = _root.ball._xscale + 10; this._y = random(600) + 600; this._x = random(600); } if (_root.ball._xscale > 199) { _root.gotoAndStop("gameover"); } if (this.hitTest(_root.shield)) { _root.shield.nextFrame(); this._y = random(600) + 600; this._x = random(600); _root.score = _root.score + 2; } if (this.hitTest(_root.laser)) { this._y = random(600) + 600; this._x = random(600); _root.score = _root.score + 2; } if (_root.m1.hitTest(this)) { this._y = random(600) + 600; this._x = random(600); _root.score = _root.score + 2; _root.m1.gotoAndStop(140); } if (_root.m2.hitTest(this)) { this._y = random(600) + 600; this._x = random(600); _root.score = _root.score + 2; _root.m2.gotoAndStop(140); } if (_root.m3.hitTest(this)) { this._y = random(600) + 600; this._x = random(600); _root.score = _root.score + 2; _root.m3.gotoAndStop(140); } if (_root.m4.hitTest(this)) { this._y = random(600) + 600; this._x = random(600); _root.score = _root.score + 2; _root.m4.gotoAndStop(140); } if (_root.b.hitTest(_x, _y, true)) { this._y = random(600) + 600; this._x = random(600); _root.score = _root.score + 2; } if (_root.w.hitTest(_x, _y, true)) { this._y = random(600) + 600; this._x = random(600); _root.score = _root.score + 2; } if (_root.restart == true) { this._x = 700; this._y = 700; } }
Instance of Symbol 60 MovieClip "laser" in Frame 7
onClipEvent (enterFrame) { this.b._xscale = _root.lx; this.b._yscale = _root.ly; if (this.b._xscale > 300) { this.b._xscale = 300; this.b._yscale = 300; } } onClipEvent (mouseDown) { if (_root.pausee == false) { if (_root._currentframe == 7) { this.gotoAndPlay(2); this._x = _root._xmouse; this._y = _root._ymouse; } } }
Instance of Symbol 63 MovieClip "w" in Frame 7
onClipEvent (load) { if (_root.wave == false) { this.gotoAndStop(31); } } onClipEvent (mouseDown) { if ((_root.pausee == false) && (_root.wave == true)) { this.play(); } }
Instance of Symbol 65 MovieClip "b" in Frame 7
onClipEvent (load) { if (_root.beam == false) { this.gotoAndStop(6); } } onClipEvent (mouseDown) { if ((_root.pausee == false) && (_root.beam == true)) { this.gotoAndPlay(1); Xd = _root._xmouse - _x; Yd = _root._ymouse - _y; radAngle = Math.atan2(Yd, Xd); _rotation = int(((radAngle * 360) / (Math.PI*2)) + 90); updateAfterEvent(); } }
Instance of Symbol 67 MovieClip "ball" in Frame 7
onClipEvent (enterFrame) { if (_root.pausee == false) { _root.thetime++; } this._yscale = this._xscale; if (Key.isDown(32)) { _root.pausee = true; } if (Key.isDown(13)) { _root.pausee = false; } if (_root.thetime > _root.maxtime) { _root.gotoAndStop("store"); } }
Instance of Symbol 110 MovieClip "m1" in Frame 7
onClipEvent (load) { if (_root.mines == false) { this._visible = false; this.gotoAndStop(140); this.e.gotoAndStop(11); } if (_root.mines == true) { this._visible = true; this.gotoAndPlay(2); } }
Instance of Symbol 110 MovieClip "m3" in Frame 7
onClipEvent (load) { if (_root.mines == false) { this._visible = false; this.gotoAndStop(140); this.e.gotoAndStop(11); } if (_root.mines == true) { this._visible = true; this.gotoAndPlay(2); } }
Instance of Symbol 110 MovieClip "m2" in Frame 7
onClipEvent (load) { if (_root.mines == false) { this._visible = false; this.gotoAndStop(140); this.e.gotoAndStop(11); } if (_root.mines == true) { this._visible = true; this.gotoAndPlay(2); } }
Instance of Symbol 110 MovieClip "m4" in Frame 7
onClipEvent (load) { if (_root.mines == false) { this._visible = false; this.gotoAndStop(140); this.e.gotoAndStop(11); } if (_root.mines == true) { this._visible = true; this.gotoAndPlay(2); } }
Instance of Symbol 112 MovieClip in Frame 7
onClipEvent (enterFrame) { if (_root.pausee == true) { this._visible = true; } else { this._visible = false; } }
Frame 8
stop(); _root.restart = true;
Frame 9
stop(); ab20_09 = new LoadVars(); ab20_09.z = username; ab20_09.x = score; ab20_09.c = 395; ab20_09.v = "QCKEIR"; ab20_09.sendAndLoad("http://armorbot.com/s_b", ab20_09, "POST");
Symbol 17 Button
on (release) { if (_root.username != "Name") { _root.gotoAndStop("menu"); } if (_root.username == "Name") { _root.info = "Enter your name/username. If you don't want to enter a name make something up."; } }
Symbol 20 Button
on (release) { loadGame(); }
Symbol 27 Button
on (release) { _root.gotoAndStop("info"); }
Symbol 29 Button
on (release) { _root.gotoAndStop("credits"); }
Symbol 31 Button
on (release) { _root.gotoAndStop("options"); }
Symbol 35 Button
on (release) { _root.gotoAndStop("game"); }
Symbol 44 Button
on (release) { _root.music = "on"; }
Symbol 46 Button
on (release) { _root.music = "off"; }
Symbol 48 Button
on (release) { _root.speed = 70; }
Symbol 50 Button
on (release) { _root.speed = 60; }
Symbol 52 Button
on (release) { _root.speed = 40; }
Symbol 60 MovieClip Frame 1
stop();
Symbol 63 MovieClip Frame 31
stop();
Symbol 65 MovieClip Frame 5
stop();
Symbol 104 MovieClip Frame 1
stop();
Symbol 104 MovieClip Frame 2
stop();
Symbol 104 MovieClip Frame 3
stop();
Symbol 104 MovieClip Frame 4
stop();
Symbol 104 MovieClip Frame 5
stop();
Symbol 104 MovieClip Frame 6
stop();
Symbol 104 MovieClip Frame 7
stop();
Symbol 104 MovieClip Frame 8
stop();
Symbol 104 MovieClip Frame 9
stop();
Symbol 104 MovieClip Frame 10
stop();
Symbol 104 MovieClip Frame 11
stop();
Symbol 104 MovieClip Frame 12
stop();
Symbol 104 MovieClip Frame 13
stop(); if (_root.shieldlvl < 2) { stop(); } if (_root.shieldlvl > 1) { play(); }
Symbol 104 MovieClip Frame 14
stop();
Symbol 104 MovieClip Frame 15
stop();
Symbol 104 MovieClip Frame 16
stop();
Symbol 104 MovieClip Frame 17
stop();
Symbol 104 MovieClip Frame 18
stop();
Symbol 104 MovieClip Frame 19
stop();
Symbol 104 MovieClip Frame 20
stop();
Symbol 104 MovieClip Frame 21
stop();
Symbol 104 MovieClip Frame 22
stop();
Symbol 104 MovieClip Frame 23
stop();
Symbol 104 MovieClip Frame 24
stop();
Symbol 104 MovieClip Frame 25
stop();
Symbol 104 MovieClip Frame 26
stop(); if (_root.shieldlvl < 3) { stop(); } if (_root.shieldlvl > 2) { play(); }
Symbol 104 MovieClip Frame 27
stop();
Symbol 104 MovieClip Frame 28
stop();
Symbol 104 MovieClip Frame 29
stop();
Symbol 104 MovieClip Frame 30
stop();
Symbol 104 MovieClip Frame 31
stop();
Symbol 104 MovieClip Frame 32
stop();
Symbol 104 MovieClip Frame 33
stop();
Symbol 104 MovieClip Frame 34
stop();
Symbol 104 MovieClip Frame 35
stop();
Symbol 104 MovieClip Frame 36
stop();
Symbol 104 MovieClip Frame 37
stop();
Symbol 104 MovieClip Frame 38
stop();
Symbol 104 MovieClip Frame 39
stop();
Symbol 109 MovieClip Frame 11
stop();
Symbol 110 MovieClip Frame 139
gotoAndPlay (1);
Symbol 110 MovieClip Frame 140
stop();
Symbol 114 Button
on (release) { _root.speed = _root.speed - 1; _root.maxtime = _root.maxtime + 100; _root.gotoAndStop("game"); }
Symbol 127 Button
on (release) { if (_root.money > 99) { _root.laser._xscale = _root.laser._xscale + 10; _root.laser._yscale = _root.laser._yscale + 10; _root.money = _root.money - 100; } }
Symbol 130 Button
on (release) { if (_root.money > 149) { _root.laser._xscale = _root.laser._xscale + 17; _root.laser._yscale = _root.laser._yscale + 17; _root.money = _root.money - 150; } }
Symbol 134 Button
on (release) { if (_root.score > 0) { _root.score = _root.score - 1; _root.money++; } }
Symbol 136 Button
on (release) { if (_root.score > 4) { _root.score = _root.score - 5; _root.money = _root.money + 5; } }
Symbol 138 Button
on (release) { if (_root.score > 9) { _root.score = _root.score - 10; _root.money = _root.money + 10; } }
Symbol 140 Button
on (release) { if (_root.score > 49) { _root.score = _root.score - 50; _root.money = _root.money + 50; } }
Symbol 142 Button
on (release) { _root.money = _root.money + _root.score; _root.score = _root.score - _root.score; }
Symbol 145 Button
on (release) { _root.store.play(); }
Symbol 156 Button
on (release) { if (_root.money > 49) { _root.saveGame(); _root.money = _root.money - 50; } }
Symbol 160 MovieClip Frame 1
stop();
Instance of Symbol 120 MovieClip "b1" in Symbol 160 MovieClip Frame 1
on (release) { if (_root.money > 199) { _root.shieldlvl = 2; _root.money = _root.money - 200; } } onClipEvent (enterFrame) { this.gotoAndStop(1); if (_root.shieldlvl > 1) { _root.store.b1._visible = false; } }
Instance of Symbol 120 MovieClip "b2" in Symbol 160 MovieClip Frame 1
on (release) { if (_root.money > 374) { _root.shieldlvl = 3; _root.money = _root.money - 375; } } onClipEvent (enterFrame) { this.gotoAndStop(1); if (_root.shieldlvl == 3) { _root.store.b2._visible = false; } }
Symbol 160 MovieClip Frame 2
stop();
Instance of Symbol 120 MovieClip "b3" in Symbol 160 MovieClip Frame 2
on (release) { if (_root.money > 499) { _root.mines = true; _root.money = _root.money - 500; } } onClipEvent (enterFrame) { this.gotoAndStop(1); if (_root.mines == true) { _root.store.b3._visible = false; } }
Instance of Symbol 120 MovieClip "b4" in Symbol 160 MovieClip Frame 2
on (release) { if (_root.money > 599) { _root.beam = true; _root.money = _root.money - 600; } } onClipEvent (enterFrame) { this.gotoAndStop(1); if (_root.beam == true) { _root.store.b4._visible = false; } }
Instance of Symbol 120 MovieClip "b5" in Symbol 160 MovieClip Frame 2
on (release) { if (_root.money > 1199) { _root.wave = true; _root.money = _root.money - 1200; } } onClipEvent (enterFrame) { this.gotoAndStop(1); if (_root.wave == true) { _root.store.b5._visible = false; } }
Symbol 162 MovieClip Frame 107
stop();
Symbol 166 Button
on (release) { getURL ("http://www.armorbot.com/mytable/?id=395", "_blank"); }

Library Items

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

Instance Names

"aimer"Frame 2Symbol 25 MovieClip
"laser"Frame 7Symbol 60 MovieClip
"w"Frame 7Symbol 63 MovieClip
"b"Frame 7Symbol 65 MovieClip
"ball"Frame 7Symbol 67 MovieClip
"shield"Frame 7Symbol 104 MovieClip
"m1"Frame 7Symbol 110 MovieClip
"m3"Frame 7Symbol 110 MovieClip
"m2"Frame 7Symbol 110 MovieClip
"m4"Frame 7Symbol 110 MovieClip
"store"Frame 8Symbol 160 MovieClip
"b"Symbol 60 MovieClip Frame 2Symbol 59 MovieClip
"e"Symbol 110 MovieClip Frame 140Symbol 109 MovieClip
"b1"Symbol 160 MovieClip Frame 1Symbol 120 MovieClip
"b2"Symbol 160 MovieClip Frame 1Symbol 120 MovieClip
"b3"Symbol 160 MovieClip Frame 2Symbol 120 MovieClip
"b4"Symbol 160 MovieClip Frame 2Symbol 120 MovieClip
"b5"Symbol 160 MovieClip Frame 2Symbol 120 MovieClip

Special Tags

FileAttributes (69)Timeline Frame 1Access local files only, Metadata not present, AS1/AS2.

Labels

"menu"Frame 3
"info"Frame 4
"credits"Frame 5
"options"Frame 6
"game"Frame 7
"store"Frame 8
"gameover"Frame 9

Dynamic Text Variables

percentloadedSymbol 5 EditableText""
usernameSymbol 13 EditableText"Name"
infoSymbol 19 EditableText""
_root.scoreSymbol 117 EditableText""
_root.moneySymbol 118 EditableText""
_root.scoreSymbol 151 EditableText""
_root.moneySymbol 152 EditableText""
scoreSymbol 165 EditableText""




http://swfchan.com/15/70267/info.shtml
Created: 10/4 -2019 00:11:47 Last modified: 10/4 -2019 00:11:47 Server time: 03/05 -2024 11:13:51